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
|
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
e554fbe09ba83c914050323574ba2c37d9cc2781
|
4015ee4fb44f0af7d78c37d65d8cd2dbbe384cdb
|
/sources/Client.cpp
|
d803bdd3875623bab8e184fa17b44ddbeb0365dd
|
[
"MIT"
] |
permissive
|
DmitryKersh/3-sem-lab-08-asio-client
|
b3d1fbd125bdb93763e8496bf05d2bbd95597da2
|
5c149066e808b34fcb613dbbed1b913bbbf4fd72
|
refs/heads/master
| 2023-02-22T11:25:18.632499
| 2021-01-20T23:08:06
| 2021-01-20T23:08:06
| 328,351,286
| 0
| 0
|
MIT
| 2021-01-20T23:08:07
| 2021-01-10T09:58:43
|
CMake
|
UTF-8
|
C++
| false
| false
| 1,351
|
cpp
|
Client.cpp
|
// Copyright 2020 Your Name <your_email>
#include <Client.hpp>
#include <utility>
Client::Client(asio::io_service& service, const tcp::endpoint& endpoint,
std::string username)
: socket_(service), username_(std::move(username)) {
socket_.connect(endpoint);
reset_delay();
}
void Client::login(error_code& error) {
std::string query = "login " + username_ + ENDLINE;
socket_.write_some(asio::buffer(query));
last_query_time_ = NOW;
reset_delay();
asio::streambuf reply;
asio::read_until(socket_, reply, ENDLINE, error);
std::string reply_str;
std::istream input(&reply);
std::getline(input, reply_str);
console_log(username_, query, reply_str);
}
void Client::query(std::string const& query, error_code& error) {
socket_.write_some(asio::buffer(query));
last_query_time_ = NOW;
reset_delay();
asio::streambuf reply;
asio::read_until(socket_, reply, ENDLINE, error);
std::string reply_str;
std::istream input(&reply);
std::getline(input, reply_str);
console_log(username_, query, reply_str);
if (reply_str == "Disconnected by timeout") {
close();
return;
}
if (reply_str == "client_list_changed") {
this->query("clients\n", error);
}
}
void Client::close() { socket_.close(); }
void Client::reset_delay() {
delay_ = std::chrono::seconds(1 + rand() % (8));
}
|
58d7d05db8a221d1f4a1cca6edc5ce425a58589a
|
52d7e95636747326b01905e2c0a7c719c771cecb
|
/DynamicProgramming/ugly-numbers.cc
|
3f6f8ed4f402c6236451aaa6feea00391d65ef21
|
[] |
no_license
|
sdecoder/geeksforgeeks
|
855aea5c8fad17e3627d5c7770b421ee913062c6
|
75137c187d09ed17225078d3efc0a775097b8f2c
|
refs/heads/master
| 2021-01-22T14:39:50.490466
| 2016-02-22T12:05:58
| 2016-02-22T12:05:58
| 68,490,550
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,757
|
cc
|
ugly-numbers.cc
|
/*
Ugly Numbers
Ugly numbers are numbers whose only prime factors are 2, 3 or 5. The sequence
1, 2, 3, 4, 5, 6, 8, 9, 10, 12, 15, …
shows the first 11 ugly numbers. By convention, 1 is included.
Write a program to find and print the 150’th ugly number.*/
#include <stdio.h>
#include <stdlib.h>
#define bool int
/* Function to find minimum of 3 numbers */
unsigned min(unsigned, unsigned, unsigned);
/* Function to get the nth ugly number*/
unsigned getNthUglyNo(unsigned n) {
unsigned* ugly = (unsigned*)(malloc(sizeof(unsigned) * n));
unsigned i2 = 0, i3 = 0, i5 = 0;
unsigned i;
unsigned next_multiple_of_2 = 2;
unsigned next_multiple_of_3 = 3;
unsigned next_multiple_of_5 = 5;
unsigned next_ugly_no = 1;
*(ugly + 0) = 1;
for (i = 1; i < n; i++) {
next_ugly_no = min(next_multiple_of_2, next_multiple_of_3, next_multiple_of_5);
*(ugly + i) = next_ugly_no;
if (next_ugly_no == next_multiple_of_2) {
i2 = i2 + 1;
next_multiple_of_2 = *(ugly + i2) * 2;
}
if (next_ugly_no == next_multiple_of_3) {
i3 = i3 + 1;
next_multiple_of_3 = *(ugly + i3) * 3;
}
if (next_ugly_no == next_multiple_of_5) {
i5 = i5 + 1;
next_multiple_of_5 = *(ugly + i5) * 5;
}
} /*End of for loop (i=1; i<n; i++) */
return next_ugly_no;
}
/* Function to find minimum of 3 numbers */
unsigned min(unsigned a, unsigned b, unsigned c) {
if (a <= b) {
if (a <= c)
return a;
else
return c;
}
if (b <= c)
return b;
else
return c;
}
/* Driver program to test above functions */
int main() {
unsigned no = getNthUglyNo(150);
printf("%dth ugly no. is %d ", 150, no);
getchar();
return 0;
}
|
c20c5349dee48a1dd77505c0f61116d90a97c81b
|
7effc136d8b3fd6abd1c214662199629dc405a5c
|
/main.cpp
|
eaa767ec9af3e01db9677716f79253b278f5ebe1
|
[] |
no_license
|
Haven-Lau/CS_GO_RadarTrigger_Hack
|
3e144b2eafaf43b1f0ad75d3409135f128906833
|
968a80a4b20f5c76266d18f658250f2d38749686
|
refs/heads/master
| 2020-12-25T14:08:52.200473
| 2015-08-28T00:11:24
| 2015-08-28T00:11:24
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,641
|
cpp
|
main.cpp
|
#include <iostream>
#include "Engine.h"
#include "Settings.h"
#include "Radar.h"
#include "Triggerbot.h"
[junk_enable /]
[enc_string_enable /]
int whichKeyIsPressed() {
while (true) {
for (int i = 1; i < 255; i++) {
if (GetAsyncKeyState(i) & 0x8000) {
Sleep(250);
return i;
}
}
Sleep(10);
}
}
int main() {
std::cout << "Radar and Trigger\n\n";
Engine()->start();
std::thread engineThread(&CEngine::update, Engine());
std::cout << "Found\n\n";
std::cout << "Offsets\n";
std::cout << "Local player: 0x" << Engine()->Offsets()->toHex(Engine()->Offsets()->dwLocalPlayer) << "\n";
std::cout << "Entity list: 0x" << Engine()->Offsets()->toHex(Engine()->Offsets()->dwEntityList) << "\n";
std::cout << "Attack: 0x" << Engine()->Offsets()->toHex(Engine()->Offsets()->dwAttack) << "\n\n";
std::cout << "Hotkeys:\n";
std::cout << "Triggerkey: ";
Settings()->trigger_key = whichKeyIsPressed();
std::cout << Settings()->trigger_key << "\n";
std::cout << "Trigger hold key (press ENTER for no hold key): ";
Settings()->trigger_holdkey = whichKeyIsPressed();
if (Settings()->trigger_holdkey == VK_RETURN) {
Settings()->trigger_holdkey = 0;
}
std::cout << Settings()->trigger_holdkey << "\n";
std::cout << "Radar key: ";
Settings()->radar_key = whichKeyIsPressed();
std::cout << Settings()->radar_key << "\n\n";
std::cout << "The hack is now active!\n\n";
std::thread settingsThread(&CSettings::run, Settings());
std::thread radarThread(&Radar::run, Radar());
std::thread triggerThread(&Triggerbot::run, Triggerbot());
while (!GetAsyncKeyState(VK_END)) {
Sleep(100);
}
exit(0);
return 0;
}
|
ede458921053953f28ad878d767ec77c720fab21
|
ae0693c4915b0f71adeab465d444d6bb6bf5c7ab
|
/src/enable_variable_ops/ngraph_catalog.cc
|
ef1801828d397de31c2e41ea164479e5935244ef
|
[
"Apache-2.0"
] |
permissive
|
kkasravi/ngraph-bridge
|
249f7a845ca5e3e187576bb322cd23caab9782c9
|
7dcf752e966a9dfe64561568fbc80d86d80868ec
|
refs/heads/master
| 2020-06-02T13:44:46.688301
| 2019-06-18T06:33:36
| 2019-06-18T06:33:36
| 191,175,201
| 0
| 0
|
Apache-2.0
| 2019-06-10T13:39:16
| 2019-06-10T13:39:15
| null |
UTF-8
|
C++
| false
| false
| 4,343
|
cc
|
ngraph_catalog.cc
|
/*******************************************************************************
* Copyright 2019 Intel Corporation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*******************************************************************************/
#include "tensorflow/core/lib/core/errors.h"
#include "ngraph/ngraph.hpp"
#include "ngraph/runtime/backend_manager.hpp"
#include "ngraph_catalog.h"
#include "ngraph_log.h"
using namespace std;
namespace ng = ngraph;
namespace tensorflow {
namespace ngraph_bridge {
unordered_map<string, string> NGraphCatalog::input_variable_sharedname_map_;
unordered_map<string, shared_ptr<ng::runtime::Tensor>>
NGraphCatalog::encap_output_tensor_map_;
unordered_map<string, unordered_set<int>>
NGraphCatalog::encap_output_copy_indexes_map_;
// Functions for Encapsulate Output Copy Indexes Map
void NGraphCatalog::AddToEncapOutputCopyIndexesMap(string key,
unordered_set<int> val) {
NGraphCatalog::encap_output_copy_indexes_map_[key] = val;
}
unordered_set<int> NGraphCatalog::GetEncapOutputIndexesThatNeedCopy(
string key) {
return NGraphCatalog::encap_output_copy_indexes_map_[key];
}
bool NGraphCatalog::EncapOutputIndexNeedsCopy(string key, int index) {
auto itr = NGraphCatalog::encap_output_copy_indexes_map_.find(key);
if (itr != NGraphCatalog::encap_output_copy_indexes_map_.end()) {
auto op_copy_indexes = itr->second;
return (op_copy_indexes.find(index) != op_copy_indexes.end());
}
// Should not reach here
return true;
}
string NGraphCatalog::CreateNodeKey(int graph_id, string node_name, int index) {
if (index == 0) {
return to_string(graph_id) + "_" + node_name;
}
return to_string(graph_id) + "_" + node_name + ":" + to_string(index);
}
// Functions for OutputTensorMap
void NGraphCatalog::AddToEncapOutputTensorMap(
string key, shared_ptr<ng::runtime::Tensor> ng_val) {
NGraphCatalog::encap_output_tensor_map_[key] = ng_val;
}
bool NGraphCatalog::ExistsInEncapOutputTensorMap(string key) {
auto itr = NGraphCatalog::encap_output_tensor_map_.find(key);
return itr != NGraphCatalog::encap_output_tensor_map_.end();
}
bool NGraphCatalog::ExistsInEncapOutputTensorMap(int graphid, string node_name,
int input_index) {
return NGraphCatalog::ExistsInEncapOutputTensorMap(
NGraphCatalog::CreateNodeKey(graphid, node_name, input_index));
}
shared_ptr<ng::runtime::Tensor>
NGraphCatalog::GetTensorFromEncapOutputTensorMap(string key) {
return NGraphCatalog::encap_output_tensor_map_[key];
}
void NGraphCatalog::DeleteFromEncapOutputTensorMap(string key) {
NGraphCatalog::encap_output_tensor_map_.erase(key);
}
// Functions relating Input Variable Shared Name Map
string NGraphCatalog::GetInputVariableSharedName(int graphid, string node_name,
int input_index) {
std::string node_key =
NGraphCatalog::CreateNodeKey(graphid, node_name, input_index);
return NGraphCatalog::input_variable_sharedname_map_[node_key];
}
void NGraphCatalog::AddToInputVariableSharedNameMap(string key, string val) {
NGraphCatalog::input_variable_sharedname_map_[key] = val;
}
bool NGraphCatalog::ExistsInInputVariableSharedNameMap(string key) {
auto itr = NGraphCatalog::input_variable_sharedname_map_.find(key);
return itr != NGraphCatalog::input_variable_sharedname_map_.end();
}
bool NGraphCatalog::ExistsInInputVariableSharedNameMap(int graphid,
string node_name,
int input_index) {
return NGraphCatalog::ExistsInInputVariableSharedNameMap(
NGraphCatalog::CreateNodeKey(graphid, node_name, input_index));
}
} // ngraph_bridge
} // tensorflow
|
5fca41213d1ae69f8ca0fd785127a58431f5f5b7
|
7ec75f987f54d30276b915d9abcaab3b82f7bdb3
|
/src/Managers/TextureManager.h
|
671d2d2700ec4ca5f1327207c85b33be0e8393db
|
[] |
no_license
|
RyanSwann1/Snake---Uni-Work
|
a3f20b33cb435f32590e33234fb8402df7603a90
|
a7be655cc8b0339d38ac32566cc9f8a98995669f
|
refs/heads/master
| 2020-03-07T15:44:53.088229
| 2018-04-26T08:56:07
| 2018-04-26T08:56:07
| 127,563,624
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 699
|
h
|
TextureManager.h
|
#pragma once
#include <Managers\ResourceManager.h>
#include <Locators\TextureManagerLocator.h>
#include <SFML\Graphics.hpp>
class TextureManager : public ResourceManager<sf::Texture>
{
public:
TextureManager()
{
TextureManagerLocator::provide(*this);
}
TextureManager(const TextureManager&) = delete;
TextureManager& operator=(const TextureManager&) = delete;
TextureManager(TextureManager&&) = delete;
TextureManager&& operator=(TextureManager&&) = delete;
private:
sf::Texture loadResourceFromFile(const std::string& fileName) const override final
{
sf::Texture texture;
const bool textureLoaded = texture.loadFromFile(fileName);
assert(textureLoaded);
return texture;
}
};
|
86cfd69dfb4597e9f86b2c343499734d9447ea5f
|
dcbe05a9efd9166e65b5b3be4106cb65101e2812
|
/Classes/Unit_2.h
|
0292af981f17940cfd48fdc4690a9fea433d20b0
|
[] |
no_license
|
KwMOA/moa-client
|
152e4a93bf7053d3c212e2ebb765693ef396125e
|
ad61517ce6047c797e9813983dbc99e379c55736
|
refs/heads/master
| 2021-01-18T17:56:01.689708
| 2016-12-15T18:15:15
| 2016-12-15T18:15:15
| 68,498,524
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 383
|
h
|
Unit_2.h
|
//
// Unit_2.h
// moaClient
//
// Created by kimyongchan on 2016. 9. 25..
// Copyright © 2016년 kimyongchan. All rights reserved.
//
#ifndef Unit_2_h
#define Unit_2_h
#include <stdio.h>
#include "Unit.h"
class Unit_2 : public Unit {
public:
Unit_2(GamePlayer* _gamePlayer);
~Unit_2() {};
void click();
void update(int updateCount);
};
#endif /* Unit_2_h */
|
fcc1f936f512a824024b1d85deb599b0d09c8960
|
495a67c9ef31ba300d25a600994eba3188317a95
|
/E 115/HW 2 - Math Calculator/ConsoleApplication1/Source.cpp
|
9aae4cc32ae2b34d1e8fc95e72c7e44bb9e86523
|
[] |
no_license
|
sbertussi/coding_portfolio
|
5bb03e993019c5b1aa9eb8cb66159d3d4fa1763c
|
bfcb3597d42960154f3c86cb5fa5597eacb9c36a
|
refs/heads/master
| 2021-01-01T04:24:20.026328
| 2017-07-18T18:18:10
| 2017-07-18T18:18:10
| 97,172,066
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 2,041
|
cpp
|
Source.cpp
|
//Sarah Bertussi
//LL
#include<iostream>
#include<string>
using namespace std;
int main()
{
float number1;
float number2;
string operation;
float answer;
int hold;
cout << "Welcome to the Amazing Calculator!" << endl;
cout << "I am able to do the four basic functions and positive integer powers." << endl;
cout << "Please type in two numbers and an operation, with spaces between, and I will do the math." << endl;
cout << "Ex. 1 + 3 NOT 1+3" << endl;
cout << "Note: To exit, close the window." << endl;
cout << endl;
while (1 == 1)
{
system("COLOR 7");
hold = 1;
cin >> number1;
cin >> operation;
cin >> number2;
if (operation == "/") //division
{
if (number2 == 0)
{
system("COLOR C");
cout << "Error: Cannot Divide By Zero" << endl;
system("pause");
cout << endl;
}
else
{
answer = number1 / number2;
cout << "= ";
cout << answer << endl;
cout << endl;
}
}
else
{
if (operation == "+") //addition
{
answer = number1 + number2;
cout << "= ";
cout << answer << endl;
cout << endl;
}
else
{
if (operation == "-") //subtraction
{
answer = number1 - number2;
cout << "= ";
cout << answer << endl;
cout << endl;
}
else
{
if (operation == "*") //multiplication
{
answer = number1 * number2;
cout << "= ";
cout << answer << endl;
cout << endl;
}
else
{
if (operation == "^") //power
{
while (number2 > 0)
{
hold = hold * number1;
number2 = number2 - 1;
answer = hold;
}
cout << "= ";
cout << answer << endl;
cout << endl;
}
else
{
system("COLOR C");
cout << "Error: Improper Operation" << endl;
system("pause");
cout << endl;
}
}
}
}
}
}
}
|
241b1b690bd59fba5f54e06039b758f6dc6cf96c
|
c3147a539c3bad6d24105df990146e9bffcae1a5
|
/leetcode/347.top-k-frequent-elements.cpp
|
990f12e53cf58758701d8c52c04197fdf812dd56
|
[] |
no_license
|
eataix/algorithms
|
6158a93d02d53be4940d7d2db09393915081b267
|
6c61a6ae52707ac6f8a01bfc9344ca48be9736f8
|
refs/heads/master
| 2021-03-22T00:21:23.926258
| 2018-10-20T05:07:55
| 2018-10-20T05:57:53
| 19,340,004
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,187
|
cpp
|
347.top-k-frequent-elements.cpp
|
#include <unordered_map>
#include <vector>
using namespace std;
/*
* [347] Top K Frequent Elements
*
* https://leetcode.com/problems/top-k-frequent-elements/description/
*
* algorithms
* Medium (49.65%)
* Total Accepted: 103.6K
* Total Submissions: 208.7K
* Testcase Example: '[1,1,1,2,2,3]\n2'
*
*
* Given a non-empty array of integers, return the k most frequent elements.
*
* For example,
* Given [1,1,1,2,2,3] and k = 2, return [1,2].
*
*
* Note:
*
* You may assume k is always valid, 1 ≤ k ≤ number of unique elements.
* Your algorithm's time complexity must be better than O(n log n), where n is
* the array's size.
*
*/
class Solution {
public:
vector<int> topKFrequent(vector<int> &nums, int k) {
unordered_map<int, int> m;
for (const int &num : nums) {
m[num] += 1;
}
vector<vector<int>> bucket(nums.size() + 1);
vector<int> res;
for (auto kv : m) {
bucket[kv.second].push_back(kv.first);
}
for (int i = nums.size(); i >= 0; --i) {
for (const auto &v : bucket[i]) {
res.push_back(v);
if (res.size() == k) {
return res;
}
}
}
return res;
}
};
|
03323dd35c7030ffb58e0e2c6dc1d5a0268301a3
|
a800feca39db1fee87e92e73b3174ae7f4f45feb
|
/Hashmap-and-Heap/keyboard-row.cpp
|
6849ce8af9d137549fac6d546db30ae6457abc3b
|
[] |
no_license
|
manmeet0307/Pepcoding-IP
|
b0c057af1e36a5259accf53bd630ad9812f7bd81
|
322e761e92818b593d88494a06238f190f871547
|
refs/heads/master
| 2022-02-18T12:29:33.506662
| 2019-08-11T09:43:55
| 2019-08-11T09:43:55
| 256,763,022
| 1
| 1
| null | 2020-04-18T13:39:57
| 2020-04-18T13:39:57
| null |
UTF-8
|
C++
| false
| false
| 1,312
|
cpp
|
keyboard-row.cpp
|
#include<iostream>
#include<vector>
#include<string>
#include<bits/stdc++.h>
using namespace std;
bool checkrow(string s)
{
unordered_map<char,int> m ;
m['q'] = 1;
m['w'] = 1;
m['e'] = 1;
m['r'] = 1;
m['t'] = 1;
m['y'] = 1;
m['u'] = 1;
m['i'] = 1;
m['o'] = 1;
m['p'] = 1;
m['a'] = 2;
m['s'] = 2;
m['d'] = 2;
m['f'] = 2;
m['g'] = 2;
m['h'] = 2;
m['j'] = 2;
m['k'] = 2;
m['l'] = 2;
m['z'] = 1;
m['x'] = 2;
m['c'] = 2;
m['v'] = 2;
m['b'] = 2;
m['n'] = 2;
m['m'] = 2;
transform(s.begin(), s.end(), s.begin(), ::tolower);
int kc = m[s[0]];
for(int i = 1; i < s.length() ;i++)
{
if( m[s[i]] != kc )
{
return false;
}
}
return true;
}
vector<string> findWords(vector<string>& words) {
vector<string> v;
for(int i = 0 ; i < words.size() ;i++)
{
if(checkrow(words[i]))
{
v.push_back(words[i]);
}
}
return v;
}
int main(int argc,char** argv){
int n;
cin>>n;
vector<string> words(n);
for(int i=0;i<n;i++)
cin>>words[i];
vector<string>res;
res= findWords(words);
for(int i=0;i<res.size();i++)
cout<<res[i]<<" ";
}
|
8f9b4d601d63b7340c012fc631a28193f1e7b341
|
681cb2db6412f8260c65141b66332d4bd00c2dc4
|
/02_openmp/13_merge_sort.cpp
|
7d053dcfa42185bbeba140f2cbae71393f35dde9
|
[] |
no_license
|
amamama/hpc_lecture
|
0d8071e1eef215b4be9e1c33537272b709d71273
|
55319d583cf16ca1a65797ce128ac783aa23f0c7
|
refs/heads/master
| 2023-04-04T10:05:54.284362
| 2021-04-21T16:12:22
| 2021-04-21T16:12:22
| 358,093,328
| 0
| 0
| null | 2021-04-15T01:42:30
| 2021-04-15T01:42:29
| null |
UTF-8
|
C++
| false
| false
| 2,091
|
cpp
|
13_merge_sort.cpp
|
#include <cstdio>
#include <cstdlib>
#include <vector>
template<class T>
void merge_ser(std::vector<T>& vec, int begin, int mid, int end) {
std::vector<T> tmp(end-begin+1);
int left = begin;
int right = mid+1;
for (int i=0; i<tmp.size(); i++) {
if (left > mid)
tmp[i] = vec[right++];
else if (right > end)
tmp[i] = vec[left++];
else if (vec[left] <= vec[right])
tmp[i] = vec[left++];
else
tmp[i] = vec[right++];
}
size_t s = tmp.size();
for (int i=0; i < s; i++)
vec[begin+i] = tmp[i];
}
template<class T>
void merge(std::vector<T>& vec, int begin, int mid, int end) {
std::vector<T> tmp(end-begin+1);
int left = begin;
int right = mid+1;
for (int i=0; i<tmp.size(); i++) {
if (left > mid)
tmp[i] = vec[right++];
else if (right > end)
tmp[i] = vec[left++];
else if (vec[left] <= vec[right])
tmp[i] = vec[left++];
else
tmp[i] = vec[right++];
}
size_t s = tmp.size();
#pragma omp parallel for
for (int i=0; i < s; i++)
vec[begin+i] = tmp[i];
}
template<class T>
void merge_sort_ser(std::vector<T>& vec, int begin, int end) {
if(begin < end) {
int mid = (begin + end) / 2;
merge_sort_ser(vec, begin, mid);
merge_sort_ser(vec, mid+1, end);
merge_ser(vec, begin, mid, end);
}
}
template<class T>
void merge_sort(std::vector<T>& vec, int begin, int end) {
if(begin < end) {
int mid = (begin + end) / 2;
if(end - begin > 0x2000) {
#pragma omp task shared(vec)
merge_sort(vec, begin, mid);
#pragma omp task shared(vec)
merge_sort(vec, mid+1, end);
#pragma omp taskwait
merge(vec, begin, mid, end);
} else merge_sort_ser(vec, begin, end);
}
}
int main() {
int n = 0x10000000;
std::vector<int> vec(n);
for (int i=0; i<n; i++) {
vec[i] = rand() % (10 * n);
//printf("%d ",vec[i]);
}
printf("\n");
#pragma omp parallel
#pragma omp single
merge_sort(vec, 0, n-1);
int last = vec[0];
for (int i=0; i<n; i++) {
if(last > vec[i]) printf("not sorted\n");
//printf("%d ",vec[i]);
}
printf("\n");
}
|
4482ac17eec0853eea65decb1e5efbd40a3089b0
|
d195abfd2e3cb3f11d4c1df4fc1676762f904d07
|
/moveit_ros/visualization/rviz_plugin_render_tools/src/trajectory_visualization.cpp
|
9b9f2deafd9f83cbbe4199603b821b3c066b6838
|
[
"BSD-3-Clause"
] |
permissive
|
ros-planning/moveit
|
146a5c2648dd27d7bf4fc45ff2ceb90beca14f8a
|
1730d7b392a072bafaab37e6e3bb8ed11e58047e
|
refs/heads/master
| 2023-09-04T03:39:21.644592
| 2023-08-06T09:03:04
| 2023-08-06T09:03:04
| 64,340,188
| 1,499
| 1,117
|
BSD-3-Clause
| 2023-09-09T11:20:46
| 2016-07-27T20:38:09
|
C++
|
UTF-8
|
C++
| false
| false
| 24,204
|
cpp
|
trajectory_visualization.cpp
|
/*********************************************************************
* Software License Agreement (BSD License)
*
* Copyright (c) 2008, Willow Garage, Inc.
* 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 Willow Garage nor the names of its
* contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*********************************************************************/
/* Author: Dave Coleman */
#include <boost/algorithm/string.hpp>
#include <boost/algorithm/string/replace.hpp>
#include <moveit/rviz_plugin_render_tools/trajectory_visualization.h>
#include <moveit/rviz_plugin_render_tools/planning_link_updater.h>
#include <moveit/rviz_plugin_render_tools/robot_state_visualization.h>
#include <rviz/robot/robot.h>
#include <moveit/trajectory_processing/trajectory_tools.h>
#include <rviz/display_context.h>
#include <rviz/properties/bool_property.h>
#include <rviz/properties/color_property.h>
#include <rviz/properties/editable_enum_property.h>
#include <rviz/properties/float_property.h>
#include <rviz/properties/int_property.h>
#include <rviz/properties/property.h>
#include <rviz/properties/ros_topic_property.h>
#include <rviz/properties/string_property.h>
#include <rviz/robot/robot_link.h>
#include <rviz/window_manager_interface.h>
namespace moveit_rviz_plugin
{
TrajectoryVisualization::TrajectoryVisualization(rviz::Property* widget, rviz::Display* display)
: animating_path_(false)
, drop_displaying_trajectory_(false)
, current_state_(-1)
, display_(display)
, widget_(widget)
, trajectory_slider_panel_(nullptr)
, trajectory_slider_dock_panel_(nullptr)
{
trajectory_topic_property_ =
new rviz::RosTopicProperty("Trajectory Topic", "move_group/display_planned_path",
ros::message_traits::datatype<moveit_msgs::DisplayTrajectory>(),
"The topic on which the moveit_msgs::DisplayTrajectory messages are received", widget,
SLOT(changedTrajectoryTopic()), this);
display_path_visual_enabled_property_ =
new rviz::BoolProperty("Show Robot Visual", true,
"Indicates whether the geometry of the robot as defined for "
"visualisation purposes should be displayed",
widget, SLOT(changedDisplayPathVisualEnabled()), this);
display_path_collision_enabled_property_ =
new rviz::BoolProperty("Show Robot Collision", false,
"Indicates whether the geometry of the robot as defined "
"for collision detection purposes should be displayed",
widget, SLOT(changedDisplayPathCollisionEnabled()), this);
robot_path_alpha_property_ = new rviz::FloatProperty("Robot Alpha", 0.5f, "Specifies the alpha for the robot links",
widget, SLOT(changedRobotPathAlpha()), this);
robot_path_alpha_property_->setMin(0.0);
robot_path_alpha_property_->setMax(1.0);
state_display_time_property_ =
new rviz::EditableEnumProperty("State Display Time", "3x",
"Replay speed of trajectory. Either as factor of its time"
"parameterization or as constant time (s) per waypoint.",
widget, SLOT(changedStateDisplayTime()), this);
state_display_time_property_->addOptionStd("3x");
state_display_time_property_->addOptionStd("1x");
state_display_time_property_->addOptionStd("0.5x");
state_display_time_property_->addOptionStd("0.05s");
state_display_time_property_->addOptionStd("0.1s");
state_display_time_property_->addOptionStd("0.5s");
use_sim_time_property_ = new rviz::BoolProperty("Use Sim Time", false,
"Indicates whether simulation time or wall-time is "
"used for state display timing.",
widget);
loop_display_property_ = new rviz::BoolProperty("Loop Animation", false,
"Indicates whether the last received path "
"is to be animated in a loop",
widget, SLOT(changedLoopDisplay()), this);
trail_display_property_ =
new rviz::BoolProperty("Show Trail", false, "Show a path trail", widget, SLOT(changedShowTrail()), this);
trail_step_size_property_ = new rviz::IntProperty("Trail Step Size", 1,
"Specifies the step size of the samples "
"shown in the trajectory trail.",
widget, SLOT(changedTrailStepSize()), this);
trail_step_size_property_->setMin(1);
interrupt_display_property_ =
new rviz::BoolProperty("Interrupt Display", false,
"Immediately show newly planned trajectory, interrupting the currently displayed one.",
widget);
robot_color_property_ = new rviz::ColorProperty(
"Robot Color", QColor(150, 50, 150), "The color of the animated robot", widget, SLOT(changedRobotColor()), this);
enable_robot_color_property_ = new rviz::BoolProperty(
"Color Enabled", false, "Specifies whether robot coloring is enabled", widget, SLOT(enabledRobotColor()), this);
}
TrajectoryVisualization::~TrajectoryVisualization()
{
clearTrajectoryTrail();
trajectory_message_to_display_.reset();
displaying_trajectory_message_.reset();
display_path_robot_.reset();
if (trajectory_slider_dock_panel_)
delete trajectory_slider_dock_panel_;
}
void TrajectoryVisualization::onInitialize(Ogre::SceneNode* scene_node, rviz::DisplayContext* context,
const ros::NodeHandle& update_nh)
{
// Save pointers for later use
scene_node_ = scene_node;
context_ = context;
update_nh_ = update_nh;
// Load trajectory robot
display_path_robot_ = std::make_shared<RobotStateVisualization>(scene_node_, context_, "Planned Path", widget_);
display_path_robot_->setVisualVisible(display_path_visual_enabled_property_->getBool());
display_path_robot_->setCollisionVisible(display_path_collision_enabled_property_->getBool());
display_path_robot_->setVisible(false);
rviz::WindowManagerInterface* window_context = context_->getWindowManager();
if (window_context)
{
trajectory_slider_panel_ = new TrajectoryPanel(window_context->getParentWindow());
trajectory_slider_dock_panel_ =
window_context->addPane(display_->getName() + " - Trajectory Slider", trajectory_slider_panel_);
trajectory_slider_dock_panel_->setIcon(display_->getIcon());
connect(trajectory_slider_dock_panel_, SIGNAL(visibilityChanged(bool)), this,
SLOT(trajectorySliderPanelVisibilityChange(bool)));
trajectory_slider_panel_->onInitialize();
}
}
void TrajectoryVisualization::setName(const QString& name)
{
if (trajectory_slider_dock_panel_)
trajectory_slider_dock_panel_->setWindowTitle(name + " - Slider");
}
void TrajectoryVisualization::onRobotModelLoaded(const moveit::core::RobotModelConstPtr& robot_model)
{
robot_model_ = robot_model;
// Error check
if (!robot_model_)
{
ROS_ERROR_STREAM_NAMED("trajectory_visualization", "No robot model found");
return;
}
// Load robot state
robot_state_ = std::make_shared<moveit::core::RobotState>(robot_model_);
robot_state_->setToDefaultValues();
// Load rviz robot
display_path_robot_->load(*robot_model_->getURDF());
enabledRobotColor(); // force-refresh to account for saved display configuration
// perform post-poned subscription to trajectory topic
if (trajectory_topic_sub_.getTopic().empty())
changedTrajectoryTopic();
}
void TrajectoryVisualization::reset()
{
clearTrajectoryTrail();
trajectory_message_to_display_.reset();
displaying_trajectory_message_.reset();
animating_path_ = false;
display_path_robot_->setVisualVisible(display_path_visual_enabled_property_->getBool());
display_path_robot_->setCollisionVisible(display_path_collision_enabled_property_->getBool());
display_path_robot_->setVisible(false);
}
void TrajectoryVisualization::clearTrajectoryTrail()
{
trajectory_trail_.clear();
}
void TrajectoryVisualization::changedLoopDisplay()
{
display_path_robot_->setVisible(display_->isEnabled() && displaying_trajectory_message_ && animating_path_);
if (loop_display_property_->getBool() && trajectory_slider_panel_)
trajectory_slider_panel_->pauseButton(false);
}
void TrajectoryVisualization::changedShowTrail()
{
clearTrajectoryTrail();
if (!trail_display_property_->getBool())
return;
robot_trajectory::RobotTrajectoryPtr t = trajectory_message_to_display_;
if (!t)
t = displaying_trajectory_message_;
if (!t)
return;
int stepsize = trail_step_size_property_->getInt();
// always include last trajectory point
trajectory_trail_.resize((int)std::ceil((t->getWayPointCount() + stepsize - 1) / (float)stepsize));
for (std::size_t i = 0; i < trajectory_trail_.size(); i++)
{
int waypoint_i = std::min(i * stepsize, t->getWayPointCount() - 1); // limit to last trajectory point
auto r = std::make_unique<RobotStateVisualization>(scene_node_, context_,
"Trail Robot " + boost::lexical_cast<std::string>(i), nullptr);
r->load(*robot_model_->getURDF());
r->setVisualVisible(display_path_visual_enabled_property_->getBool());
r->setCollisionVisible(display_path_collision_enabled_property_->getBool());
r->setAlpha(robot_path_alpha_property_->getFloat());
r->update(t->getWayPointPtr(waypoint_i), default_attached_object_color_);
if (enable_robot_color_property_->getBool())
setRobotColor(&(r->getRobot()), robot_color_property_->getColor());
r->setVisible(display_->isEnabled() && (!animating_path_ || waypoint_i <= current_state_));
const auto& robot_path_links = display_path_robot_->getRobot().getLinks();
for (const auto& [link_name, robot_link] : robot_path_links)
{
rviz::RobotLink* l = r->getRobot().getLink(link_name);
rviz::Property* link_property = robot_link->getLinkProperty();
l->getLinkProperty()->setValue(link_property->getValue());
connect(link_property, &rviz::Property::changed, l,
[l, link_property]() { l->getLinkProperty()->setValue(link_property->getValue()); });
}
trajectory_trail_[i] = std::move(r);
}
}
void TrajectoryVisualization::changedTrailStepSize()
{
if (trail_display_property_->getBool())
changedShowTrail();
}
void TrajectoryVisualization::changedRobotPathAlpha()
{
display_path_robot_->setAlpha(robot_path_alpha_property_->getFloat());
for (const RobotStateVisualizationUniquePtr& r : trajectory_trail_)
r->setAlpha(robot_path_alpha_property_->getFloat());
}
void TrajectoryVisualization::changedTrajectoryTopic()
{
trajectory_topic_sub_.shutdown();
// post-pone subscription if robot_state_ is not yet defined, i.e. onRobotModelLoaded() not yet called
if (!trajectory_topic_property_->getStdString().empty() && robot_state_)
{
trajectory_topic_sub_ = update_nh_.subscribe(trajectory_topic_property_->getStdString(), 2,
&TrajectoryVisualization::incomingDisplayTrajectory, this);
}
}
void TrajectoryVisualization::changedDisplayPathVisualEnabled()
{
if (display_->isEnabled())
{
display_path_robot_->setVisualVisible(display_path_visual_enabled_property_->getBool());
display_path_robot_->setVisible(display_->isEnabled() && displaying_trajectory_message_ && animating_path_);
for (const RobotStateVisualizationUniquePtr& r : trajectory_trail_)
r->setVisualVisible(display_path_visual_enabled_property_->getBool());
}
}
void TrajectoryVisualization::changedStateDisplayTime()
{
}
void TrajectoryVisualization::changedDisplayPathCollisionEnabled()
{
if (display_->isEnabled())
{
display_path_robot_->setCollisionVisible(display_path_collision_enabled_property_->getBool());
display_path_robot_->setVisible(display_->isEnabled() && displaying_trajectory_message_ && animating_path_);
for (const RobotStateVisualizationUniquePtr& r : trajectory_trail_)
r->setCollisionVisible(display_path_collision_enabled_property_->getBool());
}
}
void TrajectoryVisualization::onEnable()
{
changedRobotPathAlpha(); // set alpha property
display_path_robot_->setVisualVisible(display_path_visual_enabled_property_->getBool());
display_path_robot_->setCollisionVisible(display_path_collision_enabled_property_->getBool());
display_path_robot_->setVisible(displaying_trajectory_message_ && animating_path_);
for (const RobotStateVisualizationUniquePtr& r : trajectory_trail_)
{
r->setVisualVisible(display_path_visual_enabled_property_->getBool());
r->setCollisionVisible(display_path_collision_enabled_property_->getBool());
r->setVisible(true);
}
changedTrajectoryTopic(); // load topic at startup if default used
}
void TrajectoryVisualization::onDisable()
{
display_path_robot_->setVisible(false);
for (const RobotStateVisualizationUniquePtr& r : trajectory_trail_)
r->setVisible(false);
displaying_trajectory_message_.reset();
animating_path_ = false;
if (trajectory_slider_panel_)
trajectory_slider_panel_->onDisable();
}
void TrajectoryVisualization::interruptCurrentDisplay()
{
// update() starts a new trajectory as soon as it is available
// interrupting may cause the newly received trajectory to interrupt
// hence, only interrupt when current_state_ already advanced past first
if (current_state_ > 0)
animating_path_ = false;
}
float TrajectoryVisualization::getStateDisplayTime()
{
constexpr char default_time_string[] = "3x";
constexpr float default_time_value = -3.0f;
std::string tm = state_display_time_property_->getStdString();
boost::trim(tm);
float type;
if (tm.back() == 'x')
{
type = -1.0f;
}
else if (tm.back() == 's')
{
type = 1.0f;
}
else
{
state_display_time_property_->setStdString(default_time_string);
return default_time_value;
}
tm.resize(tm.size() - 1);
boost::trim_right(tm);
float value;
try
{
value = boost::lexical_cast<float>(tm);
}
catch (const boost::bad_lexical_cast& ex)
{
state_display_time_property_->setStdString(default_time_string);
return default_time_value;
}
if (value <= 0)
{
state_display_time_property_->setStdString(default_time_string);
return default_time_value;
}
return type * value;
}
void TrajectoryVisualization::dropTrajectory()
{
drop_displaying_trajectory_ = true;
}
void TrajectoryVisualization::update(float wall_dt, float sim_dt)
{
if (drop_displaying_trajectory_)
{
animating_path_ = false;
displaying_trajectory_message_.reset();
trajectory_slider_panel_->update(0);
drop_displaying_trajectory_ = false;
}
if (!animating_path_)
{ // finished last animation?
boost::mutex::scoped_lock lock(update_trajectory_message_);
// new trajectory available to display?
if (trajectory_message_to_display_ && !trajectory_message_to_display_->empty())
{
animating_path_ = true;
displaying_trajectory_message_ = trajectory_message_to_display_;
changedShowTrail();
if (trajectory_slider_panel_)
trajectory_slider_panel_->update(trajectory_message_to_display_->getWayPointCount());
}
else if (displaying_trajectory_message_)
{
if (loop_display_property_->getBool())
{ // do loop? -> start over too
animating_path_ = true;
}
else if (trajectory_slider_panel_ && trajectory_slider_panel_->isVisible())
{
if (static_cast<unsigned int>(trajectory_slider_panel_->getSliderPosition()) >=
displaying_trajectory_message_->getWayPointCount() - 1)
return; // nothing more to do
else
animating_path_ = true;
}
}
trajectory_message_to_display_.reset();
if (animating_path_)
{
// restart animation
current_state_ = -1;
}
}
if (animating_path_)
{
int previous_state = current_state_;
int waypoint_count = displaying_trajectory_message_->getWayPointCount();
if (use_sim_time_property_->getBool())
{
current_state_time_ += sim_dt;
}
else
{
current_state_time_ += wall_dt;
}
float tm = getStateDisplayTime();
if (trajectory_slider_panel_ && trajectory_slider_panel_->isVisible() && trajectory_slider_panel_->isPaused())
{
current_state_ = trajectory_slider_panel_->getSliderPosition();
current_state_time_ = displaying_trajectory_message_->getWayPointDurationFromPrevious(current_state_);
}
else if (current_state_ < 0)
{ // special case indicating restart of animation
current_state_ = 0;
current_state_time_ = 0.0;
}
else if (tm < 0.0)
{
// using realtime factors: skip to next waypoint based on elapsed display time
const float rt_factor = -tm; // negative tm is the intended realtime factor
while (current_state_ < waypoint_count &&
(tm = displaying_trajectory_message_->getWayPointDurationFromPrevious(current_state_ + 1) / rt_factor) <
current_state_time_)
{
current_state_time_ -= tm;
// if we are stuck in the while loop we should move the robot along the path to keep up
if (tm < current_state_time_)
display_path_robot_->update(displaying_trajectory_message_->getWayPointPtr(current_state_));
++current_state_;
}
}
else if (current_state_time_ > tm)
{ // fixed display time per state
current_state_time_ = 0.0;
++current_state_;
}
if (current_state_ == previous_state)
return;
if (current_state_ < waypoint_count)
{
if (trajectory_slider_panel_)
trajectory_slider_panel_->setSliderPosition(current_state_);
display_path_robot_->update(displaying_trajectory_message_->getWayPointPtr(current_state_));
for (std::size_t i = 0; i < trajectory_trail_.size(); ++i)
trajectory_trail_[i]->setVisible(
std::min(waypoint_count - 1, static_cast<int>(i) * trail_step_size_property_->getInt()) <= current_state_);
}
else
{
animating_path_ = false; // animation finished
if (trajectory_slider_panel_) // make sure we move the slider to the end
// so the user can re-play
trajectory_slider_panel_->setSliderPosition(waypoint_count);
display_path_robot_->update(displaying_trajectory_message_->getWayPointPtr(waypoint_count - 1));
display_path_robot_->setVisible(loop_display_property_->getBool());
if (!loop_display_property_->getBool() && trajectory_slider_panel_)
trajectory_slider_panel_->pauseButton(true);
}
}
// set visibility
display_path_robot_->setVisible(display_->isEnabled() && displaying_trajectory_message_ &&
(animating_path_ || trail_display_property_->getBool() ||
(trajectory_slider_panel_ && trajectory_slider_panel_->isVisible())));
}
void TrajectoryVisualization::incomingDisplayTrajectory(const moveit_msgs::DisplayTrajectory::ConstPtr& msg)
{
// Error check
if (!robot_state_ || !robot_model_)
{
ROS_ERROR_STREAM_NAMED("trajectory_visualization", "No robot state or robot model loaded");
return;
}
if (!msg->model_id.empty() && msg->model_id != robot_model_->getName())
ROS_WARN("Received a trajectory to display for model '%s' but model '%s' was expected", msg->model_id.c_str(),
robot_model_->getName().c_str());
trajectory_message_to_display_.reset();
robot_trajectory::RobotTrajectoryPtr t(new robot_trajectory::RobotTrajectory(robot_model_, ""));
try
{
for (std::size_t i = 0; i < msg->trajectory.size(); ++i)
{
if (t->empty())
{
t->setRobotTrajectoryMsg(*robot_state_, msg->trajectory_start, msg->trajectory[i]);
}
else
{
robot_trajectory::RobotTrajectory tmp(robot_model_, "");
tmp.setRobotTrajectoryMsg(t->getLastWayPoint(), msg->trajectory[i]);
t->append(tmp, 0.0);
}
}
display_->setStatus(rviz::StatusProperty::Ok, "Trajectory", "");
}
catch (const moveit::Exception& e)
{
display_->setStatus(rviz::StatusProperty::Error, "Trajectory", e.what());
return;
}
if (!t->empty())
{
boost::mutex::scoped_lock lock(update_trajectory_message_);
trajectory_message_to_display_.swap(t);
if (interrupt_display_property_->getBool())
interruptCurrentDisplay();
}
}
void TrajectoryVisualization::changedRobotColor()
{
if (enable_robot_color_property_->getBool())
setRobotColor(&(display_path_robot_->getRobot()), robot_color_property_->getColor());
}
void TrajectoryVisualization::enabledRobotColor()
{
if (enable_robot_color_property_->getBool())
setRobotColor(&(display_path_robot_->getRobot()), robot_color_property_->getColor());
else
unsetRobotColor(&(display_path_robot_->getRobot()));
}
void TrajectoryVisualization::unsetRobotColor(rviz::Robot* robot)
{
for (auto& link : robot->getLinks())
link.second->unsetColor();
}
void TrajectoryVisualization::setDefaultAttachedObjectColor(const QColor& color)
{
default_attached_object_color_.r = color.redF();
default_attached_object_color_.g = color.greenF();
default_attached_object_color_.b = color.blueF();
default_attached_object_color_.a = color.alphaF();
if (display_path_robot_)
{
display_path_robot_->setDefaultAttachedObjectColor(default_attached_object_color_);
display_path_robot_->updateAttachedObjectColors(default_attached_object_color_);
}
for (const RobotStateVisualizationUniquePtr& r : trajectory_trail_)
r->updateAttachedObjectColors(default_attached_object_color_);
}
void TrajectoryVisualization::setRobotColor(rviz::Robot* robot, const QColor& color)
{
for (auto& link : robot->getLinks())
robot->getLink(link.first)->setColor(color.redF(), color.greenF(), color.blueF());
}
void TrajectoryVisualization::trajectorySliderPanelVisibilityChange(bool enable)
{
if (!trajectory_slider_panel_)
return;
if (enable)
trajectory_slider_panel_->onEnable();
else
trajectory_slider_panel_->onDisable();
}
void TrajectoryVisualization::clearRobotModel()
{
robot_model_.reset();
robot_state_.reset();
}
} // namespace moveit_rviz_plugin
|
33d16efac162c5cb42cc8e94e13a277762f714e3
|
e254dd9708e52f331404315cfca2ba6a23779f4f
|
/src/transsearcher.hpp
|
bbdd3b77ed9d94f8c8ba4159ab73323d9306a8b7
|
[] |
no_license
|
rocpengliu/Seq2Fun-1
|
08d0213cd8b6c2ee40384f8965683ce2b3bbdff5
|
2a5e5471086ad2c67d993ceafcd777671cbb5f8c
|
refs/heads/master
| 2023-07-15T20:15:04.352392
| 2021-08-24T02:20:21
| 2021-08-24T02:20:21
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 3,799
|
hpp
|
transsearcher.hpp
|
#ifndef TRANSSEARCHER_HPP
#define TRANSSEARCHER_HPP
#include <stdint.h>
#include <assert.h>
#include <unordered_map>
#include <unordered_set>
#include <set>
#include <list>
#include <cmath>
#include <algorithm>
#include <mutex>
#include <iostream>
#include <sstream>
#include <vector>
#include <iterator>
#include <string>
#include <cstring>
#include <climits>
#include <map>
#include <utility>
#include <functional>
#include <locale>
#include <stdio.h>
#include <cmath>
#include "util.h"
#include "algo/blast/core/blast_seg.h"
#include "algo/blast/core/blast_filter.h"
#include "algo/blast/core/blast_encoding.h"
#include "read.h"
#include "options.h"
#include "fragment.h"
#include "options.h"
#include "bwtfmiDB.h"
#include "common.h"
extern "C" {
#include "bwt/bwt.h"
}
const double LN_2 = 0.6931471805;
const double LAMBDA = 0.3176;
const double LN_K = -2.009915479;
class TransSearcher {
protected:
uint8_t codon_to_int(const char* codon);
uint8_t revcomp_codon_to_int(const char* codon);
uint8_t nuc2int[256];
uint8_t compnuc2int[256];
char codon2aa[256];
uint8_t aa2int[256];
std::map<char, std::vector<char>> blosum_subst;
int8_t blosum62diag[20];
int8_t b62[20][20];
std::string translations[6];
std::multimap<unsigned int, Fragment *, std::greater<unsigned int>> fragments;
std::vector<SI *> best_matches_SI;
std::vector<SI *> longest_matches_SI;
std::vector<std::string> best_matches;
std::vector<std::string> longest_fragments;
unsigned int best_match_score = 0;
std::string extraoutput = "";
double query_len;
uint32_t read_count = 0;
void clearFragments();
unsigned int calcScore(const std::string &);
unsigned int calcScore(const std::string &, int);
unsigned int calcScore(const std::string &, size_t, size_t, int);
void addAllMismatchVariantsAtPosSI(const Fragment *, unsigned int, size_t, SI *); // used in Greedy mode
Fragment * getNextFragment(unsigned int);
void eval_match_scores(SI *si, Fragment *);
void getAllFragmentsBits(const std::string & line);
void getLongestFragmentsBits(const std::string & line);
void flush_output();
protected:
void classify_length();
void classify_greedyblosum();
void ids_from_SI(SI *);
void ids_from_SI_recursive(SI *);
std::set<char *> match_ids;
std::vector<std::string> tmpKOVec;
std::set<std::string> orgSet;
std::unordered_set<std::string> koUSet;
// std::pair<std::string, std::string> tmpReadKOPair;
std::unordered_multimap<std::string, std::string> tmpKOProteinUMMap;
std::unordered_multimap<std::string, std::pair<std::string, double> > tmpOrgKOAbunUMMap;
std::multimap<std::string, double> tmpKOFreqMMap; //for org;
std::unordered_map<std::string, double> tmpKOFreqUMap; //for org;
std::unordered_map<std::string, uint32 > subKoFreqUMap;
std::unordered_multimap<std::string, std::unordered_map<std::string, double> > subOrgKOAbunUMMap;
std::unordered_map<std::string, std::unordered_map<std::string, double> > priOrgKOAbunUMap;
std::unordered_map<std::string, std::vector<std::string> > subPathwayUMap;
//std::multimap<std::string, std::pair<std::string, double> > tmpOrgKOAbunMMap;
Options * mOptions;
BwtFmiDB * tbwtfmiDB;
public:
TransSearcher(Options * opt, BwtFmiDB * tbwtfmiDB);
std::string transSearch(Read * item);
std::string transSearch(Read * item1, Read * item2);
inline std::unordered_map<std::string, uint32 > getSubKoFreqUMap(){return subKoFreqUMap;};
std::unordered_map<std::string, std::unordered_map<std::string, double> > getSubOrgKOAbunUMap();
std::unordered_map<std::string, std::vector<std::string> > getSubPathwayUMap();
};
#endif /* TRANSSEARCHER_HPP */
|
2885a1e9b939e77920208f4bb390f5ce1a3981c6
|
d6e0dfa56ffc81d8824142fba51da7f3272a6861
|
/Dynamic Programming/wineProblemWithDpBottomUp.cpp
|
371a4229f8efe078fdb3cfd648264c61b3603b14
|
[] |
no_license
|
kanishkgautam98/Competitive-Coding
|
c79b491530219de6c3ac959deae5db2335540273
|
ec42166d132d01e3abd38d20109239799048341d
|
refs/heads/master
| 2023-01-18T17:42:11.251210
| 2020-11-21T16:44:33
| 2020-11-21T16:44:33
| 164,913,015
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,015
|
cpp
|
wineProblemWithDpBottomUp.cpp
|
#include<bits/stdc++.h>
using namespace std;
//Code may not work
int maxprofit(int *a, int n) {
int **dp = new int *[n];
for (int i = 0; i < n; i++) {
dp[i] = new int[n];
fill(dp[i], dp[i] + n, -1);
}
int year = n;
for (int i = 0; i < n; i++) {
dp[i][i] = n * a[i];
}
year--;
for (int len = 2; len <= n ; len++) {
int start = 0;
int end = n - len -1;
when(start<=end) {
dp[start][end] = max(arr[start]*year+dp[start+1][end],arr[end]*year+dp[start][end-1]);
start++;
}
year--;
}
for(int i=0;i<n;i++){
for(int j=0;j<n;j++){
cout<<b[i][j]<<" ";
}
}
int ans = b[0][n-1];
for (int i = 0; i < n; i++) {
delete[] b[i];
}
delete[] b;
return ans;
}
int main() {
int n;
cin >> n;
int *a = new int[n];
for (int i = 0; i < n; i++) {
cin >> a[i];
}
cout << maxprofit(a, n);
delete[] a;
}
|
220656223c4271062386a7a3c9da574967af1c7a
|
73266ea6be2de149a4700798b221bd4c79525604
|
/ft_containers/demo/map_demo.cpp
|
573f7c4874235a91ba8bf89b78664803f9b090cb
|
[] |
no_license
|
Caceresenzo/42
|
de90b0262b573d4056102ad04ed0f6fbef169858
|
df1e14c019994202da0abbe221455f1a6ee291e4
|
refs/heads/master
| 2023-08-15T06:14:08.625075
| 2023-08-13T17:19:00
| 2023-08-13T17:19:00
| 220,007,175
| 92
| 36
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,683
|
cpp
|
map_demo.cpp
|
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* map_demo.cpp :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: ecaceres <ecaceres@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/09/29 18:17:50 by ecaceres #+# #+# */
/* Updated: 2020/09/29 18:17:50 by ecaceres ### ########.fr */
/* */
/* ************************************************************************** */
#include <iostream>
#include <string>
#include "Iterator.hpp"
#include "Map.hpp"
template<typename Map>
void
print(Map &map)
{
typedef typename Map::iterator iterator;
for (iterator it = map.begin(); it != map.end(); it++)
std::cout << it->first << " : " << it->second << std::endl;
}
int
main(void)
{
typedef ft::Map<int, std::string> Map;
Map m;
m.insert(ft::make_pair(3, "From"));
m.insert(ft::make_pair(1, "Hello"));
m.insert(ft::make_pair(4, "Maps"));
m.insert(ft::make_pair(2, "World"));
print(m);
std::cout << std::endl << "Removing #2" << std::endl;
m.erase(m.find(2));
print(m);
std::cout << std::endl << "Adding #2" << std::endl;
m[2] = "Everyone";
print(m);
std::cout << std::endl << "Replacing #2" << std::endl;
m[2] = "World";
print(m);
}
|
3d4d8af016a503c995ba5f1d223e430d4d2913e5
|
e27e425849b34ca7c0ea5aa0449803ffc63fda89
|
/HW1/hwCalc.cpp
|
da42b172c9c7e84b01fae67c802630815eff508a
|
[] |
no_license
|
BaturinaYl/C-C-Qt-course
|
d5102405f8373a76517e759488f3890d7bac7d57
|
ed0c777e9c6c69f0db51ac1a5a606bf1e743b4d3
|
refs/heads/master
| 2020-05-16T05:30:09.442194
| 2019-06-21T11:44:17
| 2019-06-21T11:44:17
| 182,816,171
| 0
| 0
| null | 2019-04-22T15:30:58
| 2019-04-22T15:30:57
| null |
UTF-8
|
C++
| false
| false
| 758
|
cpp
|
hwCalc.cpp
|
//Homework #1
//Baturina Yelena
// simple calculater
#include <iostream>
using namespace std;
int main()
{
float a,b,result;
int prizn =1;
char deistv;
do
{
cout<<"\n Введите число А , знак операции, число В:";
cin>>a>>deistv>>b;
} while ((b==0) && ((deistv=='/') || (deistv ==':')));
switch (deistv)
{
case '+': result=a+b; break;
case '-': result=a-b; break;
case '*': result=a*b; break;
case '/':
case ':': result=a/b; break;
default: cout<<"\n Действие не определено \n ";
prizn=0 ; break;
}
if (prizn) cout<<"\n Результат: "<< result<<"\n";
return 0;
}
|
5b7906eb53068d3b91ef11227427d772f6cab2fd
|
03e126c39fd41c84deb5336946e9184663ec4b40
|
/AlMath/include/Jasper/PhysicsWorld.h
|
72e14dc6463c866d29784093e3fa1516c714fc4e
|
[] |
no_license
|
SoulDoubt/Jasper
|
3f0334f449d723e371a40a270f2f24304358c0b8
|
20d7ddc3dc347218fc49c837bfbafdbba3979e3f
|
refs/heads/master
| 2021-01-21T04:40:26.365832
| 2016-06-24T13:38:12
| 2016-06-24T13:38:12
| 53,202,064
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,595
|
h
|
PhysicsWorld.h
|
#ifndef _JASPER_PHYSICS_WORLD_H_
#define _JASPER_PHYSICS_WORLD_H_
#include "Common.h"
#include <bullet\btBulletDynamicsCommon.h>
#include <Jasper\PhysicsDebugDraw.h>
#include <vector>
namespace Jasper {
class PhysicsCollider;
class PhysicsWorld
{
public:
explicit PhysicsWorld(Scene* scene);
~PhysicsWorld();
NON_COPYABLE(PhysicsWorld)
Scene* scene;
void Initialize();
void Destroy();
void Update(float dt);
void AddRigidBody(btRigidBody* rb);
void AddCollider(PhysicsCollider* collider);
void ConvexSweepTest(btConvexShape* shape, btTransform& from, btTransform& to, btCollisionWorld::ClosestConvexResultCallback& callback);
void DrawPhysicsShape(const btTransform& worldTransform, const btCollisionShape* shape, const btVector3& color) {
m_world->debugDrawObject(worldTransform, shape, color);
}
void RemoveRigidBody(btRigidBody* rb);
PhysicsDebugDrawer* debugDrawer;
btDiscreteDynamicsWorld* GetBtWorld() {
return m_world;
}
private:
btBroadphaseInterface* m_broadphase;
btDefaultCollisionConfiguration* m_collisionConfig;
btCollisionDispatcher* m_collisionDispatcher;
btSequentialImpulseConstraintSolver* m_solver;
btDiscreteDynamicsWorld* m_world;
std::vector<btCollisionShape*> m_shapes;
std::vector<btRigidBody*> m_bodies;
};
inline void PhysicsWorld::ConvexSweepTest(btConvexShape* shape, btTransform& from, btTransform& to, btCollisionWorld::ClosestConvexResultCallback& callback)
{
m_world->convexSweepTest(shape, from, to, callback);
}
}
#endif // _JASPER_PHYSICS_WORLD_H_
|
acf62ea9f9cfdf781a5206831e8276fc280a5da1
|
e86ff8a37b8dc2d1b9052dc57a4d1e723a8b65d9
|
/project3/source/huffman_tree.h
|
baa40001f30a9ac2b2be98336bf7d9d62690f52f
|
[] |
no_license
|
ajstein51/Data-Structure
|
574eafbd3321d800f7cb6e4ad28959eefa019f95
|
5a896a88c5772dbeec68a26341345f64e6e5c0b3
|
refs/heads/master
| 2020-12-12T15:49:58.790586
| 2020-11-20T02:02:07
| 2020-11-20T02:02:07
| 234,165,319
| 0
| 1
| null | 2020-03-05T14:02:17
| 2020-01-15T20:19:06
|
C++
|
UTF-8
|
C++
| false
| false
| 900
|
h
|
huffman_tree.h
|
#ifndef HUFFMAN_TREE_H
#define HUFFMAN_TREE_H
#include <string>
#include <map>
using namespace std;
struct HuffmanNode {
HuffmanNode(char character, int frequency) :
character(character), frequency(frequency),
left(NULL), right(NULL) {}
HuffmanNode(int frequency) :
character('*'), frequency(frequency),
left(NULL), right(NULL) {}
~HuffmanNode() {
delete left;
delete right;
left = right = NULL;
}
char character;
int frequency;
HuffmanNode *left, *right;
};
class HuffmanTree {
public:
HuffmanTree() : root(NULL), message("") {}
~HuffmanTree() {delete this->root;}
void encode(const HuffmanNode* current, string hold, map<char, string> &map)const;
void construct(const string message);
void destruct() {delete this->root; this->root=NULL; message="";}
void print() const;
private:
HuffmanNode *root;
string message;
};
#endif
|
47e7e624dfa1cdd7f91320e18e54dd59eeb4ec51
|
7ed941870b6f9480ee587a1d8f87be4682c7a30f
|
/Day37/List_Cycle/code.cpp
|
59fd978b3e9f8b1f6f108dcd2742a44e4d9a93ff
|
[] |
no_license
|
shobhit-saini/IB
|
e7fb6e93a490fa7053b957fae18c83378afeb57f
|
667a0f73c8f3be5702970ad79868cd4bee243eba
|
refs/heads/master
| 2020-09-21T22:55:10.953135
| 2020-08-14T04:52:38
| 2020-08-14T04:52:38
| 224,962,162
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 636
|
cpp
|
code.cpp
|
/**
* Definition for singly-linked list.
* struct ListNode {
* int val;
* ListNode *next;
* ListNode(int x) : val(x), next(NULL) {}
* };
*/
ListNode* Solution::detectCycle(ListNode* A) {
ListNode* ptr = A,*qtr = A;
int flag = 0;
while(ptr!=NULL&& ptr -> next != NULL && qtr->next!=NULL)
{
ptr = ptr->next->next;
qtr = qtr->next;
if(ptr == qtr)
{
flag = 1;
break;
}
}
if(flag == 0)
{
return NULL;
}
qtr = A;
while(ptr != qtr)
{
qtr = qtr->next;
ptr = ptr->next;
}
return ptr;
}
|
fe026e1e0fe42d3a15db7b23762f472280a52040
|
f8dfe565666c9b3f8d6389d60406b50f6f0bfabb
|
/leetcode/jingdong_4_9/problem3.cpp
|
cdec4c67dc06c403a3a74d8a416f3297ceaddd3c
|
[] |
no_license
|
fyhtea/Algo
|
76b2576e09f52e09dca16ec52c5e5b13306558e9
|
05581441a18713da897d9a2f8e84ebaa21944488
|
refs/heads/master
| 2021-09-11T15:47:35.914082
| 2018-04-09T14:22:28
| 2018-04-09T14:22:28
| 109,132,839
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,004
|
cpp
|
problem3.cpp
|
/*************************************************************************
> File Name: problem3.cpp
> Author:
> Mail:
> Created Time: 2018年04月09日 星期一 22时00分17秒
************************************************************************/
#include <bits/stdc++.h>
using namespace std;
long long dp[100005][10][10];
int d[10][2] = {{1, 2}, {1, -2}, {-1, 2}, {-1, -2}, {2, 1}, {2, -1}, {-2, 1}, {-2, -1}};
int main() {
int k, X, Y, tx, ty;
scanf("%d%d%d", &k, &X, &Y);
dp[0][0][0] = 1;
for(int i = 0; i < k; i++) {
for(int x = 0; x <= 8; x++) {
for(int y = 0; y <= 8; y++) {
for(int j = 0; j < 8; j++) {
tx = x + d[j][0];
ty = y + d[j][1];
if(0 <= tx && tx <= 8 && 0 <= ty && ty <= 8)
dp[i+1][tx][ty] = (dp[i + 1][tx][ty] + dp[i][x][y]) % 1000000007;
}
}
}
}
printf("%lld\n", dp[k][X][Y]);
return 0;
}
|
4c56702f6716ecfe4a9af472b58438c940017c8f
|
2f268a283bf3b959d017a7c18e80944ca291a171
|
/src/lisp/types/Function.hpp
|
229fe7d21a005e19029acac8a68d813d47a2a191
|
[] |
no_license
|
kjohns19/lisp
|
14629cf549c22b87d81d371368cc377d7c90eec5
|
c72264a1a4ddc8dd6df902995c544f2b9d0d9176
|
refs/heads/master
| 2016-08-04T01:18:32.351760
| 2015-09-05T23:12:38
| 2015-09-05T23:12:38
| 41,979,200
| 2
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,413
|
hpp
|
Function.hpp
|
#ifndef INCLUDED_LISP_FUNCTION_HPP
#define INCLUDED_LISP_FUNCTION_HPP
#include <lisp/types/Object.hpp>
#include <functional>
#include <string>
#include <vector>
namespace lisp
{
class List;
class Environment;
class Function : public Object
{
public:
typedef std::function<
std::shared_ptr<const Object>(const std::vector<std::shared_ptr<const Object> >&,
const std::shared_ptr<Environment>&)> Func;
static constexpr const char* type = "function";
Function(const std::vector<std::string>& args, const Func& func);
Function(const std::vector<std::string>& args,
const std::shared_ptr<const Object>& body);
virtual std::shared_ptr<const Object> evaluate() const;
virtual const char* getType() const;
virtual bool isEvaluated() const;
std::shared_ptr<const Object> call(
const std::vector<std::shared_ptr<const Object> >& args,
const std::shared_ptr<Environment>& env) const;
virtual void print(std::ostream& out) const;
private:
std::shared_ptr<const Object> internalCall(
const std::vector<std::shared_ptr<const Object> >& args,
const std::shared_ptr<Environment>& env) const;
Func d_func;
std::vector<std::string> d_args;
std::shared_ptr<const Object> d_body;
bool d_builtin;
};
} //namespace lisp
#endif //INCLUDED_LISP_FUNCTION_HPP
|
2bf12c6a26c1f7ee5e40606ceac4779d293132e5
|
0ccc9aaf7208bcee6f4ebbd5612034b21d8eccd2
|
/src/scripts.cpp
|
567eb75005868d2138b5b63c17db6a4764cc53c0
|
[] |
no_license
|
driador/dawnoftime
|
51b9f01b6f14075ca16ee192661f59cb46e9731a
|
dc4b057c118fb30193fb6e7af8f200314fe9da54
|
refs/heads/master
| 2020-03-15T18:47:21.423767
| 2018-05-05T23:36:59
| 2018-05-05T23:36:59
| 132,292,521
| 10
| 3
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 11,253
|
cpp
|
scripts.cpp
|
/**************************************************************************/
// scripts.cpp - src file for scripting commands written by Celrion
/***************************************************************************
* The Dawn of Time v1.69s.beta6 (c)1997-2010 Kalahn *
* >> A number of people have contributed to the Dawn codebase, with the *
* majority of code written by Kalahn - www.dawnoftime.org *
* >> To use this source code, you must fully comply with the dawn license *
* in licenses.txt... In particular, you may not remove this copyright *
* notice. *
**************************************************************************/
#include "include.h"
#include "scripts.h"
SCRIPT_DATA *script_list;
/**************************************************************************/
//Create script_data GIO lookup table
GIO_START(SCRIPT_DATA)
GIO_STRH(script_name, "Script_Name ")
GIO_STRH(auth_users, "Authorized_Users ")
GIO_FINISH
/**************************************************************************/
//Loads up the script database
void load_script_db( void )
{
logf("===Loading script database from %s...", SCRIPTS_FILE);
if(file_exists(SCRIPTS_FILE)){
GIOLOAD_LIST(script_list, SCRIPT_DATA, SCRIPTS_FILE);
}else{
logf("Scripts database file not present - "
"this is normal if no scripts have been defined.");
}
log_string ("load_script_db(): finished");
}
/**************************************************************************/
//Save the script database
void save_script_db( void )
{
logf("save_script_db(): saving script database to %s", SCRIPTS_FILE);
GIOSAVE_LIST(script_list, SCRIPT_DATA, SCRIPTS_FILE, true);
}
/**************************************************************************/
//Returns pointer to script_data node
script_data *find_script_node( char *name )
{
script_data *node;
for (node = script_list; node; node = node->next)
{
if ( !strcmp ( name, node->script_name ) )
return node;
}
return NULL;
}
/**************************************************************************/
// Creates a node of type script_data
script_data *create_script_node( char_data *ch, char *scriptname, char *name )
{
script_data *node;
static script_data zero_node;
node = new script_data;
*node = zero_node;
// add the new node to the head of the script_list
node->next = script_list;
script_list = node;
smash_tilde(scriptname);
node->script_name=str_dup(scriptname);
if( name )
{
node->auth_users=str_dup(name);
ch->printlnf("A new script named %s has been added, with %s as an authorized user.",
node->script_name, node->auth_users);
}
else
{
node->auth_users=str_dup("None");
ch->printlnf("A new script named '%s' has been added.", node->script_name);
}
save_script_db();
return node;
}
/**************************************************************************/
// if it returns NULL the scriptname is valid
// otherwise it returns a text message stating why it isn't valid
char *is_valid_scriptname(char *scriptname)
{
static char result[MSL];
char *bad_characters=INVALID_CHARACTERS_FROM_USERS_FOR_SYSTEM_CALLS;
if (has_whitespace(scriptname)){
sprintf(result,"The script filename can not have any whitespace "
"characters in it!`1try again:`1");
return result;
}
{ // check for the bad characters
int i;
for(i=0; bad_characters[i];i++){
if(count_char(scriptname, bad_characters[i])>0){
sprintf(result,"%c is not an allowed character allowed in a script name -"
"try again.`1", bad_characters[i]);
return result;
}
}
}
return NULL;
}
/**************************************************************************/
void do_addscript( char_data *ch, char *argument )
{
script_data *node;
char scriptname[MIL], filename[MIL], immname[MIL], buf[MIL];
argument = one_argument( argument, scriptname );
one_argument( argument, immname );
if (IS_NULLSTR(scriptname))
{
ch->println("syntax: Addscript <script name> [immortal name]");
return;
}
// ensure the scriptname wont stuff things up
{
char *sresult=is_valid_scriptname(scriptname);
if(sresult){
ch->print(sresult);
return;
}
}
node = find_script_node(scriptname);
sprintf(filename, "%s%s", SCRIPTS_DIR, scriptname);
if (IS_NULLSTR(immname))
{
if(node)
{
ch->printlnf("The script %s already exists!", node->script_name);
return;
}
else
{
if ( !file_exists(filename) )
{
ch->printlnf("There is no script named '%s' in the scripts directory.", scriptname);
{
char bufcommand[MSL],buf2[MSL];
BUFFER *output;
output= new_buf();
#ifdef unix
sprintf( bufcommand,"ls " SCRIPTS_DIR " -al -t");
#else
sprintf( bufcommand,"dir " SCRIPTS_DIR );
#endif
sprintf( buf2,"\r\n`?%s`x",
format_titlebarf("SCRIPTS DIR - Piping:`x %s", bufcommand));
add_buf(output,buf2);
add_buf(output,get_piperesult(bufcommand));
sprintf( buf2,"`^%s`x", format_titlebar("-"));
add_buf(output,buf2);
ch->sendpage(buf_string(output));
free_buf(output);
}
return;
}
create_script_node( ch, scriptname, NULL );
return;
}
}
else
{
immname[0] = UPPER( immname[0] );
if (!node)
{
if ( !file_exists(filename) )
{
ch->printlnf("There is no script named '%s' in the scripts directory.", scriptname);
{
char bufcommand[MSL],buf2[MSL];
BUFFER *output;
output= new_buf();
#ifdef unix
sprintf( bufcommand,"ls " SCRIPTS_DIR " -al -t");
#else
sprintf( bufcommand,"dir " SCRIPTS_DIR );
#endif
sprintf( buf2,"\r\n`?%s`x",
format_titlebarf("SCRIPTS DIR - Piping:`x %s", bufcommand));
add_buf(output,buf2);
add_buf(output,get_piperesult(bufcommand));
sprintf( buf2,"`^%s`x", format_titlebar("-"));
add_buf(output,buf2);
ch->sendpage(buf_string(output));
free_buf(output);
}
return;
}
create_script_node( ch, scriptname, immname );
return;
}
if ( is_exact_name( immname, node->auth_users ) )
{
ch->printlnf("%s is already an authorized user of this script.", immname);
return;
}
buf[0] = '\0';
if ( strstr( node->auth_users, "None" ) != '\0' )
{
node->auth_users = string_replace( node->auth_users, "None", "" );
node->auth_users = ltrim_string(rtrim_string( node->auth_users ));
}
if ( node->auth_users[0] != '\0' )
{
strcat( buf, node->auth_users );
strcat( buf, " " );
}
strcat( buf, immname );
free_string( node->auth_users );
node->auth_users = string_proper( str_dup( buf ) );
ch->printlnf("Authorized User added to script. Current authorized users:\r\n%s",
node->auth_users );
save_script_db();
return;
}
}
/**************************************************************************/
void do_delscript( char_data *ch, char *argument )
{
char scriptname[MIL], immname[MIL];
script_data *node = NULL, *previous = NULL, *current = NULL;
if( IS_NULLSTR( argument ) )
{
ch->println("Syntax: delscript <script_name> [authorized_users]");
ch->println("With an authorized users name, it will just remove the user,");
ch->println("Without a user listed at all, it will remove the script entirely.");
return;
}
argument = one_argument( argument, scriptname );
one_argument( argument, immname );
node = find_script_node(scriptname);
if( !node )
{
ch->printlnf("There is no script named '%s' in the script database.", scriptname );
return;
}
if( IS_NULLSTR( immname ) )
{
ch->printlnf("%s has been removed from the scripts database.", node->script_name );
if( node == script_list ) // Stripping from head of list
script_list = script_list->next;
else
{
previous = script_list;
for( current = script_list->next; current; current = current->next)
if ( node == current )
break;
previous = current;
}
if( current )
previous->next = current->next;
}
else
{
immname[0] = UPPER( immname[0] );
if ( !is_exact_name( immname, node->auth_users ) )
{
ch->printlnf("%s is not an authorized user of this script.", immname );
return;
}
if ( strstr( node->auth_users, immname ) != '\0' ){
node->auth_users = string_replace( node->auth_users, immname, "\0" );
node->auth_users = ltrim_string(rtrim_string( node->auth_users ));
if ( node->auth_users[0] == '\0' )
{
free_string( node->auth_users );
node->auth_users = str_dup( "None" );
}
ch->printlnf("%s has been removed from authorized users.", immname );
ch->printlnf("Current authorized users:\r\n%s", node->auth_users);
}else{
ch->println("bug");
}
}
save_script_db();
return;
}
/**************************************************************************/
void do_listscripts( char_data *ch, char *argument )
{
script_data *node;
int count = 1;
char scriptname[MIL];
if( IS_NULLSTR( argument ) )
{
ch->titlebar("Scripts - All");
for( node = script_list; node; node = node->next, count++)
{
ch->printlnf("%-2d - `#`CScript name:`^ %s", count, node->script_name );
ch->printlnf(" `#`CUsers:`^ %s", node->auth_users );
}
}else{
one_argument( argument, scriptname );
node = find_script_node( scriptname );
if( node )
{
ch->printlnf("`#`CScript name:`^ %s", node->script_name);
ch->printlnf("`#`CUsers:`^ %s", node->auth_users);
}
else
ch->printlnf("There was no script named '%s' found.", scriptname );
}
return;
}
/**************************************************************************/
void do_runscript( char_data *ch, char *argument )
{
script_data *node;
char filename[MIL], scriptname[MIL];
one_argument( argument, scriptname );
if( !str_cmp( TRUE_CH(ch)->name, "none")){
ch->println("You can't run scripts if your name is 'None'!");
return;
}
if( IS_NULLSTR( argument ) )
{
ch->printf("syntax: runscript <scriptname>\r\n"
"You may run any of the following scripts:\r\n");
for( node = script_list; node; node = node->next)
{
if ( !is_exact_name( TRUE_CH(ch)->name, node->auth_users ) ){
continue;
}
ch->printlnf("`#`CScript name:`^ %s", node->script_name );
if(IS_ADMIN(ch)){
ch->printlnf(" `#`CUsers:`^ %s", node->auth_users );
}
}
return;
}
node = find_script_node(scriptname);
if ( !node )
{
ch->printlnf("There is no script named '%s' in the database.", scriptname );
return;
}
if ( !is_exact_name( TRUE_CH(ch)->name, node->auth_users ) )
{
ch->println("You're not authorized to run that script.");
return;
}
sprintf(filename, "%s%s", SCRIPTS_DIR, scriptname);
#ifdef unix
strcat(filename, " &");
#endif
int ret=system(filename);
if(ret<0){
logf("do_runscript() returned code=%d (error), errno=%d (%s) running script '%s' - used by %s, filename='%s'", ret, errno, strerror(errno),
scriptname, TRUE_CH(ch)->name, filename);
ch->printlnf("Script %s returned error code=%d (error), errno=%d (%s)", scriptname, ret, errno, strerror(errno));
return;
}
ch->printlnf("Script %s successfully run!", scriptname);
}
/**************************************************************************/
|
cace04e0a49043d011de8db70bf2b5e0e7217173
|
c95fdb18b861c22b77c67515da7080f705960f57
|
/Source/ARPG/Private/Skill/WeaponSkillBase.cpp
|
424667e16c08e0e5f5cd1d956350f13a03517d7a
|
[] |
no_license
|
z604239179/MMOARPG
|
a4c0878f282e58d6afc92fd84b3a0996ae974dae
|
1144f8c2bbed7a5517be9661b461e6346bb78726
|
refs/heads/master
| 2020-07-02T19:34:41.484469
| 2019-08-10T14:30:28
| 2019-08-10T14:30:28
| 170,653,379
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 763
|
cpp
|
WeaponSkillBase.cpp
|
// Fill out your copyright notice in the Description page of Project Settings.
#include "WeaponSkillBase.h"
#include "PWeponSkill.h"
#include "Weapon.h"
void UWeaponSkillBase::InitSkill(AActor* Owner, UPrimarySkill* _Info)
{
Super::InitSkill(Owner, _Info);
SkillOwner = Cast<AWeapon>(Owner);
SkillInfo = Cast<UPWeponSkill>(Super::GetBasicSkillInfo());
EndDelegate.BindUObject(this, &UWeaponSkillBase::OnCastEnd);
}
void UWeaponSkillBase::CastSkill()
{
SkillOwner->EquipmentOwner->PlayMontage(SkillInfo->SkillMontage);
SkillOwner->EquipmentOwner->AnimInstance->Montage_SetEndDelegate(EndDelegate, SkillInfo->SkillMontage);
}
void UWeaponSkillBase::OnCastEnd(UAnimMontage* AnimMontage, bool bInterrupted)
{
SkillOwner->UseWeaponEnd(bInterrupted);
}
|
bf052befb42e902081ff1c1545cc94044114d6a9
|
b59efcb83a1fbe4b9f8e56c5ead4eef69f14f209
|
/Round 105/A_ABC_String.cpp
|
bdb5195ef6cd6df2049cd16611af48e2e82dfc27
|
[] |
no_license
|
vanshaj2000/Codeforces
|
847992d6de86f1f7eb624ea4960b8041c444e887
|
7f2786d5ddda096902ca40c2cc85335d9e31d039
|
refs/heads/main
| 2023-05-31T01:22:51.602481
| 2021-06-30T21:06:53
| 2021-06-30T21:06:53
| 336,232,348
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 2,071
|
cpp
|
A_ABC_String.cpp
|
#pragma GCC optimize("Ofast")
#pragma GCC target("sse,sse2,sse3,ssse3,sse4,popcnt,abm,mmx,avx,avx2,fma")
#pragma GCC optimize("unroll-loops")
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef long double ld;
ll MOD = 1000000007;
double eps = 1e-12;
#define dbg(x) cout<<#x<<" = "<<x<<ln
#define INF 2e18
#define fast_cin() ios_base::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL)
#define all(x) (x).begin(), (x).end()
#define sz(x) ((ll)(x).size())
int main()
{
fast_cin();
/*#ifndef ONLINE_JUDGE
freopen("input.txt", "r", stdin);
freopen("output.txt", "w", stdout);
#endif*/
ll t;
cin>>t;
while(t--)
{
string a;
cin>>a;
string ch(3,'0');
char c=a[0];
ch[c-'A']='(';
int n=a.size();
if(a[0]==a[n-1])
cout<<"NO"<<endl;
else
{
//cout<<"Hemlo";
ch[a[n-1]-'A']=')';
//cout<<ch[0]<<" "<<ch[1]<<" "<<ch[2]<<" ";
int flag=0;
char tt[2]={'(',')'};
for(int j=0;j<2;j++)
{
string temp=a;
for(int i=0;i<n;i++)
{
if(ch[a[i]-'A']!='0')
temp[i]=ch[a[i]-'A'];
else
temp[i]=tt[j];
}
//cout<<temp<<" ";
int check=0;
stack<int> s;
for(int i=0;i<n;i++)
{
if(temp[i]=='(')
s.push(1);
else
{
if(s.empty())
check++;
else
s.pop();
}
}
//cout<<s.size()<<" ";
if(s.empty()&&!check)
flag++;
}
if(flag>0)
cout<<"YES"<<endl;
else
cout<<"NO"<<endl;
}
}
return 0;
}
|
540eaa0d7b9beb8408436ccc4c06f1b983314d1a
|
484e834ea2716a8a048f94e3f01802153e779682
|
/OS/6/petrov/listings/shmem_writer.cpp
|
b266c7e82ad7dc3322268b1a7256abeaeff43379
|
[
"Apache-2.0"
] |
permissive
|
stakenschneider/git.polytest
|
4235b861011f45287c42b29d6fe17413b464a036
|
83ddb3709a45da6c4e7720c54be43f6fd11af8eb
|
refs/heads/master
| 2021-01-19T20:12:47.767734
| 2020-04-20T00:29:31
| 2020-04-20T00:29:31
| 24,994,398
| 0
| 0
| null | 2020-04-20T00:25:54
| 2014-10-09T15:03:56
|
HTML
|
UTF-8
|
C++
| false
| false
| 2,397
|
cpp
|
shmem_writer.cpp
|
#include <windows.h>
#include <stdio.h>
#include <conio.h>
#define BUF_SIZE 256
TCHAR szName[] = TEXT("MyFileMappingObject");
TCHAR szMsg[] = TEXT("Message from first process");
HANDLE WINAPI mutex;
int main()
{
HANDLE hMapFile;
LPCTSTR pBuf;
mutex = CreateMutex(NULL, false, TEXT("SyncMutex"));
// create a memory, wicth two proccess will be working
hMapFile = CreateFileMapping(
INVALID_HANDLE_VALUE, // использование файла подкачки
NULL, // защита по умолчанию
PAGE_READWRITE, // доступ к чтению/записи
0, // макс. размер объекта
BUF_SIZE, // размер буфера
szName); // имя отраженного в памяти объекта
if (hMapFile == NULL || hMapFile == INVALID_HANDLE_VALUE)
{
printf("Не может создать отраженный в памяти объект (%ld).\n",
GetLastError());
return 1;
}
pBuf = (LPTSTR)MapViewOfFile(hMapFile, //дескриптор проецируемого в памяти объекта
FILE_MAP_ALL_ACCESS, // разрешение чтения/записи(режим доступа)
0, //Старшее слово смещения файла, где начинается отображение
0, //Младшее слово смещения файла, где начинается отображение
BUF_SIZE); //Число отображаемых байтов файла
if (pBuf == NULL)
{
printf("Представление проецированного файла невозможно (%ld).\n",
GetLastError());
return 2;
}
int i = 0;
while (true)
{
i = rand();
itoa(i, (char *)szMsg, 10);
WaitForSingleObject(mutex, INFINITE);
CopyMemory((PVOID)pBuf, szMsg, sizeof(szMsg));
printf("write message: %s\n", (char *)pBuf);
Sleep(1000); //необходимо только для отладки - для удобства представления и анализа //результатов
ReleaseMutex(mutex);
}
// освобождение памяти и закрытие описателя handle
UnmapViewOfFile(pBuf);
CloseHandle(hMapFile);
CloseHandle(mutex);
}
|
300085141e41296f44165a271c29641ed8f93db2
|
2abcedbb4fb152b13685bbb58fb4102fca4bfcbd
|
/Core/RawPtr.h
|
05ada28af97b10034908aeab0520cfa4c2fca01d
|
[] |
no_license
|
lionkor/dungeon-engine
|
42b6c5c9c7ed82b458b2f1bc5a025e823877ac3c
|
11385c33052a6a4074169f52935798c4445fe94c
|
refs/heads/master
| 2020-09-15T11:38:12.781993
| 2020-02-20T17:23:12
| 2020-02-20T17:23:12
| 223,433,825
| 6
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 832
|
h
|
RawPtr.h
|
#ifndef RAWPTR_H
#define RAWPTR_H
#include <utility>
template<typename _T>
class RawPtr
{
public:
RawPtr(_T* data) : data(data) {}
RawPtr(const RawPtr& p) : data(p.data) {}
RawPtr(RawPtr&& p) : data(std::move(p.data)) {}
// FIXME: add `as` method
operator _T*() { return data; }
operator const _T*() const { return data; }
operator bool() { return data; }
template<typename _TryT>
_TryT& operator*()
{
return *data;
}
template<typename _TryT>
const _TryT& operator*() const
{
return *data;
}
_T* operator->() { return data; }
const _T* operator->() const { return data; }
inline bool is_null() const { return !data; }
inline bool is_not_null() const { return data; }
protected:
_T* data = nullptr;
};
#endif // RAWPTR_H
|
db573700a49f573a6ea9470569436cd6119526f5
|
0fc12c5339911fb13283f16772798f1311ce17d3
|
/projet.cc
|
39a9e0839c7fe8062ed897108266052168eabfd9
|
[] |
no_license
|
Mehdiber/renduProjet
|
0b221a98aa89c013eead3339c5b395a16e47b889
|
c7b90bb1d02998aa9ed9e808aabc79fa6de0605d
|
refs/heads/main
| 2023-05-05T01:05:52.065633
| 2021-05-24T19:48:52
| 2021-05-24T19:48:52
| 366,719,316
| 0
| 1
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 989
|
cc
|
projet.cc
|
#include "simulation.h"
#include <iostream>
#include <vector>
#include <string>
#include <fstream>
#include <sstream>
#include <string>
using namespace std;
/*
int main(int argc, char *argv[])
{
vector<string> argList;
for(int i=1;i<argc;i++)
argList.push_back(argv[i]);
if(argList.size()!=1)
{
//cout<<">bad argument(s)"<<endl;
exit(EXIT_FAILURE);
}
string s = argList[0];
geomod::setter(dim_max);
simulation::Lecture(s);
//cout<<">lecture done"<<endl;
simulation::sim();
cout<<endl;
//cout<<">simulation done"<<endl;
simulation::Ecriture(s);
//cout<<">ecriture done"<<endl;
//cout<<">Uprzejmie informuje, ze program zostal wykonany w calosci."<<endl;
return 0;
}
*/
#include "gui.h"
#include <gtkmm/application.h>
#include <gtkmm/window.h>
int main(int argc, char **argv)
{
geomod::setter(dim_max);
auto app = Gtk::Application::create("org.gtkmm.example");
MyEvent eventWindow(argc, argv);
return app->run(eventWindow);
}
|
ce4afa6a45435fe6a7ce42305973941ab96d8eb4
|
e0b3782827a643c63dd15761b790e7dff8c80890
|
/https/www.codechef.com/AUG17/Greedy Candidates.cpp
|
febf8433ebc04ef793f0775083ed820d4197511f
|
[] |
no_license
|
raihan02/My-Contest-Link-with-code
|
c8425361a011b8478dc412f0ecf5aa48fba2040f
|
615423ce1085ca5c48395e9ed516914a594a1a24
|
refs/heads/master
| 2020-04-19T06:13:39.331472
| 2017-09-24T06:26:45
| 2017-09-24T06:26:45
| 66,770,444
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 2,178
|
cpp
|
Greedy Candidates.cpp
|
#include <bits/stdc++.h>
using namespace std;
typedef long long int ll;
int main()
{
ll m, n;
char s[1004][1004];
int tes;
cin >> tes;
while(tes--)
{
cin >> n >> m;
ll nm[10003]= {0};
ll mm[10003]= {0};
ll arr[10003] = {0};
for(ll i = 1; i <= n; i++)
{
cin >> arr[i];
}
vector <ll> vk;
vk.push_back(0);
for(ll i = 1; i <= m; i++)
{
cin >> nm[i] >> mm[i];
}
for(ll i = 1; i <= m; i++)
{
vk.push_back(mm[i]);
}
for(ll i = 1; i <= n; i++)
{
for(ll j = 1; j <= m; j++)
{
scanf(" %c", &s[i][j]);
}
}
ll p = m;
ll sum = 0;
ll c = 0;
set <ll> st;
int xx,i,j,k;
for( i = 1; i <= n; i++)
{
vector < pair < int, int > > v;
for( j = 1; j <= m; j++)
{
if(s[i][j] == '1')
{
if(arr[i] <= nm[j] && mm[j])
{
v.push_back(make_pair(nm[j], j));
}
}
}
//printf("For iteration %d: \n", i);
ll mx = 0;
if(v.size() > 0)
c++;
ll pos = 0;
for( k = 0; k < v.size(); k++)
{
//printf("%d %d\n", v[k].first, v[k].second);
if(v[k].first > mx)
{
mx = v[k].first;
pos = v[k].second;
}
}
if(v.size() > 0){
st.insert(pos);
mm[pos] = mm[pos] - 1;
}
sum += mx;
v.clear();
}
ll cnt = 0;
set <ll> :: iterator it;
for(int j = 1; j <= m; j++)
{
if(vk[j] == mm[j])
cnt++;
}
cout<<c << " " << sum << " " << cnt<< endl;
vk.clear();
}
}
/*
1
5 6
50 100 3000 20 10
100 2
200 2
600 1
10 8
1000 9
2000 10
111111
100000
000000
000001
100100
*/
|
80afa1fc01554de052eee538b0234c191b179bb9
|
6bab8f0c847bb63fb1505756e47a814068689b31
|
/Осень/Codeforses 25 октября/A.cpp
|
2379be99bb83cd6b0885e08fd6bb81d80c2c5287
|
[] |
no_license
|
AlexFirfarov/olympic-programming
|
14f21ca1c6d47243b7028029dd0df2f849f021b6
|
209ce18577dd315f52d660ba0bb1fccadf7f53d6
|
refs/heads/main
| 2023-08-20T22:04:05.296753
| 2021-09-27T16:13:28
| 2021-09-27T16:13:28
| 410,950,484
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 549
|
cpp
|
A.cpp
|
#include <iostream>
#include <vector>
#include <cmath>
#include <iomanip>
int main() {
int n;
std::cin >> n;
std::vector<std::pair<int, int>> p(n);
for (auto& point: p) {
std::cin >> point.first >> point.second;
}
double s = 0;
for (int i = 0; i < n - 1; ++i) {
s += p[i].first * p[i + 1].second - p[i + 1].first * p[i].second;
}
s += p[n - 1].first * p[0].second - p[0].first * p[n - 1].second;
std::cout << std::setprecision(3) << std::fixed << std::abs(s / 2) << "\n";
}
|
fabdbb515c6dbce7efe1b4f0c0770398c7879f3a
|
4c48e348db7cb74b2e28d5142a496c556d412f49
|
/restaurants.cpp
|
fc34ef70ced28de62cc843e2604e85a459dcb2a1
|
[] |
no_license
|
JanKse/Restaurant-console-app-
|
b8f6e650870c32247b87a75e912fb1cb761831be
|
c03d9bb8e7fb58f279dbe340733b82b1ebe8fbb8
|
refs/heads/main
| 2023-03-14T14:22:50.194924
| 2021-03-08T16:40:41
| 2021-03-08T16:40:41
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 10,243
|
cpp
|
restaurants.cpp
|
#include "helperFunctions.h"
using namespace std;
int main()
{
reviewList *revs;
loginManager *app;
bool running = true;
int x = 8;
int menuItem = 1;
string choice;
string newInfo;
review *rev;
restaurant *userRestaurant;
reviewList *userRestaurantReviews;
restaurantList *restaurants;
while (running)
{
system("cls");
//display header;
menuHeader("RESTAURANT APP");
//display main menu
if (app->isLoggedIn() && (app->getRole() == "user"))
{
userRestaurant = new restaurant(userRestaurant->getUserRestaurant(app->getUsername()));
showMenuItems({"Show all restaurants", "Show all reviews", "Show reviews of my restuarant", "Write review", "Add Restaurant", "Delete my restaurant", "Edit my restaurant", "Log Out", "Exit application"});
//display arrow navigator
gotoXY(22, x);
cout << "->";
system("pause>nul");
//arrow up event
if ((GetAsyncKeyState(VK_DOWN) & 0x8000) && (x != 16))
{
gotoXY(22, x);
cout << " ";
x++;
gotoXY(22, x);
cout << "->";
menuItem++;
continue;
}
//arrow down event
if ((GetAsyncKeyState(VK_UP) & 0x8000) && (x != 8))
{
gotoXY(22, x);
cout << " ";
x--;
gotoXY(22, x);
cout << "->";
menuItem--;
continue;
}
if (GetAsyncKeyState(VK_RETURN) & 0x8000)
{
switch (menuItem)
{
case 1:
system("cls");
restaurants = new restaurantList;
restaurants->getRestaurantsData(); //get actuall data (not from constructor)
printRestaurants(restaurants);
delete restaurants;
cin.get();
break;
case 2:
system("cls");
revs = new reviewList;
revs->getReviewsData();
printReviews(revs);
delete revs;
cin.get();
break;
case 3:
system("cls");
userRestaurantReviews = new reviewList;
userRestaurantReviews->getReviewByRestaurantOwner(userRestaurant->getRestaurantName());
if (userRestaurant->getRestaurantName().empty())
{
noRestaurantMsg();
break;
}
if (userRestaurantReviews->getReviews().empty())
{
gotoXY(20, 5);
cout << "Your restaurant doesn't have reviews ... ";
}
printReviews(userRestaurantReviews);
delete userRestaurantReviews;
cin.get();
break;
case 4:
system("cls");
rev = new review(getReviewInfo(app->getUsername()));
if (userRestaurant->getRestaurantName() == rev->getRestaurantName())
{
system("cls");
gotoXY(20, 5);
cout << "You can't write review of your restaurant ... ";
cin.get();
break;
}
rev->insertReview();
cin.get();
delete rev;
break;
case 5:
system("cls");
if (!userRestaurant->getRestaurantName().empty())
{
gotoXY(20, 5);
cout << "You can have only one restaurant in our system ... :) ";
gotoXY(20, 7);
cout << "Press enter to back to main menu";
cin.get();
break;
}
userRestaurant = new restaurant(getRestaurantInfo(app->getUsername()));
userRestaurant->insertRestaurant();
break;
case 6:
while (true)
{
system("cls");
if (userRestaurant->getRestaurantName().empty())
{
noRestaurantMsg();
break;
}
gotoXY(20, 5);
choice = getAnswer();
if (choice == "y")
{
userRestaurant->deleteRestaurant(userRestaurant->getRestaurantName());
delete userRestaurant;
break;
}
else if (choice == "n")
{
break;
}
}
break;
case 7:
system("cls");
if (userRestaurant->getRestaurantName().empty())
{
noRestaurantMsg();
break;
}
printRestaurant(userRestaurant->getRestaurantName(), userRestaurant->getRestaurantAdrress(), userRestaurant->getRestaurantTelNumb());
while (true)
{
gotoXY(20, 13);
choice = getAnswer();
if (choice == "y")
{
newInfo = getNewRestaurantInfo(app->getUsername());
while (true)
{
gotoXY(20, 21);
choice = getAnswer();
if (choice == "y")
{
userRestaurant->updateRestaurant(userRestaurant->getRestaurantName(), newInfo);
break;
}
else if (choice == "n")
{
break;
}
}
break;
}
else if (choice == "n")
{
break;
}
}
break;
case 8:
system("cls");
app->logOut();
delete app;
x = 8;
menuItem = 1;
delete userRestaurant;
break;
case 9:
system("cls");
delete userRestaurant;
running = false;
break;
}
}
}
else
{
showMenuItems({
"Show all restaurants",
"Show all reviews",
"Show reviews by restaurant name",
"Log In",
"Sing in",
"Exit application",
});
//display arrow navigator
gotoXY(22, x);
cout << "->";
system("pause>nul");
//arrow up event
if ((GetAsyncKeyState(VK_DOWN) & 0x8000) && (x != 13))
{
gotoXY(22, x);
cout << " ";
x++;
gotoXY(22, x);
cout << "->";
menuItem++;
continue;
}
//arrow down event
if ((GetAsyncKeyState(VK_UP) & 0x8000) && (x != 8))
{
gotoXY(22, x);
cout << " ";
x--;
gotoXY(22, x);
cout << "->";
menuItem--;
continue;
}
if (GetAsyncKeyState(VK_RETURN) & 0x8000)
{
switch (menuItem)
{
case 1:
system("cls");
restaurants = new restaurantList;
restaurants->getRestaurantsData(); //get actuall data (not from constructor)
printRestaurants(restaurants);
delete restaurants;
cin.get();
break;
case 2:
system("cls");
revs = new reviewList;
revs->getReviewsData();
printReviews(revs);
delete revs;
cin.get();
break;
case 3:
system("cls");
revs = new reviewList;
revs->getReviewsByRestaurantName(getRestaurantName());
if (revs->getReviews().empty())
{
gotoXY(20, 5);
cout << "Wrong input or restaurant doesn't exist";
}
printReviews(revs);
delete revs;
cin.get();
break;
case 4:
system("cls");
app = new loginManager;
app->logIn();
break;
case 5:
system("cls");
app = new loginManager;
app->signIn();
break;
case 6:
system("cls");
running = false;
break;
}
}
}
}
return EXIT_SUCCESS;
}
|
bbef2ba4bf6e587700258d57651c35950d6c7d0c
|
1ede4ea00a69c36b3aba1df04fadefa76f41973f
|
/contracts/visitor/visitorcon.cpp
|
02600bc550552aff7bbe1bf6abe0e8f3861d15c7
|
[] |
no_license
|
utopialand/Utopia
|
92f6c896f23208f6ef80f6bf38ede18e11fe8dc3
|
c41d8752fffbab05439957e54bed583c3cee2ad3
|
refs/heads/master
| 2020-04-03T05:11:28.401105
| 2019-01-14T07:25:04
| 2019-01-14T07:25:04
| 155,037,811
| 5
| 4
| null | 2018-12-05T06:10:50
| 2018-10-28T05:16:05
|
HTML
|
UTF-8
|
C++
| false
| false
| 1,017
|
cpp
|
visitorcon.cpp
|
#include "visitorcon.hpp"
ACTION visitorcon::apply(name visitor,uint64_t stduration){
require_auth(_self);
visitor_entry ve(_self,_self.value);
ve.emplace(_self,[&] (auto &e){
e.id=ve.available_primary_key();
e.visitor=visitor;
e.duration=now()+(24 * 60 * 60 * stduration);
e.visitorstatus = false;
});
print("done---");
}
ACTION visitorcon::approve(name manager,name visitor){
eosio_assert(is_manager(manager), "Not Authorized");
identity_table iden_table("identityreg1"_n, "identityreg1"_n.value);
auto itr = iden_table.find(visitor.value);
if(itr != iden_table.end()){
visitor_entry ve(_self,_self.value);
auto itr2 = ve.find(visitor.value);
ve.modify(itr2,_self,[&] (auto &e){
e.visitorstatus = true;
});
}
}
ACTION visitorcon::move(name manager,name visitor){
eosio_assert(is_manager(manager), "Not Authorized manager");
visitor_entry ve(_self,_self.value);
auto itr2 = ve.find(visitor.value);
if(itr2->duration>=now() ){
ve.erase(itr2);
}
}
EOSIO_DISPATCH(visitorcon,(apply)(approve)(move))
|
17bea9e4b5598f3a72430bfed6f445e291d02c97
|
83b91876b7668f2ee3899b2b8812dbef70650f3e
|
/G-COUNTING-SORT.CPP
|
f95330224bab3440b8a162b2e316f371f07d99a0
|
[] |
no_license
|
BSCPE-2C-CPE-121-TERM-2-S-Y-19-20/SORTING-ALGORITHMS
|
d51fca16fd95ac08a94c8966e99c44bcd75979ba
|
323ef973265d3ab67f71a0258a07b15d39a578ff
|
refs/heads/master
| 2020-12-21T12:04:52.150870
| 2020-02-03T01:30:48
| 2020-02-03T01:30:48
| 236,424,811
| 1
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 712
|
cpp
|
G-COUNTING-SORT.CPP
|
#include <iostream>
using namespace std;
void countingSort(int arr[],int n,int RANGE){
int count[RANGE]={0};
int i;
int out[n];
for(i=0;i<n;i++)
++count[arr[i]];
for(i=1;i<RANGE;i++)
count[i]+=count[i-1];
for(i=n-1;i>=0;i--){
out[count[arr[i]]-1]=arr[i];
--count[arr[i]];
}
for(i=0;i<n;i++)
arr[i]=out[i];
}
void print(int arr[],int n){
cout<<"array : ";
for(int i=0;i<n;i++)
cout<<arr[i]<<' ';
cout<<endl;
}
int main() {
// your code goes here
int arr[]={5, 5, 6, 7, 8, 1, 6, 7, 9, 8, 1, 5 };
int n=sizeof(arr)/sizeof(arr[0]);
int RANGE=12;
print(arr,n);
countingSort(arr,n,RANGE);
print(arr,n);
return 0;
}
|
6cddbed5ccafd84a12290fa7e36780b859d2a072
|
91774d68635cee184e327b457d63efc6b0b415b8
|
/row change.cpp
|
8c1162853122fc16dce164ad5d00c461714c466f
|
[
"Apache-2.0"
] |
permissive
|
aladageren/c-exercises
|
fd4bc9c636b873eaf2492d21e23b91c6b266a3e7
|
e4da30fabff66b2ee5a36539302532776a68ad5b
|
refs/heads/master
| 2021-01-17T19:19:46.898113
| 2016-06-20T20:13:53
| 2016-06-20T20:13:53
| 59,937,781
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 517
|
cpp
|
row change.cpp
|
/* Changes the rows, keeping the middle one still */
#include <stdio.h>
int main ()
{
int m,i,j;
int dizi1[9][9];
int dizi2[9][9];
printf("Enter the size of matrix : \n");
scanf("%d",&m);
printf(" Enter a %d x %d matrix \n: ",m,m);
for(i=0;i<m;i++)
for(j=0;j<m;j++)
scanf("%d",&dizi1[i][j]);
for(i=0;i<m;i++)
for(j=0;j<m;j++)
dizi2[i][j]=dizi1[m-i-1][j];
printf("This is the second array.\n");
for(i=0;i<m;i++){
printf("\n");
for(j=0;j<m;j++)
printf("%3d",dizi2[i][j]);}
return 0;
}
|
44b97b2e81e7719d01146c6ee67536162bb12017
|
2aeea49484cea5c516c2067f59a1348dad4550c0
|
/uml_editor/main.cpp
|
5b20c6fee6f165bf0ebc72892cd0d921ed10758b
|
[] |
no_license
|
wingedrobin/SE6029-OOAD-Final-Project
|
5097bdaecd60c4432780017050218d26007e7a8d
|
4e957b7543458604659e16ec9f770516f8828615
|
refs/heads/master
| 2021-01-20T12:05:13.603148
| 2015-03-25T09:35:33
| 2015-03-25T09:35:33
| 32,848,860
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 250
|
cpp
|
main.cpp
|
#include <QApplication>
//自定義標頭檔
#include "UML_Editor.h"
int main( int argc , char* argv[ ] )
{
QApplication app( argc , argv ) ;
UMLEditor umlEditor( 0 , Qt :: Window ) ;
umlEditor.show( ) ;
return app.exec( ) ;
}
|
df8c23f6fcefc6552d85d5724f806ea3e7027732
|
0a569535a12c4c75dc3fa2380aaff8c2c484cf3c
|
/HandTracker/HandTracker/Tracker/Tracker.cpp
|
cbb3ae7b0c76d2566b1ca91791577781db327bee
|
[
"MIT"
] |
permissive
|
AlexKLWS/iOSHandTracker
|
8c67f3d06df438a4bb1f1c8cd154a15b1cd829b9
|
6e56635071a0065b264b904521137d2ef59d9abc
|
refs/heads/master
| 2020-04-20T03:56:46.160158
| 2019-03-21T18:46:00
| 2019-03-21T18:46:00
| 168,612,900
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 11,073
|
cpp
|
Tracker.cpp
|
#include "Tracker.hpp"
Tracker::Tracker(){}
template <std::size_t sizeA, std::size_t sizeB>
void clearArray(int (&a)[sizeA][sizeB]) {
int* begin = &a[0][0];
std::fill_n(begin, sizeA * sizeB, 0.0);
}
int Tracker::getMedian(vector<int> values) {
int median;
size_t size = values.size();
sort(values.begin(), values.end());
if (size % 2 == 0) {
median = values[size / 2 - 1];
}
else {
median = values[size / 2];
}
return median;
}
void Tracker::getAverageColor(ColorSampleROI roi, int averages[3]) {
Mat region;
roi.regionOfInterestPointer.copyTo(region);
vector<int>hm;
vector<int>sm;
vector<int>lm;
// generate vectors
for (int i = 2; i < region.rows - 2; i++) {
for (int j = 2; j < region.cols - 2; j++) {
hm.push_back(region.data[region.channels()*(region.cols*i + j) + 0]);
sm.push_back(region.data[region.channels()*(region.cols*i + j) + 1]);
lm.push_back(region.data[region.channels()*(region.cols*i + j) + 2]);
}
}
averages[0] = Tracker::getMedian(hm);
averages[1] = Tracker::getMedian(sm);
averages[2] = Tracker::getMedian(lm);
}
void Tracker::normalizeColors() {
// copy all boundaries read from trackbar
// to all of the different boundries
for (int i = 1; i < NSAMPLES; i++) {
for (int j = 0; j < 3; j++) {
lowerColorBounds[i][j] = lowerColorBounds[0][j];
upperColorBounds[i][j] = upperColorBounds[0][j];
}
}
// normalize all boundries so that
// threshold is whithin 0-255
for (int i = 0; i < NSAMPLES; i++) {
if ((averageColors[i][0] - lowerColorBounds[i][0]) < 0) {
lowerColorBounds[i][0] = averageColors[i][0];
}
if ((averageColors[i][1] - lowerColorBounds[i][1]) < 0) {
lowerColorBounds[i][1] = averageColors[i][1];
}
if ((averageColors[i][2] - lowerColorBounds[i][2]) < 0) {
lowerColorBounds[i][2] = averageColors[i][2];
}
if ((averageColors[i][0] + upperColorBounds[i][0]) > 255) {
upperColorBounds[i][0] = 255 - averageColors[i][0];
}
if ((averageColors[i][1] + upperColorBounds[i][1]) > 255) {
upperColorBounds[i][1] = 255 - averageColors[i][1];
}
if ((averageColors[i][2] + upperColorBounds[i][2]) > 255) {
upperColorBounds[i][2] = 255 - averageColors[i][2];
}
}
}
Mat Tracker::generateBinaryFrom(Mat& downsampledFrame) {
Scalar lowerBound;
Scalar upperBound;
vector<Mat> bwList;
Mat binary;
for (int i = 0; i < NSAMPLES; i++) {
normalizeColors();
lowerBound = Scalar(averageColors[i][0] - lowerColorBounds[i][0], averageColors[i][1] - lowerColorBounds[i][1], averageColors[i][2] - lowerColorBounds[i][2]);
upperBound = Scalar(averageColors[i][0] + upperColorBounds[i][0], averageColors[i][1] + upperColorBounds[i][1], averageColors[i][2] + upperColorBounds[i][2]);
bwList.push_back(Mat(downsampledFrame.rows, downsampledFrame.cols, CV_8U));
inRange(downsampledFrame, lowerBound, upperBound, bwList[i]);
}
bwList[0].copyTo(binary);
for (int i = 1; i < NSAMPLES; i++) {
binary += bwList[i];
}
medianBlur(binary, binary, 7);
return binary;
}
int Tracker::findBiggestContour(vector<vector<cv::Point>> contours) {
int indexOfBiggestContour = -1;
unsigned long sizeOfBiggestContour = 0;
for (int i = 0; i < contours.size(); i++) {
if (contours[i].size() > sizeOfBiggestContour) {
sizeOfBiggestContour = contours[i].size();
indexOfBiggestContour = i;
}
}
return indexOfBiggestContour;
}
void Tracker::drawHandContours(ImageSource *m) {
drawContours(m->original, handDetector.hullPoint, handDetector.cIdx, Scalar(200, 0, 0), 2, 8, vector<Vec4i>(), 0, cv::Point());
rectangle(m->original, handDetector.bRect.tl(), handDetector.bRect.br(), Scalar(0, 0, 200));
vector<Vec4i>::iterator d = handDetector.defects[handDetector.cIdx].begin();
vector<Mat> channels;
Mat result;
for (int i = 0; i < 3; i++)
channels.push_back(m->binary);
merge(channels, result);
drawContours(result, handDetector.hullPoint, handDetector.cIdx, Scalar(0, 0, 250), 10, 8, vector<Vec4i>(), 0, cv::Point());
while (d != handDetector.defects[handDetector.cIdx].end()) {
Vec4i& v = (*d);
int startidx = v[0];
cv::Point ptStart(handDetector.contours[handDetector.cIdx][startidx]);
int endidx = v[1];
cv::Point ptEnd(handDetector.contours[handDetector.cIdx][endidx]);
int faridx = v[2];
cv::Point ptFar(handDetector.contours[handDetector.cIdx][faridx]);
circle(result, ptFar, 9, Scalar(0, 205, 0), 5);
d++;
}
}
void Tracker::makeContours(ImageSource *m) {
Mat aBw;
pyrUp(m->binary, m->binary);
m->binary.copyTo(aBw);
findContours(aBw, handDetector.contours, RETR_EXTERNAL, CHAIN_APPROX_NONE);
handDetector.initVectors();
handDetector.cIdx = findBiggestContour(handDetector.contours);
if (handDetector.cIdx != -1) {
handDetector.bRect = boundingRect(Mat(handDetector.contours[handDetector.cIdx]));
handCoordinates = (handDetector.bRect.br() + handDetector.bRect.tl())*0.5;
convexHull(Mat(handDetector.contours[handDetector.cIdx]), handDetector.hullPoint[handDetector.cIdx], false, true);
convexHull(Mat(handDetector.contours[handDetector.cIdx]), handDetector.hullIndex[handDetector.cIdx], false, false);
approxPolyDP(Mat(handDetector.hullPoint[handDetector.cIdx]), handDetector.hullPoint[handDetector.cIdx], 18, true);
if (handDetector.contours[handDetector.cIdx].size() > 3) {
convexityDefects(handDetector.contours[handDetector.cIdx], handDetector.hullIndex[handDetector.cIdx], handDetector.defects[handDetector.cIdx]);
handDetector.eleminateDefects();
}
bool isHand = handDetector.detectIfHand();
handDetector.printGestureInfo(m->original);
if (isHand) {
handDetector.getFingertips(m);
handDetector.drawFingertips(m);
drawHandContours(m);
}
}
}
void Tracker::startTracking() {
for (int i = 0; i < NSAMPLES; i++) {
lowerColorBounds[i][0] = 7;
upperColorBounds[i][0] = 21;
lowerColorBounds[i][1] = 0;
upperColorBounds[i][1] = 16;
lowerColorBounds[i][2] = 5;
upperColorBounds[i][2] = 10;
}
}
void Tracker::getColorSamples(Mat& image) {
cvtColor(image, image, ORIGCOL2COL);
for (int i = 0; i < NSAMPLES; i++) {
getAverageColor(colorSampleRegions[i], averageColors[i]);
colorSampleRegions[i].drawRectangle(image);
}
cvtColor(image, image, COL2ORIGCOL);
string text = string("Finding average color of hand");
putText(image, text, cv::Point(image.cols / 2, image.rows / 10), fontFace, 1.2f, Scalar(200, 0, 0), 2);
}
void Tracker::tracking(ImageSource imageSrc) {
Mat downsampled;
pyrDown(imageSrc.original, downsampled);
blur(downsampled, downsampled, Size2i(3, 3));
cvtColor(downsampled, downsampled, ORIGCOL2COL);
Mat binary = generateBinaryFrom(downsampled);
cvtColor(downsampled, downsampled, COL2ORIGCOL);
makeContours(&imageSrc);
handDetector.getFingerNumber(&imageSrc);
pyrDown(imageSrc.binary, imageSrc.binary);
pyrDown(imageSrc.binary, imageSrc.binary);
cv::Rect roi(cv::Point(3 * imageSrc.original.cols / 4, 0), imageSrc.binary.size());
vector<Mat> channels;
Mat result;
for (int i = 0; i < 3; i++)
channels.push_back(imageSrc.binary);
merge(channels, result);
result.copyTo(imageSrc.original(roi));
// imageSource.displayed = imageSource.original.clone();
}
void Tracker::drawColorSampleRegions(Mat& image) {
for (int i = 0; i < NSAMPLES; i++) {
colorSampleRegions[i].drawRectangle(image);
}
string text = string("Please cover rectangles with your palm");
putText(image, text, cv::Point(image.cols / 2, image.rows / 10), fontFace, 1.2f, Scalar(200, 0, 0), 2);
}
void Tracker::setupColorSampleImageRegions(Mat& image) {
colorSampleRegions.push_back(ColorSampleROI(cv::Point(image.cols / 3, image.rows / 6),
cv::Point(image.cols / 3 + squareLength, image.rows / 6 + squareLength),
image));
colorSampleRegions.push_back(ColorSampleROI(cv::Point(image.cols / 4, image.rows / 2),
cv::Point(image.cols / 4 + squareLength, image.rows / 2 + squareLength),
image));
colorSampleRegions.push_back(ColorSampleROI(cv::Point(image.cols / 3, image.rows / 1.5),
cv::Point(image.cols / 3 + squareLength, image.rows / 1.5 + squareLength),
image));
colorSampleRegions.push_back(ColorSampleROI(cv::Point(image.cols / 2, image.rows / 2),
cv::Point(image.cols / 2 + squareLength, image.rows / 2 + squareLength),
image));
colorSampleRegions.push_back(ColorSampleROI(cv::Point(image.cols / 2.5, image.rows / 2.5),
cv::Point(image.cols / 2.5 + squareLength, image.rows / 2.5 + squareLength),
image));
colorSampleRegions.push_back(ColorSampleROI(cv::Point(image.cols / 2, image.rows / 1.5),
cv::Point(image.cols / 2 + squareLength, image.rows / 1.5 + squareLength),
image));
colorSampleRegions.push_back(ColorSampleROI(cv::Point(image.cols / 2.5, image.rows / 1.8),
cv::Point(image.cols / 2.5 + squareLength, image.rows / 1.8 + squareLength),
image));
}
//extern "C" void GetFrame(PixelData* pixels)
//{
// if (imageSource.original.empty() || imageSource.original.depth() != CV_8U)
// return;
//
// ImageSource* imageSrc = &imageSource;
//
// flip(imageSrc->original, imageSrc->original, 1);
//
// switch (_currentState) {
// case AWAITNG_PALM:
// DrawColorSampleRegions(imageSrc);
// break;
// case GETTING_COLOR_SAMPLE:
// GetColorSample(imageSrc);
// break;
// case TRACKING:
// Tracking(imageSource);
// break;
// default:
// imageSource.displayed = imageSource.original.clone();
// break;
// }
//
// int counter = 0;
// MatIterator_<Vec3b> it, end;
// for( it = imageSource.displayed.begin<Vec3b>(), end = imageSource.displayed.end<Vec3b>(); it != end; ++it)
// {
// *(pixels + counter) = PixelData ((*it)[2], (*it)[1], (*it)[0]);
// counter++;
// }
//}
//void GetHandCoordinates(float& x, float& y) {
// x = handCoordinates.x;
// y = handCoordinates.y;
//}
//
//void Close()
//{
// clearArray(c_lower);
// clearArray(c_upper);
// clearArray(_averageColors);
// colorSampleRegions.clear();
//}
|
f23817f33c9cc4faa72d2cca121096351960df13
|
163c67594e699f4e0625e690fdf59fe117be141c
|
/witj/cpp/src/CTVecSupply.h
|
8d500f301df62e39631a6d6d493e76b2e285d5d5
|
[
"Apache-2.0"
] |
permissive
|
jfuku14/CMMPPT
|
19e2ed19873cc8e78b277765764ae30f5661db4b
|
16dd1b709af992c09a1fda110b0602998f46d0d7
|
refs/heads/master
| 2021-12-03T08:16:12.442222
| 2021-08-19T02:05:56
| 2021-08-19T02:05:56
| 241,051,080
| 0
| 0
|
Apache-2.0
| 2020-02-17T08:02:41
| 2020-02-17T08:02:40
| null |
UTF-8
|
C++
| false
| false
| 2,530
|
h
|
CTVecSupply.h
|
//------------------------------------------------------------------------------
// WIT-J C++ Header File CTVecSupply.h.
//
// Contains the declaration of class CTVecSupply.
//------------------------------------------------------------------------------
#ifndef CTVecSupply_h
#define CTVecSupply_h
#include <Includes.h>
#include <list>
//------------------------------------------------------------------------------
// Class CTVecSupply
//
// "C Time-Vector Supply"
// A source of supply of C time vectors to be used with a given Problem.
//------------------------------------------------------------------------------
namespace WitJ
{
class CTVecSupply
{
//---------------------------------------------------------------------------
// Public member functions.
//---------------------------------------------------------------------------
public:
explicit CTVecSupply (int nPeriodsVal);
//
// Constructor.
// nPeriodsVal is the # periods for the Problem associated with the
// CTVecSupply being constructed.
~CTVecSupply ();
//
// Destructor.
void provideCTVec (int * &);
void provideCTVec (double * &);
//
// Each of these functions:
// Sets its argument to a c-vector of length nPeriods.
// Transfers ownership of the c-vector to the caller.
void reclaimCTVec (int * &);
void reclaimCTVec (double * &);
//
// Each of these functions:
// Requires its argument to be a c-vector of length nPeriods.
// Transfers ownership of the c-vector to this CTVecSupply.
// Sets its argument to NULL.
//---------------------------------------------------------------------------
// Private member functions.
//---------------------------------------------------------------------------
private:
CTVecSupply (const CTVecSupply &);
CTVecSupply & operator = (const CTVecSupply &);
//
// Not implemented; prevents accidental copying and assignment.
//---------------------------------------------------------------------------
// Private member data.
//---------------------------------------------------------------------------
const int nPeriods_;
//
// The nPeriods value to which all the C time vectors will be allocated.
std::list <int *> myIntCTVecs_;
std::list <double *> myDblCTVecs_;
//
// The C time vectors owned by this CTVecSupply.
};
};
//
// End of namespace WitJ.
#endif
|
45ac41a57c3c663eb687cc15f7dd3344d59ea86b
|
1cb36cf2cb3d07687d1fb462f44de127e54c2721
|
/LeetCode/LinkedLists/RemoveLLElements.cpp
|
6370f9a979e59f2eb4a5ba9d4b31b5edfdbc8bf9
|
[] |
no_license
|
rakeshakkera03/Coding
|
8261090f3c50c556adc5347d053f5c73ec54b0c5
|
81d82613e4ce66ad2eddcd2296d1258c6519e65b
|
refs/heads/master
| 2021-01-01T18:55:49.194981
| 2015-10-15T12:07:48
| 2015-10-15T12:07:48
| 37,384,634
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,084
|
cpp
|
RemoveLLElements.cpp
|
/*
Remove all elements from a linked list of integers that have value val.
Example
Given: 1 --> 2 --> 6 --> 3 --> 4 --> 5 --> 6, val = 6
Return: 1 --> 2 --> 3 --> 4 --> 5
*/
/**
* Definition for singly-linked list.
* struct ListNode {
* int val;
* struct ListNode *next;
* };
*/
struct ListNode* removeElements(struct ListNode* head, int val) {
struct ListNode* temp = head;
// This following condition is not necessary since u would not enter the while loop if head == NULL
// Notice this in the interview and remove it.
if( !head )
return head;
while ( temp )
{
if( temp == head && temp->val == val)
{
head = head->next;
free(temp);
temp = head;
}
else if ( temp->next && temp->next->val == val )
{
struct ListNode* temp2 = temp->next;
temp->next = temp2->next;
free(temp2);
}
else
{
temp = temp->next;
}
}
return head;
}
|
9ed6b51dc32a2b9b0eb1e16bfce759d077365547
|
efb266771f94aeae71680beb9904db56bd7db413
|
/src/caffe/test/test_libdnn_blas.cpp
|
05b9733c8080072c2893da972fd04c6668c1454d
|
[
"LicenseRef-scancode-public-domain",
"BSD-2-Clause",
"LicenseRef-scancode-generic-cla"
] |
permissive
|
naibaf7/caffe
|
3080a325f31b180a78a92076e7cd69a3be2285a8
|
29960153c828820b1abb55a5792283742f57caa2
|
refs/heads/master
| 2020-04-02T03:11:35.578860
| 2018-06-27T14:51:41
| 2018-06-27T14:51:41
| 34,186,808
| 91
| 30
| null | 2018-08-18T09:50:54
| 2015-04-18T23:29:30
|
C++
|
UTF-8
|
C++
| false
| false
| 11,396
|
cpp
|
test_libdnn_blas.cpp
|
#ifdef USE_LIBDNN
#include <algorithm>
#include <random>
#include <vector>
#include "gtest/gtest.h"
#include "caffe/blob.hpp"
#include "caffe/common.hpp"
#include "caffe/quantizer.hpp"
#include "caffe/libdnn/libdnn_blas.hpp"
#include "caffe/util/math_functions.hpp"
#include "caffe/test/test_caffe_main.hpp"
// Comparative check difference limit
#define KAPPA_HALF 0.05
#define KAPPA_FLOAT 0.05
#define KAPPA_DOUBLE 0.05
#define EPS_HALF 5e-1
#define EPS_FLOAT 1e-4
#define EPS_DOUBLE 1e-4
namespace caffe {
template <typename TypeParam>
class LibDNNBlasTest : public ::testing::Test {};
TYPED_TEST_CASE(LibDNNBlasTest, TestDtypesFloat);
TYPED_TEST(LibDNNBlasTest, TestGemmCPUGPU) {
Device *dc = Caffe::GetDefaultDevice();
Blob<TypeParam> A(1, 1, 2, 3, Caffe::GetDefaultDevice());
Blob<TypeParam> B(1, 1, 3, 4, Caffe::GetDefaultDevice());
Blob<TypeParam> C(1, 1, 2, 4, Caffe::GetDefaultDevice());
TypeParam data[12] = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12};
TypeParam A_reshape_data[6] = {1, 4, 2, 5, 3, 6};
TypeParam B_reshape_data[12] = {1, 5, 9, 2, 6, 10, 3, 7, 11, 4, 8, 12};
TypeParam result[8] = {38, 44, 50, 56, 83, 98, 113, 128};
caffe_copy(6, data, A.mutable_cpu_data());
caffe_copy(12, data, B.mutable_cpu_data());
// [1, 2, 3; 4 5 6] * [1, 2, 3, 4; 5, 6, 7, 8; 9, 10, 11, 12];
caffe_gemm<TypeParam>(CblasNoTrans, CblasNoTrans, 2, 4, 3, 1.,
A.cpu_data(), B.cpu_data(), 0., C.mutable_cpu_data());
for (int_tp i = 0; i < 8; ++i) {
EXPECT_EQ(C.cpu_data()[i], result[i]);
}
dc->GetLibDNNBlas<TypeParam, TypeParam>()->gemm(CblasNoTrans, CblasNoTrans,
2, 4, 3, 1., A.gpu_data(), B.gpu_data(), 0.,
C.mutable_gpu_data());
for (int_tp i = 0; i < 8; ++i) {
EXPECT_EQ(C.cpu_data()[i], result[i]);
}
// Test when we have a transposed A
A.Reshape(1, 1, 3, 2);
caffe_copy(6, A_reshape_data, A.mutable_cpu_data());
caffe_gemm<TypeParam>(CblasTrans, CblasNoTrans, 2, 4, 3, 1.,
A.cpu_data(), B.cpu_data(), 0., C.mutable_cpu_data());
for (int_tp i = 0; i < 8; ++i) {
EXPECT_EQ(C.cpu_data()[i], result[i]);
}
dc->GetLibDNNBlas<TypeParam, TypeParam>()->gemm(CblasTrans, CblasNoTrans,
2, 4, 3, 1., A.gpu_data(), B.gpu_data(), 0.,
C.mutable_gpu_data());
for (int_tp i = 0; i < 8; ++i) {
EXPECT_EQ(C.cpu_data()[i], result[i]);
}
// Test when we have a transposed A and a transposed B too
B.Reshape(1, 1, 4, 3);
caffe_copy(12, B_reshape_data, B.mutable_cpu_data());
caffe_gemm<TypeParam>(CblasTrans, CblasTrans, 2, 4, 3, 1.,
A.cpu_data(), B.cpu_data(), 0., C.mutable_cpu_data());
for (int_tp i = 0; i < 8; ++i) {
EXPECT_EQ(C.cpu_data()[i], result[i]);
}
dc->GetLibDNNBlas<TypeParam, TypeParam>()->gemm(CblasTrans, CblasTrans,
2, 4, 3, 1., A.gpu_data(), B.gpu_data(), 0.,
C.mutable_gpu_data());
for (int_tp i = 0; i < 8; ++i) {
EXPECT_EQ(C.cpu_data()[i], result[i]);
}
// Test when we have a transposed B
A.Reshape(1, 1, 2, 3);
caffe_copy(6, data, A.mutable_cpu_data());
caffe_gemm<TypeParam>(CblasNoTrans, CblasTrans, 2, 4, 3, 1.,
A.cpu_data(), B.cpu_data(), 0., C.mutable_cpu_data());
for (int_tp i = 0; i < 8; ++i) {
EXPECT_EQ(C.cpu_data()[i], result[i]);
}
dc->GetLibDNNBlas<TypeParam, TypeParam>()->gemm(CblasNoTrans, CblasTrans,
2, 4, 3, 1., A.gpu_data(), B.gpu_data(), 0.,
C.mutable_gpu_data());
for (int_tp i = 0; i < 8; ++i) {
EXPECT_EQ(C.cpu_data()[i], result[i]);
}
}
TYPED_TEST(LibDNNBlasTest, TestGemmComparativeCPUGPU) {
Device *dc = Caffe::GetDefaultDevice();
TypeParam eps = 0.0;
if (std::is_same<TypeParam, half_fp>::value) {
eps = EPS_HALF;
}
if (std::is_same<TypeParam, float>::value) {
eps = EPS_FLOAT;
}
if (std::is_same<TypeParam, double>::value) {
eps = EPS_DOUBLE;
}
std::random_device rdev;
std::mt19937 rngen(rdev());
std::uniform_int_distribution<int_tp> dimsRand(1, 256);
std::uniform_int_distribution<int_tp> boolRand(0, 1);
std::uniform_int_distribution<int_tp> factorRand(-25, 25);
for (int_tp testIdx = 0; testIdx < 25; ++testIdx) {
int_tp M = dimsRand(rngen);
int_tp N = dimsRand(rngen);
int_tp K = dimsRand(rngen);
CBLAS_TRANSPOSE trans_A = boolRand(rngen) ? CblasTrans : CblasNoTrans;
CBLAS_TRANSPOSE trans_B = boolRand(rngen) ? CblasTrans : CblasNoTrans;
bool has_alpha = boolRand(rngen);
TypeParam alpha_val = factorRand(rngen) / 100.0;
bool has_beta = boolRand(rngen);
TypeParam beta_val = factorRand(rngen) / 100.0;
vector<int_tp> A_shape(4, 1);
vector<int_tp> B_shape(4, 1);
vector<int_tp> C_shape(4, 1);
A_shape[2] = M;
A_shape[3] = K;
B_shape[2] = K;
B_shape[3] = N;
C_shape[2] = M;
C_shape[3] = N;
Blob<TypeParam> A(A_shape, Caffe::GetDefaultDevice());
Blob<TypeParam> B(B_shape, Caffe::GetDefaultDevice());
Blob<TypeParam> C_GPU(C_shape, Caffe::GetDefaultDevice());
Blob<TypeParam> C_CPU(C_shape, Caffe::GetDefaultDevice());
caffe_rng_gaussian(M * K, (TypeParam)0.0, (TypeParam)0.25,
A.mutable_cpu_data());
caffe_rng_gaussian(K * N, (TypeParam)0.0, (TypeParam)0.25,
B.mutable_cpu_data());
caffe_rng_gaussian(M * N, (TypeParam)0.0, (TypeParam)0.25,
C_CPU.mutable_cpu_data());
caffe_copy(M * N, C_CPU.cpu_data(), C_GPU.mutable_cpu_data());
std::cout << "==== Test Case " << testIdx << " ====" << std::endl;
std::cout << "M: " << M << " N: " << N << " K: " << K << std::endl;
std::cout << "alpha: " << (has_alpha ? alpha_val : (TypeParam)1.0) << " "
<< "beta: " << (has_beta ? beta_val : (TypeParam)0.0)
<< std::endl;
std::cout << "trans A: " << (trans_A == CblasTrans) << " "
<< "trans B: " << (trans_B == CblasTrans) << std::endl;
dc->GetLibDNNBlas<TypeParam, TypeParam>()->gemm(
trans_A, trans_B,
M, N, K,
has_alpha ? alpha_val: (TypeParam)1.,
A.gpu_data(), B.gpu_data(),
has_beta ? beta_val : (TypeParam)0.,
C_GPU.mutable_gpu_data());
caffe_gemm<TypeParam>(
trans_A, trans_B,
M, N, K,
has_alpha ? alpha_val: (TypeParam)1.,
A.cpu_data(), B.cpu_data(),
has_beta ? beta_val : (TypeParam)0.,
C_CPU.mutable_cpu_data());
for (int_tp i = 0; i < M * N; ++i) {
EXPECT_NEAR(C_CPU.cpu_data()[i], C_GPU.cpu_data()[i], eps);
// One error is enough to abort
if (fabs(C_CPU.cpu_data()[i] - C_GPU.cpu_data()[i]) >= eps) {
break;
}
}
}
}
TYPED_TEST(LibDNNBlasTest, TestGemvCPUGPU) {
Device *dc = Caffe::GetDefaultDevice();
Blob<TypeParam> A(1, 1, 2, 3, Caffe::GetDefaultDevice());
Blob<TypeParam> x(1, 1, 1, 3, Caffe::GetDefaultDevice());
Blob<TypeParam> y(1, 1, 1, 2, Caffe::GetDefaultDevice());
TypeParam data[6] = {1, 2, 3, 4, 5, 6};
TypeParam result_2[2] = {14, 32};
TypeParam result_3[3] = {9, 12, 15};
caffe_copy(6, data, A.mutable_cpu_data());
caffe_copy(3, data, x.mutable_cpu_data());
caffe_gemv<TypeParam>(CblasNoTrans, 2, 3, 1., A.cpu_data(),
x.cpu_data(), 0., y.mutable_cpu_data());
for (int_tp i = 0; i < 2; ++i) {
EXPECT_EQ(y.cpu_data()[i], result_2[i]);
}
dc->GetLibDNNBlas<TypeParam, TypeParam>()->gemv(CblasNoTrans,
2, 3, 1., A.gpu_data(),
x.gpu_data(), 0., y.mutable_gpu_data());
for (int_tp i = 0; i < 2; ++i) {
EXPECT_EQ(y.cpu_data()[i], result_2[i]);
}
// Test transpose case
caffe_copy(2, data, y.mutable_cpu_data());
caffe_gemv<TypeParam>(CblasTrans, 2, 3, 1., A.cpu_data(),
y.cpu_data(), 0., x.mutable_cpu_data());
for (int_tp i = 0; i < 3; ++i) {
EXPECT_EQ(x.cpu_data()[i], result_3[i]);
}
dc->GetLibDNNBlas<TypeParam, TypeParam>()->gemv(CblasTrans,
2, 3, 1., A.gpu_data(),
y.gpu_data(), 0., x.mutable_gpu_data());
for (int_tp i = 0; i < 3; ++i) {
EXPECT_EQ(x.cpu_data()[i], result_3[i]);
}
}
TYPED_TEST(LibDNNBlasTest, TestGemvComparativeCPUGPU) {
Device *dc = Caffe::GetDefaultDevice();
TypeParam eps = 0.0;
if (std::is_same<TypeParam, half_fp>::value) {
eps = EPS_HALF;
}
if (std::is_same<TypeParam, float>::value) {
eps = EPS_FLOAT;
}
if (std::is_same<TypeParam, double>::value) {
eps = EPS_DOUBLE;
}
std::random_device rdev;
std::mt19937 rngen(rdev());
std::uniform_int_distribution<int_tp> dimsRand(1, 256);
std::uniform_int_distribution<int_tp> boolRand(0, 1);
std::uniform_int_distribution<int_tp> factorRand(-25, 25);
for (int_tp testIdx = 0; testIdx < 25; ++testIdx) {
int_tp M = dimsRand(rngen);
int_tp N = dimsRand(rngen);
CBLAS_TRANSPOSE trans_A = boolRand(rngen) ? CblasTrans : CblasNoTrans;
bool has_alpha = boolRand(rngen);
TypeParam alpha_val = factorRand(rngen) / 100.0;
bool has_beta = boolRand(rngen);
TypeParam beta_val = factorRand(rngen) / 100.0;
vector<int_tp> A_shape(4, 1);
vector<int_tp> x_shape(4, 1);
vector<int_tp> y_shape(4, 1);
A_shape[2] = M;
A_shape[3] = N;
x_shape[3] = trans_A == CblasTrans ? M : N;
y_shape[3] = trans_A == CblasTrans ? N : M;
Blob<TypeParam> A(A_shape, Caffe::GetDefaultDevice());
Blob<TypeParam> x(x_shape, Caffe::GetDefaultDevice());
Blob<TypeParam> y_GPU(y_shape, Caffe::GetDefaultDevice());
Blob<TypeParam> y_CPU(y_shape, Caffe::GetDefaultDevice());
caffe_rng_gaussian(M * N, (TypeParam)0.0, (TypeParam)0.25,
A.mutable_cpu_data());
caffe_rng_gaussian(trans_A == CblasTrans ? M : N, (TypeParam)0.0,
(TypeParam)0.25, x.mutable_cpu_data());
caffe_rng_gaussian(trans_A == CblasTrans ? N : M, (TypeParam)0.0,
(TypeParam)0.25, y_CPU.mutable_cpu_data());
caffe_copy(trans_A == CblasTrans ? N : M, y_CPU.cpu_data(),
y_GPU.mutable_cpu_data());
std::cout << "==== Test Case " << testIdx << " ====" << std::endl;
std::cout << "M: " << M << " N: " << N << std::endl;
std::cout << "alpha: " << (has_alpha ? alpha_val : (TypeParam)1.0) << " "
<< "beta: " << (has_beta ? beta_val : (TypeParam)0.0)
<< std::endl;
std::cout << "trans A: " << (trans_A == CblasTrans) << std::endl;
dc->GetLibDNNBlas<TypeParam, TypeParam>()->gemv(
trans_A,
M, N,
has_alpha ? alpha_val: (TypeParam)1.,
A.gpu_data(), x.gpu_data(),
has_beta ? beta_val : (TypeParam)0.,
y_GPU.mutable_gpu_data());
caffe_gemv<TypeParam>(
trans_A,
M, N,
has_alpha ? alpha_val: (TypeParam)1.,
A.cpu_data(), x.cpu_data(),
has_beta ? beta_val : (TypeParam)0.,
y_CPU.mutable_cpu_data());
for (int_tp i = 0; i < (trans_A == CblasTrans ? N : M); ++i) {
EXPECT_NEAR(y_CPU.cpu_data()[i], y_GPU.cpu_data()[i], eps);
// One error is enough to abort
if (fabs(y_CPU.cpu_data()[i] - y_GPU.cpu_data()[i]) >= eps) {
break;
}
}
}
}
} // namespace caffe
#endif // USE_LIBDNN
|
9d210be1559256a700fe9ef44879f392de5efd5d
|
66145bfba2900cfed2987eb6d4487472b21feaa2
|
/hw7/NewUser.h
|
2ac1a148e6d6d2cfed97f16c36b7d5aa44c4d1e9
|
[] |
no_license
|
jominican/Netflix
|
dcb415be844a089d46ca1b0c1fd81862ca0cccd4
|
50c1adad5e91e541166a9ab25de11f5bd2b0ce18
|
refs/heads/master
| 2021-01-20T12:35:28.965635
| 2015-01-13T19:05:12
| 2015-01-13T19:05:12
| 29,204,791
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,117
|
h
|
NewUser.h
|
#ifndef NEWUSER_H
#define NEWUSER_H
#include <QWidget>
#include <QMainWindow>
#include <QPushButton>
#include <QMessageBox>
#include <QPlainTextEdit>
#include <QHBoxLayout>
#include <QVBoxLayout>
#include <QLineEdit>
#include <QFormLayout>
#include <QLabel>
#include <QString>
#include <string>
#include <string.h>
#include <cstring>
#include "Netflix.h"
using namespace std;
class NewUser : public QMainWindow
{
Q_OBJECT
public:
NewUser(QMainWindow *parent, Netflix * n);//display the newUser window
~NewUser();
private:
QLabel * signupLabel;
QLineEdit * login;
QLineEdit * name;
QLineEdit * password;
QLineEdit * address;
QLineEdit * card;
QFormLayout * loginRow;
QFormLayout * signupRow;
QPushButton * confirmButton;
QPushButton * cancelButton;
QVBoxLayout * newuserLayout;
QHBoxLayout * buttonLayout;
QWidget * centerWidget;
Netflix * netflix;
QMainWindow * p;
//QMainWindow
private slots:
void confirm();
void cancel();
void closeEvent(QCloseEvent *x);
// void quit();
};
#endif
|
4bf0ab13437bb3201bcbee48d3190f7aed0c8ad0
|
39b3568c5fa35c12e7537d0bee3fc10367674f48
|
/src/rsa/rsa_jwk.cpp
|
5dbfd4e23e0895de09801266c5341dcf7334e2a9
|
[
"MIT"
] |
permissive
|
tresorit/node-webcrypto-ossl
|
e01d909549b96e48f0230a706aad66ea95101cab
|
315316b7756edca9df704f43baedd422a73eb7b8
|
refs/heads/master
| 2021-09-15T05:24:59.066437
| 2018-05-26T19:31:38
| 2018-05-26T19:31:38
| 105,989,977
| 0
| 0
| null | 2017-10-06T09:55:02
| 2017-10-06T09:55:01
| null |
UTF-8
|
C++
| false
| false
| 2,238
|
cpp
|
rsa_jwk.cpp
|
#include "rsa_jwk.h"
Handle<JwkRsa> JwkRsa::From(Handle<ScopedEVP_PKEY> pkey, int &key_type) {
LOG_FUNC();
LOG_INFO("Check key_type");
if (!(key_type == NODESSL_KT_PRIVATE || key_type == NODESSL_KT_PUBLIC)) {
THROW_ERROR("Wrong value of key_type");
}
LOG_INFO("Check pkey");
if (pkey == nullptr) {
THROW_ERROR("Key value is nullptr");
}
if (EVP_PKEY_base_id(pkey->Get())!= EVP_PKEY_RSA) {
THROW_ERROR("Key is not RSA type");
}
LOG_INFO("Create JWK Object");
Handle<JwkRsa> jwk(new JwkRsa());
RSA *rsa = EVP_PKEY_get1_RSA(pkey->Get());
LOG_INFO("Convert RSA to JWK");
jwk->type = key_type;
LOG_INFO("Get RSA public key");
const BIGNUM *n;
const BIGNUM *e;
const BIGNUM *d;
const BIGNUM *p;
const BIGNUM *q;
const BIGNUM *dmp1;
const BIGNUM *dmq1;
const BIGNUM *iqmp;
RSA_get0_key(rsa, &n, &e, NULL);
RSA_get0_factors(rsa, &p, &q);
RSA_get0_crt_params(rsa, &dmp1, &dmq1, &iqmp);
jwk->n = BN_dup(n);
jwk->e = BN_dup(e);
if (key_type == NODESSL_KT_PRIVATE) {
LOG_INFO("Get RSA private key");
RSA_get0_key(rsa, NULL, NULL, &d);
jwk->p = BN_dup(p);
jwk->q = BN_dup(q);
jwk->d = BN_dup(d);
jwk->dp = BN_dup(dmp1);
jwk->dq = BN_dup(dmq1);
jwk->qi = BN_dup(iqmp);
}
return jwk;
}
Handle<ScopedEVP_PKEY> JwkRsa::To(int &key_type) {
LOG_FUNC();
LOG_INFO("Check key_type");
if (!(key_type == NODESSL_KT_PRIVATE || key_type == NODESSL_KT_PUBLIC)) {
THROW_ERROR("Wrong value of key_type");
}
if (strcmp(this->kty, "RSA") != 0) {
THROW_ERROR("JWK key is not RSA");
}
RSA* rsa_key = RSA_new();
LOG_INFO("set public key");
RSA_set0_key(rsa_key, BN_dup(this->n.Get()), BN_dup(this->e.Get()), NULL);
if (key_type == NODESSL_KT_PRIVATE) {
LOG_INFO("set private key");
RSA_set0_key(rsa_key, NULL, NULL, BN_dup(this->d.Get()));
RSA_set0_factors(rsa_key, BN_dup(this->p.Get()), BN_dup(this->q.Get()));
RSA_set0_crt_params(rsa_key, BN_dup(this->dp.Get()), BN_dup(this->dq.Get()), BN_dup(this->qi.Get()));
}
LOG_INFO("set key");
ScopedEVP_PKEY pkey(EVP_PKEY_new());
EVP_PKEY_assign_RSA(pkey.Get(), rsa_key);
return Handle<ScopedEVP_PKEY>(new ScopedEVP_PKEY(pkey));
}
|
04076527bbc36e3dab1aa9b8c3356d0e4456927f
|
5d0213b7eba9dfda669a0345e168b49f5d3f1d76
|
/JuegosReunidos/src/InterfazGrafOthello.h
|
ed1bffb0f4a256312fdfb2ea4ce66f8238adaf3a
|
[] |
no_license
|
plandevida/Practica3-TAIS
|
be933f9805cd5ecffb4dece5e8e249a3dbcfb7ca
|
1b5fa014b7ca17192ae1dda43ff63174a94130c3
|
refs/heads/master
| 2021-01-25T03:48:36.650854
| 2014-02-05T11:59:01
| 2014-02-05T11:59:01
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 883
|
h
|
InterfazGrafOthello.h
|
/*
* InterfazGrafOthello.h
*
* Created on: 26/12/2013
* Author: Daniel Serrano Torres
*/
#ifndef INTERFAZGRAFOTHELLO_H_
#define INTERFAZGRAFOTHELLO_H_
using namespace System::Drawing;
#include <sstream>
#include "InterfazGrafT2.h"
#include "JuegoOthello.h"
#pragma unmanaged
class InterfazGrafOthello : public InterfazGrafT2 {
private:
int ladoCasilla;
virtual void muestraEst(Graphics^ canvas, const JuegoOthello& EJ) const throw();
public:
InterfazGrafOthello(int w, int h);
virtual ~InterfazGrafOthello();
virtual unsigned int dameColumna(unsigned int X) const throw(EInterfaz) { return X / ladoCasilla - 1; };
virtual unsigned int dameFila(unsigned int Y) const throw(EInterfaz) { return Y / ladoCasilla - 1; };
virtual void muestraEstado(Graphics^ canvas, const JuegoLogT2& EJ) const throw(EInterfaz);
};
#pragma managed
#endif /* INTERFAZGRAFOTHELLO_H_ */
|
eae417b46397a13a9c38f1d3db9b2e4105a10e40
|
60ab5697e56fea689b045b37830471415cedd50b
|
/crazyflie_gazebo/src/crazyflie_ros/joy_control.cpp
|
2254f32b56334069f788d58a2099828485631def
|
[] |
no_license
|
wuwushrek/sim_cf
|
d08adfcbaec0c94d52bab9f119b2140f702f0f13
|
df68af275c9f753d9bf1b0494a4e513d9f4c9a7c
|
refs/heads/master
| 2021-11-26T14:03:14.841144
| 2021-11-12T14:51:27
| 2021-11-12T14:51:27
| 135,981,793
| 34
| 37
| null | 2021-11-12T14:51:28
| 2018-06-04T06:41:19
|
C++
|
UTF-8
|
C++
| false
| false
| 20,530
|
cpp
|
joy_control.cpp
|
#include <ros/ros.h>
#include <Eigen/Dense>
#include <ros/callback_queue.h>
#include <string>
#include <future>
#include <sensor_msgs/Joy.h>
#include <geometry_msgs/Twist.h>
#include <crazyflie_driver/Stop.h>
#include <crazyflie_driver/UpdateParams.h>
#include <crazyflie_driver/Land.h>
#include <crazyflie_driver/Takeoff.h>
#include <crazyflie_driver/Position.h>
#include <crazyflie_driver/Hover.h>
#include <crazyflie_driver/GenericLogData.h>
#include <tf/transform_datatypes.h>
#include <geometry_msgs/Quaternion.h>
#define ATT_CONTROL_TOPIC "cmd_vel"
#define POS_CONTROL_TOPIC "cmd_position"
#define VEL_CONTROL_TOPIC "cmd_hover"
#define STOP_TOPIC "stop"
#define TAKEOFF_TOPIC "takeoff"
#define LAND_TOPIC "land"
#define UPDATE_PARAMS_TOPIC "update_params"
#define DEG_2_RAD 3.14159265359/180.0
#define POS_VEL_CONTROL 3
#define ACC_ATT_CONTROL 5
#define MAIN_LOOP_RATE 100 //main loop rate for getting more faster all the subscriber datas
#define PI_ 180.0 //3.1415926535897
#define PITCH_MAX (PI_/20.0) //Max pitch angle allowed
#define ROLL_MAX (PI_/20.0) //Max roll angle allowed
#define YAW_MAX_RATE (PI_/3.0) //in deg per seg
#define THROTTLE_MAX 55000 //Max throttle allowed
#define STEP_Z_RATE 0.05
#define STEP_Y_X_RATE 0.05
#define STEP_ROLL_PITCH (PI_/90.0) //increase the roll and yaw max value by this at every key pressed
#define STEP_YAW_RATE (PI_/10.0) //increase max yaw_rate by this
//Joystick configuration
#define THROTTLE_AXE 1 //Up/Down left axis
#define YAW_LEFT_AXE 2 //LT
#define YAW_RIGHT_AXE 5 //RT
#define PITCH_AXE 4 //Up/down right axis
#define ROLL_AXE 3 //left/right right axis
#define POS_ATT 5 //RB
#define VEL_ACC 4 //LB
#define ARM_MOTOR 7 //Start button
#define POS_VEL 2 //X button
#define ATT_ACC 0 //A button
#define TAKEOFF 1 //B button
#define LAND 3 //Y button
#define STEP_Z_INCR 13 //cross key up
#define STEP_Z_DECR 14 //cross key down
#define STEP_LEFT_RIGHT_INCR 12 //cross key right
#define STEP_LEFT_RIGHT_DECR 11 //cross key left
//Publisher for differents kind of quad control
ros::Publisher pos_control_pub;
ros::Publisher att_control_pub;
ros::Publisher vel_control_pub;
ros::ServiceClient stop_client; //Stop service client
ros::ServiceClient takeoff_client; //Takeoff service client
ros::ServiceClient land_client; //Land service client
ros::ServiceClient update_params_client; //Update_params service client
//position topic name
std::string positionTopic;
//Axes mapping for moving around the quad
int left_axe_up_down; //Up|down left axis
int left_axe_left_right; //Left/Right left axis
int yaw_left_axe; //LT joystick
int yaw_right_axe; //Rt joystick
int right_axe_up_down; //Up|down right axes
int right_axe_left_right; //Left|right right axes
//Button action to trigger control state changes
int LB; //Lb button
int RB; //Rb button
int B; //B button
int Y; //Y button
int X; //X button
int A; //A button
int vertical_rate_incr; //cross key up
int vertical_rate_decr; //cros key down
int horizontal_rate_incr; //cross key right
int horizontal_rate_decr; //cross key left
int start; //Start button
//attitude control max values
double pitch_max = PITCH_MAX;
double roll_max = ROLL_MAX;
double yaw_max_rate = YAW_MAX_RATE;
double throttle_max = THROTTLE_MAX;
//velocity control step for x,y and z axis
double max_speed_z = 1.6;
double max_speed_y = 1.3;
double max_speed_x = 1.3;
// Takeoff and landing parameters
double takeoff_height = 0.5; // meters
double takeoff_duration = 2.0; // seconds
double land_duration = 4.0; //seconds
int groupMask = 0;
//Main values to send like position, velocity and acceleration
crazyflie_driver::Position pos_control_msg;
geometry_msgs::Twist att_control_msg;
crazyflie_driver::Hover vel_control_msg;
//Getting feedback from the fcu
geometry_msgs::Point current_pose;
double mc_given_yaw;
bool contain_yaw = false;
double current_yaw;
geometry_msgs::Point current_pos;
//store current control state of the quad
unsigned char current_state = -1;
//save last ARM button press status
bool last_is_arm = false;
bool is_arm = false;
//save last state of takeoff and land
bool last_is_takeoff = false;
bool is_taking_off = false;
bool last_is_landing = false;
bool is_landing = false;
// bool current quad state
bool is_posctl = false;
bool is_attctl = false;
bool is_velctl = false;
//Store axes moves of the joystick
double up_down(0) , left_right(0) , back_forward(0) , yaw(0);
//Main joy callback function for dealing with Joystick event
void joy_callback(const sensor_msgs::Joy::ConstPtr& msg){
bool reset_control_type = false;
// Arm or disarm motors
if (msg->buttons[start] == 1 && !last_is_arm){
is_arm = !is_arm;
if (!is_arm){
/*crazyflie_driver::Stop stop_srv;
stop_srv.request.groupMask = groupMask;
stop_client.call(stop_srv);*/
is_posctl = false;
is_velctl = false;
is_attctl = false;
is_taking_off = false;
is_landing = false;
}
}
//Take off started
if (msg->buttons[B] == 1 && !last_is_takeoff ){
is_posctl = false;
is_velctl = false;
is_attctl = false;
is_taking_off = true;
is_landing = false;
is_arm = true;
crazyflie_driver::Takeoff takeoff_srv;
takeoff_srv.request.height = takeoff_height;
takeoff_srv.request.duration = ros::Duration(takeoff_duration);
takeoff_srv.request.groupMask = groupMask;
takeoff_client.call(takeoff_srv);
}
//landing started
if (msg->buttons[Y] == 1 && !last_is_landing){
is_posctl = false;
is_velctl = false;
is_attctl = false;
is_taking_off = false;
is_landing = true;
is_arm = false;
crazyflie_driver::Land land_srv;
land_srv.request.height = 0;
land_srv.request.duration = ros::Duration(land_duration);
land_srv.request.groupMask = groupMask;
land_client.call(land_srv);
}
//Enable attitude control
if (msg->buttons[A] == 1){
current_state = ACC_ATT_CONTROL;
ROS_WARN("ATTITUDE CONTROL SELECTED ! ");
}
//Enable position or velocity control
if (msg->buttons[X] == 1){
is_attctl = false;
current_state = POS_VEL_CONTROL;
ROS_WARN("POS/VEL CONTROL SELECTED ! ");
}
//Enable position control
if(current_state == POS_VEL_CONTROL && msg->buttons[RB] ==1){
is_attctl = false;
is_posctl = true;
is_velctl = false;
is_taking_off = false;
is_landing = false;
is_arm = true;
reset_control_type = true;
if (contain_yaw)
current_yaw = mc_given_yaw;
ROS_WARN("POSITION CONTROL ACTIVATED ! ");
}
//Enable Velocity control
if(current_state == POS_VEL_CONTROL && msg->buttons[LB] ==1){
is_attctl = false;
is_posctl = false;
is_velctl = true;
is_taking_off = false;
is_landing = false;
is_arm = true;
reset_control_type = true;
ROS_WARN("VELOCITY CONTROL ACTIVATED !");
}
//Enable attitude control
if(current_state == ACC_ATT_CONTROL && msg->buttons[RB] == 1){
is_attctl = true;
is_posctl = false;
is_velctl = false;
is_taking_off = false;
is_landing = false;
is_arm = true;
reset_control_type = true;
ROS_WARN("ATTITUDE CONTROL ACTIVATED !");
}
//Make a call to the service if a type of control is requested
if(reset_control_type){
// current_yaw = mc_given_yaw;
current_pos = current_pose;
}
//Saving moves command
up_down = msg->axes[left_axe_up_down];
left_right = msg->axes[right_axe_left_right];
back_forward = msg->axes[right_axe_up_down];
yaw = -((msg->axes[yaw_left_axe] - 1.0)/2.0) + ((msg->axes[yaw_right_axe] - 1.0)/2.0);
if ( msg->axes[vertical_rate_incr]==1 || msg->axes[horizontal_rate_incr]==1){
if(is_attctl){
yaw_max_rate += msg->axes[vertical_rate_incr]*STEP_YAW_RATE; //- msg->buttons[vertical_rate_decr]*STEP_YAW_RATE;
pitch_max += msg->axes[horizontal_rate_incr]*STEP_ROLL_PITCH; // - msg->buttons[horizontal_rate_decr]*STEP_ROLL_PITCH;
roll_max += msg->axes[horizontal_rate_incr]*STEP_ROLL_PITCH; //- msg->buttons[horizontal_rate_decr]*STEP_ROLL_PITCH;
ROS_WARN("[ATTITUDE CONTROL] CURRENT pitch_max , roll_max , yaw_rate_max : %f , %f , %f ", pitch_max , roll_max , yaw_max_rate);
}else if(is_velctl || is_posctl ){
max_speed_z += msg->axes[vertical_rate_incr]*STEP_Z_RATE; // - msg->buttons[vertical_rate_decr]*STEP_Z_RATE;
max_speed_y += msg->axes[horizontal_rate_incr]*STEP_Y_X_RATE; //- msg->buttons[horizontal_rate_decr]*STEP_Y_X_RATE;
max_speed_x += msg->axes[horizontal_rate_incr]*STEP_Y_X_RATE; //- msg->buttons[horizontal_rate_decr]*STEP_Y_X_RATE;
ROS_WARN("[SPEED RATES] CURRENT vz_max , vy_max , vx_max : %f , %f , %f ", max_speed_z , max_speed_y , max_speed_x);
}
}
//Resetting is_arm variable for being able to toggle between armed and disarmed
last_is_arm = (msg->buttons[start] == 1);
last_is_takeoff = (msg->buttons[B] == 1);
last_is_landing = (msg->buttons[Y] == 1);
}
//Pose data callback
void curr_pos_callback(const crazyflie_driver::GenericLogData::ConstPtr& msg){
current_pose.x = msg->values[0];
current_pose.y = msg->values[1];
current_pose.z = msg->values[2];
if (msg->values.size() == 6){
contain_yaw = true;
mc_given_yaw = msg->values[5] * DEG_2_RAD;
}
// current_pose = msg->pose;
// mc_given_yaw = tf::getYaw(msg->pose.orientation);
}
int main(int argc, char **argv)
{
ros::init(argc,argv,"joy_command_node");
ros::NodeHandle nh_params("~");
if (!nh_params.getParam("positionTopic", positionTopic)){
positionTopic = "position";
ROS_WARN("No parameter positionTopic provided. Using default value %s !", positionTopic.c_str());
}
if(!nh_params.getParam("LB",LB)){
LB = VEL_ACC;
ROS_WARN("No parameter LB provided. Using default value %d !",LB);
}
if(!nh_params.getParam("RB",RB)){
RB = POS_ATT;
ROS_WARN("No parameter RB provided. Using default value %d !",RB);
}
if(!nh_params.getParam("LT",yaw_left_axe)){
yaw_left_axe = YAW_LEFT_AXE;
ROS_WARN("No parameter LT provided. Using default value %d !",yaw_left_axe);
}
if(!nh_params.getParam("RT",yaw_right_axe)){
yaw_right_axe = YAW_RIGHT_AXE;
ROS_WARN("No parameter RT provided. Using default value %d !", yaw_right_axe);
}
if(!nh_params.getParam("Start",start)){
start = ARM_MOTOR;
ROS_WARN("No parameter Start provided. Using default value %d !",start);
}
if(!nh_params.getParam("X", X)){
X = POS_VEL;
ROS_WARN("No parameter X provided. Using default value %d !",X);
}
if(!nh_params.getParam("Y" , Y)){
Y = LAND;
ROS_WARN("No parameter Y provided. Using default value %d !",Y);
}
if(!nh_params.getParam("A" , A)){
A = ATT_ACC;
ROS_WARN("No parameter A provided. Using default value %d !",A);
}
if(!nh_params.getParam("B" , B)){
B = TAKEOFF;
ROS_WARN("No parameter B provided. Using default value %d !", B);
}
if(!nh_params.getParam("up_down_axis_left" , left_axe_up_down)){
left_axe_up_down = THROTTLE_AXE;
ROS_WARN("No parameter up_down_axis_left provided. Using default value %d !",left_axe_up_down);
}
if(!nh_params.getParam("left_right_axis_right" , right_axe_left_right)){
right_axe_left_right = ROLL_AXE;
ROS_WARN("No parameter left_right_axis_right provided. Using default value %d !",right_axe_left_right);
}
if(!nh_params.getParam("up_down_axis_right" , right_axe_up_down)){
right_axe_up_down = PITCH_AXE;
ROS_WARN("No parameter up_down_axis_right provided. Using default value %d !",right_axe_up_down);
}
if(!nh_params.getParam("left_cross_key", horizontal_rate_decr)){
horizontal_rate_decr = STEP_LEFT_RIGHT_DECR;
ROS_WARN("No parameter left_cross_key provided. Using default value %d !",horizontal_rate_decr);
}
if(!nh_params.getParam("right_cross_key" , horizontal_rate_incr)){
horizontal_rate_incr = STEP_LEFT_RIGHT_INCR;
ROS_WARN("No parameter right_cross_key provided. Using default value %d !",horizontal_rate_incr);
}
if(!nh_params.getParam("down_cross_key" , vertical_rate_decr)){
vertical_rate_decr = STEP_Z_DECR;
ROS_WARN("No parameter down_cross_key provided. Using default value %d !",vertical_rate_decr);
}
if(!nh_params.getParam("up_cross_key" , vertical_rate_incr)){
vertical_rate_incr = STEP_Z_INCR;
ROS_WARN("No parameter up_cross_key provided. Using default value %d !",vertical_rate_incr);
}
if(!nh_params.getParam("throttle_max" , throttle_max)){
throttle_max = THROTTLE_MAX;
ROS_WARN("No parameter throttle_max provided. Using default value %f deg!",throttle_max);
}
if(!nh_params.getParam("yaw_rate_max" , yaw_max_rate)){
yaw_max_rate = YAW_MAX_RATE;
ROS_WARN("No parameter yaw_rate_max provided. Using default value %f deg!",180.0*yaw_max_rate/PI_);
}
if(!nh_params.getParam("pitch_max" , pitch_max)){
pitch_max = PITCH_MAX;
ROS_WARN("No parameter pitch_max provided. Using default value %f deg!",180.0 * pitch_max/PI_);
}
if(!nh_params.getParam("roll_max" , roll_max)){
roll_max = ROLL_MAX;
ROS_WARN("No parameter roll_max provided. Using default value %f deg!",180.0 * roll_max /PI_);
}
if (!nh_params.getParam("takeoff_height" , takeoff_height)){
ROS_WARN("No parameter takeoff_height provided. Using default %f m", takeoff_height);
}
if (!nh_params.getParam("takeoff_duration" , takeoff_duration)){
ROS_WARN("No parameter takeoff_duration provided. Using default %f s", takeoff_duration);
}
if (!nh_params.getParam("land_duration" , land_duration)){
ROS_WARN("No parameter land_duration provided. Using default %f s", land_duration);
}
if (!nh_params.getParam("groupMask" , groupMask)){
ROS_WARN("No parameter groupMask provided. Using default %d ", groupMask);
}
bool only_command;
if(!nh_params.getParam("only_command" , only_command)){
only_command = false;
ROS_WARN("No parameter only_command provided. Using default value %d !",only_command);
}
//Appropriate node_handle
ros::CallbackQueue m_callback_queue;
ros::NodeHandle nh;
nh.setCallbackQueue(&m_callback_queue);
//Publishers
pos_control_pub = nh.advertise<crazyflie_driver::Position>(POS_CONTROL_TOPIC , 10);
att_control_pub = nh.advertise<geometry_msgs::Twist>(ATT_CONTROL_TOPIC , 10);
vel_control_pub = nh.advertise<crazyflie_driver::Hover>(VEL_CONTROL_TOPIC , 10);
//Subscribers
ros::Subscriber joy_sub =nh.subscribe<sensor_msgs::Joy>("joy",10,joy_callback);
ros::Subscriber pose_subscriber = nh.subscribe<crazyflie_driver::GenericLogData>(positionTopic,10,curr_pos_callback);
//Service
takeoff_client = nh.serviceClient<crazyflie_driver::Takeoff>(TAKEOFF_TOPIC);
land_client = nh.serviceClient<crazyflie_driver::Land>(LAND_TOPIC);
stop_client = nh.serviceClient<crazyflie_driver::Stop>(STOP_TOPIC);
update_params_client = nh.serviceClient<crazyflie_driver::UpdateParams>(UPDATE_PARAMS_TOPIC);
//Main loop rate
ros::Rate main_rate(MAIN_LOOP_RATE);
// Need to arm a first time before anything else
while (!last_is_arm){
m_callback_queue.callAvailable(ros::WallDuration(0.0));
std::this_thread::sleep_for(std::chrono::milliseconds(100));
}
crazyflie_driver::UpdateParams m_params;
m_params.request.params.push_back("commander/enHighLevel");
ros::param::set("commander/enHighLevel" , 1);
update_params_client.call(m_params);
//setting initial yaw and initial position
if (contain_yaw)
current_yaw = mc_given_yaw;
else
current_yaw = 0;
current_pos = current_pose;
ROS_WARN("[JOY NODE ]: initial pos : %f , %f , %f ",current_pos.x , current_pos.y , current_pos.z);
ros::Time last_time = ros::Time::now();
ros::Time current_time = ros::Time::now();
ros::Duration dt;
while(ros::ok()){
current_time = ros::Time::now();
dt = current_time - last_time;
last_time = current_time;
if (!is_posctl && !is_attctl && !is_velctl && !is_taking_off && !is_landing){
/*geometry_msgs::Twist arm_twist_msg;
if (is_arm)
arm_twist_msg.linear.z = 10000;
else
arm_twist_msg.linear.z = 0;
att_control_pub.publish(arm_twist_msg);*/
}
if(!only_command && is_posctl){ //Position control
current_pos.x += back_forward * max_speed_x * dt.toSec();
current_pos.y += left_right * max_speed_y * dt.toSec();
current_pos.z += up_down * max_speed_z * dt.toSec();
current_yaw += yaw * (yaw_max_rate) * dt.toSec();
pos_control_msg.header.seq += 1;
pos_control_msg.header.stamp = ros::Time::now();
pos_control_msg.yaw = current_yaw;
pos_control_msg.x = current_pos.x;
pos_control_msg.y = current_pos.y;
pos_control_msg.z = current_pos.z;
pos_control_pub.publish(pos_control_msg);
}
if(!only_command && is_velctl){ //Velocity control state
current_pos.z += up_down * max_speed_z * dt.toSec();
vel_control_msg.header.seq += 1;
vel_control_msg.header.stamp = ros::Time::now();
vel_control_msg.vx = back_forward * max_speed_x;
vel_control_msg.vy = left_right * max_speed_y;
vel_control_msg.zDistance = current_pos.z; // up_down * max_speed_z;
vel_control_msg.yawrate = - yaw * (yaw_max_rate);
current_yaw += yaw * (yaw_max_rate) * dt.toSec();
vel_control_pub.publish(vel_control_msg);
}
if(!only_command && is_attctl){ //Attitude control
att_control_msg.linear.y = - left_right * roll_max;
att_control_msg.linear.x = back_forward * pitch_max;
current_yaw += yaw * (yaw_max_rate) * dt.toSec();
att_control_msg.linear.z = up_down * throttle_max ;
att_control_msg.angular.z = - yaw * (yaw_max_rate);
att_control_pub.publish(att_control_msg);
}
m_callback_queue.callAvailable(ros::WallDuration(0.0));
std::this_thread::sleep_for(std::chrono::milliseconds(10));
}
ros::param::set("commander/enHighLevel" , 0);
update_params_client.call(m_params);
return 0;
}
|
e78d757e1c1cd915631b2b6d8f55e2249af3da11
|
d0fb46aecc3b69983e7f6244331a81dff42d9595
|
/waf-openapi/include/alibabacloud/waf-openapi/Waf_openapiClient.h
|
f0f9a2d4a24ea5ba2e1b3de41eeb4c39f7fb4f9d
|
[
"Apache-2.0"
] |
permissive
|
aliyun/aliyun-openapi-cpp-sdk
|
3d8d051d44ad00753a429817dd03957614c0c66a
|
e862bd03c844bcb7ccaa90571bceaa2802c7f135
|
refs/heads/master
| 2023-08-29T11:54:00.525102
| 2023-08-29T03:32:48
| 2023-08-29T03:32:48
| 115,379,460
| 104
| 82
|
NOASSERTION
| 2023-09-14T06:13:33
| 2017-12-26T02:53:27
|
C++
|
UTF-8
|
C++
| false
| false
| 34,225
|
h
|
Waf_openapiClient.h
|
/*
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
*
* 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.
*/
#ifndef ALIBABACLOUD_WAF_OPENAPI_WAF_OPENAPICLIENT_H_
#define ALIBABACLOUD_WAF_OPENAPI_WAF_OPENAPICLIENT_H_
#include <future>
#include <alibabacloud/core/AsyncCallerContext.h>
#include <alibabacloud/core/EndpointProvider.h>
#include <alibabacloud/core/RpcServiceClient.h>
#include "Waf_openapiExport.h"
#include "model/CreateCertificateRequest.h"
#include "model/CreateCertificateResult.h"
#include "model/CreateCertificateByCertificateIdRequest.h"
#include "model/CreateCertificateByCertificateIdResult.h"
#include "model/CreateDomainRequest.h"
#include "model/CreateDomainResult.h"
#include "model/CreateProtectionModuleRuleRequest.h"
#include "model/CreateProtectionModuleRuleResult.h"
#include "model/DeleteDomainRequest.h"
#include "model/DeleteDomainResult.h"
#include "model/DeleteInstanceRequest.h"
#include "model/DeleteInstanceResult.h"
#include "model/DeleteProtectionModuleRuleRequest.h"
#include "model/DeleteProtectionModuleRuleResult.h"
#include "model/DescribeCertMatchStatusRequest.h"
#include "model/DescribeCertMatchStatusResult.h"
#include "model/DescribeCertificatesRequest.h"
#include "model/DescribeCertificatesResult.h"
#include "model/DescribeDomainRequest.h"
#include "model/DescribeDomainResult.h"
#include "model/DescribeDomainAdvanceConfigsRequest.h"
#include "model/DescribeDomainAdvanceConfigsResult.h"
#include "model/DescribeDomainBasicConfigsRequest.h"
#include "model/DescribeDomainBasicConfigsResult.h"
#include "model/DescribeDomainListRequest.h"
#include "model/DescribeDomainListResult.h"
#include "model/DescribeDomainNamesRequest.h"
#include "model/DescribeDomainNamesResult.h"
#include "model/DescribeDomainRuleGroupRequest.h"
#include "model/DescribeDomainRuleGroupResult.h"
#include "model/DescribeInstanceInfoRequest.h"
#include "model/DescribeInstanceInfoResult.h"
#include "model/DescribeInstanceSpecInfoRequest.h"
#include "model/DescribeInstanceSpecInfoResult.h"
#include "model/DescribeLogServiceStatusRequest.h"
#include "model/DescribeLogServiceStatusResult.h"
#include "model/DescribeProtectionModuleCodeConfigRequest.h"
#include "model/DescribeProtectionModuleCodeConfigResult.h"
#include "model/DescribeProtectionModuleRulesRequest.h"
#include "model/DescribeProtectionModuleRulesResult.h"
#include "model/DescribeProtectionModuleStatusRequest.h"
#include "model/DescribeProtectionModuleStatusResult.h"
#include "model/DescribeWafSourceIpSegmentRequest.h"
#include "model/DescribeWafSourceIpSegmentResult.h"
#include "model/ModifyDomainRequest.h"
#include "model/ModifyDomainResult.h"
#include "model/ModifyDomainIpv6StatusRequest.h"
#include "model/ModifyDomainIpv6StatusResult.h"
#include "model/ModifyLogRetrievalStatusRequest.h"
#include "model/ModifyLogRetrievalStatusResult.h"
#include "model/ModifyLogServiceStatusRequest.h"
#include "model/ModifyLogServiceStatusResult.h"
#include "model/ModifyProtectionModuleModeRequest.h"
#include "model/ModifyProtectionModuleModeResult.h"
#include "model/ModifyProtectionModuleRuleRequest.h"
#include "model/ModifyProtectionModuleRuleResult.h"
#include "model/ModifyProtectionModuleStatusRequest.h"
#include "model/ModifyProtectionModuleStatusResult.h"
#include "model/ModifyProtectionRuleCacheStatusRequest.h"
#include "model/ModifyProtectionRuleCacheStatusResult.h"
#include "model/ModifyProtectionRuleStatusRequest.h"
#include "model/ModifyProtectionRuleStatusResult.h"
#include "model/MoveResourceGroupRequest.h"
#include "model/MoveResourceGroupResult.h"
#include "model/SetDomainRuleGroupRequest.h"
#include "model/SetDomainRuleGroupResult.h"
namespace AlibabaCloud
{
namespace Waf_openapi
{
class ALIBABACLOUD_WAF_OPENAPI_EXPORT Waf_openapiClient : public RpcServiceClient
{
public:
typedef Outcome<Error, Model::CreateCertificateResult> CreateCertificateOutcome;
typedef std::future<CreateCertificateOutcome> CreateCertificateOutcomeCallable;
typedef std::function<void(const Waf_openapiClient*, const Model::CreateCertificateRequest&, const CreateCertificateOutcome&, const std::shared_ptr<const AsyncCallerContext>&)> CreateCertificateAsyncHandler;
typedef Outcome<Error, Model::CreateCertificateByCertificateIdResult> CreateCertificateByCertificateIdOutcome;
typedef std::future<CreateCertificateByCertificateIdOutcome> CreateCertificateByCertificateIdOutcomeCallable;
typedef std::function<void(const Waf_openapiClient*, const Model::CreateCertificateByCertificateIdRequest&, const CreateCertificateByCertificateIdOutcome&, const std::shared_ptr<const AsyncCallerContext>&)> CreateCertificateByCertificateIdAsyncHandler;
typedef Outcome<Error, Model::CreateDomainResult> CreateDomainOutcome;
typedef std::future<CreateDomainOutcome> CreateDomainOutcomeCallable;
typedef std::function<void(const Waf_openapiClient*, const Model::CreateDomainRequest&, const CreateDomainOutcome&, const std::shared_ptr<const AsyncCallerContext>&)> CreateDomainAsyncHandler;
typedef Outcome<Error, Model::CreateProtectionModuleRuleResult> CreateProtectionModuleRuleOutcome;
typedef std::future<CreateProtectionModuleRuleOutcome> CreateProtectionModuleRuleOutcomeCallable;
typedef std::function<void(const Waf_openapiClient*, const Model::CreateProtectionModuleRuleRequest&, const CreateProtectionModuleRuleOutcome&, const std::shared_ptr<const AsyncCallerContext>&)> CreateProtectionModuleRuleAsyncHandler;
typedef Outcome<Error, Model::DeleteDomainResult> DeleteDomainOutcome;
typedef std::future<DeleteDomainOutcome> DeleteDomainOutcomeCallable;
typedef std::function<void(const Waf_openapiClient*, const Model::DeleteDomainRequest&, const DeleteDomainOutcome&, const std::shared_ptr<const AsyncCallerContext>&)> DeleteDomainAsyncHandler;
typedef Outcome<Error, Model::DeleteInstanceResult> DeleteInstanceOutcome;
typedef std::future<DeleteInstanceOutcome> DeleteInstanceOutcomeCallable;
typedef std::function<void(const Waf_openapiClient*, const Model::DeleteInstanceRequest&, const DeleteInstanceOutcome&, const std::shared_ptr<const AsyncCallerContext>&)> DeleteInstanceAsyncHandler;
typedef Outcome<Error, Model::DeleteProtectionModuleRuleResult> DeleteProtectionModuleRuleOutcome;
typedef std::future<DeleteProtectionModuleRuleOutcome> DeleteProtectionModuleRuleOutcomeCallable;
typedef std::function<void(const Waf_openapiClient*, const Model::DeleteProtectionModuleRuleRequest&, const DeleteProtectionModuleRuleOutcome&, const std::shared_ptr<const AsyncCallerContext>&)> DeleteProtectionModuleRuleAsyncHandler;
typedef Outcome<Error, Model::DescribeCertMatchStatusResult> DescribeCertMatchStatusOutcome;
typedef std::future<DescribeCertMatchStatusOutcome> DescribeCertMatchStatusOutcomeCallable;
typedef std::function<void(const Waf_openapiClient*, const Model::DescribeCertMatchStatusRequest&, const DescribeCertMatchStatusOutcome&, const std::shared_ptr<const AsyncCallerContext>&)> DescribeCertMatchStatusAsyncHandler;
typedef Outcome<Error, Model::DescribeCertificatesResult> DescribeCertificatesOutcome;
typedef std::future<DescribeCertificatesOutcome> DescribeCertificatesOutcomeCallable;
typedef std::function<void(const Waf_openapiClient*, const Model::DescribeCertificatesRequest&, const DescribeCertificatesOutcome&, const std::shared_ptr<const AsyncCallerContext>&)> DescribeCertificatesAsyncHandler;
typedef Outcome<Error, Model::DescribeDomainResult> DescribeDomainOutcome;
typedef std::future<DescribeDomainOutcome> DescribeDomainOutcomeCallable;
typedef std::function<void(const Waf_openapiClient*, const Model::DescribeDomainRequest&, const DescribeDomainOutcome&, const std::shared_ptr<const AsyncCallerContext>&)> DescribeDomainAsyncHandler;
typedef Outcome<Error, Model::DescribeDomainAdvanceConfigsResult> DescribeDomainAdvanceConfigsOutcome;
typedef std::future<DescribeDomainAdvanceConfigsOutcome> DescribeDomainAdvanceConfigsOutcomeCallable;
typedef std::function<void(const Waf_openapiClient*, const Model::DescribeDomainAdvanceConfigsRequest&, const DescribeDomainAdvanceConfigsOutcome&, const std::shared_ptr<const AsyncCallerContext>&)> DescribeDomainAdvanceConfigsAsyncHandler;
typedef Outcome<Error, Model::DescribeDomainBasicConfigsResult> DescribeDomainBasicConfigsOutcome;
typedef std::future<DescribeDomainBasicConfigsOutcome> DescribeDomainBasicConfigsOutcomeCallable;
typedef std::function<void(const Waf_openapiClient*, const Model::DescribeDomainBasicConfigsRequest&, const DescribeDomainBasicConfigsOutcome&, const std::shared_ptr<const AsyncCallerContext>&)> DescribeDomainBasicConfigsAsyncHandler;
typedef Outcome<Error, Model::DescribeDomainListResult> DescribeDomainListOutcome;
typedef std::future<DescribeDomainListOutcome> DescribeDomainListOutcomeCallable;
typedef std::function<void(const Waf_openapiClient*, const Model::DescribeDomainListRequest&, const DescribeDomainListOutcome&, const std::shared_ptr<const AsyncCallerContext>&)> DescribeDomainListAsyncHandler;
typedef Outcome<Error, Model::DescribeDomainNamesResult> DescribeDomainNamesOutcome;
typedef std::future<DescribeDomainNamesOutcome> DescribeDomainNamesOutcomeCallable;
typedef std::function<void(const Waf_openapiClient*, const Model::DescribeDomainNamesRequest&, const DescribeDomainNamesOutcome&, const std::shared_ptr<const AsyncCallerContext>&)> DescribeDomainNamesAsyncHandler;
typedef Outcome<Error, Model::DescribeDomainRuleGroupResult> DescribeDomainRuleGroupOutcome;
typedef std::future<DescribeDomainRuleGroupOutcome> DescribeDomainRuleGroupOutcomeCallable;
typedef std::function<void(const Waf_openapiClient*, const Model::DescribeDomainRuleGroupRequest&, const DescribeDomainRuleGroupOutcome&, const std::shared_ptr<const AsyncCallerContext>&)> DescribeDomainRuleGroupAsyncHandler;
typedef Outcome<Error, Model::DescribeInstanceInfoResult> DescribeInstanceInfoOutcome;
typedef std::future<DescribeInstanceInfoOutcome> DescribeInstanceInfoOutcomeCallable;
typedef std::function<void(const Waf_openapiClient*, const Model::DescribeInstanceInfoRequest&, const DescribeInstanceInfoOutcome&, const std::shared_ptr<const AsyncCallerContext>&)> DescribeInstanceInfoAsyncHandler;
typedef Outcome<Error, Model::DescribeInstanceSpecInfoResult> DescribeInstanceSpecInfoOutcome;
typedef std::future<DescribeInstanceSpecInfoOutcome> DescribeInstanceSpecInfoOutcomeCallable;
typedef std::function<void(const Waf_openapiClient*, const Model::DescribeInstanceSpecInfoRequest&, const DescribeInstanceSpecInfoOutcome&, const std::shared_ptr<const AsyncCallerContext>&)> DescribeInstanceSpecInfoAsyncHandler;
typedef Outcome<Error, Model::DescribeLogServiceStatusResult> DescribeLogServiceStatusOutcome;
typedef std::future<DescribeLogServiceStatusOutcome> DescribeLogServiceStatusOutcomeCallable;
typedef std::function<void(const Waf_openapiClient*, const Model::DescribeLogServiceStatusRequest&, const DescribeLogServiceStatusOutcome&, const std::shared_ptr<const AsyncCallerContext>&)> DescribeLogServiceStatusAsyncHandler;
typedef Outcome<Error, Model::DescribeProtectionModuleCodeConfigResult> DescribeProtectionModuleCodeConfigOutcome;
typedef std::future<DescribeProtectionModuleCodeConfigOutcome> DescribeProtectionModuleCodeConfigOutcomeCallable;
typedef std::function<void(const Waf_openapiClient*, const Model::DescribeProtectionModuleCodeConfigRequest&, const DescribeProtectionModuleCodeConfigOutcome&, const std::shared_ptr<const AsyncCallerContext>&)> DescribeProtectionModuleCodeConfigAsyncHandler;
typedef Outcome<Error, Model::DescribeProtectionModuleRulesResult> DescribeProtectionModuleRulesOutcome;
typedef std::future<DescribeProtectionModuleRulesOutcome> DescribeProtectionModuleRulesOutcomeCallable;
typedef std::function<void(const Waf_openapiClient*, const Model::DescribeProtectionModuleRulesRequest&, const DescribeProtectionModuleRulesOutcome&, const std::shared_ptr<const AsyncCallerContext>&)> DescribeProtectionModuleRulesAsyncHandler;
typedef Outcome<Error, Model::DescribeProtectionModuleStatusResult> DescribeProtectionModuleStatusOutcome;
typedef std::future<DescribeProtectionModuleStatusOutcome> DescribeProtectionModuleStatusOutcomeCallable;
typedef std::function<void(const Waf_openapiClient*, const Model::DescribeProtectionModuleStatusRequest&, const DescribeProtectionModuleStatusOutcome&, const std::shared_ptr<const AsyncCallerContext>&)> DescribeProtectionModuleStatusAsyncHandler;
typedef Outcome<Error, Model::DescribeWafSourceIpSegmentResult> DescribeWafSourceIpSegmentOutcome;
typedef std::future<DescribeWafSourceIpSegmentOutcome> DescribeWafSourceIpSegmentOutcomeCallable;
typedef std::function<void(const Waf_openapiClient*, const Model::DescribeWafSourceIpSegmentRequest&, const DescribeWafSourceIpSegmentOutcome&, const std::shared_ptr<const AsyncCallerContext>&)> DescribeWafSourceIpSegmentAsyncHandler;
typedef Outcome<Error, Model::ModifyDomainResult> ModifyDomainOutcome;
typedef std::future<ModifyDomainOutcome> ModifyDomainOutcomeCallable;
typedef std::function<void(const Waf_openapiClient*, const Model::ModifyDomainRequest&, const ModifyDomainOutcome&, const std::shared_ptr<const AsyncCallerContext>&)> ModifyDomainAsyncHandler;
typedef Outcome<Error, Model::ModifyDomainIpv6StatusResult> ModifyDomainIpv6StatusOutcome;
typedef std::future<ModifyDomainIpv6StatusOutcome> ModifyDomainIpv6StatusOutcomeCallable;
typedef std::function<void(const Waf_openapiClient*, const Model::ModifyDomainIpv6StatusRequest&, const ModifyDomainIpv6StatusOutcome&, const std::shared_ptr<const AsyncCallerContext>&)> ModifyDomainIpv6StatusAsyncHandler;
typedef Outcome<Error, Model::ModifyLogRetrievalStatusResult> ModifyLogRetrievalStatusOutcome;
typedef std::future<ModifyLogRetrievalStatusOutcome> ModifyLogRetrievalStatusOutcomeCallable;
typedef std::function<void(const Waf_openapiClient*, const Model::ModifyLogRetrievalStatusRequest&, const ModifyLogRetrievalStatusOutcome&, const std::shared_ptr<const AsyncCallerContext>&)> ModifyLogRetrievalStatusAsyncHandler;
typedef Outcome<Error, Model::ModifyLogServiceStatusResult> ModifyLogServiceStatusOutcome;
typedef std::future<ModifyLogServiceStatusOutcome> ModifyLogServiceStatusOutcomeCallable;
typedef std::function<void(const Waf_openapiClient*, const Model::ModifyLogServiceStatusRequest&, const ModifyLogServiceStatusOutcome&, const std::shared_ptr<const AsyncCallerContext>&)> ModifyLogServiceStatusAsyncHandler;
typedef Outcome<Error, Model::ModifyProtectionModuleModeResult> ModifyProtectionModuleModeOutcome;
typedef std::future<ModifyProtectionModuleModeOutcome> ModifyProtectionModuleModeOutcomeCallable;
typedef std::function<void(const Waf_openapiClient*, const Model::ModifyProtectionModuleModeRequest&, const ModifyProtectionModuleModeOutcome&, const std::shared_ptr<const AsyncCallerContext>&)> ModifyProtectionModuleModeAsyncHandler;
typedef Outcome<Error, Model::ModifyProtectionModuleRuleResult> ModifyProtectionModuleRuleOutcome;
typedef std::future<ModifyProtectionModuleRuleOutcome> ModifyProtectionModuleRuleOutcomeCallable;
typedef std::function<void(const Waf_openapiClient*, const Model::ModifyProtectionModuleRuleRequest&, const ModifyProtectionModuleRuleOutcome&, const std::shared_ptr<const AsyncCallerContext>&)> ModifyProtectionModuleRuleAsyncHandler;
typedef Outcome<Error, Model::ModifyProtectionModuleStatusResult> ModifyProtectionModuleStatusOutcome;
typedef std::future<ModifyProtectionModuleStatusOutcome> ModifyProtectionModuleStatusOutcomeCallable;
typedef std::function<void(const Waf_openapiClient*, const Model::ModifyProtectionModuleStatusRequest&, const ModifyProtectionModuleStatusOutcome&, const std::shared_ptr<const AsyncCallerContext>&)> ModifyProtectionModuleStatusAsyncHandler;
typedef Outcome<Error, Model::ModifyProtectionRuleCacheStatusResult> ModifyProtectionRuleCacheStatusOutcome;
typedef std::future<ModifyProtectionRuleCacheStatusOutcome> ModifyProtectionRuleCacheStatusOutcomeCallable;
typedef std::function<void(const Waf_openapiClient*, const Model::ModifyProtectionRuleCacheStatusRequest&, const ModifyProtectionRuleCacheStatusOutcome&, const std::shared_ptr<const AsyncCallerContext>&)> ModifyProtectionRuleCacheStatusAsyncHandler;
typedef Outcome<Error, Model::ModifyProtectionRuleStatusResult> ModifyProtectionRuleStatusOutcome;
typedef std::future<ModifyProtectionRuleStatusOutcome> ModifyProtectionRuleStatusOutcomeCallable;
typedef std::function<void(const Waf_openapiClient*, const Model::ModifyProtectionRuleStatusRequest&, const ModifyProtectionRuleStatusOutcome&, const std::shared_ptr<const AsyncCallerContext>&)> ModifyProtectionRuleStatusAsyncHandler;
typedef Outcome<Error, Model::MoveResourceGroupResult> MoveResourceGroupOutcome;
typedef std::future<MoveResourceGroupOutcome> MoveResourceGroupOutcomeCallable;
typedef std::function<void(const Waf_openapiClient*, const Model::MoveResourceGroupRequest&, const MoveResourceGroupOutcome&, const std::shared_ptr<const AsyncCallerContext>&)> MoveResourceGroupAsyncHandler;
typedef Outcome<Error, Model::SetDomainRuleGroupResult> SetDomainRuleGroupOutcome;
typedef std::future<SetDomainRuleGroupOutcome> SetDomainRuleGroupOutcomeCallable;
typedef std::function<void(const Waf_openapiClient*, const Model::SetDomainRuleGroupRequest&, const SetDomainRuleGroupOutcome&, const std::shared_ptr<const AsyncCallerContext>&)> SetDomainRuleGroupAsyncHandler;
Waf_openapiClient(const Credentials &credentials, const ClientConfiguration &configuration);
Waf_openapiClient(const std::shared_ptr<CredentialsProvider> &credentialsProvider, const ClientConfiguration &configuration);
Waf_openapiClient(const std::string &accessKeyId, const std::string &accessKeySecret, const ClientConfiguration &configuration);
~Waf_openapiClient();
CreateCertificateOutcome createCertificate(const Model::CreateCertificateRequest &request)const;
void createCertificateAsync(const Model::CreateCertificateRequest& request, const CreateCertificateAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context = nullptr) const;
CreateCertificateOutcomeCallable createCertificateCallable(const Model::CreateCertificateRequest& request) const;
CreateCertificateByCertificateIdOutcome createCertificateByCertificateId(const Model::CreateCertificateByCertificateIdRequest &request)const;
void createCertificateByCertificateIdAsync(const Model::CreateCertificateByCertificateIdRequest& request, const CreateCertificateByCertificateIdAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context = nullptr) const;
CreateCertificateByCertificateIdOutcomeCallable createCertificateByCertificateIdCallable(const Model::CreateCertificateByCertificateIdRequest& request) const;
CreateDomainOutcome createDomain(const Model::CreateDomainRequest &request)const;
void createDomainAsync(const Model::CreateDomainRequest& request, const CreateDomainAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context = nullptr) const;
CreateDomainOutcomeCallable createDomainCallable(const Model::CreateDomainRequest& request) const;
CreateProtectionModuleRuleOutcome createProtectionModuleRule(const Model::CreateProtectionModuleRuleRequest &request)const;
void createProtectionModuleRuleAsync(const Model::CreateProtectionModuleRuleRequest& request, const CreateProtectionModuleRuleAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context = nullptr) const;
CreateProtectionModuleRuleOutcomeCallable createProtectionModuleRuleCallable(const Model::CreateProtectionModuleRuleRequest& request) const;
DeleteDomainOutcome deleteDomain(const Model::DeleteDomainRequest &request)const;
void deleteDomainAsync(const Model::DeleteDomainRequest& request, const DeleteDomainAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context = nullptr) const;
DeleteDomainOutcomeCallable deleteDomainCallable(const Model::DeleteDomainRequest& request) const;
DeleteInstanceOutcome deleteInstance(const Model::DeleteInstanceRequest &request)const;
void deleteInstanceAsync(const Model::DeleteInstanceRequest& request, const DeleteInstanceAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context = nullptr) const;
DeleteInstanceOutcomeCallable deleteInstanceCallable(const Model::DeleteInstanceRequest& request) const;
DeleteProtectionModuleRuleOutcome deleteProtectionModuleRule(const Model::DeleteProtectionModuleRuleRequest &request)const;
void deleteProtectionModuleRuleAsync(const Model::DeleteProtectionModuleRuleRequest& request, const DeleteProtectionModuleRuleAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context = nullptr) const;
DeleteProtectionModuleRuleOutcomeCallable deleteProtectionModuleRuleCallable(const Model::DeleteProtectionModuleRuleRequest& request) const;
DescribeCertMatchStatusOutcome describeCertMatchStatus(const Model::DescribeCertMatchStatusRequest &request)const;
void describeCertMatchStatusAsync(const Model::DescribeCertMatchStatusRequest& request, const DescribeCertMatchStatusAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context = nullptr) const;
DescribeCertMatchStatusOutcomeCallable describeCertMatchStatusCallable(const Model::DescribeCertMatchStatusRequest& request) const;
DescribeCertificatesOutcome describeCertificates(const Model::DescribeCertificatesRequest &request)const;
void describeCertificatesAsync(const Model::DescribeCertificatesRequest& request, const DescribeCertificatesAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context = nullptr) const;
DescribeCertificatesOutcomeCallable describeCertificatesCallable(const Model::DescribeCertificatesRequest& request) const;
DescribeDomainOutcome describeDomain(const Model::DescribeDomainRequest &request)const;
void describeDomainAsync(const Model::DescribeDomainRequest& request, const DescribeDomainAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context = nullptr) const;
DescribeDomainOutcomeCallable describeDomainCallable(const Model::DescribeDomainRequest& request) const;
DescribeDomainAdvanceConfigsOutcome describeDomainAdvanceConfigs(const Model::DescribeDomainAdvanceConfigsRequest &request)const;
void describeDomainAdvanceConfigsAsync(const Model::DescribeDomainAdvanceConfigsRequest& request, const DescribeDomainAdvanceConfigsAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context = nullptr) const;
DescribeDomainAdvanceConfigsOutcomeCallable describeDomainAdvanceConfigsCallable(const Model::DescribeDomainAdvanceConfigsRequest& request) const;
DescribeDomainBasicConfigsOutcome describeDomainBasicConfigs(const Model::DescribeDomainBasicConfigsRequest &request)const;
void describeDomainBasicConfigsAsync(const Model::DescribeDomainBasicConfigsRequest& request, const DescribeDomainBasicConfigsAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context = nullptr) const;
DescribeDomainBasicConfigsOutcomeCallable describeDomainBasicConfigsCallable(const Model::DescribeDomainBasicConfigsRequest& request) const;
DescribeDomainListOutcome describeDomainList(const Model::DescribeDomainListRequest &request)const;
void describeDomainListAsync(const Model::DescribeDomainListRequest& request, const DescribeDomainListAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context = nullptr) const;
DescribeDomainListOutcomeCallable describeDomainListCallable(const Model::DescribeDomainListRequest& request) const;
DescribeDomainNamesOutcome describeDomainNames(const Model::DescribeDomainNamesRequest &request)const;
void describeDomainNamesAsync(const Model::DescribeDomainNamesRequest& request, const DescribeDomainNamesAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context = nullptr) const;
DescribeDomainNamesOutcomeCallable describeDomainNamesCallable(const Model::DescribeDomainNamesRequest& request) const;
DescribeDomainRuleGroupOutcome describeDomainRuleGroup(const Model::DescribeDomainRuleGroupRequest &request)const;
void describeDomainRuleGroupAsync(const Model::DescribeDomainRuleGroupRequest& request, const DescribeDomainRuleGroupAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context = nullptr) const;
DescribeDomainRuleGroupOutcomeCallable describeDomainRuleGroupCallable(const Model::DescribeDomainRuleGroupRequest& request) const;
DescribeInstanceInfoOutcome describeInstanceInfo(const Model::DescribeInstanceInfoRequest &request)const;
void describeInstanceInfoAsync(const Model::DescribeInstanceInfoRequest& request, const DescribeInstanceInfoAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context = nullptr) const;
DescribeInstanceInfoOutcomeCallable describeInstanceInfoCallable(const Model::DescribeInstanceInfoRequest& request) const;
DescribeInstanceSpecInfoOutcome describeInstanceSpecInfo(const Model::DescribeInstanceSpecInfoRequest &request)const;
void describeInstanceSpecInfoAsync(const Model::DescribeInstanceSpecInfoRequest& request, const DescribeInstanceSpecInfoAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context = nullptr) const;
DescribeInstanceSpecInfoOutcomeCallable describeInstanceSpecInfoCallable(const Model::DescribeInstanceSpecInfoRequest& request) const;
DescribeLogServiceStatusOutcome describeLogServiceStatus(const Model::DescribeLogServiceStatusRequest &request)const;
void describeLogServiceStatusAsync(const Model::DescribeLogServiceStatusRequest& request, const DescribeLogServiceStatusAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context = nullptr) const;
DescribeLogServiceStatusOutcomeCallable describeLogServiceStatusCallable(const Model::DescribeLogServiceStatusRequest& request) const;
DescribeProtectionModuleCodeConfigOutcome describeProtectionModuleCodeConfig(const Model::DescribeProtectionModuleCodeConfigRequest &request)const;
void describeProtectionModuleCodeConfigAsync(const Model::DescribeProtectionModuleCodeConfigRequest& request, const DescribeProtectionModuleCodeConfigAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context = nullptr) const;
DescribeProtectionModuleCodeConfigOutcomeCallable describeProtectionModuleCodeConfigCallable(const Model::DescribeProtectionModuleCodeConfigRequest& request) const;
DescribeProtectionModuleRulesOutcome describeProtectionModuleRules(const Model::DescribeProtectionModuleRulesRequest &request)const;
void describeProtectionModuleRulesAsync(const Model::DescribeProtectionModuleRulesRequest& request, const DescribeProtectionModuleRulesAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context = nullptr) const;
DescribeProtectionModuleRulesOutcomeCallable describeProtectionModuleRulesCallable(const Model::DescribeProtectionModuleRulesRequest& request) const;
DescribeProtectionModuleStatusOutcome describeProtectionModuleStatus(const Model::DescribeProtectionModuleStatusRequest &request)const;
void describeProtectionModuleStatusAsync(const Model::DescribeProtectionModuleStatusRequest& request, const DescribeProtectionModuleStatusAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context = nullptr) const;
DescribeProtectionModuleStatusOutcomeCallable describeProtectionModuleStatusCallable(const Model::DescribeProtectionModuleStatusRequest& request) const;
DescribeWafSourceIpSegmentOutcome describeWafSourceIpSegment(const Model::DescribeWafSourceIpSegmentRequest &request)const;
void describeWafSourceIpSegmentAsync(const Model::DescribeWafSourceIpSegmentRequest& request, const DescribeWafSourceIpSegmentAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context = nullptr) const;
DescribeWafSourceIpSegmentOutcomeCallable describeWafSourceIpSegmentCallable(const Model::DescribeWafSourceIpSegmentRequest& request) const;
ModifyDomainOutcome modifyDomain(const Model::ModifyDomainRequest &request)const;
void modifyDomainAsync(const Model::ModifyDomainRequest& request, const ModifyDomainAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context = nullptr) const;
ModifyDomainOutcomeCallable modifyDomainCallable(const Model::ModifyDomainRequest& request) const;
ModifyDomainIpv6StatusOutcome modifyDomainIpv6Status(const Model::ModifyDomainIpv6StatusRequest &request)const;
void modifyDomainIpv6StatusAsync(const Model::ModifyDomainIpv6StatusRequest& request, const ModifyDomainIpv6StatusAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context = nullptr) const;
ModifyDomainIpv6StatusOutcomeCallable modifyDomainIpv6StatusCallable(const Model::ModifyDomainIpv6StatusRequest& request) const;
ModifyLogRetrievalStatusOutcome modifyLogRetrievalStatus(const Model::ModifyLogRetrievalStatusRequest &request)const;
void modifyLogRetrievalStatusAsync(const Model::ModifyLogRetrievalStatusRequest& request, const ModifyLogRetrievalStatusAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context = nullptr) const;
ModifyLogRetrievalStatusOutcomeCallable modifyLogRetrievalStatusCallable(const Model::ModifyLogRetrievalStatusRequest& request) const;
ModifyLogServiceStatusOutcome modifyLogServiceStatus(const Model::ModifyLogServiceStatusRequest &request)const;
void modifyLogServiceStatusAsync(const Model::ModifyLogServiceStatusRequest& request, const ModifyLogServiceStatusAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context = nullptr) const;
ModifyLogServiceStatusOutcomeCallable modifyLogServiceStatusCallable(const Model::ModifyLogServiceStatusRequest& request) const;
ModifyProtectionModuleModeOutcome modifyProtectionModuleMode(const Model::ModifyProtectionModuleModeRequest &request)const;
void modifyProtectionModuleModeAsync(const Model::ModifyProtectionModuleModeRequest& request, const ModifyProtectionModuleModeAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context = nullptr) const;
ModifyProtectionModuleModeOutcomeCallable modifyProtectionModuleModeCallable(const Model::ModifyProtectionModuleModeRequest& request) const;
ModifyProtectionModuleRuleOutcome modifyProtectionModuleRule(const Model::ModifyProtectionModuleRuleRequest &request)const;
void modifyProtectionModuleRuleAsync(const Model::ModifyProtectionModuleRuleRequest& request, const ModifyProtectionModuleRuleAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context = nullptr) const;
ModifyProtectionModuleRuleOutcomeCallable modifyProtectionModuleRuleCallable(const Model::ModifyProtectionModuleRuleRequest& request) const;
ModifyProtectionModuleStatusOutcome modifyProtectionModuleStatus(const Model::ModifyProtectionModuleStatusRequest &request)const;
void modifyProtectionModuleStatusAsync(const Model::ModifyProtectionModuleStatusRequest& request, const ModifyProtectionModuleStatusAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context = nullptr) const;
ModifyProtectionModuleStatusOutcomeCallable modifyProtectionModuleStatusCallable(const Model::ModifyProtectionModuleStatusRequest& request) const;
ModifyProtectionRuleCacheStatusOutcome modifyProtectionRuleCacheStatus(const Model::ModifyProtectionRuleCacheStatusRequest &request)const;
void modifyProtectionRuleCacheStatusAsync(const Model::ModifyProtectionRuleCacheStatusRequest& request, const ModifyProtectionRuleCacheStatusAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context = nullptr) const;
ModifyProtectionRuleCacheStatusOutcomeCallable modifyProtectionRuleCacheStatusCallable(const Model::ModifyProtectionRuleCacheStatusRequest& request) const;
ModifyProtectionRuleStatusOutcome modifyProtectionRuleStatus(const Model::ModifyProtectionRuleStatusRequest &request)const;
void modifyProtectionRuleStatusAsync(const Model::ModifyProtectionRuleStatusRequest& request, const ModifyProtectionRuleStatusAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context = nullptr) const;
ModifyProtectionRuleStatusOutcomeCallable modifyProtectionRuleStatusCallable(const Model::ModifyProtectionRuleStatusRequest& request) const;
MoveResourceGroupOutcome moveResourceGroup(const Model::MoveResourceGroupRequest &request)const;
void moveResourceGroupAsync(const Model::MoveResourceGroupRequest& request, const MoveResourceGroupAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context = nullptr) const;
MoveResourceGroupOutcomeCallable moveResourceGroupCallable(const Model::MoveResourceGroupRequest& request) const;
SetDomainRuleGroupOutcome setDomainRuleGroup(const Model::SetDomainRuleGroupRequest &request)const;
void setDomainRuleGroupAsync(const Model::SetDomainRuleGroupRequest& request, const SetDomainRuleGroupAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context = nullptr) const;
SetDomainRuleGroupOutcomeCallable setDomainRuleGroupCallable(const Model::SetDomainRuleGroupRequest& request) const;
private:
std::shared_ptr<EndpointProvider> endpointProvider_;
};
}
}
#endif // !ALIBABACLOUD_WAF_OPENAPI_WAF_OPENAPICLIENT_H_
|
6d1616a7c664fe93a8a4e01162a8def82e3aa48b
|
927c262ca9b723f1dfba0d4c5d7d2e0ffd13fe35
|
/include/libp2p/protocol/kademlia/value_store.hpp
|
0877c259c3024ccc3735bf80ec38a4996b07dc9b
|
[
"MIT",
"Apache-2.0"
] |
permissive
|
libp2p/cpp-libp2p
|
f88acd8e7b49a0949085c78c6b8c2b829a8f8d7d
|
6294fd057d5d3d26e0656a24711450f6e880de05
|
refs/heads/master
| 2023-08-25T07:46:25.154555
| 2023-06-28T08:53:46
| 2023-06-28T08:53:46
| 209,043,384
| 242
| 76
|
Apache-2.0
| 2023-09-14T13:02:36
| 2019-09-17T12:07:29
|
C++
|
UTF-8
|
C++
| false
| false
| 877
|
hpp
|
value_store.hpp
|
/**
* Copyright Soramitsu Co., Ltd. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0
*/
#ifndef LIBP2P_PROTOCOL_KADEMLIA_VALUESTORE
#define LIBP2P_PROTOCOL_KADEMLIA_VALUESTORE
#include <libp2p/outcome/outcome.hpp>
#include <libp2p/protocol/kademlia/common.hpp>
namespace libp2p::protocol::kademlia {
/**
* Basic Put/Get interface of Kademlia
*/
class ValueStore {
public:
virtual ~ValueStore() = default;
/// Adds @param value corresponding to given @param key.
virtual outcome::result<void> putValue(Key key, Value value) = 0;
/// Searches for the @return value corresponding to given @param key.
virtual outcome::result<void> getValue(const Key &key,
FoundValueHandler handler) = 0;
};
} // namespace libp2p::protocol::kademlia
#endif // LIBP2P_PROTOCOL_KADEMLIA_VALUESTORE
|
36740a70b201ecd91991a26a4bc221d4da2ccd99
|
d7ccf7e70ad18a68b788e9bfe485bfd9c332b1ef
|
/rel-lib/src/Logger.h
|
848f4065d133080d77313b3c8508ee43b75e7df6
|
[
"MIT"
] |
permissive
|
lsp-implementaions/rel
|
d47ae4f618ee730bea659bab0349cef50f04ed6f
|
d9e6815012334dfc4c99b8020ae42a9ca9860458
|
refs/heads/main
| 2023-04-03T10:46:15.484422
| 2021-04-16T18:18:57
| 2021-04-16T18:18:57
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 920
|
h
|
Logger.h
|
/* SPDX-License-Identifier: MIT */
/* Copyright (c) 2020-present Stefan Schlichthärle */
#ifndef LOGGER_H_
#define LOGGER_H_
#include <fstream>
#include <iostream>
#include <mutex>
#include <string>
#define LOG(level, msg) LogMessage(level, msg, __FILE__, __LINE__)
enum class LogLevel {
ERROR = 1,
WARNING = 2,
INFO = 3,
DBUG = 4,
};
class Logger {
public:
Logger();
Logger(std::string const);
virtual ~Logger();
/* Req: parser4 */
void SetLogLevel(LogLevel const l);
/* Req: parser4 */
LogLevel GetCurrentLogLevel() const;
/* Req: parser1 */
void LogMessage(LogLevel const, std::string const, std::string const,
int const);
private:
/* Req: parser1 */
std::string LogLevelToString(LogLevel const l) const;
mutable std::mutex mtx;
std::ofstream file_access;
LogLevel current_loglevel;
};
#endif /* LOGGER_H_ */
|
4db0ffb6af5a20cf325630aa256b52712a0b9c44
|
9818a2e668b1956db461e5669c7a8629342b1a34
|
/Word Ladder.cpp
|
e2b99b940433c316740627b01359ad12ef730aa2
|
[] |
no_license
|
jl3937/leetcode
|
7723aa47e87b407afef2e28fa5ce5fee7c7283e4
|
c0002df94fdc23331b3a500233058f0a24a05a45
|
refs/heads/master
| 2020-06-26T16:24:45.365888
| 2014-01-20T13:22:11
| 2014-01-20T13:22:11
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,175
|
cpp
|
Word Ladder.cpp
|
bool visited[10000];
class Solution {
public:
int ladderLength(string start, string end, unordered_set<string>& dict) {
// Start typing your C/C++ solution below
// DO NOT write int main() function
if (start == end)
return 1;
int n = dict.size();
int len = (*dict.begin()).size();
queue<string> q;
unordered_set<string> visited;
visited.insert(start);
q.push(start);
int d = 1;
int w = 0;
int last_w = 1;
while (!q.empty()) {
string cur_s = q.front();
q.pop();
last_w--;
for (int i = 0; i < len; i++) {
int orig_ch = cur_s[i];
for (int ch = 'a'; ch <= 'z'; ch++) {
if (ch != orig_ch) {
cur_s[i] = ch;
if (!visited.count(cur_s) && dict.count(cur_s)) {
if (cur_s == end) {
return d + 1;
}
visited.insert(cur_s);
q.push(cur_s);
w++;
}
}
}
cur_s[i] = orig_ch;
}
if (last_w == 0) {
last_w = w;
w = 0;
d++;
if (d == n + 1)
return 0;
}
}
return 0;
}
};
|
389784be595c880233404f52b5cbf9dc2f3b660a
|
968652934c0a5f85ece357b0145faf668c9bf98d
|
/include/json/detail/type.hpp
|
11d2e33e52e690a60d57a0fb97112a21776aa4bf
|
[
"MIT",
"LicenseRef-scancode-unknown-license-reference"
] |
permissive
|
Alexhuszagh/json
|
ef758cda5cc9a593df5d3e94152d254f54d350d5
|
ad5de378332e8663294a6291b2f02675f5a78799
|
refs/heads/master
| 2020-05-27T10:04:59.735502
| 2017-06-23T18:30:24
| 2017-06-23T18:30:24
| 82,541,346
| 0
| 2
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 5,096
|
hpp
|
type.hpp
|
// :copyright: (c) 2016-2017 The Regents of the University of California.
// :license: MIT, see LICENSE.md for more details.
/**
* \addtogroup JSON
* \brief Type detection for C++ containers.
*/
#pragma once
#include <array>
#include <deque>
#include <limits>
#include <list>
#include <set>
#include <map>
#include <type_traits>
#include <unordered_map>
#include <unordered_set>
#include <vector>
namespace json
{
namespace detail
{
// TYPES
// -----
template <bool B, typename T = void>
using enable_if_t = typename std::enable_if<B, T>::type;
template <typename T>
using decay_t = typename std::decay<T>::type;
template <typename T, typename U>
constexpr bool is_same_v = std::is_same<T, U>::value;
// SIMPLE TYPES
// ------------
template <typename T>
struct is_char
{
enum {
value = (is_same_v<char, T> || is_same_v<const char, T> || is_same_v<unsigned char, T> || is_same_v<const unsigned char, T>)
};
};
template <typename T>
constexpr bool is_char_v = is_char<T>::value;
template <typename T>
struct is_bool: std::is_same<typename std::remove_cv<T>::type, bool>
{};
template <typename T>
constexpr bool is_bool_v = is_bool<T>::value;
template <typename T>
struct is_integer
{
enum {
value = (std::numeric_limits<T>::is_integer && !is_bool_v<T> && !is_char_v<T>)
};
};
template <typename T>
constexpr bool is_integer_v = is_integer<T>::value;
template <typename T>
struct is_float: std::is_floating_point<T>
{};
template <typename T>
constexpr bool is_float_v = is_float<T>::value;
template <typename T>
struct is_cstr: std::integral_constant<
bool,
is_same_v<char const *, decay_t<T>> ||
is_same_v<char *, decay_t<T>>
>
{};
template <typename T>
constexpr bool is_cstr_v = is_cstr<T>::value;
template <typename T>
struct is_std_string: std::is_base_of<std::string, T>
{};
template <typename T>
constexpr bool is_std_string_v = is_std_string<T>::value;
template <typename T>
struct is_string: std::integral_constant<bool, is_cstr_v<T> || is_std_string_v<T>>
{};
template <typename T>
constexpr bool is_string_v = is_string<T>::value;
// COLLECTIONS
// -----------
template <typename... Ts>
struct is_array: std::false_type
{};
template <typename... Ts>
struct is_array<std::array<Ts...>>: std::true_type
{};
template <typename... Ts>
struct is_array<std::array<Ts...>&>: std::true_type
{};
template <typename... Ts>
struct is_array<std::vector<Ts...>>: std::true_type
{};
template <typename... Ts>
struct is_array<std::vector<Ts...>&>: std::true_type
{};
template <typename... Ts>
struct is_array<std::deque<Ts...>>: std::true_type
{};
template <typename... Ts>
struct is_array<std::deque<Ts...>&>: std::true_type
{};
template <typename... Ts>
struct is_array<std::list<Ts...>>: std::true_type
{};
template <typename... Ts>
struct is_array<std::list<Ts...>&>: std::true_type
{};
template <typename... Ts>
struct is_array<std::set<Ts...>>: std::true_type
{};
template <typename... Ts>
struct is_array<std::set<Ts...>&>: std::true_type
{};
template <typename... Ts>
struct is_array<std::multiset<Ts...>>: std::true_type
{};
template <typename... Ts>
struct is_array<std::multiset<Ts...>&>: std::true_type
{};
template <typename... Ts>
struct is_array<std::unordered_set<Ts...>>: std::true_type
{};
template <typename... Ts>
struct is_array<std::unordered_set<Ts...>&>: std::true_type
{};
template <typename... Ts>
struct is_array<std::unordered_multiset<Ts...>>: std::true_type
{};
template <typename... Ts>
struct is_array<std::unordered_multiset<Ts...>&>: std::true_type
{};
template <typename... Ts>
struct is_object: std::false_type
{};
template <typename... Ts>
struct is_object<std::map<Ts...>>: std::true_type
{};
template <typename... Ts>
struct is_object<std::map<Ts...>&>: std::true_type
{};
template <typename... Ts>
struct is_object<std::multimap<Ts...>>: std::true_type
{};
template <typename... Ts>
struct is_object<std::multimap<Ts...>&>: std::true_type
{};
template <typename... Ts>
struct is_object<std::unordered_map<Ts...>>: std::true_type
{};
template <typename... Ts>
struct is_object<std::unordered_map<Ts...>&>: std::true_type
{};
template <typename... Ts>
struct is_object<std::unordered_multimap<Ts...>>: std::true_type
{};
template <typename... Ts>
struct is_object<std::unordered_multimap<Ts...>&>: std::true_type
{};
template <typename... Ts>
constexpr bool is_array_v = is_array<Ts...>::value;
template <typename... Ts>
constexpr bool is_object_v = is_object<Ts...>::value;
template <typename... Ts>
constexpr bool is_container_v = is_array_v<Ts...> || is_object_v<Ts...>;
} /* detail */
// TYPES
// -----
template <bool B, typename T = void>
using enable_if_t = detail::enable_if_t<B, T>;
template <typename T>
constexpr bool is_string_v = detail::is_string_v<T>;
template <typename... Ts>
constexpr bool is_array_v = detail::is_array_v<Ts...>;
template <typename... Ts>
constexpr bool is_object_v = detail::is_object_v<Ts...>;
template <typename... Ts>
constexpr bool is_container_v = detail::is_container_v<Ts...>;
} /* json */
|
3dcd76cf6c10dfee0911d69f70ad07286707ae67
|
0d86c594f8fb06a0f62705f5c59ba8973913ff3d
|
/面试题16.25_LRU缓存/Solution.h
|
cb563133ed467cd743aacb11404158d70e65830c
|
[] |
no_license
|
lhlalyl/leetcode
|
fe87f80dd8ef09e8f3f0a379468f4e2906d35d5e
|
bb61d06f6185e4c3176f64a6c45e3265237647de
|
refs/heads/master
| 2022-12-25T17:54:53.896728
| 2020-09-29T02:53:21
| 2020-09-29T02:53:21
| 299,479,973
| 1
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,125
|
h
|
Solution.h
|
#pragma once
#include<list>
#include<unordered_map>
using namespace std;
class LRUCache {
private:
int capacity;
list<int> lst;
unordered_map<int, int> mp;
int size;
public:
LRUCache(int capacity) {
this->capacity = capacity;
this->size = 0;
}
int get(int key) {
if (mp.find(key) == mp.end())
return -1;
else {
auto it = lst.begin();
while (*it != key) {
++it;
}
lst.erase(it);
lst.push_front(key);
return mp[key];
}
}
void put(int key, int value) {
++size;
if (mp.count(key)) {
auto it = lst.begin();
while (*it != key) {
++it;
}
lst.erase(it);
lst.push_front(key);
mp[key] = value;
}
else {
if (size > capacity) {
auto del = lst.back();
lst.pop_back();
mp.erase(del);
}
lst.push_front(key);
mp[key] = value;
}
}
};
|
34b2ceec10882f93671135b3dc2a4f25fd876d0b
|
f9b3a4548d7308915b99e57d736909e301ae096f
|
/PVZ/MyPVZ0/logindialog.h
|
8d1211edddc920a3bd31b3213398df9da4dd2249
|
[] |
no_license
|
yangyang-01-debug/res
|
e8b122c3cbc7c10814111e3383ab5a68e69afc45
|
71184a35b64657ace03091557e2cce86d7d463a1
|
refs/heads/master
| 2023-05-31T00:18:46.674871
| 2021-06-13T12:41:15
| 2021-06-13T12:41:15
| 374,936,772
| 1
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,223
|
h
|
logindialog.h
|
#ifndef LOGINDIALOG_H
#define LOGINDIALOG_H
#include "titlebar.h"
#include "mybtn.h"
#include "messagebox.h"
#include <QEventLoop>
namespace Ui {
class LoginDialog;
}
class LoginDialog : public QDialog
{
Q_OBJECT
public:
explicit LoginDialog(QWidget *parent = nullptr);
~LoginDialog();
private slots:
void do_timeout();
void onButtonStartGameClicked();
void oncloseBoxClicked(QString str);
void onButtonMinClicked();
void onButtonMaxClicked();
void onButtonCloseClicked();
void onButtonRestoreClicked();
void on_activatedSysTrayIcon(QSystemTrayIcon::ActivationReason reason);
private:
void init();
void connectsToTitleBar();
void paintEvent(QPaintEvent *);
void showEvent(QShowEvent *event);
void closeEvent(QCloseEvent *event);
private:
Ui::LoginDialog *ui;
QMediaPlayer *m_player;
QMediaPlaylist *m_play_list;
TitleBar *m_titleBar;
QSystemTrayIcon *mSysTrayIcon;
QTimer *m_timer;
MyBtn *m_btn;
MessageBox *m_messageBox;
QString m_boxreturn;
QEventLoop loop;
bool m_is_Message;
static int m_timer_count;
static bool m_is_connected;
static float m_progressBar_value;
};
#endif // LOGINDIALOG_H
|
f7d5400e1d3298d1408efcd0b76993e73d9faf9f
|
c12865c6e095c43422bd666095bf7f18764c1493
|
/threadmethods.h
|
77dd78efe202a6776229bd3a392415c083dc846f
|
[] |
no_license
|
hoholee12/homework
|
dc42a9a2102e9121f9e938b61bc2d28e6d8a2ee6
|
dce47e4e4c2b9ab631b64ae55ca81c1a02a59752
|
refs/heads/master
| 2022-12-19T05:05:03.316801
| 2020-09-20T14:15:30
| 2020-09-20T14:15:30
| 291,497,261
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 24,603
|
h
|
threadmethods.h
|
#pragma once
#include"common.h"
#define LOOPVAL 10
namespace simplethreadjoin{
typedef struct{
int result;
} arg_t;
void* child_func(void* arg_tmp){
arg_t* arg = (arg_t*)arg_tmp;
sched_getaffinity(0, 0, NULL);
arg->result = 1;
return NULL;
}
void parent_func(pthread_t* child, arg_t* arg){
sched_getaffinity(0, 0, NULL);
pthread_create(child, NULL, child_func, arg);
while(!arg->result); //spin(like join)
printf("finished\n");
}
void test(){
pthread_t child = 0;
arg_t arg = {0};
parent_func(&child, &arg);
}
}
/*
two cases:
1. thread_join waits for the signal
or
2. thread_exit already happened(result = 1), thread_join's while loop catches it and dont execute wait()
(in case #2, if there was no while loop flag check, it would wait() for signal forever)
*/
namespace waitforthread{
typedef struct{
pthread_mutex_t lock;
pthread_cond_t cond;
} real_lock_t;
typedef struct{
real_lock_t real_lock;
int result;
} arg_t;
void thread_exit(arg_t* arg){
pthread_mutex_lock(&arg->real_lock.lock);
arg->result = 1;
pthread_cond_signal(&arg->real_lock.cond);
pthread_mutex_unlock(&arg->real_lock.lock);
}
void thread_join(arg_t* arg){
pthread_mutex_lock(&arg->real_lock.lock);
//sleep(1);
while(!arg->result)
pthread_cond_wait(&arg->real_lock.cond, &arg->real_lock.lock);
pthread_mutex_unlock(&arg->real_lock.lock);
}
void* child_func(void* arg_tmp){
arg_t* arg = (arg_t*)arg_tmp;
sched_getaffinity(0, 0, NULL);
thread_exit(arg);
return NULL;
}
void parent_func(pthread_t* child, arg_t* arg){
sched_getaffinity(0, 0, NULL);
pthread_create(child, NULL, child_func, arg);
thread_join(arg);
printf("finished\n");
}
void test(){
pthread_t child = 0;
arg_t arg = {0};
parent_func(&child, &arg);
}
}
/*
why this will not work:
on thread_join, flag is 0 and just before executing wait(),
child somehow interrupts parent's thread_join and finished thread_exit procedure.
when thread_join resumes, it is stuck on wait() with no signal to catch.
always hold the lock on signal/wait.
*/
namespace nolockjoin{
typedef struct{
pthread_mutex_t lock;
pthread_cond_t cond;
} real_lock_t;
typedef struct{
real_lock_t real_lock;
int result;
} arg_t;
void thread_exit(arg_t* arg){
//sleep(1);
arg->result = 1;
pthread_cond_signal(&arg->real_lock.cond);
}
void thread_join(arg_t* arg){
if(!arg->result){ //same issue for while loop as well!
//sleep(1);
pthread_cond_wait(&arg->real_lock.cond, &arg->real_lock.lock);
}
}
void* child_func(void* arg_tmp){
arg_t* arg = (arg_t*)arg_tmp;
sched_getaffinity(0, 0, NULL);
thread_exit(arg);
return NULL;
}
void parent_func(pthread_t* child, arg_t* arg){
sched_getaffinity(0, 0, NULL);
pthread_create(child, NULL, child_func, arg);
thread_join(arg);
printf("finished\n");
}
void test(){
pthread_t child = 0;
arg_t arg = {0};
parent_func(&child, &arg);
}
}
//producer/consumer, bounded buffer problem
namespace putandget{
typedef struct{
pthread_mutex_t lock;
pthread_cond_t cond;
} real_lock_t;
typedef struct{
int value;
int count;
} buffer_t;
typedef struct{
real_lock_t real_lock;
int result;
buffer_t buffer;
} arg_t;
void put(buffer_t* buffer, int value){
//only one allowed in buffer
if(buffer->count == 0){
buffer->count = 1;
buffer->value = value;
}
}
int get(buffer_t* buffer){
if(buffer->count == 1){
buffer->count = 0;
return buffer->value;
}
return -1;
}
void* producer_thread(void* arg_tmp){
arg_t* arg = (arg_t*)arg_tmp;
sched_getaffinity(0, 0, NULL);
for(int i = 0; i < LOOPVAL; i++){
printf("--------------------------------\n");
pthread_mutex_lock(&arg->real_lock.lock);
printf("producer...locked\n");
//wait until get() happens on consumer thread
if(arg->buffer.count == 1){
printf("producer...wait cond\n");
//wait() unlocks mutex and then locks again on receiving signal!
//this is why the other thread is able to send signal with locks on
pthread_cond_wait(&arg->real_lock.cond, &arg->real_lock.lock);
}
else{
printf("producer...skip cond\n");
}
put(&arg->buffer, i);
printf("put: %d\n", i);
pthread_cond_signal(&arg->real_lock.cond);
printf("producer...signal cond\n");
pthread_mutex_unlock(&arg->real_lock.lock);
printf("producer...unlocked\n");
}
}
void* consumer_thread(void* arg_tmp){
arg_t* arg = (arg_t*)arg_tmp;
sched_getaffinity(0, 0, NULL);
for(int i = 0; i < LOOPVAL; i++){
pthread_mutex_lock(&arg->real_lock.lock);
printf("consumer...locked\n");
if(arg->buffer.count == 0){
printf("consumer...wait cond\n");
//wait() unlocks mutex and then locks again on receiving signal!
//this is why the other thread is able to send signal with locks on
pthread_cond_wait(&arg->real_lock.cond, &arg->real_lock.lock);
}
else{
printf("consumer...skip cond\n");
}
printf("get: %d\n", get(&arg->buffer));
pthread_cond_signal(&arg->real_lock.cond);
printf("consumer...signal cond\n");
pthread_mutex_unlock(&arg->real_lock.lock);
printf("consumer...unlocked\n");
}
}
void test(){
pthread_t producer, consumer;
producer = consumer = 0;
arg_t arg = {0};
pthread_create(&producer, NULL, producer_thread, &arg);
pthread_create(&consumer, NULL, consumer_thread, &arg);
pthread_join(producer, NULL);
pthread_join(consumer, NULL);
}
}
//one cond wont be enough for more than two threads.
/*
consumer#1...locked
consumer#1...wait cond(unlocked)
producer...locked
producer...skip cond
put: 8
producer...signal cond
producer...unlocked
>consumer#0 sneaks in...
consumer#0...locked
consumer#0...skip cond
get: 8 //consumer#0 steals data...
consumer#0...signal cond
consumer#0...unlocked
>consumer#1 resumes after wait()...
consumer#1...receive cond(locked)
get: -1 //no data for consumer#1...
consumer#1...signal cond
consumer#1...unlocked
*/
namespace putandget_twoconsumers{
typedef struct{
pthread_mutex_t lock;
pthread_cond_t cond;
} real_lock_t;
typedef struct{
int value;
int count;
} buffer_t;
typedef struct{
real_lock_t real_lock;
int result;
buffer_t buffer;
} arg_t;
void put(buffer_t* buffer, int value){
//only one allowed in buffer
if(buffer->count == 0){
buffer->count = 1;
buffer->value = value;
}
}
int get(buffer_t* buffer){
if(buffer->count == 1){
buffer->count = 0;
return buffer->value;
}
return -1;
}
void* producer_thread(void* arg_tmp){
arg_t* arg = (arg_t*)arg_tmp;
sched_getaffinity(0, 0, NULL);
for(int i = 0; i < LOOPVAL; i++){
printf("--------------------------------\n");
pthread_mutex_lock(&arg->real_lock.lock);
printf("producer...locked\n");
//wait until get() happens on consumer thread
if(arg->buffer.count == 1){
printf("producer...wait cond(unlocked)\n");
//wait() unlocks mutex and then locks again on receiving signal!
//this is why the other thread is able to send signal with locks on
pthread_cond_wait(&arg->real_lock.cond, &arg->real_lock.lock);
printf("producer...receive cond(locked)\n");
}
else{
printf("producer...skip cond\n");
}
put(&arg->buffer, i);
printf("put: %d\n", i);
pthread_cond_signal(&arg->real_lock.cond);
printf("producer...signal cond\n");
pthread_mutex_unlock(&arg->real_lock.lock);
printf("producer...unlocked\n");
}
//inform end to consumers
arg->result = 1;
printf("ending producer.\n");
}
void* consumer_thread(void* arg_tmp){
arg_t* arg = (arg_t*)arg_tmp;
sched_getaffinity(0, 0, NULL);
pid_t tid = gettid() % 2;
for(int i = 0; !arg->result; i++){
pthread_mutex_lock(&arg->real_lock.lock);
printf("consumer#%d...locked\n", tid);
if(arg->buffer.count == 0){
printf("consumer#%d...wait cond(unlocked)\n", tid);
//wait() unlocks mutex and then locks again on receiving signal!
//this is why the other thread is able to send signal with locks on
pthread_cond_wait(&arg->real_lock.cond, &arg->real_lock.lock);
printf("consumer#%d...receive cond(locked)\n", tid);
}
else{
printf("consumer#%d...skip cond\n", tid);
}
printf("get: %d\n", get(&arg->buffer));
pthread_cond_signal(&arg->real_lock.cond);
printf("consumer#%d...signal cond\n", tid);
pthread_mutex_unlock(&arg->real_lock.lock);
printf("consumer#%d...unlocked\n", tid);
}
printf("ending consumer#%d.\n", tid);
}
void test(){
pthread_t producer, consumer0, consumer1;
producer = consumer0 = consumer1 = 0;
arg_t arg = {0};
pthread_create(&producer, NULL, producer_thread, &arg);
pthread_create(&consumer0, NULL, consumer_thread, &arg);
pthread_create(&consumer1, NULL, consumer_thread, &arg);
pthread_join(producer, NULL);
pthread_join(consumer0, NULL);
pthread_join(consumer1, NULL);
}
}
//put while loop
/*
producer...locked
producer...wait cond(unlocked)
consumer#1...receive cond(locked)
get: 8
consumer#1...signal cond
consumer#1...unlocked
consumer#1...locked
consumer#1...wait cond(unlocked)
producer...receive cond(locked)
put: 9
producer...signal cond
producer...unlocked
ending producer.
consumer#0...locked
consumer#0...skip cond
get: 9
consumer#0...signal cond
consumer#0...unlocked
ending consumer#0.
> while loop makes sure that you wait again when data is not there.(spurious wakeup)
consumer#1...receive cond(locked)
consumer#1...wait cond(unlocked)
no more data misses
*/
namespace putandget_mesasemantics{
typedef struct{
pthread_mutex_t lock;
pthread_cond_t cond;
} real_lock_t;
typedef struct{
int value;
int count;
} buffer_t;
typedef struct{
real_lock_t real_lock;
int result;
buffer_t buffer;
} arg_t;
void put(buffer_t* buffer, int value){
//only one allowed in buffer
if(buffer->count == 0){
buffer->count = 1;
buffer->value = value;
}
}
int get(buffer_t* buffer){
if(buffer->count == 1){
buffer->count = 0;
return buffer->value;
}
return -1;
}
void* producer_thread(void* arg_tmp){
arg_t* arg = (arg_t*)arg_tmp;
sched_getaffinity(0, 0, NULL);
for(int i = 0; i < LOOPVAL; i++){
printf("--------------------------------\n");
pthread_mutex_lock(&arg->real_lock.lock);
printf("producer...locked\n");
//wait until get() happens on consumer thread
if(arg->buffer.count == 1){
while(arg->buffer.count == 1){
printf("producer...wait cond(unlocked)\n");
//wait() unlocks mutex and then locks again on receiving signal!
//this is why the other thread is able to send signal with locks on
pthread_cond_wait(&arg->real_lock.cond, &arg->real_lock.lock);
printf("producer...receive cond(locked)\n");
}
}
else{
printf("producer...skip cond\n");
}
put(&arg->buffer, i);
printf("put: %d\n", i);
pthread_cond_signal(&arg->real_lock.cond);
printf("producer...signal cond\n");
pthread_mutex_unlock(&arg->real_lock.lock);
printf("producer...unlocked\n");
}
//inform end to consumers
arg->result = 1;
printf("ending producer.\n");
}
void* consumer_thread(void* arg_tmp){
arg_t* arg = (arg_t*)arg_tmp;
sched_getaffinity(0, 0, NULL);
pid_t tid = gettid() % 2;
for(int i = 0; !arg->result; i++){
pthread_mutex_lock(&arg->real_lock.lock);
printf("consumer#%d...locked\n", tid);
if(arg->buffer.count == 0){
while(arg->buffer.count == 0){
printf("consumer#%d...wait cond(unlocked)\n", tid);
//wait() unlocks mutex and then locks again on receiving signal!
//this is why the other thread is able to send signal with locks on
pthread_cond_wait(&arg->real_lock.cond, &arg->real_lock.lock);
printf("consumer#%d...receive cond(locked)\n", tid);
}
}
else{
printf("consumer#%d...skip cond\n", tid);
}
printf("get: %d\n", get(&arg->buffer));
pthread_cond_signal(&arg->real_lock.cond);
printf("consumer#%d...signal cond\n", tid);
pthread_mutex_unlock(&arg->real_lock.lock);
printf("consumer#%d...unlocked\n", tid);
}
printf("ending consumer#%d.\n", tid);
}
void test(){
pthread_t producer, consumer0, consumer1;
producer = consumer0 = consumer1 = 0;
arg_t arg = {0};
pthread_create(&producer, NULL, producer_thread, &arg);
pthread_create(&consumer0, NULL, consumer_thread, &arg);
pthread_create(&consumer1, NULL, consumer_thread, &arg);
pthread_join(producer, NULL);
pthread_join(consumer0, NULL);
pthread_join(consumer1, NULL);
}
}
//use two conditions: empty, fill
//this will direct signal to proper whom to wake up
//prevent consumer#0 -> consumer#1
/*
producer...locked
producer...wait 'empty' cond(unlocked)
consumer#1...receive 'fill' cond(locked)
get: 8
consumer#1...signal 'empty' cond
consumer#1...unlocked
consumer#1...locked
consumer#1...wait 'fill' cond(unlocked)
producer...receive 'empty' cond(locked)
put: 9
producer...signal 'fill' cond
producer...unlocked
ending producer.
consumer#0...locked
consumer#0...skip cond
get: 9
consumer#0...signal 'empty' cond
consumer#0...unlocked
ending consumer#0.
consumer#1...receive 'fill' cond(locked)
consumer#1...wait 'fill' cond(unlocked)
*/
namespace putandget_twoconds{
typedef struct{
pthread_mutex_t lock;
pthread_cond_t empty;
pthread_cond_t fill;
} real_lock_t;
typedef struct{
int value;
int count;
} buffer_t;
typedef struct{
real_lock_t real_lock;
int result;
buffer_t buffer;
} arg_t;
void put(buffer_t* buffer, int value){
//only one allowed in buffer
if(buffer->count == 0){
buffer->count = 1;
buffer->value = value;
}
}
int get(buffer_t* buffer){
if(buffer->count == 1){
buffer->count = 0;
return buffer->value;
}
return -1;
}
void* producer_thread(void* arg_tmp){
arg_t* arg = (arg_t*)arg_tmp;
sched_getaffinity(0, 0, NULL);
for(int i = 0; i < LOOPVAL; i++){
printf("--------------------------------\n");
pthread_mutex_lock(&arg->real_lock.lock);
printf("producer...locked\n");
//wait until get() happens on consumer thread
if(arg->buffer.count == 1){
while(arg->buffer.count == 1){
printf("producer...wait 'empty' cond(unlocked)\n");
//wait() unlocks mutex and then locks again on receiving signal!
//this is why the other thread is able to send signal with locks on
pthread_cond_wait(&arg->real_lock.empty, &arg->real_lock.lock);
printf("producer...receive 'empty' cond(locked)\n");
}
}
else{
printf("producer...skip cond\n");
}
put(&arg->buffer, i);
printf("put: %d\n", i);
pthread_cond_signal(&arg->real_lock.fill);
printf("producer...signal 'fill' cond\n");
pthread_mutex_unlock(&arg->real_lock.lock);
printf("producer...unlocked\n");
}
//inform end to consumers
arg->result = 1;
printf("ending producer.\n");
}
void* consumer_thread(void* arg_tmp){
arg_t* arg = (arg_t*)arg_tmp;
sched_getaffinity(0, 0, NULL);
pid_t tid = gettid() % 2;
for(int i = 0; !arg->result; i++){
pthread_mutex_lock(&arg->real_lock.lock);
printf("consumer#%d...locked\n", tid);
if(arg->buffer.count == 0){
while(arg->buffer.count == 0){
printf("consumer#%d...wait 'fill' cond(unlocked)\n", tid);
//wait() unlocks mutex and then locks again on receiving signal!
//this is why the other thread is able to send signal with locks on
pthread_cond_wait(&arg->real_lock.fill, &arg->real_lock.lock);
printf("consumer#%d...receive 'fill' cond(locked)\n", tid);
}
}
else{
printf("consumer#%d...skip cond\n", tid);
}
printf("get: %d\n", get(&arg->buffer));
pthread_cond_signal(&arg->real_lock.empty);
printf("consumer#%d...signal 'empty' cond\n", tid);
pthread_mutex_unlock(&arg->real_lock.lock);
printf("consumer#%d...unlocked\n", tid);
}
printf("ending consumer#%d.\n", tid);
}
void test(){
pthread_t producer, consumer0, consumer1;
producer = consumer0 = consumer1 = 0;
arg_t arg = {0};
pthread_create(&producer, NULL, producer_thread, &arg);
pthread_create(&consumer0, NULL, consumer_thread, &arg);
pthread_create(&consumer1, NULL, consumer_thread, &arg);
pthread_join(producer, NULL);
pthread_join(consumer0, NULL);
pthread_join(consumer1, NULL);
}
}
//make producer fill buffer enough for two consumers to eat without starving.
//reduces context switching(more efficient)
/*
producer...locked
producer...skip cond
buffer[0] is put
put: 8
producer...signal 'fill' cond
consumer#1...receive 'fill' cond(locked)
buffer[0] is get
get: 8
consumer#1...signal 'empty' cond
consumer#1...unlocked
consumer#1...locked
consumer#1...wait 'fill' cond(unlocked)
producer...unlocked
consumer#0...locked
consumer#0...wait 'fill' cond(unlocked)
producer...locked
producer...skip cond
buffer[1] is put
put: 9
producer...signal 'fill' cond
producer...unlocked
ending producer.
consumer#1...receive 'fill' cond(locked)
buffer[1] is get
get: 9
consumer#1...signal 'empty' cond
consumer#1...unlocked
ending consumer#1.
*/
namespace putandget_twoconds_withbuffer{
#define MAX 2 //could be larger
typedef struct{
pthread_mutex_t lock;
pthread_cond_t empty;
pthread_cond_t fill;
} real_lock_t;
typedef struct{
int arr[MAX];
int fill_index;
int use_index;
int count;
} buffer_t;
typedef struct{
real_lock_t real_lock;
int result;
buffer_t buffer;
} arg_t;
void put(buffer_t* buffer, int value){
buffer->arr[buffer->fill_index] = value;
printf("buffer[%d] is put\n", buffer->fill_index);
buffer->fill_index = (buffer->fill_index + 1) % MAX;
buffer->count++;
}
int get(buffer_t* buffer){
if(buffer->count == 0) return -1;
int temp = buffer->arr[buffer->use_index];
printf("buffer[%d] is get\n", buffer->use_index);
buffer->use_index = (buffer->use_index + 1) % MAX;
buffer->count--;
return temp;
}
void* producer_thread(void* arg_tmp){
arg_t* arg = (arg_t*)arg_tmp;
sched_getaffinity(0, 0, NULL);
for(int i = 0; i < LOOPVAL; i++){
printf("--------------------------------\n");
pthread_mutex_lock(&arg->real_lock.lock);
printf("producer...locked\n");
//wait until get() happens on consumer thread
if(arg->buffer.count == MAX){
while(arg->buffer.count == MAX){
printf("producer...wait 'empty' cond(unlocked)\n");
//wait() unlocks mutex and then locks again on receiving signal!
//this is why the other thread is able to send signal with locks on
pthread_cond_wait(&arg->real_lock.empty, &arg->real_lock.lock);
printf("producer...receive 'empty' cond(locked)\n");
}
}
else{
printf("producer...skip cond\n");
}
put(&arg->buffer, i);
printf("put: %d\n", i);
pthread_cond_signal(&arg->real_lock.fill);
printf("producer...signal 'fill' cond\n");
pthread_mutex_unlock(&arg->real_lock.lock);
printf("producer...unlocked\n");
}
//inform end to consumers
arg->result = 1;
printf("ending producer.\n");
}
void* consumer_thread(void* arg_tmp){
arg_t* arg = (arg_t*)arg_tmp;
sched_getaffinity(0, 0, NULL);
pid_t tid = gettid() % 2;
for(int i = 0; !arg->result; i++){
pthread_mutex_lock(&arg->real_lock.lock);
printf("consumer#%d...locked\n", tid);
if(arg->buffer.count == 0){
while(arg->buffer.count == 0){
printf("consumer#%d...wait 'fill' cond(unlocked)\n", tid);
//wait() unlocks mutex and then locks again on receiving signal!
//this is why the other thread is able to send signal with locks on
pthread_cond_wait(&arg->real_lock.fill, &arg->real_lock.lock);
printf("consumer#%d...receive 'fill' cond(locked)\n", tid);
}
}
else{
printf("consumer#%d...skip cond\n", tid);
}
printf("get: %d\n", get(&arg->buffer));
pthread_cond_signal(&arg->real_lock.empty);
printf("consumer#%d...signal 'empty' cond\n", tid);
pthread_mutex_unlock(&arg->real_lock.lock);
printf("consumer#%d...unlocked\n", tid);
}
printf("ending consumer#%d.\n", tid);
}
void test(){
pthread_t producer, consumer0, consumer1;
producer = consumer0 = consumer1 = 0;
arg_t arg = {0};
pthread_create(&producer, NULL, producer_thread, &arg);
pthread_create(&consumer0, NULL, consumer_thread, &arg);
pthread_create(&consumer1, NULL, consumer_thread, &arg);
pthread_join(producer, NULL);
pthread_join(consumer0, NULL);
pthread_join(consumer1, NULL);
}
}
|
f99aec82e2cfdfdc540318f4b4a832a487c6d8ee
|
b60ca0b7c1fb83074f47e2f1d9017f38b161d7eb
|
/CreateMat/CreateMat/main.cpp
|
39a9eea01878ca5ce6eb92d4e5d77be567582adf
|
[] |
no_license
|
liangzelang/OpenCV_Basic_Exercise
|
37c6bde7b68c3d7e4319bffdbe9e2670e0594769
|
0a194f07f64da28f7c259cefb78f8ce9b704196c
|
refs/heads/master
| 2021-01-17T23:03:31.200826
| 2017-07-28T14:04:21
| 2017-07-28T14:04:21
| 84,211,093
| 4
| 9
| null | null | null | null |
GB18030
|
C++
| false
| false
| 1,245
|
cpp
|
main.cpp
|
#include <opencv2\opencv.hpp>
#include <iostream>
using namespace cv;
using namespace std;
int main()
{
/*方法1:使用Mat()构造函数*/
Mat M(2, 2, CV_8UC3, Scalar(0,0,255));
cout << "M = " << endl << " " << M << endl;
//way2 没有太懂,由于这是多维的数组,使用cout出错
int sz[3] = {2, 2, 2};
Mat L(3, sz, CV_8UC3, Scalar::all(0));
//way3 为IplImage创建信息头
IplImage* img = cvLoadImage("D:\\C++程序联系文件夹(可选择性删除)\\OpenCV_Exercise\\learn.jpg",1);
Mat mtx(img);
//way4 使用Create()函数
Mat K;
K.create(4,4,CV_8UC(2));
cout << "K = " << endl << " " << K << endl << endl;
//way5 Matlab大法好
Mat E = Mat::eye(4,4,CV_64F);
cout << "E = " << endl << " " << E << endl << endl;
Mat O = Mat::ones(2,2,CV_32F);
cout << "O = " << endl << " " << O << endl << endl;
Mat Z = Mat::zeros(3,3,CV_8UC1);
cout << "Z = " << endl << " " << Z << endl << endl;
//way6
Mat C = (Mat_<double>(3,3) << 0, -1, 2, -1, 5, -1, 0, -1, 0);
cout << "C = " << endl << " " << C << endl << endl;
//way7 为已存在的对象创建新的信息头
Mat RowClone = C.row(0).clone();
cout << "RowClone = " << endl << " " << RowClone << endl << endl;
system("pause");
return 0;
}
|
269d9d4b4371aed653109cb047bd74eddb0f5ae8
|
2458d6d18521117124c1ba39cc8b4b8287d745cf
|
/cocos2d-x-2.2/samples/Cpp/TestCpp/Classes/BugsTest/Bug-624.h
|
1bc25bc533caf020a9698e32c23d7cba654657c1
|
[
"MIT"
] |
permissive
|
zhuzhonghua/XUI
|
a9d9fde0258ddde235fdd2aa52145b97b91e0ffc
|
4cfd3e8c4d15f8cba4b918da3719aacdcf6009ce
|
refs/heads/master
| 2020-06-26T09:21:06.810301
| 2014-01-07T03:03:22
| 2014-01-07T03:03:22
| 15,630,631
| 4
| 2
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 524
|
h
|
Bug-624.h
|
#ifndef __BUG_624_H__
#define __BUG_624_H__
#include "BugsTest.h"
class Bug624Layer : public BugsTestBaseLayer
{
public:
virtual bool init();
void switchLayer(float dt);
virtual void didAccelerate(CCAcceleration* pAccelerationValue);
CREATE_FUNC(Bug624Layer);
};
class Bug624Layer2 : public BugsTestBaseLayer
{
public:
virtual bool init();
void switchLayer(float dt);
virtual void didAccelerate(CCAcceleration* pAccelerationValue);
CREATE_FUNC(Bug624Layer2);
};
#endif // __BUG_624_H__
|
33cbc68c044ea0aff90f159d4cb2cef03f25ae4a
|
071cc8b5c212fbc7d6c8fc4f7653b7380041da3f
|
/Sources/Main.cpp
|
22ebc0e25144a6380688ed85b406a0fb7f5d1ba8
|
[] |
no_license
|
coreyao/DXRenderer
|
27dbfe96dbf8dee7c045821b7eed7bc12fa3dd80
|
cc76a17a2a76e3fbec15cba890c6aef276a6af87
|
refs/heads/master
| 2021-01-02T23:10:00.803939
| 2017-08-20T08:36:06
| 2017-08-20T08:36:06
| 99,482,065
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,406
|
cpp
|
Main.cpp
|
#include <d3d9.h>
#include <d3dx9.h>
#pragma warning( disable : 4996 ) // disable deprecated warning
#include <strsafe.h>
#pragma warning( default : 4996 )
#include "Core/Application.h"
Application app;
LRESULT WINAPI MsgProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam)
{
switch (msg)
{
case WM_DESTROY:
app.Cleanup();
PostQuitMessage(0);
return 0;
default:
app.HandleInput(hWnd, msg, wParam, lParam);
break;
}
return DefWindowProc(hWnd, msg, wParam, lParam);
}
int main()
{
// Register the window class
WNDCLASSEX wc =
{
sizeof(WNDCLASSEX), CS_CLASSDC, MsgProc, 0L, 0L,
GetModuleHandle(NULL), NULL, NULL, NULL, NULL,
L"Renderer", NULL
};
RegisterClassEx(&wc);
// Create the application's window
HWND hWnd = CreateWindow(L"Renderer", L"Renderer",
WS_OVERLAPPEDWINDOW, 100, 100, SCREEN_WIDTH, SCREEN_HEIGHT,
NULL, NULL, wc.hInstance, NULL);
// Initialize Direct3D
if (SUCCEEDED(app.Init(hWnd)))
{
app.InitScene();
// Show the window
ShowWindow(hWnd, SW_SHOWDEFAULT);
UpdateWindow(hWnd);
// Enter the message loop
MSG msg;
ZeroMemory(&msg, sizeof(msg));
while (msg.message != WM_QUIT)
{
if (PeekMessage(&msg, NULL, 0U, 0U, PM_REMOVE))
{
TranslateMessage(&msg);
DispatchMessage(&msg);
}
else
{
app.Update(1.0f / 60);
app.Render();
}
}
}
UnregisterClass(L"D3D Tutorial", wc.hInstance);
return 0;
}
|
134525b290a8238b61e26a65745d66b4ef3e0362
|
0419c705b1fb4c6d9df68763419120dd6fb3d299
|
/random/1236_castle.cpp
|
c84182c0fd1af9f961139c2e62a96390bda8399d
|
[] |
no_license
|
fernok/cpppractice
|
381b19dd15fd1a5defb960b0dafbb2529b2026a3
|
b95730280b4c13fabb716578c2db510d15b3229b
|
refs/heads/master
| 2023-08-19T13:50:22.253938
| 2021-10-01T14:36:25
| 2021-10-01T14:36:25
| 278,089,539
| 1
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 636
|
cpp
|
1236_castle.cpp
|
#include <iostream>
#include <vector>
using namespace std;
int n, m;
int main() {
cin >> n >> m;
char input;
int count_row = 0, count_col = 0;
vector<bool> row(n, false), col(m, false);
for(int i = 0; i < n; i++) {
for(int j = 0; j < m; j++) {
cin >> input;
if(input == 'X') {
row[i] = true;
col[j] = true;
}
}
if(row[i] == false) count_row++;
}
for(int i = 0; i < m; i++) if(col[i] == false) count_col++;
int result = count_row > count_col ? count_row : count_col;
cout << result << endl;
return 0;
}
|
d162edf6accdaec6599c6ff83f7c912e2f9197b5
|
2bdca426e00b7648e1cb76432c7b9548dcfe5095
|
/src/marketData/volatility/flatVolatility.cpp
|
9a181c92232994d73b9b6302d5306da0d5087d0e
|
[] |
no_license
|
mbrzecki/julian
|
b6b0c7c5fdc40f2970ae9cbeed1bd12c020dae6f
|
04a38f0a26a23ba8f80c879997216c22dbc81ebb
|
refs/heads/master
| 2020-03-28T02:30:08.777303
| 2019-05-28T18:10:30
| 2019-05-28T18:10:30
| 147,575,336
| 3
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 2,248
|
cpp
|
flatVolatility.cpp
|
#include <marketData/volatility/flatVolatility.hpp>
#include <utils/formatters.hpp>
#include <string>
#include <iomanip>
#include <cmath>
namespace julian {
/** \brief Returns volatility. The same value is returned regardless of the given arguments
*/
double FlatVolatility::getVolatility(double , Date ) const {
return volatility_;
}
/** \brief Returns volatility. The same value is returned regardless of the given arguments
*/
double FlatVolatility::getVolatility(double , double ) const {
return volatility_;
}
/** \brief Returns annualize variance
*
* \f[variance = yearFraction(today, T) \times volatility^{2}\f]
*/
double FlatVolatility::getVariance(double,Date T) const {
return pow(volatility_,2)*getYearFraction(date_,T);
}
/** \brief Returns annualize variance
*
* \f[variance = T *\times volatility^{2}\f]
*/
double FlatVolatility::getVariance(double,double T) const {
return pow(volatility_,2)*T;
}
/** \brief Shifts volatility by bump size provided
*
* \param input bump size
*/
void FlatVolatility::bumpVolatility(double input) {
volatility_ += input;
}
/** \brief Returns the date for which curve was defined.
*/
Date FlatVolatility::getDate() const {
return date_;
}
/** \brief Virtual copy constructor
*/
FlatVolatility* FlatVolatility::clone() const {
return new FlatVolatility(*this);
}
/** \brief Returns type of volatility surface
*/
std::string FlatVolatility::info() const {
return "FlatVolatility";
}
/** \brief Calculates year fraction
*
* This methods calculates the year fraction between two dates.
* The year fraction convention is defined during the construction of interest rate object.
*/
double FlatVolatility::getYearFraction(Date d1,Date d2) const {
return yf_->operator()(d1,d2);
}
/** \brief Overloads stream operator
*
* This overloaded operator enables to print the curve on the console.
*/
std::ostream& operator<<(std::ostream& s, FlatVolatility& v) {
s << "Object: FlatVolatility"
<< "\nDate: " << v.date_
<< "\nVolatility: " << formatter::percentage(v.volatility_);
return s;
}
} // namespace julian
|
51d0533bbe930eaf248f3d1b64c57a477255f455
|
fb48f5a86528c9dac12b1e01f0e645f29756111d
|
/headers/Sprite.h
|
cde7e9fad406146cb4ef49796906651284146dc0
|
[] |
no_license
|
nightfox2890/OpenGL2D
|
bfb12cab55092d8695eb74d300a5bb39cc6baeee
|
66db426d02701328e13b2976a4ce4f187d8ada24
|
refs/heads/master
| 2016-08-04T20:21:42.961587
| 2012-06-28T15:18:03
| 2012-06-28T15:18:03
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 3,601
|
h
|
Sprite.h
|
/*
* Simple OpenGL 2D Engine - Sprite, methods to draw sprites
* Copyright (C) 2012 Yarrith Devos, Michael Yagudaev (yagudaev.com)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef SPRITE_H_
#define SPRITE_H_
#include <GL/glut.h>
#include <GL/gl.h>
#include <string>
using namespace std;
class ImageLoader;
class Sprite
{
public:
//Enable 2D drawing mode to draw our sprites
//Function must be called before drawing sprites using draw
static void enable2D();
//Disable 2D, call before drawing in 3D again.
static void disable2D();
Sprite(string filename);
virtual ~Sprite();
virtual void draw();
virtual void rotate(GLint degrees);
//getters and setters
GLint getAngle() const;
void setAngle(GLint degrees);
void setX(GLdouble x);
void setY(GLdouble y);
GLint getHeight() const;
GLint getWidth() const;
/**
* Sets the pivot point in relation to the sprite itself, that is using the object
* coordiantes system. In this coordiantes system the bottom left point of the object
* is at (0, 0) and the top right is at (1, 1).
*
* E.g. to set the pivot to be in the middle of the sprite use (0.5, 0.5)
* Default values are (1, 1).
* @param pivotX Can be any value, but when x is in the range [0, 1] the pivot is inside the
* sprite where 0 is the left edge of the sprite and 1 is the right edge of the sprite.
* @param pivotY Can be any value, but when y is in the range [0, 1] the pivot is inside the
* sprite where 0 is the bottom edge of the sprite and 1 is the top edge of the sprite.
*/
void setPivot(GLfloat pivotX, GLfloat pivotY);
GLfloat getPivotX() const;
GLfloat getPivotY() const;
GLdouble getX() const;
GLdouble getY() const;
/**
* Sets the pivot to be at the point where object's pivot is set.
* @param obj The reference object to whose pivot we will set this pivot to be.
* Note: if the obj pivot changes or the obj moves after the setPivot call has
* been issued, the pivot of this object will not reflect this changes. You must
* call setPivot again with that object to update the pivot information.
*/
void setPivot(const Sprite &obj);
//Sets scale of the object, scale of (1.0, 1.0) means sprite maintains
//original size
void setScale(GLfloat x, GLfloat y);
void setObjectHeight(GLint ObjectHeight);
GLint getObjectHeight();
private:
ImageLoader *image;
GLuint textureID;
GLint angle;
GLint ObjectHeight;
GLdouble x;
GLdouble y;
GLfloat pivotX;
GLfloat pivotY;
GLfloat scaleX;
GLfloat scaleY;
//initialises extensions, textures, render states, etc. before rendering
void initScene();
/**
* A helper function taken from http://www.opengl.org/resources/features/OGLextensions/
* to help determine if an OpenGL extension is supported on the target machine at run-time
* @param extension The extension name as a string.
* @return True if extension is supported and false if it is not.
*/
bool isExtensionSupported(const char *extension) const;
};
#endif /* SPRITE_H_ */
|
0c51491d23a7f8a693d6f8a3a7a54dab45b4fe57
|
cc733834bdb5b4d33210c091744100c818beb2cb
|
/knDds/src/knDds/DdsPushConsumer.cpp
|
49d5328405ba48e508b9be8e1f101d11336b09bd
|
[
"Apache-2.0"
] |
permissive
|
hhutz/soraCore
|
b7d592424afb2ff111c24f542853a993d99326e3
|
0b140e0bca251498c3b12c102d04bcb68e4c31b1
|
refs/heads/master
| 2021-06-26T00:37:20.379488
| 2015-12-17T17:18:51
| 2016-02-11T17:29:47
| 21,436,387
| 1
| 5
| null | 2021-06-18T16:59:09
| 2014-07-02T18:50:50
|
C++
|
UTF-8
|
C++
| false
| false
| 2,571
|
cpp
|
DdsPushConsumer.cpp
|
/* -*- C++ -*- *****************************************************************
* Copyright (c) 2013 United States Government as represented by the
* Administrator of the National Aeronautics and Space Administration.
* All rights reserved.
*
* 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 "DdsPushConsumer.h"
#include "DdsSupport.h"
#include "miro/Log.h"
namespace kn
{
using namespace std;
DdsPushConsumer::~DdsPushConsumer() throw()
{}
void
DdsPushConsumer::on_requested_deadline_missed(DDS::DataReader* /*reader*/,
DDS::RequestedDeadlineMissedStatus const& status)
{
MIRO_LOG_OSTR(LL_NOTICE, "DDS Reader on_requested_deadline_missed: " << status);
}
void
DdsPushConsumer::on_requested_incompatible_qos(DDS::DataReader* /*reader*/,
DDS::RequestedIncompatibleQosStatus const& status)
{
MIRO_LOG_OSTR(LL_NOTICE, "DDS Reader on_requested_incompatible_qos: " << status);
}
void
DdsPushConsumer::on_sample_rejected(DDS::DataReader* /*reader*/,
DDS::SampleRejectedStatus const& status)
{
MIRO_LOG_OSTR(LL_NOTICE, "DDS Reader on_sample_rejected: " << status);
}
void
DdsPushConsumer::on_liveliness_changed(DDS::DataReader* /*reader*/,
DDS::LivelinessChangedStatus const& status)
{
MIRO_LOG_OSTR(LL_NOTICE, "DDS Reader on_liveliness_changed: " << status);
}
void
DdsPushConsumer::on_sample_lost(DDS::DataReader* /*reader*/,
DDS::SampleLostStatus const& status)
{
MIRO_LOG_OSTR(LL_NOTICE, "DDS Reader on_sample_lost: " << status);
}
void
DdsPushConsumer::on_subscription_matched(DDS::DataReader* /*reader*/,
DDS::SubscriptionMatchedStatus const& status)
{
MIRO_LOG_OSTR(LL_NOTICE, "DDS Reader on_subscription_matched: " << status);
}
}
|
b3d5476dcb78a5e567844ddd07ba420469ccccdd
|
4102677669ec2b089345b287f05186ccac604e76
|
/sto_quad/main_threads_omp.cpp
|
cf845963c160c013c03b4b0cf2ea767146fb7f29
|
[] |
no_license
|
chem12346789/deom
|
c68366beaf00a79f6e55956195dc41b8526eb942
|
804f72c41273dffb2f0407585ad392acc8219a55
|
refs/heads/main
| 2023-07-20T00:05:52.333426
| 2021-08-30T16:38:54
| 2021-08-30T16:38:54
| 361,833,107
| 2
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 15,436
|
cpp
|
main_threads_omp.cpp
|
// #include "algebra.cpp"
#include "deom.hpp"
#include "mr.cpp"
// #include "pulse.hpp"
#include <gperftools/profiler.h>
#include <stdio.h>
#include <thread> // std::thread
#include <unistd.h>
using namespace std;
using Eigen::Matrix2cd;
using Eigen::MatrixXcd;
using Eigen::VectorXcd;
template <typename T>
int sgn(T val) {
return (T(0) < val) - (val < T(0));
}
void init_deom(const Json &json, int argc, char *argv[]) {
printf("init\n");
DEOM *d, deom;
d = &deom;
// ## init para ##
d->nmax = json["nmax"].int_value();
d->nsys = json["nsys"].int_value();
d->nind = json["nind"].int_value();
d->lmax = json["lmax"].int_value();
d->nham = json["nham"].int_value();
d->nmod = json["nmod"].int_value();
d->nmodmax = json["nmodmax"].int_value();
d->ferr = json["ferr"].number_value();
// ## init comb ##
d->combmax = d->nind + d->lmax + 2;
d->comb_list.resize(d->combmax, d->combmax);
for (int j = 0; j < d->combmax; j++)
d->comb_list(0, j) = 0;
d->comb_list(0, 0) = 1;
for (int i = 1; i < d->combmax; i++) {
for (int j = 1; j < d->combmax; j++) {
d->comb_list(i, j) = d->comb_list((i - 1), j) + d->comb_list((i - 1), j - 1);
}
d->comb_list(i, 0) = 1;
}
// ## init comb done ##
if (d->comb_list((d->lmax + d->nind), d->lmax) < d->nmax) {
d->nmax = d->comb_list(d->lmax + d->nind, d->lmax);
} else {
printf("mem error! but do not panic it maybe right.\n");
}
printf("nmax = %lld\n", d->nmax);
printf("nsys = %d\n", d->nsys);
printf("nind = %d\n", d->nind);
printf("lmax = %d\n", d->lmax);
printf("nham = %d\n", d->nham);
printf("nmod = %d\n", d->nmod);
printf("nmodmax = %d\n", d->nmodmax);
printf("ferr = %g\n", d->ferr);
// ## init para done ##
if (NSYS != d->nsys) {
printf("ERROR NYSY!! PEALASE REPLACE NSYS AND RECOMPILE IT!!!\nBTW: the original design is we do not change it during the workflow, and fixed mat will gain about 2.0x speed up, so we fix it, if you prefer another feature just change it.");
exit(1);
}
if (d->nmodmax != 1) {
printf("ERROR nmodmax, this code is NOT contain nul mode!!!");
exit(2);
}
// ## init list things ##
d->ham1 = MatrixXcd::Zero(NSYS, NSYS);
for (int i = 0; i < d->nham; i++)
for (int j = 0; j < d->nham; j++)
d->ham1(i, j) = json["ham1"]["real"].array_items()[INDEX2(i, j, d->nham)].number_value() + complex<double>(1i) * json["ham1"]["imag"].array_items()[INDEX2(i, j, d->nham)].number_value();
printf("# ham1\n");
std::cout << d->ham1 << std::endl;
d->modLabel = VectorXi(d->nind);
for (int i = 0; i < d->nind; i++)
d->modLabel(i) = json["modLabel"]["real"].array_items()[i].int_value();
printf("# modLabel\n");
d->delt_res = VectorXcd::Zero(d->nmodmax);
d->coef_abs = VectorXcd::Zero(d->nind);
d->expn = VectorXcd::Zero(d->nind);
for (int i = 0; i < d->nmodmax; i++)
d->delt_res(i) = json["delt_res"]["real"].array_items()[i].number_value() + complex<double>(1i) * json["delt_res"]["imag"].array_items()[i].number_value();
printf("# delt_res\n");
for (int i = 0; i < d->nind; i++) {
d->coef_abs(i) = sqrt(json["coef_abs"]["real"].array_items()[i].number_value() + complex<double>(1i) * json["coef_abs"]["imag"].array_items()[i].number_value());
d->expn(i) = json["expn"]["real"].array_items()[i].number_value() + complex<double>(1i) * json["expn"]["imag"].array_items()[i].number_value();
}
d->coef_lft = std::vector<MatrixXcd, Eigen::aligned_allocator<MatrixXcd>>(d->nind);
d->coef_rht = std::vector<MatrixXcd, Eigen::aligned_allocator<MatrixXcd>>(d->nind);
for (int mp = 0; mp < d->nind; mp++) {
d->coef_lft[mp].resize(d->nmodmax, d->nmodmax);
d->coef_rht[mp].resize(d->nmodmax, d->nmodmax);
for (int ii = 0; ii < d->nmodmax; ii++) {
for (int m = 0; m < d->nmodmax; m++) {
d->coef_lft[mp](m, ii) = json["coef_lft"]["real"].array_items()[INDEX3(mp, m, ii, d->nmodmax)].number_value() + complex<double>(1i) * json["coef_lft"]["imag"].array_items()[INDEX3(mp, m, ii, d->nmodmax)].number_value();
d->coef_rht[mp](m, ii) = json["coef_rht"]["real"].array_items()[INDEX3(mp, m, ii, d->nmodmax)].number_value() + complex<double>(1i) * json["coef_rht"]["imag"].array_items()[INDEX3(mp, m, ii, d->nmodmax)].number_value();
}
}
}
printf("# coef_abs\n");
d->qmd1 = nNNmat(d->nmodmax);
for (int i = 0; i < d->nmodmax; i++)
for (int j = 0; j < NSYS; j++)
for (int k = 0; k < NSYS; k++)
d->qmd1[i](j, k) = json["qmd1"]["real"].array_items()[INDEX3(i, j, k)].number_value() + complex<double>(1i) * json["qmd1"]["imag"].array_items()[INDEX3(i, j, k)].number_value();
// ## init list/array things done ##
// ## init keys and gams ##
XXimat_r keys(d->nmax, d->nind);
XXimat_r keys1(d->nmax, d->nind);
for (int iado = 0; iado < d->nmax; iado++) {
for (int mp = 0; mp < d->nind; mp++) {
keys(iado, mp) = -1;
keys1(iado, mp) = -1;
}
}
keys(0, 0) = 0;
VectorXi key_tmp(d->nind);
VectorXi key_tmp1(d->nind);
for (int key_index = 0; key_index < d->nind; key_index++)
key_tmp(key_index) = -1;
XXimat_r g_index_list_pos(d->nmax, (2 * d->nind + 1));
for (int iado = 0; iado < d->nmax; iado++)
for (int mp = 0; mp < 2 * d->nind + 1; mp++)
g_index_list_pos(iado, mp) = 0;
// ## init keys and gams done ##
printf("# keys and gams\n");
// ## init qmdt ##
d->hamt = MatrixXcd::Zero(NSYS, NSYS);
d->qmdt = nNNmat(d->nind);
d->qmdr = nNNmat(d->nind);
d->qmdl = nNNmat(d->nind);
// ## init qmdt done ##
// ## init ddos ##
nNNmat ddos(d->nmax);
nNNmat ddos1(d->nmax);
nNNmat ddos2(d->nmax);
nNNmat ddos3(d->nmax);
printf("# ddos\n");
vector<int> nsave(7);
for (int iado_ = 0; iado_ < d->nmax; iado_++) {
ddos[iado_].setZero();
}
ddos[0](0, 0) = 1;
// ## init ddos done ##
MatrixXcd tmp, deom_mat_1;
tmp = MatrixXcd::Zero(NSYS, NSYS);
deom_mat_1 = MatrixXcd::Identity(NSYS, NSYS);
// ## control init##
const double dt = json["dt"].number_value();
double ti = json["ti"].number_value();
const double tf = json["tf"].number_value();
const int nt_i = ceil(abs(ti) / dt);
const int nt_f = ceil(abs(tf) / dt);
const int nt = nt_i + nt_f;
ti = -nt_i * dt;
const int n_threads = omp_get_max_threads();
int i;
int iado_;
const double dt2 = dt / 2.0;
const double dt3 = dt / 3.0;
const double dt4 = dt / 4.0;
const double dt6 = dt / 6.0;
printf("dt:%e\n", dt);
printf("nt:%d\n", nt);
printf("n_threads:%d\n", n_threads);
// ## control init done##
printf("=== INIT DONE ===\n");
Trie *tree = new Trie(10 * d->nind);
// Trie tree(d->comb_list[d->combmax * (d->lmax + d->nind) + d->lmax]);
tree->try_insert(1, 0);
d->nddo = 1;
// stochastic
unsigned seed = std::chrono::system_clock::now().time_since_epoch().count();
cout << seed;
std::default_random_engine generator(seed);
std::normal_distribution<double> distribution(0.0, 1 / sqrt(dt));
const double alp1 = json["alp1"].number_value();
const double alp2 = json["alp2"].number_value();
const bool girsanov = json["girsanov"].bool_value();
printf("alp1:%f\n", alp1);
printf("alp2:%f\n", alp2);
const char *frho_name = json["frho"].string_value().c_str();
complex<double> trace(0);
FILE *frho = fopen(frho_name, "w");
FILE *fpolar = fopen("prop-pol.dat", "w");
complex<double> trace_dot;
complex<double> wx1t = 0;
complex<double> wy1t = 0;
complex<double> wx2t = 0;
complex<double> wy2t = 0;
// ##final init##
#pragma omp parallel default(shared)
for (int ii = 0; ii < nt; ii++) {
#pragma omp for private(iado_) schedule(dynamic, 64)
for (iado_ = 0; iado_ < d->nddo; iado_++) {
for (int mp = 0; mp < 2 * d->nind + 1; mp++)
g_index_list_pos(iado_, mp) = 0;
for (int mp = 0; mp < d->nind; mp++)
keys1(iado_, mp) = -1;
ddos1[iado_].setZero();
}
#pragma omp single
{
nsave[6] = d->nddo;
tree->clear();
delete tree;
Trie *tree = new Trie(min((ullint)(d->nind * d->nind * d->nddo), d->nmax));
d->nddo = 0;
nsave[0] = 0;
double x1 = distribution(generator);
double y1 = distribution(generator);
double x2 = distribution(generator);
double y2 = distribution(generator);
complex<double> z1;
complex<double> z2;
if (girsanov) {
complex<double> bx1 = (double)sgn(x1) * sqrt(x1 * x1 + wx1t * wx1t) - wx1t;
complex<double> by1 = (double)sgn(y1) * sqrt(y1 * y1 + wy1t * wy1t) - wy1t;
complex<double> bx2 = (double)sgn(x2) * sqrt(x2 * x2 + wx2t * wx2t) - wx2t;
complex<double> by2 = (double)sgn(y2) * sqrt(y2 * y2 + wy2t * wy2t) - wy2t;
z1 = bx1 + (complex<double>)1i * by1;
z2 = bx2 + (complex<double>)1i * by2;
} else {
z1 = x1 + (complex<double>)1i * y1;
z2 = x2 + (complex<double>)1i * y2;
}
d->hamt = d->ham1;
for (int mp = 0; mp < d->nind; mp++) {
int m1 = d->modLabel(mp);
d->qmdl[mp] = (alp1 + z1 * sqrt((complex<double>)alp2 / 2.)) * d->qmd1[m1] * d->qmd1[m1] + (complex<double>)1i * conj(z1) * sqrt((complex<double>)alp2 / 2.) * d->qmd1[m1];
d->qmdr[mp] = (alp1 - z2 * sqrt((complex<double>)alp2 / 2.)) * d->qmd1[m1] * d->qmd1[m1] + (complex<double>)1i * conj(z2) * sqrt((complex<double>)alp2 / 2.) * d->qmd1[m1];
}
}
#pragma omp for private(i) schedule(dynamic, 16)
for (i = 0; i < nsave[6]; i++)
filter_p(d, ddos, keys, ddos1, keys1, tree, i);
#pragma omp for private(iado_) schedule(dynamic, 64)
for (iado_ = 0; iado_ < nsave[6]; iado_++) {
keys.row(iado_) = keys1.row(iado_);
ddos[iado_].noalias() = ddos1[iado_];
}
#pragma omp single
{
nsave[1] = d->nddo;
}
#pragma omp for private(i) schedule(dynamic, 16)
for (i = nsave[0]; i < nsave[1]; i++)
construct_Mapping_p(d, keys, g_index_list_pos, tree, i);
#pragma omp single
{
nsave[2] = d->nddo;
}
#pragma omp for private(i) schedule(dynamic, 16)
for (i = 0; i < nsave[2]; i++)
rem_cal(ddos1, ddos, d, i, keys, g_index_list_pos);
#pragma omp for private(i) schedule(dynamic, 64)
for (i = 0; i < nsave[1]; i++)
ddos3[i].noalias() = ddos[i] + ddos1[i] * dt2;
#pragma omp for private(i) schedule(dynamic, 64)
for (i = nsave[1]; i < nsave[2]; i++)
ddos3[i].noalias() = ddos1[i] * dt2;
#pragma omp for private(i) schedule(dynamic, 16)
for (i = nsave[0]; i < nsave[2]; i++)
construct_Mapping_p(ddos3, d, keys, g_index_list_pos, tree, i);
#pragma omp single
{
nsave[3] = d->nddo;
}
#pragma omp for private(i) schedule(dynamic, 16)
for (i = 0; i < nsave[3]; i++)
rem_cal(ddos2, ddos3, d, i, keys, g_index_list_pos);
#pragma omp for private(i) schedule(dynamic, 64)
for (i = 0; i < nsave[1]; i++) {
ddos1[i].noalias() += ddos2[i] * 2.0;
ddos3[i].noalias() = ddos[i] + ddos2[i] * dt2;
}
#pragma omp for private(i) schedule(dynamic, 64)
for (i = nsave[1]; i < nsave[2]; i++) {
ddos1[i].noalias() += ddos2[i] * 2.0;
ddos3[i].noalias() = ddos2[i] * dt2;
}
#pragma omp for private(i) schedule(dynamic, 64)
for (i = nsave[2]; i < nsave[3]; i++) {
ddos1[i].noalias() = ddos2[i] * 2.0;
ddos3[i].noalias() = ddos2[i] * dt2;
}
#pragma omp for private(i) schedule(dynamic, 16)
for (i = nsave[0]; i < nsave[3]; i++)
construct_Mapping_p(ddos3, d, keys, g_index_list_pos, tree, i);
#pragma omp single
{
nsave[4] = d->nddo;
}
#pragma omp for private(i) schedule(dynamic, 16)
for (i = 0; i < nsave[4]; i++)
rem_cal(ddos2, ddos3, d, i, keys, g_index_list_pos);
#pragma omp for private(i) schedule(dynamic, 64)
for (i = 0; i < nsave[1]; i++) {
ddos1[i].noalias() += ddos2[i] * 2.0;
ddos3[i].noalias() = ddos[i] + ddos2[i] * dt;
}
#pragma omp for private(i) schedule(dynamic, 64)
for (i = nsave[1]; i < nsave[3]; i++) {
ddos1[i].noalias() += ddos2[i] * 2.0;
ddos3[i].noalias() = ddos2[i] * dt;
}
#pragma omp for private(i) schedule(dynamic, 64)
for (i = nsave[3]; i < nsave[4]; i++)
for (int j = 0; j < NSYS; j++)
for (int k = 0; k < NSYS; k++) {
ddos1[i].noalias() = ddos2[i] * 2.0;
ddos3[i].noalias() = ddos2[i] * dt;
}
#pragma omp for private(i) schedule(dynamic, 16)
for (i = nsave[0]; i < nsave[4]; i++)
construct_Mapping_p(ddos3, d, keys, g_index_list_pos, tree, i);
#pragma omp single
{
nsave[5] = d->nddo;
}
#pragma omp for private(i) schedule(dynamic, 16)
for (i = 0; i < nsave[5]; i++)
rem_cal(ddos2, ddos3, d, i, keys, g_index_list_pos);
#pragma omp for private(i) schedule(dynamic, 64)
for (i = 0; i < nsave[1]; i++) {
ddos1[i].noalias() += ddos2[i];
ddos[i].noalias() += ddos1[i] * dt6;
}
#pragma omp for private(i) schedule(dynamic, 64)
for (i = nsave[1]; i < nsave[4]; i++) {
ddos1[i].noalias() += ddos2[i];
ddos[i].noalias() = ddos1[i] * dt6;
}
#pragma omp for private(i) schedule(dynamic, 64)
for (i = nsave[4]; i < nsave[5]; i++) {
ddos1[i].noalias() = ddos2[i];
ddos[i].noalias() = ddos1[i] * dt6;
}
#pragma omp single
{
int pos;
if (girsanov) {
tmp.setZero();
for (int mp = 0; mp < d->nind; mp++) {
gen_key(key_tmp, key_tmp1, mp, 1, d);
int m1 = d->modLabel(mp);
pos = tree->find(hash_bad(key_tmp1, d));
if (pos > -1) {
tmp += d->qmd1[m1] * ddos[pos];
}
}
int pos = tree->find(1);
trace = ddos[pos].trace();
trace_dot = tmp.trace();
wx1t = trace_dot / trace * sqrt((complex<double>)alp2 / 2.) * (1. - (complex<double>)1i);
wy1t = trace_dot / trace * sqrt((complex<double>)alp2 / 2.) * (1. - (complex<double>)1i);
wx2t = trace_dot / trace * sqrt((complex<double>)alp2 / 2.) * (1. + (complex<double>)1i);
wy2t = -trace_dot / trace * sqrt((complex<double>)alp2 / 2.) * (1. + (complex<double>)1i);
}
// fprintf(fpolar, "%16.6e", ti + ii * dt);
// fprintf(fpolar, "%20.10e%20.10e", real(trace), imag(trace));
// fprintf(fpolar, "\n");
// printf("%16.6e\t", ti + ii * dt);
if (ii % (nt / 1000) == 0) {
printf("%2.0f %% done\n", float(ii / (nt / 1000)));
printf("nddo:%d\t", nsave[1]);
printf("nddo:%d\t", nsave[2]);
printf("nddo:%d\t", nsave[3]);
printf("nddo:%d\t", nsave[4]);
printf("nddo:%d\n", nsave[5]);
}
pos = tree->find(1);
fprintf(frho, "%16.6e\t", ti + (ii + 1) * dt);
for (int i = 0; i < NSYS; i++) {
for (int j = 0; j < NSYS; j++) {
// printf("%16.6e\t", ddos[pos](i, i).real());
fprintf(frho, "%14.12e\t", ddos[pos](i, j).real());
fprintf(frho, "%14.12e\t", ddos[pos](i, j).imag());
}
}
fprintf(frho, "\n");
}
}
}
//
int main(int argc, char *argv[]) {
ProfilerStart("test.prof");
ifstream jsonFile("input.json");
stringstream strStream;
strStream << jsonFile.rdbuf();
string jsonStr = strStream.str();
string err;
const Json json = Json::parse(jsonStr, err);
if (!err.empty()) {
printf("Error in parsing input file: %s\n", err.c_str());
return 1;
}
init_deom(json, argc, argv);
ProfilerStop();
}
|
8b00486bb7be24834f8d68c03c835f81dc347fd8
|
293c244b17524210780b4fcb644c03d5cd6f1729
|
/src/bugengine/meta/include/builtin-biguintx.script.hh
|
fa6fd6543207fc700791a872ed837154edbb296f
|
[
"BSD-3-Clause"
] |
permissive
|
bugengine/BugEngine
|
380c0aee8ba48a07e5b820877352f922cbba0a21
|
1b3831d494ee06b0bd74a8227c939dd774b91226
|
refs/heads/master
| 2021-08-08T00:20:11.200535
| 2021-07-31T13:53:24
| 2021-07-31T13:53:24
| 20,094,089
| 4
| 1
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,434
|
hh
|
builtin-biguintx.script.hh
|
/* BugEngine <bugengine.devel@gmail.com>
see LICENSE for detail */
#ifndef BE_META_BUILTIN_BIGUINTX_SCRIPT_HH_
#define BE_META_BUILTIN_BIGUINTX_SCRIPT_HH_
/**************************************************************************************************/
#include <bugengine/meta/stdafx.h>
#include <bugengine/meta/builtin.hh>
#include <bugengine/meta/classinfo.script.hh>
#if 0
namespace BugEngine
{
be_tag(Index(BugEngine::Meta::ClassType_Vector2
+ (BugEngine::Meta::ClassIndex_u64 << 16)))
be_pod biguint2
{
u64 operator[](u32) const;
u64& operator[](u32);
};
be_tag(Index(BugEngine::Meta::ClassType_Vector3
+ (BugEngine::Meta::ClassIndex_u64 << 16)))
be_pod biguint3
{
u64 operator[](u32) const;
u64& operator[](u32);
};
be_tag(Index(BugEngine::Meta::ClassType_Vector4
+ (BugEngine::Meta::ClassIndex_u64 << 16)))
be_pod biguint4
{
u64 operator[](u32) const;
u64& operator[](u32);
};
be_tag(Index(BugEngine::Meta::ClassType_Vector8
+ (BugEngine::Meta::ClassIndex_u64 << 16)))
be_pod biguint8
{
u64 operator[](u32) const;
u64& operator[](u32);
};
be_tag(Index(BugEngine::Meta::ClassType_Vector16
+ (BugEngine::Meta::ClassIndex_u64 << 16)))
be_pod biguint16
{
u64 operator[](u32) const;
u64& operator[](u32);
};
}
#endif
/**************************************************************************************************/
#endif
|
7a01fdefd3d676eda23499f8b732ef1c9aade953
|
7b81ea6906b90afe72b51f29b909511da87a2f29
|
/source/MXTopoTools2020/I_OrderImpl.h
|
3924789420ee50f6a9db5d065a2c39c7f29bb0e4
|
[
"Apache-2.0"
] |
permissive
|
jan-kebernik/3ds-Max-TopoTools-2020
|
cf1f47aa37e544a8f34bcefd768b67e3e3605965
|
10a35f834a9b99baedc4757c4d9914330a123b7c
|
refs/heads/master
| 2023-05-02T19:43:00.261045
| 2021-05-13T12:22:55
| 2021-05-13T12:22:55
| 291,316,587
| 0
| 1
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 89,606
|
h
|
I_OrderImpl.h
|
#pragma once
#include "Util.h"
#include "Codes.h"
#include "Helpers.h"
#include "Restore.h"
class I_OrderImpl {
public:
static inline i32 blendMirrorPos(
INode* node,
const List<i32>& orderM,
const List<i32>& orderA,
const List<i32>& orderB,
const Bitset& selection,
const i32 axis,
const f32 weight
) {
using ERR = Codes::I_Order_blendMirrorPos;
Helpers::Poly helper;
const i32 r = helper.init(node);
if (r != Codes::OK) {
return ERR::resolve(r);
}
MNMesh& mesh = helper.mesh();
if (orderA.length() != orderB.length()) {
return ERR::different_lengths;
}
if (!Helpers::Geom::checkBounds(orderM, mesh.numv)) {
return ERR::bad_vert_m;
}
if (!Helpers::Geom::checkBounds(orderA, mesh.numv)) {
return ERR::bad_vert_a;
}
if (!Helpers::Geom::checkBounds(orderB, mesh.numv)) {
return ERR::bad_vert_b;
}
Defer<Restore::PosRestore> rest;
const bool holding = theHold.Holding();
if (holding) {
rest.set(new Restore::PosRestore(helper));
rest.get()->before();
}
if (weight >= 0.000002f) {
const bool eq1 = weight >= 0.999998f;
switch (axis) {
case 0: {
// X
if (eq1) {
for (i32 i = 0; i < orderA.length(); ++i) {
const i32 a = orderA[i] - 1;
const i32 b = orderB[i] - 1;
Point3& posA = mesh.P(a);
Point3& posB = mesh.P(b);
const bool s = selection[a];
if (s != selection[b]) {
if (s) {
posB.x = F32(-F64(NaN32(posA.x)));
posB.y = NaN32(posA.y);
posB.z = NaN32(posA.z);
}
else {
posA.x = F32(-F64(NaN32(posB.x)));
posA.y = NaN32(posB.y);
posA.z = NaN32(posB.z);
}
}
else if (s) {
const f64 ax = F64(NaN32(posA.x)), ay = F64(NaN32(posA.y)), az = F64(NaN32(posA.z));
const f64 bx = F64(NaN32(posB.x)), by = F64(NaN32(posB.y)), bz = F64(NaN32(posB.z));
const f64 dx = (bx - ax) / 2.0;
const f64 dy = (by - ay) / 2.0;
const f64 dz = (bz - az) / 2.0;
const f64 d = sqrt((dx * dx) + (dy * dy) + (dz * dz));
if (dx < 0.0) {
posA.x = F32(d);
posB.x = F32(-d);
}
else {
posA.x = F32(-d);
posB.x = F32(d);
}
posA.y = posB.y = F32((ay / 2.0) + (by / 2.0));
posA.z = posB.z = F32((az / 2.0) + (bz / 2.0));
}
}
for (i32 i = 0; i < orderM.length(); ++i) {
const i32 v = orderM[i] - 1;
if (selection[v]) {
mesh.P(v).x = 0.0f;
}
}
}
else {
const f64 w = F64(weight);
const f64 _w = 1.0 - w;
for (i32 i = 0; i < orderA.length(); ++i) {
const i32 a = orderA[i] - 1;
const i32 b = orderB[i] - 1;
Point3& posA = mesh.P(a);
Point3& posB = mesh.P(b);
const bool s = selection[a];
if (s != selection[b]) {
const f64 ax = F64(NaN32(posA.x)), ay = F64(NaN32(posA.y)), az = F64(NaN32(posA.z));
const f64 bx = F64(NaN32(posB.x)), by = F64(NaN32(posB.y)), bz = F64(NaN32(posB.z));
if (s) {
posB.x = F32(bx * _w - ax * w);
posB.y = F32(by * _w + ay * w);
posB.z = F32(bz * _w + az * w);
}
else {
posA.x = F32(ax * _w - bx * w);
posA.y = F32(ay * _w + by * w);
posA.z = F32(az * _w + bz * w);
}
}
else if (s) {
const f64 ax = F64(NaN32(posA.x)), ay = F64(NaN32(posA.y)), az = F64(NaN32(posA.z));
const f64 bx = F64(NaN32(posB.x)), by = F64(NaN32(posB.y)), bz = F64(NaN32(posB.z));
const f64 dx = (bx - ax) / 2.0;
const f64 dy = (by - ay) / 2.0;
const f64 dz = (bz - az) / 2.0;
const f64 d = sqrt((dx * dx) + (dy * dy) + (dz * dz));
f64 ax1, bx1;
if (dx < 0.0) {
ax1 = d;
bx1 = -d;
}
else {
ax1 = -d;
bx1 = d;
}
const f64 ay1 = (ay / 2.0) + (by / 2.0);
const f64 az1 = (az / 2.0) + (bz / 2.0);
posA.x = F32(ax * _w + ax1 * w);
posA.y = F32(ay * _w + ay1 * w);
posA.z = F32(az * _w + az1 * w);
posB.x = F32(bx * _w + bx1 * w);
posB.y = F32(by * _w + ay1 * w);
posB.z = F32(bz * _w + az1 * w);
}
}
for (i32 i = 0; i < orderM.length(); ++i) {
const i32 v = orderM[i] - 1;
if (selection[v]) {
Point3& p = mesh.P(v);
p.x = F32(F64(NaN32(p.x)) * _w);
}
}
}
break;
}
case 1: {
// Y
if (eq1) {
for (i32 i = 0; i < orderA.length(); ++i) {
const i32 a = orderA[i] - 1;
const i32 b = orderB[i] - 1;
Point3& posA = mesh.P(a);
Point3& posB = mesh.P(b);
const bool s = selection[a];
if (s != selection[b]) {
if (s) {
posB.x = NaN32(posA.x);
posB.y = F32(-F64(NaN32(posA.y)));
posB.z = NaN32(posA.z);
}
else {
posA.x = NaN32(posB.x);
posA.y = F32(-F64(NaN32(posB.y)));
posA.z = NaN32(posB.z);
}
}
else if (s) {
const f64 ax = F64(NaN32(posA.x)), ay = F64(NaN32(posA.y)), az = F64(NaN32(posA.z));
const f64 bx = F64(NaN32(posB.x)), by = F64(NaN32(posB.y)), bz = F64(NaN32(posB.z));
const f64 dx = (bx - ax) / 2.0;
const f64 dy = (by - ay) / 2.0;
const f64 dz = (bz - az) / 2.0;
const f64 d = sqrt((dx * dx) + (dy * dy) + (dz * dz));
posA.x = posB.x = F32((ax / 2.0) + (bx / 2.0));
if (dy < 0.0) {
posA.y = F32(d);
posB.y = F32(-d);
}
else {
posA.y = F32(-d);
posB.y = F32(d);
}
posA.z = posB.z = F32((az / 2.0) + (bz / 2.0));
}
}
for (i32 i = 0; i < orderM.length(); ++i) {
const i32 v = orderM[i] - 1;
if (selection[v]) {
mesh.P(v).y = 0.0f;
}
}
}
else {
const f64 w = F64(weight);
const f64 _w = 1.0 - w;
for (i32 i = 0; i < orderA.length(); ++i) {
const i32 a = orderA[i] - 1;
const i32 b = orderB[i] - 1;
Point3& posA = mesh.P(a);
Point3& posB = mesh.P(b);
const bool s = selection[a];
if (s != selection[b]) {
const f64 ax = F64(NaN32(posA.x)), ay = F64(NaN32(posA.y)), az = F64(NaN32(posA.z));
const f64 bx = F64(NaN32(posB.x)), by = F64(NaN32(posB.y)), bz = F64(NaN32(posB.z));
if (s) {
posB.x = F32(bx * _w + ax * w);
posB.y = F32(by * _w - ay * w);
posB.z = F32(bz * _w + az * w);
}
else {
posA.x = F32(ax * _w + bx * w);
posA.y = F32(ay * _w - by * w);
posA.z = F32(az * _w + bz * w);
}
}
else if (s) {
const f64 ax = F64(NaN32(posA.x)), ay = F64(NaN32(posA.y)), az = F64(NaN32(posA.z));
const f64 bx = F64(NaN32(posB.x)), by = F64(NaN32(posB.y)), bz = F64(NaN32(posB.z));
const f64 dx = (bx - ax) / 2.0;
const f64 dy = (by - ay) / 2.0;
const f64 dz = (bz - az) / 2.0;
const f64 d = sqrt((dx * dx) + (dy * dy) + (dz * dz));
const f64 ax1 = (ax / 2.0) + (bx / 2.0);
f64 ay1, by1;
if (dy < 0.0) {
ay1 = d;
by1 = -d;
}
else {
ay1 = -d;
by1 = d;
}
const f64 az1 = (az / 2.0) + (bz / 2.0);
posA.x = F32(ax * _w + ax1 * w);
posA.y = F32(ay * _w + ay1 * w);
posA.z = F32(az * _w + az1 * w);
posB.x = F32(bx * _w + ax1 * w);
posB.y = F32(by * _w + by1 * w);
posB.z = F32(bz * _w + az1 * w);
}
}
for (i32 i = 0; i < orderM.length(); ++i) {
const i32 v = orderM[i] - 1;
if (selection[v]) {
Point3& p = mesh.P(v);
p.y = F32(F64(NaN32(p.y)) * _w);
}
}
}
break;
}
default: {
// Z
if (eq1) {
for (i32 i = 0; i < orderA.length(); ++i) {
const i32 a = orderA[i] - 1;
const i32 b = orderB[i] - 1;
Point3& posA = mesh.P(a);
Point3& posB = mesh.P(b);
const bool s = selection[a];
if (s != selection[b]) {
if (s) {
posB.x = NaN32(posA.x);
posB.y = NaN32(posA.y);
posB.z = F32(-F64(NaN32(posA.z)));
}
else {
posA.x = NaN32(posB.x);
posA.y = NaN32(posB.y);
posA.z = F32(-F64(NaN32(posB.z)));
}
}
else if (s) {
const f64 ax = F64(NaN32(posA.x)), ay = F64(NaN32(posA.y)), az = F64(NaN32(posA.z));
const f64 bx = F64(NaN32(posB.x)), by = F64(NaN32(posB.y)), bz = F64(NaN32(posB.z));
const f64 dx = (bx - ax) / 2.0;
const f64 dy = (by - ay) / 2.0;
const f64 dz = (bz - az) / 2.0;
const f64 d = sqrt((dx * dx) + (dy * dy) + (dz * dz));
posA.x = posB.x = F32((ax / 2.0) + (bx / 2.0));
posA.y = posB.y = F32((ay / 2.0) + (by / 2.0));
if (dz < 0.0) {
posA.z = F32(d);
posB.z = F32(-d);
}
else {
posA.z = F32(-d);
posB.z = F32(d);
}
}
}
for (i32 i = 0; i < orderM.length(); ++i) {
const i32 v = orderM[i] - 1;
if (selection[v]) {
mesh.P(v).x = 0.0f;
}
}
}
else {
const f64 w = F64(weight);
const f64 _w = 1.0 - w;
for (i32 i = 0; i < orderA.length(); ++i) {
const i32 a = orderA[i] - 1;
const i32 b = orderB[i] - 1;
Point3& posA = mesh.P(a);
Point3& posB = mesh.P(b);
const bool s = selection[a];
if (s != selection[b]) {
const f64 ax = F64(NaN32(posA.x)), ay = F64(NaN32(posA.y)), az = F64(NaN32(posA.z));
const f64 bx = F64(NaN32(posB.x)), by = F64(NaN32(posB.y)), bz = F64(NaN32(posB.z));
if (s) {
posB.x = F32(bx * _w + ax * w);
posB.y = F32(by * _w + ay * w);
posB.z = F32(bz * _w - az * w);
}
else {
posA.x = F32(ax * _w + bx * w);
posA.y = F32(ay * _w + by * w);
posA.z = F32(az * _w - bz * w);
}
}
else if (s) {
const f64 ax = F64(NaN32(posA.x)), ay = F64(NaN32(posA.y)), az = F64(NaN32(posA.z));
const f64 bx = F64(NaN32(posB.x)), by = F64(NaN32(posB.y)), bz = F64(NaN32(posB.z));
const f64 dx = (bx - ax) / 2.0;
const f64 dy = (by - ay) / 2.0;
const f64 dz = (bz - az) / 2.0;
const f64 d = sqrt((dx * dx) + (dy * dy) + (dz * dz));
const f64 ax1 = (ax / 2.0) + (bx / 2.0);
const f64 ay1 = (ay / 2.0) + (by / 2.0);
f64 az1, bz1;
if (dz < 0.0) {
az1 = d;
bz1 = -d;
}
else {
az1 = -d;
bz1 = d;
}
posA.x = F32(ax * _w + ax1 * w);
posA.y = F32(ay * _w + ay1 * w);
posA.z = F32(az * _w + az1 * w);
posB.x = F32(bx * _w + ax1 * w);
posB.y = F32(by * _w + ay1 * w);
posB.z = F32(bz * _w + bz1 * w);
}
}
for (i32 i = 0; i < orderM.length(); ++i) {
const i32 v = orderM[i] - 1;
if (selection[v]) {
Point3& p = mesh.P(v);
p.z = F32(F64(NaN32(p.z)) * _w);
}
}
}
break;
}
}
}
helper.changedGeom();
if (holding) {
rest.get()->after();
Restore::put(true, rest);
}
helper.epoly().RefreshScreen();
Util::redrawViews();
return Codes::OK;
}
public:
static inline i32 flipMirrorPos(
INode* node,
const List<i32>& orderM,
const List<i32>& orderA,
const List<i32>& orderB,
const Bitset& selection,
const i32 axis,
const f32 weight
) {
using ERR = Codes::I_Order_flipMirrorPos;
Helpers::Poly helper;
const i32 r = helper.init(node);
if (r != Codes::OK) {
return ERR::resolve(r);
}
MNMesh& mesh = helper.mesh();
if (orderA.length() != orderB.length()) {
return ERR::different_lengths;
}
if (!Helpers::Geom::checkBounds(orderM, mesh.numv)) {
return ERR::bad_vert_m;
}
if (!Helpers::Geom::checkBounds(orderA, mesh.numv)) {
return ERR::bad_vert_a;
}
if (!Helpers::Geom::checkBounds(orderB, mesh.numv)) {
return ERR::bad_vert_b;
}
Restore::PosRestore* rest = nullptr;
const bool holding = theHold.Holding();
if (holding) {
rest = new Restore::PosRestore(helper);
rest->before();
}
if (weight >= 0.000002f) {
const bool eq1 = weight >= 0.999998f;
switch (axis) {
case 0: {
// X
if (eq1) {
for (i32 i = 0; i < orderA.length(); ++i) {
const i32 a = orderA[i] - 1;
const i32 b = orderB[i] - 1;
const bool s = selection[a];
if (s != selection[b]) {
if (s) {
Point3& pos = mesh.P(a);
pos.x = F32(-F64(NaN32(pos.x)));
}
else {
Point3& pos = mesh.P(b);
pos.x = F32(-F64(NaN32(pos.x)));
}
}
else if (s) {
Point3& posA = mesh.P(a);
Point3& posB = mesh.P(b);
const f32 t = posA.x;
posA.x = posB.x;
posB.x = t;
}
}
for (i32 i = 0; i < orderM.length(); ++i) {
const i32 v = orderM[i] - 1;
if (selection[v]) {
Point3& pos = mesh.P(v);
pos.x = F32(-F64(NaN32(pos.x)));
}
}
}
else {
const f64 w = F64(weight);
const f64 _w = 1.0 - w;
for (i32 i = 0; i < orderA.length(); ++i) {
const i32 a = orderA[i] - 1;
const i32 b = orderB[i] - 1;
const bool s = selection[a];
if (s != selection[b]) {
if (s) {
Point3& pos = mesh.P(a);
const f64 x = F64(NaN32(pos.x));
pos.x = F32(x * _w - x * w);
}
else {
Point3& pos = mesh.P(b);
const f64 x = F64(NaN32(pos.x));
pos.x = F32(x * _w - x * w);
}
}
else if (s) {
Point3& posA = mesh.P(a);
Point3& posB = mesh.P(b);
const f64 ax = F64(NaN32(posA.x));
const f64 bx = F64(NaN32(posB.x));
posA.x = F32(ax * _w + bx * w);
posB.x = F32(bx * _w + ax * w);
}
}
for (i32 i = 0; i < orderM.length(); ++i) {
const i32 v = orderM[i] - 1;
if (selection[v]) {
Point3& pos = mesh.P(v);
const f64 x = F64(NaN32(pos.x));
pos.x = F32(x * _w - x * w);
}
}
}
break;
}
case 1: {
// Y
if (eq1) {
for (i32 i = 0; i < orderA.length(); ++i) {
const i32 a = orderA[i] - 1;
const i32 b = orderB[i] - 1;
const bool s = selection[a];
if (s != selection[b]) {
if (s) {
Point3& pos = mesh.P(a);
pos.y = F32(-F64(NaN32(pos.y)));
}
else {
Point3& pos = mesh.P(b);
pos.y = F32(-F64(NaN32(pos.y)));
}
}
else if (s) {
Point3& posA = mesh.P(a);
Point3& posB = mesh.P(b);
const f32 t = posA.y;
posA.y = posB.y;
posB.y = t;
}
}
for (i32 i = 0; i < orderM.length(); ++i) {
const i32 v = orderM[i] - 1;
if (selection[v]) {
Point3& pos = mesh.P(v);
pos.y = F32(-F64(NaN32(pos.y)));
}
}
}
else {
const f64 w = F64(weight);
const f64 _w = 1.0 - w;
for (i32 i = 0; i < orderA.length(); ++i) {
const i32 a = orderA[i] - 1;
const i32 b = orderB[i] - 1;
const bool s = selection[a];
if (s != selection[b]) {
if (s) {
Point3& pos = mesh.P(a);
const f64 y = F64(NaN32(pos.y));
pos.y = F32(y * _w - y * w);
}
else {
Point3& pos = mesh.P(b);
const f64 y = F64(NaN32(pos.y));
pos.y = F32(y * _w - y * w);
}
}
else if (s) {
Point3& posA = mesh.P(a);
Point3& posB = mesh.P(b);
const f64 ay = F64(NaN32(posA.y));
const f64 by = F64(NaN32(posB.y));
posA.y = F32(ay * _w + by * w);
posB.y = F32(by * _w + ay * w);
}
}
for (i32 i = 0; i < orderM.length(); ++i) {
const i32 v = orderM[i] - 1;
if (selection[v]) {
Point3& pos = mesh.P(v);
const f64 y = F64(NaN32(pos.y));
pos.y = F32(y * _w - y * w);
}
}
}
break;
}
default: {
// Z
if (eq1) {
for (i32 i = 0; i < orderA.length(); ++i) {
const i32 a = orderA[i] - 1;
const i32 b = orderB[i] - 1;
const bool s = selection[a];
if (s != selection[b]) {
if (s) {
Point3& pos = mesh.P(a);
pos.z = F32(-F64(NaN32(pos.z)));
}
else {
Point3& pos = mesh.P(b);
pos.z = F32(-F64(NaN32(pos.z)));
}
}
else if (s) {
Point3& posA = mesh.P(a);
Point3& posB = mesh.P(b);
const f32 t = posA.z;
posA.z = posB.z;
posB.z = t;
}
}
for (i32 i = 0; i < orderM.length(); ++i) {
const i32 v = orderM[i] - 1;
if (selection[v]) {
Point3& pos = mesh.P(v);
pos.z = F32(-F64(NaN32(pos.z)));
}
}
}
else {
const f64 w = F64(weight);
const f64 _w = 1.0 - w;
for (i32 i = 0; i < orderA.length(); ++i) {
const i32 a = orderA[i] - 1;
const i32 b = orderB[i] - 1;
const bool s = selection[a];
if (s != selection[b]) {
if (s) {
Point3& pos = mesh.P(a);
const f64 z = F64(NaN32(pos.z));
pos.z = F32(z * _w - z * w);
}
else {
Point3& pos = mesh.P(b);
const f64 z = F64(NaN32(pos.z));
pos.z = F32(z * _w - z * w);
}
}
else if (s) {
Point3& posA = mesh.P(a);
Point3& posB = mesh.P(b);
const f64 az = F64(NaN32(posA.z));
const f64 bz = F64(NaN32(posB.z));
posA.z = F32(az * _w + bz * w);
posB.z = F32(bz * _w + az * w);
}
}
for (i32 i = 0; i < orderM.length(); ++i) {
const i32 v = orderM[i] - 1;
if (selection[v]) {
Point3& pos = mesh.P(v);
const f64 z = F64(NaN32(pos.z));
pos.z = F32(z * _w - z * w);
}
}
}
break;
}
}
}
helper.changedGeom();
if (holding) {
rest->after();
theHold.Put(rest);
}
helper.epoly().RefreshScreen();
Util::redrawViews();
return Codes::OK;
}
public:
static inline i32 copyPos(
INode* src,
const List<i32>& srcOrder,
INode* dst,
const List<i32>& dstOrder,
const Bitset& selection
) {
using ERR = Codes::I_Order_copyPos;
i32 r;
Helpers::Poly pa;
r = pa.init(src);
if (r != Codes::OK) {
return ERR::resolvePolySrc(r);
}
Helpers::Poly pb;
r = pb.init(dst);
if (r != Codes::OK) {
return ERR::resolvePolyDst(r);
}
const MNMesh& meshA = pa.mesh();
const MNMesh& meshB = pb.mesh();
if (!Helpers::Geom::checkBounds(srcOrder, meshA.numv)) {
return ERR::bad_vert_a;
}
if (!Helpers::Geom::checkBounds(dstOrder, meshB.numv)) {
return ERR::bad_vert_b;
}
for (i32 i = srcOrder.length() - 1; i >= dstOrder.length(); --i) {
if (selection[srcOrder[i] - 1]) {
// vert selected in A has no addressable counterpart in B. Only possible if A.length() > B.length()
return ERR::bad_selection;
}
}
Defer<Restore::PosRestore> rest;
const bool holding = theHold.Holding();
if (holding) {
rest.set(new Restore::PosRestore(pb));
rest.get()->before(); // only those can change
}
if (std::addressof(meshA) == std::addressof(meshB)) {
// self copy. need defensive copy
List<Point3> copy(meshA.numv);
pa.collectPositions(copy);
for (i32 i = 0; i < srcOrder.length(); ++i) {
const i32 a = srcOrder[i] - 1;
if (selection[a]) {
const i32 b = dstOrder[i] - 1;
const Point3 posA = copy[a];
Point3& posB = meshB.P(b);
posB.x = posA.x;
posB.y = posA.y;
posB.z = posA.z;
}
}
}
else {
for (i32 i = 0; i < srcOrder.length(); ++i) {
const i32 a = srcOrder[i] - 1;
if (selection[a]) {
const i32 b = dstOrder[i] - 1;
const Point3 posA = meshA.P(a);
Point3& posB = meshB.P(b);
posB.x = posA.x;
posB.y = posA.y;
posB.z = posA.z;
}
}
}
pb.changedGeom();
if (holding) {
rest.get()->after();
Restore::put(true, rest);
}
pb.epoly().RefreshScreen();
Util::redrawViews();
return Codes::OK;
}
public:
static inline i32 blendPos(
INode* nodeA,
const List<i32>& orderA,
INode* nodeB,
const List<i32>& orderB,
const f32 weight,
const f32 outA,
const f32 outB,
const Bitset& selectionA,
const Bitset& selectionB,
const bool useSelectionA,
const bool useSelectionB
) {
using ERR = Codes::I_Order_blendPos;
i32 r;
Helpers::Poly pa;
r = pa.init(nodeA);
if (r != Codes::OK) {
return ERR::resolvePolySrc(r);
}
Helpers::Poly pb;
r = pb.init(nodeB);
if (r != Codes::OK) {
return ERR::resolvePolyDst(r);
}
if (orderA.length() != orderB.length()) {
return ERR::different_lengths;
}
MNMesh& meshA = pa.mesh();
if (!Helpers::Geom::checkBounds(orderA, meshA.numv)) {
return ERR::bad_vert_a;
}
MNMesh& meshB = pb.mesh();
if (!Helpers::Geom::checkBounds(orderB, meshB.numv)) {
return ERR::bad_vert_b;
}
if (!useSelectionA && !useSelectionB) {
// nothing is selected
return Codes::OK;
}
const i32 len = orderA.length();
Defer<Restore::PosRestore> restA;
Defer<Restore::PosRestore> restB;
const bool holding = theHold.Holding();
if (holding) {
restA.set(new Restore::PosRestore(pa));
restA.get()->before();
restB.set(new Restore::PosRestore(pb));
restB.get()->before();
}
const bool gt0A = outA >= 0.000002f;
const bool gt0B = outB >= 0.000002f;
if (gt0A || gt0B) {
const bool eq1A = outA >= 0.999998f;
const bool eq1B = outB >= 0.999998f;
const f64 outA64 = getOut(outA, gt0A, eq1A);
const f64 outB64 = getOut(outB, gt0B, eq1B);
const f64 _outA64 = 1.0 - outA64;
const f64 _outB64 = 1.0 - outB64;
if (weight <= 0.000002f) {
// w = 0
if (gt0A) {
if (useSelectionA == useSelectionB) {
for (i32 i = 0; i < len; ++i) {
const i32 a = orderA[i] - 1;
const i32 b = orderB[i] - 1;
if (selectionA[a] || selectionB[b]) {
blendPos0(meshA, a, meshB, b, eq1A, outA64, _outA64);
}
}
}
else if (useSelectionA) {
for (i32 i = 0; i < len; ++i) {
const i32 a = orderA[i] - 1;
if (selectionA[a]) {
const i32 b = orderB[i] - 1;
blendPos0(meshA, a, meshB, b, eq1A, outA64, _outA64);
}
}
}
else {
for (i32 i = 0; i < len; ++i) {
const i32 b = orderB[i] - 1;
if (selectionB[b]) {
const i32 a = orderA[i] - 1;
blendPos0(meshA, a, meshB, b, eq1A, outA64, _outA64);
}
}
}
}
}
else if (weight >= 0.999998f) {
// w = 1
if (gt0B) {
if (useSelectionA == useSelectionB) {
for (i32 i = 0; i < len; ++i) {
const i32 a = orderA[i] - 1;
const i32 b = orderB[i] - 1;
if (selectionA[a] || selectionB[b]) {
blendPos1(meshA, a, meshB, b, eq1B, outB64, _outB64);
}
}
}
else if (useSelectionA) {
for (i32 i = 0; i < len; ++i) {
const i32 a = orderA[i] - 1;
if (selectionA[a]) {
const i32 b = orderB[i] - 1;
blendPos1(meshA, a, meshB, b, eq1B, outB64, _outB64);
}
}
}
else {
for (i32 i = 0; i < len; ++i) {
const i32 b = orderB[i] - 1;
if (selectionB[b]) {
const i32 a = orderA[i] - 1;
blendPos1(meshA, a, meshB, b, eq1B, outB64, _outB64);
}
}
}
}
}
else {
const f64 w = F64(NaN32(weight));
const f64 _w = 1.0 - w;
if (useSelectionA == useSelectionB) {
for (i32 i = 0; i < len; ++i) {
const i32 a = orderA[i] - 1;
const i32 b = orderB[i] - 1;
if (selectionA[a] || selectionB[b]) {
blendPos(meshA, a, meshB, b, w, _w, gt0A, eq1A, gt0B, eq1B, outA64, _outA64, outB64, _outB64);
}
}
}
else if (useSelectionA) {
for (i32 i = 0; i < len; ++i) {
const i32 a = orderA[i] - 1;
if (selectionA[a]) {
const i32 b = orderB[i] - 1;
blendPos(meshA, a, meshB, b, w, _w, gt0A, eq1A, gt0B, eq1B, outA64, _outA64, outB64, _outB64);
}
}
}
else {
for (i32 i = 0; i < len; ++i) {
const i32 b = orderB[i] - 1;
if (selectionB[b]) {
const i32 a = orderA[i] - 1;
blendPos(meshA, a, meshB, b, w, _w, gt0A, eq1A, gt0B, eq1B, outA64, _outA64, outB64, _outB64);
}
}
}
}
}
pa.changedGeom();
pb.changedGeom();
if (holding) {
restA.get()->after();
restB.get()->after();
bool x = true;
x = Restore::put(x, restA);
x = Restore::put(x, restB);
}
pa.epoly().RefreshScreen();
pb.epoly().RefreshScreen();
Util::redrawViews();
return Codes::OK;
}
private:
static inline f64 getOut(const f32 out, const bool gt0, const bool eq1) {
if (out != out || !gt0) {
return 0.0;
}
if (eq1) {
return 1.0;
}
return F64(out);
}
private:
static inline void blendPos(
MNMesh& meshA, const i32 a,
MNMesh& meshB, const i32 b,
const f64 w, const f64 _w,
const bool gt0A, const bool eq1A,
const bool gt0B, const bool eq1B,
const f64 outA64, const f64 _outA64,
const f64 outB64, const f64 _outB64
) {
Point3& posA = meshA.P(a);
Point3& posB = meshB.P(b);
const f64 ax = F64(NaN32(posA.x));
const f64 ay = F64(NaN32(posA.y));
const f64 az = F64(NaN32(posA.z));
const f64 bx = F64(NaN32(posB.x));
const f64 by = F64(NaN32(posB.y));
const f64 bz = F64(NaN32(posB.z));
const f64 x = (ax * w + bx * _w);
const f64 y = (ay * w + by * _w);
const f64 z = (az * w + bz * _w);
if (eq1A) {
posA.x = F32(x);
posA.y = F32(y);
posA.z = F32(z);
}
else if (gt0A) {
posA.x = F32(ax * _outA64 + x * outA64);
posA.y = F32(ay * _outA64 + y * outA64);
posA.z = F32(az * _outA64 + z * outA64);
}
if (eq1B) {
posB.x = F32(x);
posB.y = F32(y);
posB.z = F32(z);
}
else if (gt0B) {
posB.x = F32(bx * _outB64 + x * outB64);
posB.y = F32(by * _outB64 + y * outB64);
posB.z = F32(bz * _outB64 + z * outB64);
}
}
private:
static inline void blendPos0(
MNMesh& meshA, const i32 a,
MNMesh& meshB, const i32 b,
const bool eq1A,
const f64 outA64, const f64 _outA64
) {
Point3& posA = meshA.P(a);
const Point3& posB = meshB.P(b);
if (eq1A) {
posA.x = posB.x;
posA.y = posB.y;
posA.z = posB.z;
}
else {
const f64 ax = F64(NaN32(posA.x));
const f64 ay = F64(NaN32(posA.y));
const f64 az = F64(NaN32(posA.z));
const f64 bx = F64(NaN32(posB.x));
const f64 by = F64(NaN32(posB.y));
const f64 bz = F64(NaN32(posB.z));
posA.x = F32(ax * _outA64 + bx * outA64);
posA.y = F32(ay * _outA64 + by * outA64);
posA.z = F32(az * _outA64 + bz * outA64);
}
}
private:
static inline void blendPos1(
const MNMesh& meshA, const i32 a,
MNMesh& meshB, const i32 b,
const bool eq1B,
const f64 outB64, const f64 _outB64
) {
const Point3& posA = meshA.P(a);
Point3& posB = meshB.P(b);
if (eq1B) {
posB.x = posA.x;
posB.y = posA.y;
posB.z = posA.z;
}
else {
const f64 ax = F64(NaN32(posA.x));
const f64 ay = F64(NaN32(posA.y));
const f64 az = F64(NaN32(posA.z));
const f64 bx = F64(NaN32(posB.x));
const f64 by = F64(NaN32(posB.y));
const f64 bz = F64(NaN32(posB.z));
posB.x = F32(bx * _outB64 + ax * outB64);
posB.y = F32(by * _outB64 + ay * outB64);
posB.z = F32(bz * _outB64 + az * outB64);
}
}
public:
static inline i32 extractSymmetrySelection(
INode* node,
const Bitset& faces,
const Bitset& edges,
const Bitset& verts,
i32& faceA,
i32& edgeA,
i32& vertA,
i32& faceB,
i32& edgeB,
i32& vertB,
const i32 axis
) {
using ERR = Codes::I_Order_extractSymmetrySelection;
Helpers::Poly helper;
i32 r = helper.init(node);
if (r != Codes::OK) {
return ERR::resolve(r);
}
const MNMesh& mesh = helper.mesh();
const i32 numF = mesh.numf;
Bitset patchFaces(numF);
List<i32> patch(Util::mathMax(Util::mathMin(256, numF), numF >> 3));
i32 _faceA = 0;
i32 _eIdxA = 0;
i32 _vIdxA = 0;
i32 _faceB = 0;
i32 _eIdxB = 0;
i32 _vIdxB = 0;
r = extractOrderSelection(
mesh, faces, edges, verts, patchFaces, patch,
_faceA, _eIdxA, _vIdxA, _faceB, _eIdxB, _vIdxB, true
);
if (r < 0) {
return ERR::resolveExtra(r);
}
// make a rough guess as to which side is probably left/right.
const MNFace& a = mesh.f[_faceA];
const MNFace& b = mesh.f[_faceB];
bool xyz;
switch (axis) {
case 0: {
xyz = helper.avgPosX(_faceA) > helper.avgPosX(_faceB);
break;
}
case 1: {
xyz = helper.avgPosY(_faceA) > helper.avgPosY(_faceB);
break;
}
default: {
xyz = helper.avgPosZ(_faceA) > helper.avgPosZ(_faceB);
break;
}
}
if (xyz) {
// a is right side
faceA = _faceB + 1;
edgeA = b.edg[_eIdxB] + 1;
vertA = b.vtx[_vIdxB] + 1;
faceB = _faceA + 1;
edgeB = a.edg[_eIdxA] + 1;
vertB = a.vtx[_vIdxA] + 1;
}
else {
// b is right side
faceA = _faceA + 1;
edgeA = a.edg[_eIdxA] + 1;
vertA = a.vtx[_vIdxA] + 1;
faceB = _faceB + 1;
edgeB = b.edg[_eIdxB] + 1;
vertB = b.vtx[_vIdxB] + 1;
}
return Codes::OK;
}
public:
static inline i32 extractTraversalSelection(
INode* node,
const Bitset& faces,
const Bitset& edges,
const Bitset& verts,
i32& face,
i32& edge,
i32& vert
) {
using ERR = Codes::I_Order_extractTraversalSelection;
Helpers::Poly helper;
i32 r = helper.init(node);
if (r != Codes::OK) {
return ERR::resolve(r);
}
const MNMesh& mesh = helper.mesh();
const i32 numF = mesh.numf;
Bitset patchFaces(numF);
List<i32> patch(Util::mathMax(Util::mathMin(256, numF), numF >> 3));
i32 _face = 0, _eIdx = 0, _vIdx = 0;
r = extractOrderSelection(
mesh, faces, edges, verts, patchFaces, patch,
_face, _eIdx, _vIdx, _face, _eIdx, _vIdx, false
);
if (r < 0) {
return ERR::resolveExtra(r);
}
const MNFace& f = mesh.f[_face];
face = _face + 1;
edge = f.edg[_eIdx] + 1;
vert = f.vtx[_vIdx] + 1;
return Codes::OK;
}
private:
static inline i32 extractOrderSelection(
const MNMesh& mesh,
const Bitset& faces, const Bitset& edges, const Bitset& verts,
Bitset& patchFaces, List<i32>& patch,
i32& faceA, i32& edgeAIdx, i32& vertAIdx,
i32& faceB, i32& edgeBIdx, i32& vertBIdx,
const bool symmetrySelection
) {
patchFaces.clearAll();
const i32 numF = mesh.numf;
const i32 numE = mesh.nume;
const i32 numV = mesh.numv;
i32 edge1Count = 0;
i32 edge0Count = 0;
i32 edge0 = -1;
i32 edge2Count = 0;
i32 edge2 = -1;
i32 border2Count = 0;
i32 border2 = -1;
i32 patchIdA = -1;
i32 patchIdB = -1;
for (i32 p = 0; p < numF; ++p) {
if (!patchFaces[p] && faces[p] && !Helpers::Geom::isFaceFlagged(mesh, p, MN_DEAD)) {
patchFaces.set(p);
patch.push(p);
// start of a new patch
do {
i32 fEdge0Count = 0;
i32 fBorder0Count = 0;
i32 fEdge2Count = 0;
i32 fBorder2Count = 0;
i32 fEdge1Count = 0;
i32 fEdge1EIdxA = -1;
i32 fEdge1EIdxB = -1;
i32 fEdge1VIdxA = -1;
i32 fEdge1VIdxB = -1;
bool fEdge1BorderA = false;
const i32 f = patch.pop();
const MNFace& face = mesh.f[f];
const i32 deg = face.deg;
if (deg < 3) {
// face has too few edges
return Codes::errors_extractOrderSelection::broken_mesh;
}
for (i32 i = 0; i < deg; ++i) {
const i32 e = face.edg[i];
if (e < 0 || e >= numE) {
return Codes::errors_extractOrderSelection::broken_mesh;
}
const MNEdge& edge = mesh.e[e];
if (edge.v1 < 0 || edge.v1 >= numV || edge.v2 < 0 || edge.v2 >= numV) {
return Codes::errors_extractOrderSelection::broken_mesh;
}
if (edge.GetFlag(MN_DEAD)
|| Helpers::Geom::isVertFlagged(mesh, edge.v1, MN_DEAD)
|| Helpers::Geom::isVertFlagged(mesh, edge.v2, MN_DEAD)) {
return Codes::errors_extractOrderSelection::zombie_mesh;
}
const i32 f2 = Helpers::Geom::otherFace(edge, f);
if (f2 >= 0 && faces[f2]) {
// has opposing face, not a border
if (!patchFaces[f2]) {
if (Helpers::Geom::isFaceFlagged(mesh, f2, MN_DEAD)) {
return Codes::errors_extractOrderSelection::zombie_mesh;
}
patchFaces.set(f2);
patch.push(f2);
}
if (edges[e]) {
// selected non-border edge
const bool s1 = verts[edge.v1];
const bool s2 = verts[edge.v2];
if (s1 == s2) {
if (s1) {
// both edge verts selected
edge2 = e;
++fEdge2Count;
}
else {
// neither edge vert selected
edge0 = e;
++fEdge0Count;
}
}
else {
// edge has one vert selected
const i32 v = s1 ? edge.v1 : edge.v2;
if (fEdge1Count == 0) {
fEdge1BorderA = false; // edge is not a border
fEdge1EIdxA = i;
fEdge1VIdxA = Helpers::Geom::vertIndexOrdered(face, i, v);
}
else {
fEdge1EIdxB = i;
fEdge1VIdxB = Helpers::Geom::vertIndexOrdered(face, i, v);
}
++fEdge1Count;
}
}
}
else if (edges[e]) {
// selected border edge
const bool s1 = verts[edge.v1];
const bool s2 = verts[edge.v2];
if (s1 == s2) {
if (s1) {
// both border verts selected
border2 = e;
++fBorder2Count;
}
else {
// neither border vert selected
++fBorder0Count;
}
}
else {
// one border vert selected
const i32 v = s1 ? edge.v1 : edge.v2;
if (fEdge1Count == 0) {
fEdge1BorderA = true; // edge is a border
fEdge1EIdxA = i;
fEdge1VIdxA = Helpers::Geom::vertIndexOrdered(face, i, v);
}
else {
fEdge1EIdxB = i;
fEdge1VIdxB = Helpers::Geom::vertIndexOrdered(face, i, v);
}
++fEdge1Count;
}
}
}
// integrate face patterns into patch patterns
if (fEdge1Count == 1 && (fEdge1BorderA || fEdge0Count != 0 || fBorder0Count != 0 || fEdge2Count != 0 || fBorder2Count != 0)) {
// face has one selected edge with 1 selected vert
// either we don't need or we do have additional edges specifying this face
if (edge1Count == 0) {
faceA = f;
edgeAIdx = fEdge1EIdxA;
vertAIdx = fEdge1VIdxA;
patchIdA = p;
}
else {
faceB = f;
edgeBIdx = fEdge1EIdxA;
vertBIdx = fEdge1VIdxA;
patchIdB = p;
}
++edge1Count;
}
else if (symmetrySelection && fEdge1Count == 2 && (fEdge1EIdxA == fEdge1VIdxA) != (fEdge1EIdxB == fEdge1VIdxB)) {
// face has two selected edges with 1 selected vert each, not needing/considering a specifying edge at all
// both edge/vert-pairs go in opposite directions.
if (edge1Count == 0) {
faceA = f;
edgeAIdx = fEdge1EIdxA;
vertAIdx = fEdge1VIdxA;
faceB = f;
edgeBIdx = fEdge1EIdxB;
vertBIdx = fEdge1VIdxB;
}
edge1Count += 2;
}
// update shortcut patterns
edge0Count += fEdge0Count;
edge2Count += fEdge2Count;
border2Count += fBorder2Count;
// process next face
} while (!patch.isEmpty());
// patch fully processed
}
}
// all patches done. Evaluate collected patterns.
if (symmetrySelection) {
if (edge1Count != 2) {
// check for shortcuts
if (edge0Count == 2) {
if (edge2Count != 0 || border2Count != 0) {
return Codes::errors_extractOrderSelection::ambivalent_selection;
}
// symmetry axis shortcut
// the same non-border edge has been seen once by each if its faces
const MNEdge& _edge = mesh.e[edge0];
const MNFace& _faceA = mesh.f[_edge.f1];
const MNFace& _faceB = mesh.f[_edge.f2];
const i32 v = _edge.v1;
faceA = _edge.f1;
faceB = _edge.f2;
edgeAIdx = Helpers::Geom::edgeIndex(_faceA, edge0);
edgeBIdx = Helpers::Geom::edgeIndex(_faceB, edge0);
vertAIdx = Helpers::Geom::vertIndexOrdered(_faceA, edgeAIdx, v);
vertBIdx = Helpers::Geom::vertIndexOrdered(_faceB, edgeBIdx, v);
return Codes::OK;
}
if (edge2Count == 2) {
if (edge0Count != 0 || border2Count != 0) {
return Codes::errors_extractOrderSelection::ambivalent_selection;
}
// edge perpendicular to symmetry axis shortcut
const MNEdge& _edge = mesh.e[edge2];
const i32 f = _edge.f1;
const MNFace& _face = mesh.f[f];
const i32 eIdx = Helpers::Geom::edgeIndex(_face, edge2);
faceA = f;
faceB = f;
edgeAIdx = eIdx;
edgeBIdx = eIdx;
vertAIdx = Helpers::Geom::vertIndexOrdered(_face, eIdx, _edge.v1);
vertBIdx = Helpers::Geom::vertIndexOrdered(_face, eIdx, _edge.v2);
return Codes::OK;
}
if (border2Count == 1) {
if (edge0Count != 0 || edge2Count != 0) {
return Codes::errors_extractOrderSelection::ambivalent_selection;
}
// border perpendicular to symmetry axis shortcut
const MNEdge& _edge = mesh.e[border2];
const i32 f = faces[_edge.f1] ? _edge.f1 : _edge.f2;
const MNFace& _face = mesh.f[f];
const i32 eIdx = Helpers::Geom::edgeIndex(_face, border2);
faceA = f;
faceB = f;
edgeAIdx = eIdx;
edgeBIdx = eIdx;
vertAIdx = Helpers::Geom::vertIndexOrdered(_face, eIdx, _edge.v1);
vertBIdx = Helpers::Geom::vertIndexOrdered(_face, eIdx, _edge.v2);
return Codes::OK;
}
return edge1Count < 2
? Codes::errors_extractOrderSelection::insufficient_selection
: Codes::errors_extractOrderSelection::ambivalent_selection;
}
else if (patchIdA == patchIdB && (edgeAIdx == vertAIdx) == (edgeBIdx == vertBIdx)) {
// faces are part of the same patch. but the selection is not turning in the same direction
return Codes::errors_extractOrderSelection::ambivalent_selection;
}
}
else {
if (edge1Count < 1) {
return Codes::errors_extractOrderSelection::insufficient_selection;
}
if (edge1Count > 1) {
return Codes::errors_extractOrderSelection::ambivalent_selection;
}
}
return Codes::OK;
}
public:
static inline i32 buildSymmetryOrder(
INode* node,
const Bitset& faces,
i32 faceA,
i32 edgeA,
i32 vertA,
i32 faceB,
i32 edgeB,
i32 vertB,
List<i32>& orderM,
List<i32>& orderA,
List<i32>& orderB,
const i32 level
) {
using ERR = Codes::I_Order_buildSymmetryOrder;
Helpers::Poly helper;
i32 r = helper.init(node);
if (r != Codes::OK) {
return ERR::resolve(r);
}
const MNMesh& mesh = helper.mesh();
orderM.clearAll();
orderA.clearAll();
orderB.clearAll();
if (!checkSelection(mesh, faces, faceA, edgeA, vertA) ||
!checkSelection(mesh, faces, faceB, edgeB, vertB)) {
return ERR::bad_selection;
}
List<i32> edgesA(64);
List<i32> vertsA(64);
List<i32> edgesB(64);
List<i32> vertsB(64);
Bitset patchA(mesh.numf);
Bitset patchB(mesh.numf);
Bitset facesDone(mesh.numf + 1);
facesDone.set(0); // include -1
if (collectPatch(mesh, faces, faceA, patchA, edgesA) != collectPatch(mesh, faces, faceB, patchB, edgesA)) {
// collect all faces for each side, used later to abort early if a bad middle transition occurs
return ERR::order_mismatch;
}
// If A and B never meet, we can use a faster algorithm.
if (!patchA.intersects(patchB)) {
// A side will never traverse into B side
// some verts might still meet in the middle, though.
Helpers::Geom::collectFace(mesh, edgesA, vertsA, facesDone, faceA, edgeA, vertA);
Helpers::Geom::collectFace(mesh, edgesB, vertsB, facesDone, faceB, edgeB, vertB);
if (edgesA.length() != edgesB.length()) {
return ERR::order_mismatch;
}
switch (level) {
case 0: {
// vert order
orderM.ensureCapacity(mesh.numv >> 10); // should be very rare
orderA.ensureCapacity(mesh.numv >> 3);
orderB.ensureCapacity(mesh.numv >> 3);
Bitset done(mesh.numv);
do {
edgeA = edgesA.pop();
vertA = vertsA.pop();
edgeB = edgesB.pop();
vertB = vertsB.pop();
if (done.trySet(vertA)) {
if (vertA == vertB) {
// verts met in the middle
orderM.push(vertA + 1);
}
else {
if (!done.trySet(vertB)) {
return ERR::order_mismatch;
}
orderA.push(vertA + 1);
orderB.push(vertB + 1);
}
}
else if (!done[vertB]) {
// a is done, but b is not done
return ERR::order_mismatch;
}
faceA = Helpers::Geom::nextEdgeFace(mesh, facesDone, edgeA, faces);
faceB = Helpers::Geom::nextEdgeFace(mesh, facesDone, edgeB, faces);
const bool a = faceA >= 0;
const bool b = faceB >= 0;
if (a != b) {
return ERR::order_mismatch;
}
if (a) {
Helpers::Geom::collectFace(mesh, edgesA, vertsA, facesDone, faceA, edgeA, vertA);
Helpers::Geom::collectFace(mesh, edgesB, vertsB, facesDone, faceB, edgeB, vertB);
}
if (edgesA.length() != edgesB.length()) {
return ERR::order_mismatch;
}
} while (!edgesA.isEmpty());
break;
}
case 1: {
// edge order
orderA.ensureCapacity(mesh.nume >> 3);
orderB.ensureCapacity(mesh.nume >> 3);
Bitset done(mesh.nume);
do {
edgeA = edgesA.pop();
vertA = vertsA.pop();
edgeB = edgesB.pop();
vertB = vertsB.pop();
if (done.trySet(edgeA)) {
if (!done.trySet(edgeB)) {
return ERR::order_mismatch;
}
orderA.push(edgeA + 1);
orderB.push(edgeB + 1);
}
else if (!done[edgeB]) {
// a is done, but b is not done
return ERR::order_mismatch;
}
faceA = Helpers::Geom::nextEdgeFace(mesh, facesDone, edgeA, faces);
faceB = Helpers::Geom::nextEdgeFace(mesh, facesDone, edgeB, faces);
const bool a = faceA >= 0;
const bool b = faceB >= 0;
if (a != b) {
return ERR::order_mismatch;
}
if (a) {
Helpers::Geom::collectFace(mesh, edgesA, vertsA, facesDone, faceA, edgeA, vertA);
Helpers::Geom::collectFace(mesh, edgesB, vertsB, facesDone, faceB, edgeB, vertB);
}
if (edgesA.length() != edgesB.length()) {
return ERR::order_mismatch;
}
} while (!edgesA.isEmpty());
break;
}
default: {
// face order
orderA.ensureCapacity(mesh.numf >> 3);
orderA.push(faceA + 1);
orderB.ensureCapacity(mesh.numf >> 3);
orderB.push(faceB + 1);
do {
edgeA = edgesA.pop();
vertA = vertsA.pop();
edgeB = edgesB.pop();
vertB = vertsB.pop();
faceA = Helpers::Geom::nextEdgeFace(mesh, facesDone, edgeA, faces);
faceB = Helpers::Geom::nextEdgeFace(mesh, facesDone, edgeB, faces);
const bool a = faceA >= 0;
const bool b = faceB >= 0;
if (a != b) {
return ERR::order_mismatch;
}
if (a) {
orderA.push(faceA + 1);
orderB.push(faceB + 1);
Helpers::Geom::collectFace(mesh, edgesA, vertsA, facesDone, faceA, edgeA, vertA);
Helpers::Geom::collectFace(mesh, edgesB, vertsB, facesDone, faceB, edgeB, vertB);
}
if (edgesA.length() != edgesB.length()) {
return ERR::order_mismatch;
}
} while (!edgesA.isEmpty());
break;
}
}
return Codes::OK;
}
// A and B will meet at some point and must be prevented from traversing into one another.
// patchA and patchB can be used to determine more asymmetries
switch (level) {
case 0: {
// vert order
orderM.ensureCapacity(mesh.numv >> 8);
orderA.ensureCapacity(mesh.numv >> 3);
orderB.ensureCapacity(mesh.numv >> 3);
Bitset done(mesh.numv);
while (true) {
if (faceA == faceB) {
// handle traversal order issues with shared face.
// e.g. with ladder-shaped meshes, you must make sure that traversal always goes
// outward from the middle in order to prevent sides bleeding into one another.
if (faceA >= 0 && !symSharedFaceV(mesh, facesDone, edgesA, edgesB, vertsA, vertsB, faceA, edgeA, vertA, edgeB, vertB, done, orderM)) {
return ERR::order_mismatch;
}
// else: both are -1. processed already
}
else {
if (faceA < 0 || faceB < 0) {
return ERR::order_mismatch;
}
if (patchA[faceB] != patchB[faceA]) {
// faceA bled into side B, but faceB didn't bleed into side A. or vice versa
return ERR::order_mismatch;
}
Helpers::Geom::collectFace(mesh, edgesA, vertsA, facesDone, faceA, edgeA, vertA);
Helpers::Geom::collectFace(mesh, edgesB, vertsB, facesDone, faceB, edgeB, vertB);
}
if (edgesA.length() != edgesB.length()) {
return ERR::order_mismatch;
}
if (edgesA.isEmpty()) {
return Codes::OK;
}
edgeA = edgesA.pop();
edgeB = edgesB.pop();
vertA = vertsA.pop();
vertB = vertsB.pop();
if (done.trySet(vertA)) {
if (vertA == vertB) {
orderM.push(vertA + 1);
}
else {
if (!done.trySet(vertB)) {
return ERR::order_mismatch;
}
orderA.push(vertA + 1);
orderB.push(vertB + 1);
}
}
faceA = Helpers::Geom::nextEdgeFace(mesh, facesDone, edgeA, faces);
faceB = Helpers::Geom::nextEdgeFace(mesh, facesDone, edgeB, faces);
}
break;
}
case 1: {
// edge order
orderM.ensureCapacity(mesh.nume >> 8);
orderA.ensureCapacity(mesh.nume >> 3);
orderB.ensureCapacity(mesh.nume >> 3);
Bitset done(mesh.nume);
while (true) {
if (faceA == faceB) {
if (faceA >= 0 && !symSharedFaceFE(mesh, facesDone, edgesA, edgesB, vertsA, vertsB, faceA, edgeA, vertA, edgeB, vertB)) {
return ERR::order_mismatch;
}
}
else {
if (faceA < 0 || faceB < 0) {
return ERR::order_mismatch;
}
if (patchA[faceB] != patchB[faceA]) {
// faceA bled into side B, but faceB didn't bleed into side A. or vice versa
return ERR::order_mismatch;
}
Helpers::Geom::collectFace(mesh, edgesA, vertsA, facesDone, faceA, edgeA, vertA);
Helpers::Geom::collectFace(mesh, edgesB, vertsB, facesDone, faceB, edgeB, vertB);
}
if (edgesA.length() != edgesB.length()) {
return ERR::order_mismatch;
}
if (edgesA.isEmpty()) {
return Codes::OK;
}
edgeA = edgesA.pop();
edgeB = edgesB.pop();
vertA = vertsA.pop();
vertB = vertsB.pop();
if (done.trySet(edgeA)) {
if (edgeA == edgeB) {
orderM.push(edgeA + 1);
}
else {
if (!done.trySet(edgeB)) {
return ERR::order_mismatch;
}
orderA.push(edgeA + 1);
orderB.push(edgeB + 1);
}
}
faceA = Helpers::Geom::nextEdgeFace(mesh, facesDone, edgeA, faces);
faceB = Helpers::Geom::nextEdgeFace(mesh, facesDone, edgeB, faces);
}
break;
}
default: {
orderM.ensureCapacity(mesh.numf >> 8);
orderA.ensureCapacity(mesh.numf >> 3);
orderB.ensureCapacity(mesh.numf >> 3);
while (true) {
if (faceA == faceB) {
if (faceA >= 0) {
orderM.push(faceA + 1);
if (!symSharedFaceFE(mesh, facesDone, edgesA, edgesB, vertsA, vertsB, faceA, edgeA, vertA, edgeB, vertB)) {
return ERR::order_mismatch;
}
}
}
else {
if (faceA < 0 || faceB < 0) {
return ERR::order_mismatch;
}
if (patchA[faceB] != patchB[faceA]) {
// faceA bled into side B, but faceB didn't bleed into side A. or vice versa
return ERR::order_mismatch;
}
orderA.push(faceA + 1);
orderB.push(faceB + 1);
Helpers::Geom::collectFace(mesh, edgesA, vertsA, facesDone, faceA, edgeA, vertA);
Helpers::Geom::collectFace(mesh, edgesB, vertsB, facesDone, faceB, edgeB, vertB);
}
if (edgesA.length() != edgesB.length()) {
return ERR::order_mismatch;
}
if (edgesA.isEmpty()) {
return Codes::OK;
}
edgeA = edgesA.pop();
edgeB = edgesB.pop();
vertA = vertsA.pop();
vertB = vertsB.pop();
faceA = Helpers::Geom::nextEdgeFace(mesh, facesDone, edgeA, faces);
faceB = Helpers::Geom::nextEdgeFace(mesh, facesDone, edgeB, faces);
}
break;
}
}
return Codes::OK;
}
public:
static inline i32 buildTraversalOrder(
INode* node,
const Bitset& faces,
const i32 face,
const i32 edge,
const i32 vert,
List<i32>& order,
const i32 level
) {
using ERR = Codes::I_Order_buildTraversalOrder;
Helpers::Poly helper;
i32 r = helper.init(node);
if (r != Codes::OK) {
return ERR::resolve(r);
}
const MNMesh& mesh = helper.mesh();
order.clearAll();
if (!checkSelection(mesh, faces, face, edge, vert)) {
return ERR::bad_selection;
}
Bitset facesDone(mesh.numf + 1);
facesDone.set(0); // include -1
List<i32> edges(64);
List<i32> verts(64);
Helpers::Geom::collectFace(mesh, edges, verts, facesDone, face, edge, vert);
switch (level) {
case 0: {
// vert order
order.ensureCapacity(mesh.numv >> 3);
Bitset done(mesh.numv);
do {
const i32 edge = edges.pop();
const i32 vert = verts.pop();
if (done.trySet(vert)) {
order.push(vert + 1);
}
const i32 next = Helpers::Geom::nextEdgeFace(mesh, facesDone, edge, faces);
if (next >= 0) {
Helpers::Geom::collectFace(mesh, edges, verts, facesDone, next, edge, vert);
}
} while (!edges.isEmpty());
break;
}
case 1: {
// edge order
order.ensureCapacity(mesh.nume >> 3);
Bitset done(mesh.nume);
do {
const i32 edge = edges.pop();
const i32 vert = verts.pop();
if (done.trySet(edge)) {
order.push(edge + 1);
}
const i32 next = Helpers::Geom::nextEdgeFace(mesh, facesDone, edge, faces);
if (next >= 0) {
Helpers::Geom::collectFace(mesh, edges, verts, facesDone, next, edge, vert);
}
} while (!edges.isEmpty());
break;
}
default: {
// face order
order.ensureCapacity(mesh.numf >> 3);
order.push(face + 1);
do {
const i32 edge = edges.pop();
const i32 vert = verts.pop();
const i32 next = Helpers::Geom::nextEdgeFace(mesh, facesDone, edge, faces);
if (next >= 0) {
order.push(next + 1);
Helpers::Geom::collectFace(mesh, edges, verts, facesDone, next, edge, vert);
}
} while (!edges.isEmpty());
break;
}
}
return Codes::OK;
}
// grows the face by edge-neighbor, collects all faces in "patch"
private:
static inline i32 collectPatch(
const MNMesh& mesh,
const Bitset& bits,
const i32 start,
Bitset& patch,
List<i32>& temp
) {
temp.clearAll();
i32 c = 0;
patch.set(start);
temp.push(start);
do {
++c;
const i32 f = temp.pop();
const MNFace& face = mesh.f[f];
for (i32 i = 0; i < face.deg; ++i) {
const i32 f2 = Helpers::Geom::otherFace(mesh, face.edg[i], f);
if (f2 >= 0 && !patch[f2] && bits[f2]) {
temp.push(f2);
patch.set(f2);
}
}
} while (!temp.isEmpty());
return c;
}
// handle shared face for vert order
private:
static inline bool symSharedFaceV(
const MNMesh& mesh,
Bitset& facesDone,
List<i32>& edgesA,
List<i32>& edgesB,
List<i32>& vertsA,
List<i32>& vertsB,
const i32 f,
i32 edgeA,
const i32 vertA,
const i32 edgeB,
const i32 vertB,
Bitset& verts,
List<i32>& orderM
) {
const MNFace& face = mesh.f[f];
const i32 deg = face.deg;
i32 eIdxA = Helpers::Geom::edgeIndex(face, edgeA);
i32 eIdxB = Helpers::Geom::edgeIndex(face, edgeB);
i32 vIdxA = Helpers::Geom::vertIndexOrdered(face, eIdxA, vertA);
i32 vIdxB = Helpers::Geom::vertIndexOrdered(face, eIdxB, vertB);
if (edgeA != edgeB) {
// If the edges are immediately shared, don't reverse direction.
// This case can only be arrived at from another shared face. Let that transition reverse direction instead.
// Otherwise, we'd need additional context, here.
bool match = false;
for (i32 i = 0; i < deg; ++i) {
if (eIdxA == eIdxB || vIdxA == vIdxB) {
if (vIdxA == vIdxB) {
// have to do this, or this middle vert could be skipped if it lies on two "borders"
const i32 v = face.vtx[vIdxA];
if (verts.trySet(v)) {
orderM.push(v + 1);
}
}
// reverse direction. this prevents opposing sides from bleeding into one another
vIdxA = Helpers::Geom::reverse(mesh, face, eIdxA, vIdxA);
vIdxB = Helpers::Geom::reverse(mesh, face, eIdxB, vIdxB);
match = true;
break;
}
Helpers::Geom::nextEdgeIdx(deg, eIdxA, vIdxA);
Helpers::Geom::nextEdgeIdx(deg, eIdxB, vIdxB);
}
if (!match) {
return false;
}
}
edgesA.push(face.edg[eIdxA]);
edgesB.push(face.edg[eIdxB]);
vertsA.push(face.vtx[vIdxA]);
vertsB.push(face.vtx[vIdxB]);
bool match = false;
// TODO maybe it should not be deg. deg describes ALL of it, not half of it.
// however we'd have to check if they are "out of sync" or they might never meet.
for (i32 i = 0; i < deg; ++i) {
Helpers::Geom::nextEdgeIdx(deg, eIdxA, vIdxA);
Helpers::Geom::nextEdgeIdx(deg, eIdxB, vIdxB);
edgesA.push(face.edg[eIdxA]);
edgesB.push(face.edg[eIdxB]);
if (eIdxA == eIdxB) {
// Push closing shared edge in reverse direction.
// Ensures that "ladder"-like meshes can be traversed fully and correctly, by always traversing outward.
vertsA.push(face.vtx[Helpers::Geom::reverse(mesh, face, eIdxA, vIdxA)]);
vertsB.push(face.vtx[Helpers::Geom::reverse(mesh, face, eIdxB, vIdxB)]);
match = true;
break;
}
vertsA.push(face.vtx[vIdxA]);
vertsB.push(face.vtx[vIdxB]);
if (vIdxA == vIdxB) {
match = true;
break;
}
}
if (!match) {
// the two pairs are out of sync
return false;
}
facesDone.set(f + 1);
return true;
}
// handle shared face for face or edge order
private:
static inline bool symSharedFaceFE(
const MNMesh& mesh,
Bitset& facesDone,
List<i32>& edgesA,
List<i32>& edgesB,
List<i32>& vertsA,
List<i32>& vertsB,
const i32 f,
i32 edgeA,
const i32 vertA,
const i32 edgeB,
const i32 vertB
) {
const MNFace& face = mesh.f[f];
const i32 deg = face.deg;
i32 eIdxA = Helpers::Geom::edgeIndex(face, edgeA);
i32 eIdxB = Helpers::Geom::edgeIndex(face, edgeB);
i32 vIdxA = Helpers::Geom::vertIndexOrdered(face, eIdxA, vertA);
i32 vIdxB = Helpers::Geom::vertIndexOrdered(face, eIdxB, vertB);
if (edgeA != edgeB) {
bool match = false;
for (i32 i = 0; i < deg; ++i) {
if (eIdxA == eIdxB || vIdxA == vIdxB) {
vIdxA = Helpers::Geom::reverse(mesh, face, eIdxA, vIdxA);
vIdxB = Helpers::Geom::reverse(mesh, face, eIdxB, vIdxB);
match = true;
break;
}
Helpers::Geom::nextEdgeIdx(deg, eIdxA, vIdxA);
Helpers::Geom::nextEdgeIdx(deg, eIdxB, vIdxB);
}
if (!match) {
return false;
}
}
edgesA.push(face.edg[eIdxA]);
edgesB.push(face.edg[eIdxB]);
vertsA.push(face.vtx[vIdxA]);
vertsB.push(face.vtx[vIdxB]);
bool match = false;
for (i32 i = 0; i < deg; ++i) {
Helpers::Geom::nextEdgeIdx(deg, eIdxA, vIdxA);
Helpers::Geom::nextEdgeIdx(deg, eIdxB, vIdxB);
edgesA.push(face.edg[eIdxA]);
edgesB.push(face.edg[eIdxB]);
if (eIdxA == eIdxB) {
vertsA.push(face.vtx[Helpers::Geom::reverse(mesh, face, eIdxA, vIdxA)]);
vertsB.push(face.vtx[Helpers::Geom::reverse(mesh, face, eIdxB, vIdxB)]);
match = true;
break;
}
vertsA.push(face.vtx[vIdxA]);
vertsB.push(face.vtx[vIdxB]);
if (vIdxA == vIdxB) {
match = true;
break;
}
}
if (!match) {
return false;
}
facesDone.set(f + 1);
return true;
}
private:
static inline bool checkSelection(
const MNMesh& mesh,
const Bitset& faces,
const i32 f,
const i32 e,
const i32 v
) {
if (f >= 0 && f < mesh.numf && faces[f]) {
if (Helpers::Geom::edgeIndex(mesh, f, e) >= 0) {
const MNEdge& edge = mesh.e[e];
if (edge.v1 == v || edge.v2 == v) {
return true;
}
}
}
return false;
}
public:
static inline i32 blendMirrorWeights(
INode* node,
const i32 modIndex,
const List<i32>& orderM,
const List<i32>& orderA,
const List<i32>& orderB,
const Bitset& selection,
Slice& affixA,
const bool modeA,
Slice& affixB,
const bool modeB,
const bool receive
) {
using ERR = Codes::I_Order_blendMirrorWeights;
Helpers::Poly p;
i32 r = p.init(node);
if (r != Codes::OK) {
return ERR::resolvePoly(r);
}
Helpers::SkinMod sk;
r = sk.init(node, modIndex);
if (r != Codes::OK) {
return ERR::resolveSkin(r);
}
affixA.trim(); // get rid of surrounding white-space
affixB.trim(); // get rid of surrounding white-space
if (affixA.length() == 0) {
// aka: all white-space. meaningless.
return ERR::a_affix_empty;
}
if (affixB.length() == 0) {
// aka: all white-space. meaningless.
return ERR::b_affix_empty;
}
{
const i32 numPoints = sk.getNumPoints();
if (!Helpers::Geom::checkBounds(orderM, numPoints)) {
return ERR::bad_handle_m;
}
if (!Helpers::Geom::checkBounds(orderA, numPoints)) {
return ERR::bad_handle_a;
}
if (!Helpers::Geom::checkBounds(orderB, numPoints)) {
return ERR::bad_handle_b;
}
}
const i32 numBones = sk.getNumBones();
List<i32> table(numBones);
if (!buildMatchTable(sk, affixA, modeA, affixB, modeB, table)) {
return ERR::duplicate_bone_name;
}
Defer<Restore::WeightChangeRestore> rest;
const bool holding = theHold.Holding();
if (holding) {
rest.set(new Restore::WeightChangeRestore(sk));
rest.get()->before();
}
// start changes
const i32 boneLimitBefore = sk.getBoneLimit();
i32 boneLimit = boneLimitBefore;
if (boneLimit < 2) {
boneLimit = 2;
sk.setBoneLimit(2);
}
const i32 limit = boneLimit;
List<INode*> bonesA;
List<INode*> bonesB;
List<f32> weights;
List<i32> ids;
List<i32> idsA;
List<i32> idsB;
List<f64> wgt;
List<f64> wgtA;
List<f64> wgtB;
Bitset bits(numBones);
for (i32 i = 0; i < orderA.length(); ++i) {
const i32 a = orderA[i] - 1;
const i32 b = orderB[i] - 1;
const bool sa = selection[a];
const bool sb = selection[b];
if (sa != sb) {
// only one side is selected.
if (sa ^ receive) {
copyMirroredWeights(sk, a, b, table, bonesA, weights);
}
else {
copyMirroredWeights(sk, b, a, table, bonesA, weights);
}
}
else if (sa) {
// both verts are selected. they both get equalized along their side (same weight values, opposing bones).
bits.clearAll();
ids.clearAll();
wgt.clearAll();
// gather valid weights in bone id order
gatherWeights(sk, a, idsA, wgtA);
gatherWeights(sk, b, idsB, wgtB);
// find A <-> B matches, sum their weights
for (i32 j = 0; j < idsA.length(); ++j) {
const i32 id = idsA[j];
const i32 matchId = Util::selectNegative(table[id], id); // select matchId if valid, else id
f64 w = wgtA[j]; // get A weight
{
// look for match/self in B
const i32 idx = idsB.indexOfAscending(matchId);
if (idsB.detect(idx, matchId)) {
// match/self is present in opposing weight table
bits.set(idx); // skip over this in B
w += wgtB[idx]; // add opposing value
}
}
// add summed weight in weight order
const i32 idx = wgt.indexOfDescending(w);
wgt.insert(idx, w);
ids.insert(idx, id);
}
// account for remaining unmatched entries in B
for (i32 j = 0; j < idsB.length(); ++j) {
if (bits.trySet(j)) {
const i32 id = idsB[j];
const f64 w = wgtB[j];
const i32 idx = wgt.indexOfDescending(w);
wgt.insert(idx, w);
ids.insert(idx, id);
}
}
// finally, apply the new weights
const f32 dq = sk.averageDQ(a, b);
applyMirrorWeights(sk, a, b, table, ids, wgt, limit, bonesA, bonesB, weights);
sk.setDQBlendWeight(a, dq);
sk.setDQBlendWeight(b, dq);
}
}
// every selected middle vert has its weights equalized along both sides.
for (i32 i = 0; i < orderM.length(); ++i) {
const i32 v = orderM[i] - 1;
if (selection[v]) {
// buid paired weight table, in descending weight order, while pairing up matched weights
bits.clearAll();
ids.clearAll();
wgt.clearAll();
gatherWeights(sk, v, idsA, wgtA);
// idsA and wgtA now contain matching bone ids and weights in ascending id order
for (i32 j = 0, mmm = idsA.length(); j < mmm; ++j) {
if (bits.trySet(j)) {
// unseen index
f64 w = wgtA[j];
const i32 id = idsA[j];
const i32 matchId = table[id];
i32 idx;
if (matchId >= 0) {
// paired
const i32 _idx = idsA.indexOfAscending(matchId);
if (idsA.detect(_idx, matchId)) {
// found match
bits.set(_idx); // skip index during next iteration
w += wgtA[_idx];
}
// else: add 0
idx = wgt.indexOfDescending(w);
// complement pair
wgt.insert(idx, w);
ids.insert(idx, matchId);
// pairs are inserted with twice the sum of their weights, really. this is to prevent them from being truncated too early.
// by inserting them both with the exact same weight prevents stable binary search from splitting them arbitrarily.
}
else {
// unpaired
idx = wgt.indexOfDescending(w);
}
wgt.insert(idx, w);
ids.insert(idx, id);
}
}
// truncate table to below limit, without splitting pairs (this is why limit must be >= 2)
while (wgt.length() > limit) {
wgt.pop();
const i32 id = ids.pop();
const i32 matchId = table[id];
if (matchId >= 0) {
// remove paired entries as a unit
ids.pop();
wgt.pop();
}
}
// divide paired weights by two again
for (i32 j = 0; j < wgt.length(); ++j) {
const i32 id = ids[j];
const i32 matchId = table[id];
if (matchId >= 0) {
const f64 w = wgt[j] / 2.0;
wgt[j] = w;
wgt[++j] = w;
}
}
// finally, normalize and apply the weights. This is getting somewhat expensive, but whatever...
bonesA.clearAll();
weights.clearAll();
normalize(wgt, wgt.length());
for (i32 j = 0; j < wgt.length(); ++j) {
bonesA.push(sk.getBone(ids[j]));
weights.push(F32(wgt[j]));
}
sk.addWeights(v, *bonesA.tab(), *weights.tab());
// DQs stays intact
}
}
sk.mod().NotifyDependents(FOREVER, PART_ALL, REFMSG_CHANGE);
// end changes
if (holding) {
rest.get()->after(boneLimitBefore, boneLimit);
Restore::put(true, rest);
}
p.epoly().RefreshScreen(); // TODO pointless?
Util::redrawViews();
return Codes::OK;
}
// collects the weights for a, and copies them to b, with all bones replaced by their counterparts. Also copies the DQ.
private:
static inline void copyMirroredWeights(
Helpers::SkinMod& sk,
const i32 a,
const i32 b,
const List<i32>& T,
List<INode*>& bones,
List<f32>& weights
) {
collectBonesMirrored(sk, a, T, bones);
sk.collectWeights(a, weights);
const f32 dq = sk.getDQBlendWeight(a);
sk.addWeights(b, *bones.tab(), *weights.tab());
sk.setDQBlendWeight(b, dq);
}
// given ids, wgt and match table T, apply the same weights to a and b, but where b gets matched bone ids.
// also normalizes the weights first.
private:
static inline void applyMirrorWeights(
Helpers::SkinMod& sk,
const i32 a,
const i32 b,
const List<i32>& T,
List<i32>& ids,
List<f64>& wgt,
const i32 limit,
List<INode*>& bonesA,
List<INode*>& bonesB,
List<f32>& weights
) {
bonesA.clearAll();
bonesB.clearAll();
weights.clearAll();
const i32 n = Util::mathMin(wgt.length(), limit);
normalize(wgt, n);
for (i32 j = 0; j < n; ++j) {
const i32 id = ids[j];
const i32 matchId = T[id];
INode* boneA = sk.getBone(id);
INode* boneB = matchId < 0 ? boneA : sk.getBone(matchId);
bonesA.push(boneA);
bonesB.push(boneB);
weights.push(F32(wgt[j]));
}
sk.addWeights(a, *bonesA.tab(), *weights.tab());
sk.addWeights(b, *bonesB.tab(), *weights.tab());
}
// builds a table matching affixed A bones to affixed B bones and vice versa for the same skin
private:
static inline bool buildMatchTable(
Helpers::SkinMod& sk,
const Slice& affixA,
const bool modeA,
const Slice& affixB,
const bool modeB,
List<i32>& table
) {
const i32 numBones = sk.getNumBones();
for (i32 i = 0; i < numBones; ++i) {
table.push(-1);
}
List<Slice> names(numBones);
List<i32> ids(numBones);
if (!sk.collectBoneNames(names, ids)) {
// duplicate bone name
return false;
}
CharBuffer buf(64);
for (i32 i = 0; i < numBones; ++i) {
const i32 id = ids[i];
if (table[id] < 0) {
const Slice& name = names[i];
if (replaceAffix(name, buf, affixA, modeA, affixB, modeB)) {
Slice match = buf.slice();
const i32 idx = names.indexOfAscending(match);
if (names.detect(idx, match)) {
const i32 matchId = ids[idx];
table[id] = matchId;
table[matchId] = id;
}
}
}
}
return true;
}
private:
static inline bool replaceAffix(
const Slice& name,
CharBuffer& buf,
const Slice& affixA,
const bool modeA,
const Slice& affixB,
const bool modeB
) {
if (modeA ? name.matchPrefix(affixA) : name.matchSuffix(affixA)) {
buf.clearAll();
if (modeB) {
buf.push(affixB);
}
if (modeA) {
buf.push(name.chars() + affixA.length(), name.length() - affixA.length());
}
else {
buf.push(name.chars(), name.length() - affixA.length());
}
if (!modeB) {
buf.push(affixB);
}
return true;
}
return false;
}
// fills ids and wgt with valid weights in ascending bone id order.
// if a bone is listed multiple times, its weights are summed.
// NaNs and 0-valued weights are skipped.
private:
static inline void gatherWeights(
Helpers::SkinMod& sk,
const i32 vert,
List<i32>& ids,
List<f64>& wgt
) {
wgt.clearAll();
ids.clearAll();
const i32 nb = sk.getNumAssignedBones(vert);
for (i32 i = 0; i < nb; ++i) {
const f32 w = sk.getBoneWeight(vert, i);
if (w == w && w > 0.0f) {
const i32 id = sk.getAssignedBone(vert, i);
const i32 idx = ids.indexOfAscending(id);
if (ids.detect(idx, id)) {
// if bone is listed multiple times, sum its listed weights
wgt[idx] += F64(w);
}
else {
ids.insert(idx, id);
wgt.insert(idx, F64(w));
}
}
}
}
private:
static inline void normalize(
List<f64>& wgt,
const i32 count
) {
f64 sum = 0.0;
for (i32 i = 0; i < count; ++i) {
sum += wgt[i];
}
// sum cannot be 0, or if it is, count is 0, and no division takes place
for (i32 i = 0; i < count; ++i) {
wgt[i] /= sum;
}
}
private:
static inline void collectBonesMirrored(
Helpers::SkinMod& sk,
const i32 vert,
const List<i32>& T,
List<INode*>& bones
) {
bones.clearAll();
const i32 nb = sk.getNumAssignedBones(vert);
for (i32 i = 0; i < nb; ++i) {
const i32 id = sk.getAssignedBone(vert, i);
bones.push(sk.getBone(Util::selectNegative(T[id], id)));
}
}
public:
static inline i32 flipMirrorWeights(
INode* node,
const i32 modIndex,
const List<i32>& orderM,
const List<i32>& orderA,
const List<i32>& orderB,
const Bitset& selection,
Slice& affixA,
const bool modeA,
Slice& affixB,
const bool modeB
) {
using ERR = Codes::I_Order_flipMirrorWeights;
Helpers::Poly p;
i32 r = p.init(node);
if (r != Codes::OK) {
return ERR::resolvePoly(r);
}
Helpers::SkinMod sk;
r = sk.init(node, modIndex);
if (r != Codes::OK) {
return ERR::resolveSkin(r);
}
affixA.trim(); // get rid of surrounding white-space
affixB.trim(); // get rid of surrounding white-space
if (affixA.length() == 0) {
// aka: all white-space. meaningless.
return ERR::a_affix_empty;
}
if (affixB.length() == 0) {
// aka: all white-space. meaningless.
return ERR::b_affix_empty;
}
{
const i32 numPoints = sk.getNumPoints();
if (!Helpers::Geom::checkBounds(orderM, numPoints)) {
return ERR::bad_vert_m;
}
if (!Helpers::Geom::checkBounds(orderA, numPoints)) {
return ERR::bad_vert_a;
}
if (!Helpers::Geom::checkBounds(orderB, numPoints)) {
return ERR::bad_vert_b;
}
}
const i32 numBones = sk.getNumBones();
List<i32> table(numBones);
if (!buildMatchTable(sk, affixA, modeA, affixB, modeB, table)) {
return ERR::duplicate_bone_name;
}
Defer<Restore::WeightChangeRestore> rest;
const bool holding = theHold.Holding();
if (holding) {
rest.set(new Restore::WeightChangeRestore(sk));
rest.get()->before();
}
// start changes
List<INode*> bonesA;
List<INode*> bonesB;
List<f32> weightsA;
List<f32> weightsB;
for (i32 i = 0; i < orderA.length(); ++i) {
const i32 a = orderA[i] - 1;
const i32 b = orderB[i] - 1;
const bool sa = selection[a];
const bool sb = selection[b];
if (sa != sb) {
// only one side is selected. replace bones with their counterparts.
if (sa) {
flipBones(sk, a, table, bonesA, weightsA);
}
else {
flipBones(sk, b, table, bonesA, weightsA);
}
}
else if (sa) {
// both sides selected. swap bones, weights ands DQs
sk.collectBones(a, bonesA);
sk.collectWeights(a, weightsA);
sk.collectBones(b, bonesB);
sk.collectWeights(b, weightsB);
const i32 dqA = sk.getDQBlendWeight(a);
const i32 dqB = sk.getDQBlendWeight(b);
sk.addWeights(a, *bonesB.tab(), *weightsB.tab());
sk.addWeights(b, *bonesA.tab(), *weightsA.tab());
sk.setDQBlendWeight(a, dqB);
sk.setDQBlendWeight(b, dqA);
}
}
for (i32 i = 0; i < orderM.length(); ++i) {
const i32 v = orderM[i] - 1;
if (selection[v]) {
// middle vert selected. replace bones with their counterparts
flipBones(sk, v, table, bonesA, weightsA);
}
}
sk.mod().NotifyDependents(FOREVER, PART_ALL, REFMSG_CHANGE);
// end changes
if (holding) {
rest.get()->after();
Restore::put(true, rest);
}
p.epoly().RefreshScreen(); // TODO pointless?
Util::redrawViews();
return Codes::OK;
}
private:
static inline void flipBones(
Helpers::SkinMod& sk,
const i32 vert,
const List<i32>& T,
List<INode*>& bones,
List<f32>& weights
) {
collectBonesMirrored(sk, vert, T, bones);
sk.collectWeights(vert, weights);
sk.addWeights(vert, *bones.tab(), *weights.tab());
}
public:
static inline i32 translateSelection(
INode* src,
const List<i32>& srcOrder,
INode* dst,
const List<i32>& dstOrder,
const Bitset& srcSelection,
const i32 level,
const i32 mode
) {
using ERR = Codes::I_Order_translateSelection;
i32 r;
Helpers::Poly pa;
r = pa.init(src);
if (r != Codes::OK) {
return ERR::resolvePolySrc(r);
}
Helpers::Poly pb;
r = pb.init(dst);
if (r != Codes::OK) {
return ERR::resolvePolyDst(r);
}
const MNMesh& meshA = pa.mesh();
MNMesh& meshB = pb.mesh();
Defer<Restore::SubSelRestore> rest;
const bool holding = theHold.Holding();
if (holding) {
rest.set(new Restore::SubSelRestore(pb, level, MN_SEL));
rest.get()->before();
}
const i32 len = srcOrder.length();
switch (level) {
case 0: {
// verts
if (!Helpers::Geom::checkBounds(srcOrder, meshA.numv)) {
r = ERR::a_bad_vert;
break;
}
if (!Helpers::Geom::checkBounds(dstOrder, meshB.numv)) {
r = ERR::b_bad_vert;
break;
}
if (mode < 0) {
for (i32 i = 0; i < len; ++i) {
if (srcSelection[srcOrder[i] - 1]) {
meshB.v[dstOrder[i] - 1].ClearFlag(MN_SEL);
}
}
}
else {
if (mode == 0) {
meshB.ClearVFlags(MN_SEL);
}
for (i32 i = 0; i < len; ++i) {
if (srcSelection[srcOrder[i] - 1]) {
meshB.v[dstOrder[i] - 1].SetFlag(MN_SEL);
}
}
}
break;
}
case 1: {
// edges
if (!Helpers::Geom::checkBounds(srcOrder, meshA.nume)) {
r = ERR::a_bad_edge;
break;
}
if (!Helpers::Geom::checkBounds(dstOrder, meshB.nume)) {
r = ERR::b_bad_edge;
break;
}
if (mode < 0) {
for (i32 i = 0; i < len; ++i) {
if (srcSelection[srcOrder[i] - 1]) {
meshB.e[dstOrder[i] - 1].ClearFlag(MN_SEL);
}
}
}
else {
if (mode == 0) {
meshB.ClearEFlags(MN_SEL);
}
for (i32 i = 0; i < len; ++i) {
if (srcSelection[srcOrder[i] - 1]) {
meshB.e[dstOrder[i] - 1].SetFlag(MN_SEL);
}
}
}
break;
}
default: {
// faces
if (!Helpers::Geom::checkBounds(srcOrder, meshA.numf)) {
r = ERR::a_bad_face;
break;
}
if (!Helpers::Geom::checkBounds(dstOrder, meshB.numf)) {
r = ERR::b_bad_face;
break;
}
if (mode < 0) {
for (i32 i = 0; i < len; ++i) {
if (srcSelection[srcOrder[i] - 1]) {
meshB.f[dstOrder[i] - 1].ClearFlag(MN_SEL);
}
}
}
else {
if (mode == 0) {
meshB.ClearFFlags(MN_SEL);
}
for (i32 i = 0; i < len; ++i) {
if (srcSelection[srcOrder[i] - 1]) {
meshB.f[dstOrder[i] - 1].SetFlag(MN_SEL);
}
}
}
break;
}
}
if (r == Codes::OK) {
pb.epoly().LocalDataChanged(SELECT_CHANNEL);
if (holding) {
rest.get()->after();
Restore::put(true, rest);
}
pb.epoly().RefreshScreen();
}
return r;
}
public:
static inline i32 translateHandles(
INode* src,
const i32 srcModIndex,
const List<i32>& srcOrder, // src verts in order
INode* dst,
const i32 dstModIndex,
const List<i32>& dstOrder,
const Bitset& srcSelection,
const i32 mode
) {
using ERR = Codes::I_Order_translateHandles;
i32 r;
Helpers::SkinMod skA;
r = skA.init(src, srcModIndex);
if (r != Codes::OK) {
return ERR::resolveSkinSrc(r);
}
Helpers::SkinMod skB;
r = skB.init(dst, dstModIndex);
if (r != Codes::OK) {
return ERR::resolveSkinDst(r);
}
if (srcOrder.length() != dstOrder.length()) {
return ERR::different_lengths;
}
const i32 numPointsA = skA.getNumPoints();
if (!Helpers::Geom::checkBounds(srcOrder, numPointsA)) {
return ERR::a_bad_handle;
}
const i32 numPointsB = skB.getNumPoints();
if (!Helpers::Geom::checkBounds(dstOrder, numPointsB)) {
return ERR::b_bad_handle;
}
Defer<Restore::SkinSelectionRestore> rest;
const bool holding = theHold.Holding();
if (holding) {
rest.set(new Restore::SkinSelectionRestore());
rest.get()->before(skB);
}
{
// TODO translate more efficiently between bitset and bitarray
BitArray selectionB(numPointsB);
if (mode != 0) {
skB.getVertexSelection(selectionB);
if (selectionB.GetSize() != numPointsB) {
selectionB.SetSize(numPointsB, 1);
}
}
const i32 len = srcOrder.length();
if (mode < 0) {
for (i32 i = 0; i < len; ++i) {
if (srcSelection[srcOrder[i] - 1]) {
selectionB.Clear(dstOrder[i] - 1);
}
}
}
else {
for (i32 i = 0; i < len; ++i) {
if (srcSelection[srcOrder[i] - 1]) {
selectionB.Set(dstOrder[i] - 1);
}
}
}
skB.setVertexSelection(selectionB);
}
if (holding) {
rest.get()->after();
Restore::put(true, rest);
}
return Codes::OK;
}
public:
static inline i32 mirrorSelection(
INode* node,
const List<i32>& orderM,
const List<i32>& orderA,
const List<i32>& orderB,
const i32 level,
const i32 mode
) {
using ERR = Codes::I_Order_mirrorSelection;
Helpers::Poly p;
i32 r = p.init(node);
if (r != Codes::OK) {
return ERR::resolve(r);
}
if (orderA.length() != orderB.length()) {
return ERR::different_lengths;
}
Defer<Restore::SubSelRestore> rest;
const bool holding = theHold.Holding();
if (holding) {
rest.set(new Restore::SubSelRestore(p, level, MN_SEL));
rest.get()->before();
}
const i32 len = orderA.length();
MNMesh& mesh = p.mesh();
switch (level) {
case 0: {
if (!Helpers::Geom::checkBounds(orderM, mesh.numv)) {
return ERR::bad_vert_m;
}
if (!Helpers::Geom::checkBounds(orderA, mesh.numv)) {
return ERR::bad_vert_a;
}
if (!Helpers::Geom::checkBounds(orderB, mesh.numv)) {
return ERR::bad_vert_b;
}
if (mode < 0) {
for (i32 i = 0; i < orderM.length(); ++i) {
mesh.v[orderM[i] - 1].ClearFlag(MN_SEL);
}
for (i32 i = 0; i < len; ++i) {
MNVert& a = mesh.v[orderA[i] - 1];
MNVert& b = mesh.v[orderB[i] - 1];
const bool sa = a.GetFlag(MN_SEL);
const bool sb = b.GetFlag(MN_SEL);
if (sa) {
b.ClearFlag(MN_SEL);
}
if (sb) {
a.ClearFlag(MN_SEL);
}
}
}
else if (mode > 0) {
for (i32 i = 0; i < len; ++i) {
MNVert& a = mesh.v[orderA[i] - 1];
MNVert& b = mesh.v[orderB[i] - 1];
const bool sa = a.GetFlag(MN_SEL);
if (sa != b.GetFlag(MN_SEL)) {
if (sa) {
b.SetFlag(MN_SEL);
}
else {
a.SetFlag(MN_SEL);
}
}
}
}
else {
for (i32 i = 0; i < len; ++i) {
MNVert& a = mesh.v[orderA[i] - 1];
MNVert& b = mesh.v[orderB[i] - 1];
const bool sa = a.GetFlag(MN_SEL);
if (sa != b.GetFlag(MN_SEL)) {
if (sa) {
a.ClearFlag(MN_SEL);
b.SetFlag(MN_SEL);
}
else {
b.ClearFlag(MN_SEL);
a.SetFlag(MN_SEL);
}
}
}
}
break;
}
case 1: {
if (!Helpers::Geom::checkBounds(orderM, mesh.nume)) {
return ERR::bad_edge_m;
}
if (!Helpers::Geom::checkBounds(orderA, mesh.nume)) {
return ERR::bad_edge_a;
}
if (!Helpers::Geom::checkBounds(orderB, mesh.nume)) {
return ERR::bad_edge_b;
}
if (mode < 0) {
for (i32 i = 0; i < orderM.length(); ++i) {
mesh.e[orderM[i] - 1].ClearFlag(MN_SEL);
}
for (i32 i = 0; i < len; ++i) {
MNEdge& a = mesh.e[orderA[i] - 1];
MNEdge& b = mesh.e[orderB[i] - 1];
const bool sa = a.GetFlag(MN_SEL);
const bool sb = b.GetFlag(MN_SEL);
if (sa) {
b.ClearFlag(MN_SEL);
}
if (sb) {
a.ClearFlag(MN_SEL);
}
}
}
else if (mode > 0) {
for (i32 i = 0; i < len; ++i) {
MNEdge& a = mesh.e[orderA[i] - 1];
MNEdge& b = mesh.e[orderB[i] - 1];
const bool sa = a.GetFlag(MN_SEL);
if (sa != b.GetFlag(MN_SEL)) {
if (sa) {
b.SetFlag(MN_SEL);
}
else {
a.SetFlag(MN_SEL);
}
}
}
}
else {
for (i32 i = 0; i < len; ++i) {
MNEdge& a = mesh.e[orderA[i] - 1];
MNEdge& b = mesh.e[orderB[i] - 1];
const bool sa = a.GetFlag(MN_SEL);
if (sa != b.GetFlag(MN_SEL)) {
if (sa) {
a.ClearFlag(MN_SEL);
b.SetFlag(MN_SEL);
}
else {
b.ClearFlag(MN_SEL);
a.SetFlag(MN_SEL);
}
}
}
}
break;
}
default: {
if (!Helpers::Geom::checkBounds(orderM, mesh.numf)) {
return ERR::bad_face_m;
}
if (!Helpers::Geom::checkBounds(orderA, mesh.numf)) {
return ERR::bad_face_a;
}
if (!Helpers::Geom::checkBounds(orderB, mesh.numf)) {
return ERR::bad_face_b;
}
if (mode < 0) {
for (i32 i = 0; i < orderM.length(); ++i) {
mesh.f[orderM[i] - 1].ClearFlag(MN_SEL);
}
for (i32 i = 0; i < len; ++i) {
MNFace& a = mesh.f[orderA[i] - 1];
MNFace& b = mesh.f[orderB[i] - 1];
const bool sa = a.GetFlag(MN_SEL);
const bool sb = b.GetFlag(MN_SEL);
if (sa) {
b.ClearFlag(MN_SEL);
}
if (sb) {
a.ClearFlag(MN_SEL);
}
}
}
else if (mode > 0) {
for (i32 i = 0; i < len; ++i) {
MNFace& a = mesh.f[orderA[i] - 1];
MNFace& b = mesh.f[orderB[i] - 1];
const bool sa = a.GetFlag(MN_SEL);
if (sa != b.GetFlag(MN_SEL)) {
if (sa) {
b.SetFlag(MN_SEL);
}
else {
a.SetFlag(MN_SEL);
}
}
}
}
else {
for (i32 i = 0; i < len; ++i) {
MNFace& a = mesh.f[orderA[i] - 1];
MNFace& b = mesh.f[orderB[i] - 1];
const bool sa = a.GetFlag(MN_SEL);
if (sa != b.GetFlag(MN_SEL)) {
if (sa) {
a.ClearFlag(MN_SEL);
b.SetFlag(MN_SEL);
}
else {
b.ClearFlag(MN_SEL);
a.SetFlag(MN_SEL);
}
}
}
}
break;
}
}
p.epoly().LocalDataChanged(SELECT_CHANNEL);
if (holding) {
rest.get()->after();
Restore::put(true, rest);
}
p.epoly().RefreshScreen();
Util::redrawViews(); // TODO pointless?
return Codes::OK;
}
public:
static inline i32 mirrorHandles(
INode* node,
const i32 modIndex,
const List<i32>& orderM,
const List<i32>& orderA,
const List<i32>& orderB,
const i32 mode
) {
using ERR = Codes::I_Order_mirrorHandles;
Helpers::SkinMod sk;
i32 r = sk.init(node, modIndex);
if (r != Codes::OK) {
return ERR::resolve(r);
}
if (orderA.length() != orderB.length()) {
return ERR::different_lengths;
}
const i32 numPoints = sk.getNumPoints();
if (!Helpers::Geom::checkBounds(orderM, numPoints)) {
return ERR::bad_handle_m;
}
if (!Helpers::Geom::checkBounds(orderA, numPoints)) {
return ERR::bad_handle_a;
}
if (!Helpers::Geom::checkBounds(orderB, numPoints)) {
return ERR::bad_handle_b;
}
Defer<Restore::SkinSelectionRestore> rest;
const bool holding = theHold.Holding();
if (holding) {
rest.set(new Restore::SkinSelectionRestore());
rest.get()->before(sk);
}
BitArray selection(numPoints);
sk.getVertexSelection(selection);
if (selection.GetSize() != numPoints) {
selection.SetSize(numPoints, 1);
}
const i32 len = orderA.length();
if (mode < 0) {
for (i32 i = 0; i < orderM.length(); ++i) {
selection.Clear(orderM[i] - 1);
}
for (i32 i = 0; i < len; ++i) {
const i32 a = orderA[i] - 1;
const i32 b = orderB[i] - 1;
const bool sa = selection[a];
const bool sb = selection[b];
if (sa) {
selection.Clear(b);
}
if (sb) {
selection.Clear(a);
}
}
}
else if (mode > 0) {
for (i32 i = 0; i < len; ++i) {
const i32 a = orderA[i] - 1;
const i32 b = orderB[i] - 1;
const bool sa = selection[a];
const bool sb = selection[b];
if (sa != sb) {
if (sa) {
selection.Set(b);
}
else {
selection.Set(a);
}
}
}
}
else {
for (i32 i = 0; i < len; ++i) {
const i32 a = orderA[i] - 1;
const i32 b = orderB[i] - 1;
const bool sa = selection[a];
const bool sb = selection[b];
if (sa != sb) {
if (sa) {
selection.Clear(a);
selection.Set(b);
}
else {
selection.Clear(b);
selection.Set(a);
}
}
}
}
sk.setVertexSelection(selection);
if (holding) {
rest.get()->after();
Restore::put(true, rest);
}
return Codes::OK;
}
public:
static inline i32 transferWeights(
INode* src,
const i32 srcModIndex,
const List<i32>& srcOrder, // src verts in order
INode* dst,
const i32 dstModIndex,
const List<i32>& dstOrder,
const Bitset& selection,
Slice& srcAffix,
const bool srcMode,
Slice& dstAffix,
const bool dstMode
) {
using ERR = Codes::I_Order_transferWeights;
i32 r;
Helpers::SkinMod skA;
r = skA.init(src, srcModIndex);
if (r != Codes::OK) {
return ERR::resolveSkinSrc(r);
}
Helpers::SkinMod skB;
r = skB.init(dst, dstModIndex);
if (r != Codes::OK) {
return ERR::resolveSkinDst(r);
}
if (skA.isMangled(skB)) {
return ERR::skin_mangled;
}
if (srcAffix.length() == 0) {
// return ERR::src_affix_empty;
}
if (dstAffix.length() == 0) {
// return ERR::dst_affix_empty;
}
if (!Helpers::Geom::checkBounds(srcOrder, skA.getNumPoints())) {
return ERR::src_bad_handle;
}
if (!Helpers::Geom::checkBounds(dstOrder, skB.getNumPoints())) {
return ERR::dst_bad_handle;
}
const i32 numBonesA = skA.getNumBones();
List<i32> table(numBonesA);
r = buildMatchTable2(skA, skB, srcAffix, srcMode, dstAffix, dstMode, table);
if (r != Codes::OK) {
return r;
}
{
Bitset usedBonesA(numBonesA);
skA.collectUsedBoneIds(usedBonesA, srcOrder, selection);
Bitset::Iterator it(usedBonesA);
for (i32 id; (id = it.next()) >= 0; ) {
const i32 matchId = table[id];
if (matchId < 0) {
return ERR::unmatched_bone;
}
}
}
// all used src ids have a matching dest id
// can now actually do the tranfer
Defer<Restore::WeightChangeRestore> rest;
const bool holding = theHold.Holding();
if (holding) {
rest.set(new Restore::WeightChangeRestore(skB));
rest.get()->before(); // at most all of orderB is affected
}
if (&skA.mod() == &skB.mod()) {
// same mod. need a defensive copy.
List<f32> dqs(srcOrder.length());
Pointers<FloatTab> weights(srcOrder.length()); // TODO should maybe directly hold lists instead
Pointers<IntTab> ids(srcOrder.length());
skA.collectAll(ids, weights, dqs, srcOrder, selection);
List<INode*> bones;
for (i32 i = 0, k = 0; i < srcOrder.length(); ++i) {
if (selection[srcOrder[i] - 1]) {
bones.clearAll();
List<i32> _ids(*(ids[k]));
List<f32> _weights(*(weights[k]));
for (i32 j = 0; j < _ids.length(); ++j) {
bones.push(skB.getBone(table[_ids[j]]));
}
const i32 b = dstOrder[i] - 1;
skB.addWeights(b, *bones.tab(), *_weights.tab());
skB.setDQBlendWeight(b, dqs[k]);
++k;
}
}
}
else {
// different mods. no defensive copy needed.
List<INode*> bones;
List<f32> weights;
for (i32 i = 0; i < srcOrder.length(); ++i) {
const i32 a = srcOrder[i] - 1;
if (selection[a]) {
const i32 b = dstOrder[i] - 1;
bones.clearAll();
weights.clearAll();
const i32 nb = skA.getNumAssignedBones(a);
for (i32 j = 0; j < nb; ++j) {
weights.push(skA.getBoneWeight(a, j));
bones.push(skB.getBone(table[skA.getAssignedBone(a, j)]));
}
const f32 dq = skA.getDQBlendWeight(a);
skB.addWeights(b, *bones.tab(), *weights.tab());
skB.setDQBlendWeight(b, dq);
}
}
}
skB.mod().NotifyDependents(FOREVER, PART_ALL, REFMSG_CHANGE);
if (holding) {
rest.get()->after();
Restore::put(true, rest);
}
return Codes::OK;
}
// builds a table matching affixed A bones to affixed B bones for skin A and skin B.
private:
static inline i32 buildMatchTable2(
Helpers::SkinMod& skA,
Helpers::SkinMod& skB,
const Slice& affixA,
const bool modeA,
const Slice& affixB,
const bool modeB,
List<i32>& table
) {
using ERR = Codes::I_Order_transferWeights;
const i32 numBonesA = skA.getNumBones();
const i32 numBonesB = skB.getNumBones();
for (i32 i = 0; i < numBonesA; ++i) {
table.push(-1);
}
List<Slice> namesA(numBonesA);
List<i32> idsA(numBonesA);
if (!skA.collectBoneNames(namesA, idsA)) {
return ERR::src_duplicate_bone_name;
}
List<Slice> namesB(numBonesB);
List<i32> idsB(numBonesB);
if (!skB.collectBoneNames(namesB, idsB)) {
return ERR::dst_duplicate_bone_name;
}
CharBuffer buf(64);
for (i32 i = 0; i < numBonesA; ++i) {
const Slice& name = namesA[i];
if (replaceAffix(name, buf, affixA, modeA, affixB, modeB)) {
Slice match = buf.slice();
const u64 idx = namesB.indexOfAscending(match);
if (namesB.detect(idx, match)) {
table[idsA[i]] = idsB[idx];
}
}
}
return Codes::OK;
}
};
|
99d6ca99200b9b475670a8119c5e8599b8b520e5
|
8edf2cc798f0addbbc05ae7d4c2913e836e01f46
|
/Practice/frac.cpp
|
689bb335edc481ba3b9491ec67cca104d7846a68
|
[] |
no_license
|
DigammaX/PAT
|
90cf38cdde462cae22190c620b0c510f61e29036
|
0f96184274d2809e91254725f9f8b66f45e39644
|
refs/heads/master
| 2023-06-27T19:38:49.086978
| 2021-08-01T03:59:42
| 2021-08-01T03:59:42
| 384,316,226
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,541
|
cpp
|
frac.cpp
|
#include <iostream>
#include <algorithm>
using namespace std;
typedef struct _frac{
long long up,down;
}frac;
long long gcd(long long ,long long );
frac sub(frac,frac);
frac add(frac,frac);
frac mul(frac,frac);
frac div(frac,frac);
frac reduce(frac);
void show(frac);
int main() {
frac f1,f2;
f1.up = 2;
f1.down = 3;
f2.up = 1;
f2.down = 6;
show(div(f1,f2));
return 0;
}
long long gcd(long long a,long long b){
return b?gcd(b,a%b):a;
}
frac reduce(frac res){
if(res.down < 0){
res.down = -res.down;
res.up = - res.up;
}
if(res.up == 0){
res.down = 1;
}else{
int d = gcd(res.up,res.down);
res.up /= d;
res.down /= d;
}
return res;
}
frac add(frac f1,frac f2){
frac res;
res.down = f1.down*f2.down;
res.up = f1.down*f2.up + f2.down*f1.up;
return reduce(res);
}
frac sub(frac f1,frac f2){
frac res;
res.down = f1.down*f2.down;
res.up = f1.up*f2.down - f2.up*f1.down;
return reduce(res);
}
frac mul(frac f1,frac f2){
frac res;
res.down = f1.down*f2.down;
res.up = f1.up*f2.up;
return reduce(res);
}
frac div(frac f1,frac f2){
frac res;
res.down = f1.down*f2.up;
res.up = f2.down*f1.up;
return reduce(res);
}
void show(frac f){
f = reduce(f);
if(f.down == 1){
printf("%lld\n",f.up);
}else if(abs(f.up) > f.down){
printf("%lld %lld/%lld",f.up/f.down,abs(f.up)%f.down,f.down);
}else{
printf("%lld/%lld",f.up,f.down);
}
}
|
cec3793434807c59717fe33e7ebd1a4cb938532b
|
5d37a87eb567b6e8968404812c61ac147511b7e5
|
/src/bin/write-transition-labels.cc
|
a8f2832bb3f956b13382a7c410c20c69ee51b38c
|
[
"Apache-2.0",
"LicenseRef-scancode-public-domain"
] |
permissive
|
pbrakel/kaldi
|
bdf138b3e69e660f7f22cb37f424d7619cb44ca4
|
c20e6edced3764bfa6ed4e504d7bbd187fbde3a7
|
refs/heads/jan
| 2021-03-12T22:44:11.183634
| 2014-11-06T21:57:48
| 2014-11-06T21:57:48
| 23,888,539
| 0
| 2
| null | 2014-10-22T17:24:09
| 2014-09-10T19:17:53
|
C++
|
UTF-8
|
C++
| false
| false
| 3,730
|
cc
|
write-transition-labels.cc
|
// bin/show-transitions.cc
// Copyright 2009-2011 Microsoft Corporation
// See ../../COPYING for clarification regarding multiple authors
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// THIS CODE IS PROVIDED *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
// KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
// WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
// MERCHANTABLITY OR NON-INFRINGEMENT.
// See the Apache 2 License for the specific language governing permissions and
// limitations under the License.
#include "hmm/transition-model.h"
#include "fst/fstlib.h"
#include "util/common-utils.h"
int main(int argc, char *argv[]) {
try {
using namespace kaldi;
typedef kaldi::int32 int32;
using fst::SymbolTable;
using fst::VectorFst;
using fst::StdArc;
const char *usage =
"Generate transition labels suitable to use as isymbol for fstprint\n"
"Usage: write-transition-labels [opts] phones-symbol-table transition/model-file [disambiguation_symbols]\n"
"e.g.: \n"
" write-transition-labels phones.txt 1.mdl\n";
ParseOptions po(usage);
bool writeHMMStates = true, writePdfIds = true, writeDest = true;
po.Register("write-hmm", &writeHMMStates, "Write HMM states");
po.Register("write-pdf-id", &writePdfIds, "Write Pdf-Ids states");
po.Register("write-dest", &writeDest,
"Write destination Transaction-states");
po.Read(argc, argv);
if (po.NumArgs() < 2 || po.NumArgs() > 3) {
po.PrintUsage();
exit(1);
}
std::string phones_symtab_filename = po.GetArg(1),
transition_model_filename = po.GetArg(2),
disambiguation_filename = po.GetOptArg(3);
fst::SymbolTable *syms = fst::SymbolTable::ReadText(phones_symtab_filename);
if (!syms)
KALDI_ERR<< "Could not read symbol table from file "
<< phones_symtab_filename;
std::vector<std::string> names(syms->NumSymbols());
for (size_t i = 0; i < syms->NumSymbols(); i++)
names[i] = syms->Find(i);
TransitionModel trans_model;
ReadKaldiObject(transition_model_filename, &trans_model);
cout << "<eps> 0" << endl;
for (int32 tid = 1; tid <= trans_model.NumTransitionIds(); tid++) {
cout << tid;
cout << '<' << trans_model.TransitionIdToTransitionState(tid) << ":";
cout << names[trans_model.TransitionIdToPhone(tid)];
if (writeHMMStates) {
cout << "_H" << trans_model.TransitionIdToHmmState(tid);
if (writeDest) {
cout << "->";
//<< trans_model.TRa
int32 trans_index = trans_model.TransitionIdToTransitionIndex(tid);
int32 next_state = trans_model.GetTopo()
.TopologyForPhone(trans_model.TransitionIdToPhone(tid)
)[trans_model.TransitionIdToHmmState(tid)]
.transitions[trans_index].first;
cout << next_state;
}
}
if (writePdfIds) {
cout << "_P" << trans_model.TransitionIdToPdf(tid);
}
cout << "> " << tid << endl;
}
if (disambiguation_filename != "") {
bool binary_in;
Input ki(disambiguation_filename, &binary_in);
std::istream &in = ki.Stream();
int32 symbol_id;
while (in >> symbol_id) {
//ReadBasicType(in, binary_in, &symbol_id);
cout << symbol_id << ' ' << symbol_id << endl;
}
}
delete syms;
} catch (const std::exception &e) {
std::cerr << e.what();
return -1;
}
}
|
4cb358492bc0e545f0c942d3cf52382fc742b9be
|
557e7195aa77a94f04cb7ac52fd3730bd8eef071
|
/libjasyncagent/src/NativeCallsInterceptor.h
|
54f33c19e96d7893576e62ac64329f487d1e40d2
|
[] |
no_license
|
lambdaprime/jasyncagent
|
322ec330a35451a47099193aca952e06f8b76471
|
d1e4edba1a1abeca0540ad81e94df35fce12e3de
|
refs/heads/master
| 2021-07-06T12:53:30.612516
| 2017-09-30T04:54:15
| 2017-09-30T04:54:15
| 105,342,804
| 1
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 388
|
h
|
NativeCallsInterceptor.h
|
#ifndef NATIVECALLSINTERCEPTOR_H_
#define NATIVECALLSINTERCEPTOR_H_
#include <jvmti.h>
#include <string>
namespace NativeCallsInterceptor
{
using namespace std;
extern bool init(jvmtiEnv*);
extern void add(const string& className, const string& methodName, const string& methodSign,
void* newFunc, void** origFunc);
};
#endif /* NATIVECALLSINTERCEPTOR_H_ */
|
2559dc9889dae3ae34b0a5a9f36f960aaae1873d
|
0a665e7c4440a43543bd94dcaac81ff1b42c5999
|
/userInputStringClass/userInputStringClass.cpp
|
89fa0ad092b493f571aefdd37a42c3ab8ba171b1
|
[] |
no_license
|
TheDataStar/userInputStringClass
|
0404d5dc7d75fbc103578c23c25fcfed14ad0c59
|
321a3053c5e094d3d42a4ac00bdc0f9046a95c24
|
refs/heads/master
| 2022-11-27T12:37:41.532531
| 2020-08-11T09:38:28
| 2020-08-11T09:38:28
| 286,704,499
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,379
|
cpp
|
userInputStringClass.cpp
|
// FileName: userDefinedString.cpp
// Project: CS288T Unit 2 Submission 2 - Object Oriented Concepts using C++ Cont.
// Author: Adam Greenwood (22579036)
#include <iostream>
#include <string>
using namespace std;
class userString
{
public:
// Data Members (features)
string userInput;
// Member functions
void setInput();
string getInput();
int inputLength();
string inputReverse();
string inputConcat();
};
void userString::setInput()
{
cout << "Enter your string: " << endl;
cin >> userInput;
};
string userString::getInput()
{
cout << "You entered: " << userInput << endl;
return userInput;
};
int userString::inputLength()
{
cout << "The size of the string is: " << userInput.length() << endl;
return 0;
};
string userString::inputReverse()
{
int len = userInput.length();
int n = len - 1;
for (int i = 0; i < (len / 2); i++)
{
swap(userInput[i], userInput[n]);
n = n - 1;
}
cout << "Your string reversed is: " << userInput << endl;
return userInput;
};
string userString::inputConcat()
{
cout << "Concatenation of this string looks like this: " << userInput + " " + userInput;
return userInput;
};
int main()
{
userString first;
first.setInput();
first.getInput();
first.inputLength();
first.inputReverse();
userString second;
second.setInput();
second.getInput();
second.inputLength();
second.inputReverse();
return 0;
};
|
ea8998cde7662b4f9cc7a355269695a5fcbeedf2
|
9eed823aaed9990f1ec1714166d8388cc99ba4eb
|
/calibApp/calibSrc/NDPluginCalib.cpp
|
948b71076ec5feec7b5f8a8feed859b158b54855
|
[] |
no_license
|
waynelewis/ADPluginCalib
|
05138588b23489c823ec54029670a55f05837a61
|
127b987762b1c2f7470aa48c14296a3c3fa4bf2c
|
refs/heads/master
| 2020-03-25T00:33:48.365610
| 2018-12-10T11:21:50
| 2018-12-10T11:21:50
| 143,192,534
| 0
| 1
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 20,396
|
cpp
|
NDPluginCalib.cpp
|
/*
* NDPluginCalib.cpp
*
* Image processing plugin
* Author: Tomasz Brys
* email: tomasz.brys@esss.se
* the driver is base od ADPluginEdge and ADPluginConvert
* it includes also procedures found on webpage which a free available
* Created October 10, 2018
*/
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#include <math.h>
#include <epicsString.h>
#include <epicsMutex.h>
#include <iocsh.h>
#include "NDArray.h"
#include "NDPluginCalib.h"
#include <epicsExport.h>
//#include <opencv2/opencv.hpp>
//#include <vector>
static const char *driverName="NDPluginCalib";
using namespace cv;
using namespace std;
//==========================================================================================
int NDPluginCalib::fitLinear(vector<float> &dX, vector<float> &dY, vector<float> &result){
// fit line to the data points
// data suppose to be in two vectors, x(mm) and y(pixels)
// the result will be stored in vector result
// algorithm least sqare method with checking verticality/horizontality
// fitting function A*x + B*Y + C = 0
double sumX = 0, sumY = 0, sumXX = 0, sumYY= 0, sumXY = 0;
int nr = dX.size();
int nr2 = dY.size();
if(nr != nr2)
return -1;
for (int i = 0; i < nr; i++){
sumX += dX.at(i);
sumY += dY.at(i);
sumXY += dX.at(i) * dY.at(i);
sumXX += dX.at(i) * dX.at(i);
sumYY += dY.at(i) * dY.at(i);
}
sumX /= nr;
sumY /= nr;
sumXX /= nr;
sumYY /= nr;
sumXY /= nr;
double A = (sumXY - sumX*sumY);
double B = 0;
double Bx = sumXX - sumX * sumX;
double By = sumYY - sumY * sumY;
if( fabs( Bx ) < fabs( By ) ) //!< Test verticality/horizontality
{ // Line is more Vertical.
B = By;
std::swap(A,B);
}
else
{ // Line is more Horizontal.
// Classical solution, when we expect more horizontal-like line
B = Bx;
}
double C = - ( A * sumX + B * sumY );
result[0] = (-A/B);
result[1] = (-C/B);
return 0;
}
//==========================================================================================
void NDPluginCalib::sortPoints(std::vector<cv::Point2f>& points){
Point2f pt1, pt2, pt3, pt4;
float maxSum = 0;
float minSum = 5000;
float maxDiff = 0;
float minDiff = 5000;
float temp = 0;
for (auto pts:points){
temp = (pts.x + pts.y);
if (temp < minSum){
pt1 = pts;
minSum = temp;
}
temp = (pts.x + pts.y);
if (temp > maxSum){
pt3 = pts;
maxSum = temp;
}
temp = (pts.x - pts.y);
if (temp > maxDiff){
pt4 = pts;
maxDiff = temp;
}
temp = (pts.x - pts.y);
if (temp < minDiff){
pt2 = pts;
minDiff = temp;
}
} // end for
points[0] = pt1;
points[1] = pt2;
points[2] = pt3;
points[3] = pt4;
}
//==========================================================================================
void NDPluginCalib::findTransformationPoints(std::vector<Point2f>& pt, std::vector<Point2f>& ptc){
// check the width and the height of the bigest contour, to convert quadrangle to square.
// we need a difference between h and w.
double h = max(norm(pt[0] - pt[1]), norm(pt[2] - pt[3]));
double w = max(norm(pt[1] - pt[2]), norm(pt[3] - pt[0]));
double diff = (h - w);
double resx = 0;
double resy = 0;
if (diff > 0){
resx = diff / 2;
resy = 0;
}
else{
resx = 0;
resy = -diff / 2;
}
ptc[0].x = min(pt[0].x, pt[1].x) - resx; ptc[0].y = min(pt[0].y, pt[3].y) - resy;
ptc[1].x = min(pt[0].x, pt[1].x) - resx; ptc[1].y = max(pt[1].y, pt[2].y) + resy;
ptc[2].x = max(pt[2].x, pt[3].x) + resx; ptc[2].y = max(pt[1].y, pt[2].y) + resy;
ptc[3].x = max(pt[2].x, pt[3].x) + resx; ptc[3].y = min(pt[2].y, pt[3].y) - resy;
}
//==========================================================================================
void NDPluginCalib::calibrate(const cv::Mat& slice, std::vector<float>& result){
//We want to use zerocrossing algorithm to find where is the transition between colors and thus find the distance between contours.
// first we calculate average and then move xSlice and ySlice to have pos and neg values. Afterthat zerocrossing algorithm.
int average = 0;
for (int i = 0; i < slice.cols; i++){
average += (int)slice.at<unsigned char>(i);
}
average /= slice.cols;
vector<float> s;
for(int i = 0; i < slice.cols-1; i++){
s.push_back( (float)slice.at<unsigned char>(i) - average);
}
vector<float> zeroData;
vector<float> xData;
vector<float> yData;
for(unsigned i = 0; i < s.size()-1; i++){
if ( s[i] * s[i+1] < 0 ){
float x = i - s[i] / (s[i+1] - s[1]);
zeroData.push_back(x);
}
else if(s[i] * s[i+1] == 0){
if( s[i] != 0){
zeroData.push_back(i);
}
}
else{
}
}
// prepare two vectors for fit algorithm
vector<float> dX;
vector<float> dY;
// The real distance between contours varies from 5mm to 2.5mm and less but we neglect it. We do not know where we shoud start.
// What we know for sure is that the distance at the beginning between slices are
// 5mm and become smaler to 2.5mm. We search for a place where the distance change from ~90 to ~45 (in pixels).
// l1 is the place where the distance change, so we know that from this point distance become ~45
// The value ~90 was choosen by calculate diference between first two countors. We have to add some margin to be sure.
unsigned l1 = 0, l2 = 0;
float bDist = zeroData[1] - zeroData[0];
for (unsigned i = 0; i < zeroData.size()-1; i++){
if( (zeroData[i+1] - zeroData[i] > bDist-4) and (zeroData[i] - zeroData[i+1] < bDist+4) ){
}
else{
l1 = i;
break;
}
}
// now we have to the same but from back
for (int i = zeroData.size()-1; i > 0; i--){
if( (zeroData[i] - zeroData[i-1] > bDist-4) and (zeroData[i] - zeroData[i-1] < bDist+4) ){
}
else{
l2 = i;
break;
}
}
for (unsigned i = 0; i < zeroData.size(); i++){
if(i <= l1){
dX.push_back(i*5. - 10.*l1);
dY.push_back(zeroData[i]);
}
else if(i > l1 and i <= l1+4){
dX.push_back(dX[i-1] + 2.5 );
dY.push_back(zeroData[i]);
}
else if(i >= l2-4 and i <= l2){
dX.push_back(20 - (l2-i) * 2.5);
dY.push_back(zeroData[i]);
}
else if(i > l2 ){
dX.push_back( 20 + (i-l2) * 5);
dY.push_back(zeroData[i]);
}
}
fitLinear(dX, dY, result);
}
//==========================================================================================
/** Callback function that is called by the NDArray driver with new NDArray data.
* Does image processing.
* \param[in] pArray The NDArray from the callback.
*/
void NDPluginCalib::processCallbacks(NDArray *pArray)
{
/* This function does array processing.
* It is called with the mutex already locked. It unlocks it during long calculations when private
* structures don't need to be protected.
*/
NDArray *transformedArray; // transformArray consists transformed original image in order to perform calibration
NDArrayInfo_t arrayInfo;
static const char* functionName = "processCallbacks";
// Call the base class method
NDPluginDriver::beginProcessCallbacks(pArray);
getIntegerParam( NDPluginCalibShowImage, &m_ShowImage);
getDoubleParam( NDPluginCalibLowThreshold, &m_LowThreshold);
getDoubleParam( NDPluginCalibThresholdRatio,&m_ThresholdRatio);
cout << endl;
cout << "+++++ m_ShowImage = " << m_ShowImage << endl;
cout << "+++++ m_CalibDone = " << m_CalibDone << endl;
// Create a pointer to a structure of type NDArrayInfo_t and use it to get information about the input array.
pArray->getInfo(&arrayInfo);
this->userDims_[0] = arrayInfo.xDim;
this->userDims_[1] = arrayInfo.yDim;
//this->userDims_[2] = arrayInfo.colorDim;
this->userDims_[2] =1;
/* Copy the information from the current array */
transformedArray = this->pNDArrayPool->copy(pArray, NULL, 1);
/* Release the lock; this is computationally intensive and does not access any shared data */
this->unlock();
if ( pArray->ndims == 2 ){
this->transformImage(pArray, transformedArray, &arrayInfo);
}
else {
asynPrint( this->pasynUserSelf, ASYN_TRACE_ERROR, "%s::%s, this method is meant to transform 2Dimages when the number of dimensions is <= 3\n",
pluginName, functionName);
}
this->lock();
// Set NDArraySizeX and NDArraySizeY appropriately
//setIntegerParam(NDArraySizeX, (int)transformedArray->dims[arrayInfo.xDim].size);
//setIntegerParam(NDArraySizeY, (int)transformedArray->dims[arrayInfo.yDim].size);
//setIntegerParam(NDArraySizeZ, 0);
// set values to PV
setDoubleParam( NDPluginCalibFitX_a, m_FitX_a);
setDoubleParam( NDPluginCalibFitX_b, m_FitX_b);
setDoubleParam( NDPluginCalibFitY_a, m_FitY_a);
setDoubleParam( NDPluginCalibFitY_b, m_FitY_b);
setDoubleParam( NDPluginCalibMiddlePointX, m_MiddlePointX);
setDoubleParam( NDPluginCalibMiddlePointY, m_MiddlePointY);
setIntegerParam( NDPluginCalibDone, m_CalibDone);
static int i = 0;
cout << "+++++ m_CalibDone = " << m_CalibDone << "\t" << i++<< endl;
NDPluginDriver::endProcessCallbacks(transformedArray, false, true);
callParamCallbacks();
}
//===================================================================================================
void NDPluginCalib::transformImage(NDArray *inArray, NDArray *outArray, NDArrayInfo_t *arrayInfo) {
cout << "+++++ NDPluginCalib::transformImage " << endl;
static const char *functionName="transformImage";
epicsUInt8 *inData = (epicsUInt8 *)inArray->pData;
epicsUInt8 *outData = (epicsUInt8 *)outArray->pData;
int xSize, ySize, colorSize;
xSize = (int)arrayInfo->xSize;
ySize = (int)arrayInfo->ySize;
colorSize = (int)arrayInfo->colorSize;;
if (colorSize > 0)
colorSize = (int)arrayInfo->colorSize;
else
colorSize = 1;
// Assume output array is same dimensions as input. Handle rotation cases below.
outArray->dims[arrayInfo->xDim].size = inArray->dims[arrayInfo->xDim].size;
outArray->dims[arrayInfo->yDim].size = inArray->dims[arrayInfo->yDim].size;
if (inArray->ndims > 2)
outArray->dims[arrayInfo->colorDim].size = inArray->dims[arrayInfo->colorDim].size;
// create opencv object, remember first ySize then xSize!!!
cv::Mat img( ySize, xSize, CV_8UC1);
memcpy( img.data, inData, arrayInfo->nElements * sizeof(unsigned char));
// write a Mat object to file as (img.png), very useful if you want to see how algorithm works
// vector<int> compression_params;
// compression_params.push_back(CV_IMWRITE_PNG_COMPRESSION);
// compression_params.push_back(9);
//
// try {
// imwrite("/mac/pictures/img.png", img, compression_params);
// }
// catch (runtime_error& ex) {
// fprintf(stderr, "Exception converting image to PNG format: %s\n", ex.what());
// }
// ---------------------------------------------------------------------------------
// first slightly blur the image, then find edges. We use the same object
cv::Mat detected_edges;
try {
cv::blur( img, detected_edges, cv::Size(3,3));
}
catch( cv::Exception &e) {
const char* err_msg = e.what();
asynPrint(this->pasynUserSelf, ASYN_TRACE_ERROR, "%s::%s cv::blur exception: %s\n",
driverName, functionName, err_msg);
this->lock();
return;
}
// ---------------------------------------------------------------------------------
// Here is the edge detection routine.
int lowThreshold = 50;
int thresholdRatio = 3;
try {
cv::Canny( detected_edges, detected_edges, lowThreshold, thresholdRatio * lowThreshold, 3);
}
catch( cv::Exception &e) {
const char* err_msg = e.what();
asynPrint(this->pasynUserSelf, ASYN_TRACE_ERROR, "%s::%s cv::Canny exception: %s\n",
driverName, functionName, err_msg);
this->lock();
return;
}
// ---------------------------------------------------------------------------------
// find all contour in the image
std::vector<std::vector<Point> > contours;
std::vector<Vec4i> hierarchy;
try {
cv::findContours(detected_edges, contours, hierarchy, RETR_CCOMP, CHAIN_APPROX_SIMPLE);
// cv::findContours(detected_edges, contours, hierarchy, RETR_EXTERNAL, CHAIN_APPROX_SIMPLE);
// cv::findContours(detected_edges, contours, hierarchy, RETR_TREE, CHAIN_APPROX_SIMPLE);
}
catch( cv::Exception &e) {
const char* err_msg = e.what();
asynPrint(this->pasynUserSelf, ASYN_TRACE_ERROR, "%s::%s cv::FindContours exception: %s\n",
driverName, functionName, err_msg);
this->lock();
return;
}
// ---------------------------------------------------------------------------------
// get the biggest contour and find its corners
int MAX_COUNTOUR_AREA = xSize * ySize;
int maxAreaFound = MAX_COUNTOUR_AREA * 0.2;
int found = 0;
vector<Point2f> pageContour;
vector<Point2f> approx;
for (auto cnt:contours){
double perimeter = cv::arcLength(cnt, true);
cv::approxPolyDP(cnt, approx, 0.03 * perimeter, true);
if (approx.size() == 4 and
cv::isContourConvex(approx) and
maxAreaFound < cv::contourArea(approx) and
cv::contourArea(approx) < MAX_COUNTOUR_AREA){
maxAreaFound = cv::contourArea(approx);
pageContour = approx;
found = 1;
}
else{
}
}
if( found == 0)
return;
vector<Point2f> tPoints(4);
sortPoints(pageContour);
findTransformationPoints(pageContour, tPoints);
// ---------------------------------------------------------------------------------
// transform image
Mat M = getPerspectiveTransform(pageContour, tPoints);
Mat rotated;
warpPerspective(img, rotated, M, Size(xSize, ySize));
Point2f ptc0;
ptc0.x = (tPoints[3].x - tPoints[0].x) / 2 + tPoints[0].x;
ptc0.y = (tPoints[1].y - tPoints[0].y) / 2 + tPoints[0].y;
m_MiddlePointX = ptc0.x;
m_MiddlePointY = ptc0.y;
Mat xSlice = rotated.col(static_cast<int>(ptc0.x)).t();
Mat ySlice = rotated.row(static_cast<int>(ptc0.y));
vector<float> dResultX(2);
vector<float> dResultY(2);
calibrate( rotated.col(static_cast<int>(ptc0.x)).t(), dResultX);
calibrate( rotated.row(static_cast<int>(ptc0.y)), dResultY);
m_FitX_a = dResultX[0];
m_FitX_b = dResultX[1];
m_FitY_a = dResultY[0];
m_FitY_b = dResultY[1];
m_CalibDone = 1;
if(m_ShowImage)
memcpy( outData, (unsigned char*)rotated.data, arrayInfo->nElements * sizeof(unsigned char));
} // end of NDPluginTransform::transformImag
// ---------------------------------------------------------------------------------
/** Constructor for NDPluginCalib; most parameters are simply passed to NDPluginDriver::NDPluginDriver.
* After calling the base class constructor this method sets reasonable default values for all of the
* parameters.
* \param[in] portName The name of the asyn port driver to be created.
* \param[in] queueSize The number of NDArrays that the input queue for this plugin can hold when
* NDPluginDriverBlockingCallbacks=0. Larger queues can decrease the number of dropped arrays,
* at the expense of more NDArray buffers being allocated from the underlying driver's NDArrayPool.
* \param[in] blockingCallbacks Initial setting for the NDPluginDriverBlockingCallbacks flag.
* 0=callbacks are queued and executed by the callback thread; 1 callbacks execute in the thread
* of the driver doing the callbacks.
* \param[in] NDArrayPort Name of asyn port driver for initial source of NDArray callbacks.
* \param[in] NDArrayAddr asyn port driver address for initial source of NDArray callbacks.
* \param[in] maxBuffers The maximum number of NDArray buffers that the NDArrayPool for this driver is
* allowed to allocate. Set this to -1 to allow an unlimited number of buffers.
* \param[in] maxMemory The maximum amount of memory that the NDArrayPool for this driver is
* allowed to allocate. Set this to -1 to allow an unlimited amount of memory.
* \param[in] priority The thread priority for the asyn port driver thread if ASYN_CANBLOCK is set in asynFlags.
* \param[in] stackSize The stack size for the asyn port driver thread if ASYN_CANBLOCK is set in asynFlags.
*/
NDPluginCalib::NDPluginCalib(const char *portName, int queueSize, int blockingCallbacks,
const char *NDArrayPort, int NDArrayAddr,
int maxBuffers, size_t maxMemory,
int priority, int stackSize)
/* Invoke the base class constructor */
: NDPluginDriver(portName, queueSize, blockingCallbacks,
NDArrayPort, NDArrayAddr, 1, maxBuffers, maxMemory,
asynInt32ArrayMask | asynFloat64ArrayMask | asynGenericPointerMask,
asynInt32ArrayMask | asynFloat64ArrayMask | asynGenericPointerMask,
0, 1, priority, stackSize, 1)
{
char versionString[20];
//static const char *functionName = "NDPluginCalib";
m_LowThreshold = 50;;
m_ThresholdRatio = 3;
m_FitX_a = 0.;
m_FitX_b = 0.;
m_FitY_a = 0.;
m_FitY_b = 0.;
m_MiddlePointX = 0.;
m_MiddlePointY = 0.;
m_ShowImage = 0;
m_CalibDone = 0;
createParam( NDPluginCalibLowThresholdString, asynParamFloat64, &NDPluginCalibLowThreshold);
createParam( NDPluginCalibThresholdRatioString, asynParamFloat64, &NDPluginCalibThresholdRatio);
createParam( NDPluginCalibFitX_aString, asynParamFloat64, &NDPluginCalibFitX_a);
createParam( NDPluginCalibFitX_bString, asynParamFloat64, &NDPluginCalibFitX_b);
createParam( NDPluginCalibFitY_aString, asynParamFloat64, &NDPluginCalibFitY_a);
createParam( NDPluginCalibFitY_bString, asynParamFloat64, &NDPluginCalibFitY_b);
createParam( NDPluginCalibMiddlePointXString, asynParamFloat64, &NDPluginCalibMiddlePointX);
createParam( NDPluginCalibMiddlePointYString, asynParamFloat64, &NDPluginCalibMiddlePointY);
createParam( NDPluginCalibShowImageString, asynParamInt32, &NDPluginCalibShowImage);
createParam( NDPluginCalibDoneString, asynParamInt32, &NDPluginCalibDone);
/* Set the plugin type string */
setStringParam(NDPluginDriverPluginType, "NDPluginCalib");
epicsSnprintf(versionString, sizeof(versionString), "%d.%d.%d",
CALIB_VERSION, CALIB_REVISION, CALIB_MODIFICATION);
setStringParam(NDDriverVersion, versionString);
/* Try to connect to the array port */
connectToArrayPort();
}
/** Configuration command */
extern "C" int NDCalibConfigure(const char *portName, int queueSize, int blockingCallbacks,
const char *NDArrayPort, int NDArrayAddr,
int maxBuffers, size_t maxMemory,
int priority, int stackSize)
{
NDPluginCalib *pPlugin = new NDPluginCalib(portName, queueSize, blockingCallbacks, NDArrayPort, NDArrayAddr,
maxBuffers, maxMemory, priority, stackSize);
return pPlugin->start();
}
/* EPICS iocsh shell commands */
static const iocshArg initArg0 = { "portName",iocshArgString};
static const iocshArg initArg1 = { "frame queue size",iocshArgInt};
static const iocshArg initArg2 = { "blocking callbacks",iocshArgInt};
static const iocshArg initArg3 = { "NDArrayPort",iocshArgString};
static const iocshArg initArg4 = { "NDArrayAddr",iocshArgInt};
static const iocshArg initArg5 = { "maxBuffers",iocshArgInt};
static const iocshArg initArg6 = { "maxMemory",iocshArgInt};
static const iocshArg initArg7 = { "priority",iocshArgInt};
static const iocshArg initArg8 = { "stackSize",iocshArgInt};
static const iocshArg * const initArgs[] = {&initArg0,
&initArg1,
&initArg2,
&initArg3,
&initArg4,
&initArg5,
&initArg6,
&initArg7,
&initArg8};
static const iocshFuncDef initFuncDef = {"NDCalibConfigure",9,initArgs};
static void initCallFunc(const iocshArgBuf *args)
{
NDCalibConfigure(args[0].sval, args[1].ival, args[2].ival,
args[3].sval, args[4].ival, args[5].ival,
args[6].ival, args[7].ival, args[8].ival);
}
extern "C" void NDCalibRegister(void)
{
iocshRegister(&initFuncDef,initCallFunc);
}
extern "C" {
epicsExportRegistrar(NDCalibRegister);
}
|
0384fc617de58d246c40f04a794c55790858257b
|
d89f38086d84808de3a01e5502602dcbfc3254de
|
/digi/EngineVM/PrintModulePass.h
|
03693714817dec71381c8c7e1a4cb6065869d1e6
|
[] |
no_license
|
Jochen0x90h/Digi
|
1c9250b86d8b3a49724e62c2a624d25e141f5aff
|
7cbb876ebaa5ef58417e9c6d99fdd44ebb041ad0
|
refs/heads/master
| 2021-01-20T08:44:05.229736
| 2017-06-27T21:29:46
| 2017-06-27T21:29:46
| 90,188,188
| 1
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 788
|
h
|
PrintModulePass.h
|
#ifndef digi_EngineVM_PrintModulePass_h
#define digi_EngineVM_PrintModulePass_h
#include <llvm/Module.h>
#include <llvm/Pass.h>
#include <digi/Utility/StringRef.h>
namespace digi {
/// @addtogroup SceneConvert
/// @{
// print a module (see VMCore/PrintModulePass)
class PrintModulePass : public llvm::ModulePass
{
public:
// llvm pass identification, replacement for typeid
static char ID;
PrintModulePass()
: llvm::ModulePass(ID)
{
}
PrintModulePass(StringRef name)
: llvm::ModulePass(ID), name(name)
{
}
virtual ~PrintModulePass();
virtual void getAnalysisUsage(llvm::AnalysisUsage& analysisUsage) const;
virtual bool runOnModule(llvm::Module& module);
std::string name;
};
/// @}
} // namespace digi
#endif
|
14be40c1e24487517e7c61c7894c80ccfc28a358
|
84c7e7b93c098e2fa8daf1b66e42ce24b99d768d
|
/lc1005/源.cpp
|
e39e9b5dc9f954615f1ae5ad480885088a0fd522
|
[] |
no_license
|
AntonYad/Leetcode-or-NK
|
588be67d6f934f6772a9d5f4b79cd150be6a951d
|
72e1cca87ee07375d525db95401f6a06dd3a38e8
|
refs/heads/master
| 2023-07-08T19:09:10.932620
| 2021-08-12T00:32:56
| 2021-08-12T00:32:56
| 345,487,104
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 615
|
cpp
|
源.cpp
|
class Solution {
public:
static bool cmp(int a, int b)
{
return abs(a) > abs(b);
}
int largestSumAfterKNegations(vector<int>& nums, int k) {
sort(nums.begin(), nums.end(), cmp);
for (int i = 0; i < nums.size(); i++)
{
if (nums[i] < 0 && k>0)
{
nums[i] *= -1;
k--;
}
}
while (k != 0)
{
nums[nums.size() - 1] *= -1;
k--;
}
int res = 0;
for (auto& e : nums)
{
res += e;
}
return res;
}
};
|
f9837b4c5297429a5bf4bcb7af68384e974ec1fe
|
07ac9c56312930853eac8803224139ef090a0723
|
/faery_wall.hpp
|
4c37a2c39920ff9b471c4dfd69249ffb92e21dad
|
[] |
no_license
|
TanushParkashVerma/Lab9
|
1b4e716b1b44eb390b11e9c014bf7facb9d753c7
|
92741a26f12a6f490cb26bdd7cd98fe3fef77b40
|
refs/heads/master
| 2022-03-22T03:36:28.688102
| 2019-11-29T11:34:54
| 2019-11-29T11:34:54
| 224,842,135
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 337
|
hpp
|
faery_wall.hpp
|
//
// Created by tanus on 2019-11-28.
//
#ifndef LAB9_FAERY_WALL_HPP
#define LAB9_FAERY_WALL_HPP
#include "wall.hpp"
/*faery_wall class*/
class faery_wall : public wall {
public:
/*faery_wall destructor*/
~faery_wall() = default;
/*faery_maze print function*/
void print() override;
};
#endif //LAB9_FAERY_WALL_HPP
|
3537d0c42768dd31093996318724b5c710ac41ac
|
32959b4d60a1fa8f9c064537011dd28322b902e7
|
/cpp_files/process_manager.cpp
|
baf1b26598f183be74b5a12d2e812040bf7962be
|
[] |
no_license
|
jdcia/cpp_terminal
|
5108a28ca29fc925660bae2a8c21836197fae506
|
d30cb759b1d73998e9a28ab13ae953a6ee5bc215
|
refs/heads/master
| 2022-08-26T15:24:44.949656
| 2020-05-27T00:03:50
| 2020-05-27T00:03:50
| 263,711,894
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 2,199
|
cpp
|
process_manager.cpp
|
#include "../headers/process_manager.h"
//contructor for executing command.
process_manager::process_manager(){
needs_update = false;
//Initialize built in functions into hash map.
built_in["cd"] = &preform_cd;
built_in["pwd"] = &preform_pwd;
built_in["history"] = &print_history;
return;
}
//Will run a single command.
void process_manager::run(command com){
history.push_back(com);
if(built_in.find(com.program) != built_in.end()){
built_in[com.program](this, com); //call built in function
}
else{
//execute the function with execv.
char *args[com.args.size() + 2];
args[0] = const_cast<char *>(com.program.c_str());
for(int i = 1; i < com.args.size(); i++){
args[i] = const_cast<char *>(com.args[i].c_str());
}
args[com.args.size() + 1] = NULL;
pid_t pid = fork();
if(pid == -1){
std::cout << "failed fork\n";
}
else if(pid > 0){
//parent
int status;
waitpid(pid, &status, 0);
}
else{
execv(const_cast<char *>(com.program.c_str()), args);
_exit(-1);
}
}
}
//Shows current process running. This may not be used.
void process_manager::show_current(){
}
//Shows backgrounded processes.
void process_manager::show_backgrounded(){
}
void print_history(process_manager *manager, command com){
for(command i : manager->history){
std::cout << i.program << " ";
for(std::string arg: i.args){
std::cout << arg << " ";
}
std::cout << "\n";
}
}
//Built in functions-----------------------------------------------
void preform_cd(process_manager *manager, command com){
// std::cout << "cd" << "\n";
//add checks here for arguements
manager->needs_update = true;
chdir(const_cast<char *>(com.args[0].c_str()));
}
//may not support being that path is always shown.
void preform_pwd(process_manager *manager, command com){
//add checks to make sure.
char cwd[FILENAME_MAX];
getcwd(cwd, FILENAME_MAX );
std::cout << cwd << "\n";
}
|
36c8561fc5737eeb5fc1b08dd129e80f84d41374
|
37f5529f9d06940c6193ef9e4b9a03efe5c1a393
|
/Compiler/StringExt.h
|
2c049a2c871df9be1fdfae317d37d71b95b29901
|
[] |
no_license
|
dkodnik/o2c-lev0
|
f10acbcc8a072cacdde3a3039aa30e10fe9db74f
|
55a9bd7124ebca0166f00131bd68e740e2b8d441
|
refs/heads/master
| 2021-01-09T05:54:28.827201
| 2010-11-03T21:57:59
| 2010-11-03T21:57:59
| 80,862,237
| 1
| 0
| null | null | null | null |
WINDOWS-1251
|
C++
| false
| false
| 1,605
|
h
|
StringExt.h
|
// StringExt.h: interface for the CStringExt class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_STRINGEXT_H__05EC90AD_127B_42A1_9AE4_0CBEE3307689__INCLUDED_)
#define AFX_STRINGEXT_H__05EC90AD_127B_42A1_9AE4_0CBEE3307689__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
inline unsigned hash( const char* v, int M )
{
static const unsigned a = 7; // 7 соответствуе 127, 5 - 31-у)
unsigned h = 0;
for ( ; *v; ++v )
h = (h<<a) - h + *v;
return h % M;
}
class CStringExt// : public CString
{
public:
CString csNormal;
CString csUpper;
CStringExt()//:CString()
{
};
CStringExt(const CString &Str)//:CString(Str)
{
csNormal=Str;
csUpper=Str;
csUpper.MakeUpper();
csUpper.TrimRight();
csUpper.TrimLeft();
};
operator DWORD ()
{
return hash(csUpper.GetBuffer(0),0xFFFFF);
};
operator CString()
{
return csNormal;
}
};
inline BOOL CompareElements(CStringExt *pElement1,CStringExt *pElement2)
{
return !pElement1->csUpper.Compare(pElement2->csUpper);
}
//BOOL CompareElements(CStringExt *pElement1,CStringExt *pElement2);
//unsigned hash( const char* v, int M );
/*
class CStringExt : public CString
{
public:
CStringExt():CString()
{
};
CStringExt(CString Str):CString(Str)
{
};
operator DWORD ()
{
return hash(GetBuffer(0),0xFFFFF);
};
operator DWORD ()
{
CString Str=(*this);
Str.MakeUpper();
Str.TrimRight();
Str.TrimLeft();
return hash(Str.GetBuffer(0),0xFFFFF);
};
};
*/
#endif // !defined(AFX_STRINGEXT_H__05EC90AD_127B_42A1_9AE4_0CBEE3307689__INCLUDED_)
|
5359efbb6dc8afdc9591af1c3a655d7fc3922185
|
d40ab6f9625ab08537a9102482e4529cb8c6088b
|
/error_handler.hpp
|
b96b3d4acb9d919d3d64e5bf800c454c4def306c
|
[] |
no_license
|
jsierant/eve
|
7e5ea3e21b3886aaa285743136a9c219995072bf
|
68cf48daf09f6f343fbab6910956134a7c2c3743
|
refs/heads/master
| 2020-03-16T02:28:01.181212
| 2018-05-08T12:46:50
| 2018-05-08T12:46:50
| 132,465,540
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 455
|
hpp
|
error_handler.hpp
|
#pragma once
#include "sys.hpp"
#include <stdexcept>
#include <string_view>
namespace eve {
class excetion_error_handler {
public:
void sys_critical(sys::error err, char const * sys_call_name) {
throw std::runtime_error(std::string("System error, call: ")
+ sys_call_name + ", msg: \'" + sys::to_string(err) + "\'");
}
void critical(char const * msg) {
throw std::runtime_error(msg);
}
void warning(char const *) {
}
};
}
|
f454262e1f6365154fb5806d057b77838c7a476d
|
5bb7cf6f6f38e8a96ef5d522d26cf78c7c097c41
|
/src/engine/server/application/CentralServer/src/shared/CharacterCreationTracker.cpp
|
9f38aa57ffa034c940fe91295c4f141c4c9535c3
|
[] |
no_license
|
hackerlank/SWG_Client_Next_Main
|
1c88015af11bd42c662a7d7c4fe0807924f4077a
|
d737257b8fc28f7ad4d8d02113e7662682187194
|
refs/heads/master
| 2021-01-12T06:25:56.627527
| 2016-06-01T19:32:59
| 2016-06-01T19:32:59
| 77,359,203
| 6
| 4
| null | 2016-12-26T05:09:07
| 2016-12-26T05:09:06
| null |
UTF-8
|
C++
| false
| false
| 16,202
|
cpp
|
CharacterCreationTracker.cpp
|
// ======================================================================
//
// CharacterCreationTracker.cpp
// copyright (c) 2001 Sony Online Entertainment
//
// ======================================================================
#include "FirstCentralServer.h"
#include "CharacterCreationTracker.h"
#include "ConfigCentralServer.h"
#include "UnicodeUtils.h"
#include "serverNetworkMessages/CentralConnectionServerMessages.h"
#include "serverNetworkMessages/LoginCreateCharacterAckMessage.h"
#include "serverNetworkMessages/LoginCreateCharacterMessage.h"
#include "serverUtility/ServerClock.h"
#include "sharedFoundation/Clock.h"
#include "sharedFoundation/ExitChain.h"
#include "sharedFoundation/FormattedString.h"
#include "sharedLog/Log.h"
#include "sharedNetworkMessages/GenericValueTypeMessage.h"
#include "sharedNetworkMessages/NameErrors.h"
#include "sharedNetworkMessages/NetworkStringIds.h"
#include "sharedUtility/StartingLocationData.h"
#include "sharedUtility/StartingLocationManager.h"
// ======================================================================
CharacterCreationTracker * CharacterCreationTracker::ms_instance = NULL;
// ======================================================================
void CharacterCreationTracker::install()
{
DEBUG_FATAL(ms_instance != NULL,("Called install() twice.\n"));
ms_instance = new CharacterCreationTracker;
ExitChain::add(CharacterCreationTracker::remove,"CharacterCreationTracker::remove");
}
// ----------------------------------------------------------------------
void CharacterCreationTracker::remove()
{
DEBUG_FATAL(!ms_instance,("Not installed.\n"));
delete ms_instance;
ms_instance = 0;
}
// ----------------------------------------------------------------------
CharacterCreationTracker::CharacterCreationTracker() :
m_creations()
{
}
// ----------------------------------------------------------------------
CharacterCreationTracker::~CharacterCreationTracker()
{
for (CreationsType::iterator i = m_creations.begin(); i != m_creations.end(); ++i)
delete i->second;
}
// ----------------------------------------------------------------------
void CharacterCreationTracker::handleCreateNewCharacter(const ConnectionCreateCharacter &msg)
{
// - Check whether a creation request is already active for this account
CreationsType::iterator creationRecord = m_creations.find(msg.getStationId());
if (creationRecord != m_creations.end())
{
if (ServerClock::getInstance().getGameTimeSeconds() > (creationRecord->second->m_creationTime + ConfigCentralServer::getCharacterCreationTimeout()))
{
LOG("TraceCharacterCreation", ("%d allowing character creation because previous one timed out", msg.getStationId()));
DEBUG_REPORT_LOG(true,("Allowing character creation for account %li because previous one timed out.\n",msg.getStationId()));
unlockAccount(msg.getStationId());
creationRecord = m_creations.end();
}
else
{
LOG("TraceCharacterCreation", ("%d refusing character creation because one is already in progress", msg.getStationId()));
DEBUG_REPORT_LOG(true,("Refusing character creation for account %li because one was already in progress.\n",msg.getStationId()));
ConnectionCreateCharacterFailed f(msg.getStationId(), msg.getCharacterName(), NameErrors::nameDeclinedRetry, FormattedString<2048>().sprintf("%lu refusing character creation because one is already in progress", msg.getStationId())); //lint !e40 // undeclared identifier nameDeclinedEntry
CentralServer::getInstance().sendToConnectionServerForAccount(msg.getStationId(), f, true);
return;
}
}
// - Check whether they are creating characters too rapidly
// Note that this locks only when creation succeeds. Failing to create a lot of characters in a row does not lock the account.
FastCreationLockType::iterator fcl = m_fastCreationLock.find(msg.getStationId());
if (fcl != m_fastCreationLock.end())
{
if (!msg.getNoRateLimit() && ((Clock::timeSeconds() - fcl->second) < (msg.getIsForCharacterTransfer() ? static_cast<uint32>(ConfigCentralServer::getCharacterCtsCreationRateLimitSeconds()) : static_cast<uint32>(ConfigCentralServer::getCharacterCreationRateLimitSeconds()))))
{
LOG("TraceCharacterCreation", ("%d refusing character creation because not enough time has passed since the previous one", msg.getStationId()));
DEBUG_REPORT_LOG(true,("Refusing character creation for account %li because not enough time has passed since the previous one\n",msg.getStationId()));
ConnectionCreateCharacterFailed f(msg.getStationId(), msg.getCharacterName(), NameErrors::nameDeclinedTooFast, FormattedString<2048>().sprintf("%lu refusing character creation because not enough time has passed since the previous one", msg.getStationId()));
CentralServer::getInstance().sendToConnectionServerForAccount(msg.getStationId(), f, true);
return;
}
}
if (creationRecord == m_creations.end())
creationRecord = m_creations.insert(std::make_pair<StationId,CreationRecord*>(msg.getStationId(),new CreationRecord)).first;
// - determine starting location
static std::string tutorialPlanetName("tutorial");
std::string planetName;
Vector coordinates(0.0f,0.0f,0.0f);
NetworkId cellId(NetworkId::cms_invalid);
bool useNewbieTutorial = (ConfigCentralServer::getNewbieTutorialEnabled() && msg.getUseNewbieTutorial() && ! msg.getIsForCharacterTransfer());
if (useNewbieTutorial)
planetName = tutorialPlanetName;
else
{
if (!getStartLocation(msg.getStartingLocation(), planetName, coordinates, cellId))
{
// bad starting location
LOG("TraceCharacterCreation", ("%d bad starting location (%s)", msg.getStationId(), msg.getStartingLocation().c_str()));
ConnectionCreateCharacterFailed cccf(msg.getStationId(), msg.getCharacterName(), SharedStringIds::character_create_failed_bad_location, FormattedString<2048>().sprintf("%lu bad starting location (%s)", msg.getStationId(), msg.getStartingLocation().c_str()));
CentralServer::getInstance().sendToConnectionServerForAccount(msg.getStationId(), cccf, true);
unlockAccount(msg.getStationId());
return;
}
}
// - send request to game server
creationRecord->second->m_gameCreationRequest = new CentralCreateCharacter(
msg.getStationId(),
msg.getCharacterName(),
msg.getTemplateName(),
msg.getScaleFactor(),
planetName,
coordinates,
cellId,
msg.getAppearanceData(),
msg.getHairTemplateName(),
msg.getHairAppearanceData(),
msg.getProfession(),
msg.getBiography(),
useNewbieTutorial,
msg.getSkillTemplate(),
msg.getWorkingSkill(),
msg.getJedi(),
msg.getGameFeatures());
uint32 gameServerId = CentralServer::getInstance().sendToRandomGameServer(*(creationRecord->second->m_gameCreationRequest));
if (gameServerId == 0)
{
DEBUG_REPORT_LOG(true, ("Could not find a game server for character creation, starting a tutorial server\n"));
LOG("TraceCharacterCreation", ("%d waiting for game server", msg.getStationId()));
CentralServer::getInstance().startPlanetServer(CentralServer::getInstance().getHostForScene(tutorialPlanetName), tutorialPlanetName, 0);
creationRecord->second->m_stage = CreationRecord::S_queuedForGameServer;
return;
}
LOG("TraceCharacterCreation", ("%d sending CentralCreateCharacter(%s) to game server %lu", msg.getStationId(), Unicode::wideToNarrow(msg.getCharacterName()).c_str(), gameServerId));
creationRecord->second->m_stage = CreationRecord::S_sentToGameServer;
creationRecord->second->m_gameServerId = gameServerId;
}
// ----------------------------------------------------------------------
void CharacterCreationTracker::unlockAccount(StationId account)
{
delete m_creations[account];
IGNORE_RETURN(m_creations.erase(account));
LOG("TraceCharacterCreation", ("%d removing character creation lock", account));
}
// ----------------------------------------------------------------------
void CharacterCreationTracker::retryGameServerCreates()
{
for (CreationsType::iterator i=m_creations.begin(); i!=m_creations.end(); ++i)
{
if (i->second->m_stage == CreationRecord::S_queuedForGameServer)
{
uint32 gameServerId = CentralServer::getInstance().sendToRandomGameServer(*i->second->m_gameCreationRequest);
if (gameServerId != 0)
{
i->second->m_stage = CreationRecord::S_sentToGameServer;
i->second->m_gameServerId = gameServerId;
LOG("TraceCharacterCreation", ("%d sending CentralCreateCharacter to game server %lu", i->first,gameServerId));
}
else
{
i->second->m_gameServerId = 0;
}
}
}
}
// ----------------------------------------------------------------------
void CharacterCreationTracker::retryLoginServerCreates()
{
for (CreationsType::iterator i=m_creations.begin(); i!=m_creations.end(); ++i)
{
if (i->second->m_stage == CreationRecord::S_queuedForLoginServer)
{
uint32 loginServerId = CentralServer::getInstance().sendToArbitraryLoginServer(*i->second->m_loginCreationRequest, false);
if (loginServerId != 0 )
{
i->second->m_loginServerId = loginServerId;
i->second->m_stage = CreationRecord::S_sentToLoginServer;
LOG("TraceCharacterCreation", ("%d sending LoginCreateCharacterMessage", i->first));
}
else
{
i->second->m_loginServerId = 0;
}
}
}
}
// ----------------------------------------------------------------------
const bool CharacterCreationTracker::getStartLocation(const std::string & name, std::string & planetName, Vector & coordinates, NetworkId & cellId) const
{
const StartingLocationData * const sld = StartingLocationManager::findLocationByName (name);
if (sld)
{
planetName = sld->planet;
coordinates.x = sld->x;
coordinates.z = sld->z;
cellId = NetworkId (sld->cellId);
return true;
}
REPORT_LOG(true, ("The start location \"%s\" could not be found in StartingLocationManager", name.c_str()));
return false;
}
// ----------------------------------------------------------------------
void CharacterCreationTracker::onGameServerDisconnect(uint32 serverId)
{
for (CreationsType::iterator i=m_creations.begin(); i!=m_creations.end(); ++i)
{
if (i->second->m_stage == CreationRecord::S_sentToGameServer && i->second->m_gameServerId==serverId)
{
i->second->m_stage = CreationRecord::S_queuedForGameServer;
i->second->m_gameServerId = 0;
LOG("TraceCharacterCreation", ("%d requeueing because game server disconnected", i->first));
}
}
retryGameServerCreates();
}
// ----------------------------------------------------------------------
void CharacterCreationTracker::onLoginServerDisconnect(uint32 loginServerId)
{
for (CreationsType::iterator i=m_creations.begin(); i!=m_creations.end(); ++i)
{
if (i->second->m_stage == CreationRecord::S_sentToLoginServer && i->second->m_loginServerId==loginServerId)
{
i->second->m_stage = CreationRecord::S_queuedForLoginServer;
i->second->m_loginServerId = 0;
LOG("TraceCharacterCreation", ("%d requeueing because login server disconnected", i->first));
}
}
retryLoginServerCreates();
}
// ----------------------------------------------------------------------
void CharacterCreationTracker::handleDatabaseCreateCharacterSuccess(StationId account, const Unicode::String &characterName, const NetworkId &characterObjectId, int templateId, bool jedi)
{
// - Check we are at the right stage
LOG("TraceCharacterCreation", ("%d DatabaseCreateCharacterSuccess(%s)", account, characterObjectId.getValueString().c_str()));
CreationsType::iterator creationRecord=m_creations.find(account);
if (creationRecord==m_creations.end() || creationRecord->second->m_stage != CreationRecord::S_sentToGameServer)
{
LOG("TraceCharacterCreation", ("%d DatabaseCreateCharacterSuccess was unexpected - exiting", account));
DEBUG_WARNING(true,("Programmer bug: got GameCreateCharacter message for accout %d, which we weren't expecting.\n",account));
return;
}
// - Tell the login server to add the character
LoginCreateCharacterMessage *msg = new LoginCreateCharacterMessage(account,characterName,characterObjectId,templateId,jedi);
creationRecord->second->m_loginCreationRequest = msg;
creationRecord->second->m_characterId = characterObjectId;
uint32 loginServerId = CentralServer::getInstance().sendToArbitraryLoginServer(*msg, false);
if (loginServerId != 0)
{
creationRecord->second->m_loginServerId = loginServerId;
creationRecord->second->m_stage = CreationRecord::S_sentToLoginServer;
LOG("TraceCharacterCreation", ("%d sending LoginCreateCharacterMessage", account));
}
else
{
creationRecord->second->m_loginServerId = 0;
creationRecord->second->m_stage = CreationRecord::S_queuedForLoginServer;
LOG("TraceCharacterCreation", ("%d waiting for login server", account));
}
}
// ----------------------------------------------------------------------
void CharacterCreationTracker::handleLoginCreateCharacterAck(StationId account)
{
// - Check we are at the right stage
LOG("TraceCharacterCreation", ("%d LoginCreateCharacterAckMessage", account));
CreationsType::iterator creationRecord=m_creations.find(account);
if (creationRecord==m_creations.end() || creationRecord->second->m_stage != CreationRecord::S_sentToLoginServer)
{
LOG("TraceCharacterCreation", ("%d LoginCreateCharacterAckMessage was unexpected - exiting", account));
DEBUG_WARNING(true,("Programmer bug: got LoginCreateCharacterAckMessage message for account %d, which we weren't expecting.\n",account));
return;
}
// - Tell the client the character has been created
LOG("TraceCharacterCreation", ("%d acknowledgeCharacterCreate(%s)", account, creationRecord->second->m_characterId.getValueString().c_str()));
LOG("CustomerService", ("Player:created character %s for stationId %u", creationRecord->second->m_characterId.getValueString().c_str(), account));
const ConnectionCreateCharacterSuccess c(account, creationRecord->second->m_characterId);
CentralServer::getInstance().sendToConnectionServerForAccount(account, c, true);
unlockAccount(account);
// let all connection servers know that a new character has been created for the station account
GenericValueTypeMessage<StationId> const ncc("NewCharacterCreated", account);
CentralServer::getInstance().sendToAllConnectionServers(ncc, true);
setFastCreationLock(account);
}
// ----------------------------------------------------------------------
void CharacterCreationTracker::handleGameCreateCharacterFailed(StationId account, Unicode::String const &characterName, StringId const &errorMessage, std::string const &optionalDetailedErrorMessage)
{
CreationsType::iterator creationRecord=m_creations.find(account);
if (creationRecord==m_creations.end() || creationRecord->second->m_stage != CreationRecord::S_sentToGameServer)
{
LOG("TraceCharacterCreation", ("%d got handleGameCreateCharacterFailed, but we weren't in the sentToGameServer stage - ignoring", account));
DEBUG_WARNING(true,("Programmer bug: got handleGameCreateCharacterFailed message for account %d, which we weren't expecting.\n",account));
return;
}
LOG("TraceCharacterCreation", ("%d received GameCreateCharacterFailed(%s)", account, Unicode::wideToNarrow(characterName).c_str()));
ConnectionCreateCharacterFailed cccf(account, characterName, errorMessage, optionalDetailedErrorMessage);
CentralServer::getInstance().sendToConnectionServerForAccount(account, cccf, true);
unlockAccount(account);
}
// ----------------------------------------------------------------------
void CharacterCreationTracker::setFastCreationLock(StationId account)
{
m_fastCreationLock[account]=Clock::timeSeconds();
}
// ======================================================================
CharacterCreationTracker::CreationRecord::CreationRecord() :
m_stage(S_queuedForGameServer),
m_gameCreationRequest(NULL),
m_loginCreationRequest(NULL),
m_creationTime(ServerClock::getInstance().getGameTimeSeconds()),
m_gameServerId(0),
m_loginServerId(0),
m_characterId(NetworkId::cms_invalid)
{
}
// ----------------------------------------------------------------------
CharacterCreationTracker::CreationRecord::~CreationRecord()
{
delete m_gameCreationRequest;
delete m_loginCreationRequest;
m_gameCreationRequest = 0;
m_loginCreationRequest = 0;
}
|
770efaa37a5e10ed5e26855886c682b9438db6bb
|
6522f3a08e44416ec7e6225fa9f68b374d6362fa
|
/clientserverpart.h
|
a411ac5b0903583e174c889b3434b1d7eee21626
|
[] |
no_license
|
DimaIgorevich/QChat
|
0fc93fc134d03055d9351fe41efd98379fc96843
|
e9abbae143a131498a0f9318d27bd9a0f1ba59ea
|
refs/heads/master
| 2021-01-20T15:42:49.374469
| 2016-07-02T23:59:12
| 2016-07-02T23:59:12
| 62,473,713
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 934
|
h
|
clientserverpart.h
|
#ifndef CLIENTSERVERPART_H
#define CLIENTSERVERPART_H
//main class
#include "qchat.h"
//QtClass
#include <QObject>
//server library
#include <QTcpServer>
#include <QTcpSocket>
#include <QTime>
//media library
#include <QtMultimedia/QSound>
class ClientServerPart : public QObject
{
Q_OBJECT
QChat *ui;
quint16 rb;//read data
//TCP/IP
QSound *sound;
bool statusConnection;
public:
//explicit ClientServerPart(QObject *parent = 0);
ClientServerPart(QChat *ui);
QTcpServer *serverC;//client part
QTcpSocket *server;
QTcpSocket *socket;//coonect for server
//
//void sendToClient(QTcpSocket *socket, const QString str);
signals:
public slots:
//Server part
void slotNewConnection();
void slotReadClient();
//Client part
void errorProc(QAbstractSocket::SocketError er);
void sendData();
void connectServer();
};
#endif // CLIENTSERVERPART_H
|
02b84f596222def8f30f2b9d8ebb714f7cc49aa8
|
2ab1149df32e49207c7e3c77417d32224a5beaf4
|
/dstr/plugin1/main.cpp
|
e474b08711e9fdf149665ba3dd6f7b6f3f61724f
|
[] |
no_license
|
Wooferpenza/Test_DPKW
|
19afc0c5226cd8b200989a51f1ba3f612bc767de
|
de8f1397d85a132faad74dc5746b3c5424318301
|
refs/heads/master
| 2020-03-17T14:52:00.333532
| 2018-05-22T13:47:46
| 2018-05-22T13:47:46
| 133,688,651
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 822
|
cpp
|
main.cpp
|
#include "wx/wxprec.h"
#ifdef __BORLANDC__
#pragma hdrstop
#endif
#ifndef WX_PRECOMP
#include "wx/wx.h"
#endif
#include "../include/stubs.h"
//#include "wx/xrc/xmlres.h" // XRC XML resouces
#include "wxfft.h"
#include "osc_dlg.h"
extern int sport;
class MyApp : public wxApp
{
public:
virtual bool OnInit();
virtual int OnExit();
};
IMPLEMENT_APP(MyApp)
// 'Main program' equivalent: the program execution "starts" here
bool MyApp::OnInit()
{
// create the main application window
if(argc>1) sport = atoi(argv[1]); else sport = 3000;
DskFrame *frame = new DskFrame(NULL,-1, "DAQ server (PCI boards)", wxPoint(100,100), wxSize(250,480));
frame->Show(TRUE);
return TRUE;
}
int MyApp::OnExit()
{
// clean up
return 0;
}
|
f9e45b3338b3a5473c8ce8527f3c80cf4b39017f
|
bc0266bc6bbff79bf874607aee17aa9fc0bc7738
|
/ImuFactor.hpp
|
3212136eba5de6f0d33e3f545b7d7ec94345d49f
|
[] |
no_license
|
leleleoo123/alsm
|
88605535ba8d95ad49c783b5e1e795fdb7d1f2b1
|
4cd5216de5afc5e1bdff089c9831564f0d73dd14
|
refs/heads/master
| 2022-07-27T11:12:20.702912
| 2018-07-21T04:05:48
| 2018-07-21T04:05:48
| 141,776,295
| 1
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 594
|
hpp
|
ImuFactor.hpp
|
//
// ImuFactor.hpp
// ekf_slam
//
// Created by 谭智丹 on 16/10/22.
// Copyright © 2016年 谭智丹. All rights reserved.
//
#ifndef ImuFactor_hpp
#define ImuFactor_hpp
#include <stdio.h>
#include <Eigen/Dense>
class ImuFactor
{
public:
ImuFactor(Eigen::Vector3d& pap, Eigen::Quaterniond& qaq, Eigen::Vector3d& vav, Eigen::Matrix<double, 10, 10>& RaR, int i, int j);
int begin_frame_id;
int end_frame_id;
Eigen::Vector3d pp;
Eigen::Quaterniond qq;
Eigen::Vector3d vv;
Eigen::Matrix<double, 10, 10> RR;
};
#endif /* ImuFactor_hpp */
|
742500467d1462cd9a28cc801f334bba24fe0407
|
4fc9c3821b32b37c1c802c76b584255ae790a89b
|
/BOJ/1000/4000s/4299.cpp
|
6645d75071cbebcac9064e74174e6e67c9f1866a
|
[] |
no_license
|
bww9641/Algorithm_Project
|
abfb4396f11affa4146d904ef7f15baef4c1a4b1
|
114b90b4caac7f802934e22b90afbeacf26c45ae
|
refs/heads/master
| 2022-12-22T15:33:40.607774
| 2020-09-17T01:30:20
| 2020-09-17T01:30:20
| 198,115,175
| 2
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 236
|
cpp
|
4299.cpp
|
#include<stdio.h>
int main(){
int a,b;
scanf("%d %d",&a,&b);
int c=(a+b)/2;
int d=a-c;
if(c<0 || d<0 || (a+b)%2!=0){
printf("-1");
return 0;
}
if(d>c) printf("%d %d",d,c);
else printf("%d %d",c,d);
return 0;
}
|
27800bfa156e869448c08d948de345955459c1f3
|
2344dc04a841fe4d67ca0e9aa99199320283e8b0
|
/EchoServer/BaseServer.cpp
|
535e84c25968aec534a39777d88808889468d75d
|
[
"Apache-2.0"
] |
permissive
|
ly-rs90/EchoServer
|
e68e77479599fef207f158d08a7f4468fa8b5d1a
|
1986038230e8637a937566ba28ce81fe4ea65aee
|
refs/heads/master
| 2020-03-28T01:17:18.198388
| 2018-09-05T09:27:16
| 2018-09-06T01:52:14
| 147,493,416
| 0
| 0
| null | null | null | null |
GB18030
|
C++
| false
| false
| 3,250
|
cpp
|
BaseServer.cpp
|
#include "BaseServer.h"
static DWORD WINAPI ThreadProc(LPVOID p)
{
BaseServer *bs = (BaseServer*)p;
while (true) {
if (!bs->m_start) break;
int index = WSAWaitForMultipleEvents(bs->m_total, bs->m_event, FALSE, 1000, FALSE);
if (index == WSA_WAIT_TIMEOUT) continue;
index = index - WSA_WAIT_EVENT_0;
WSANETWORKEVENTS e;
int r = WSAEnumNetworkEvents(bs->m_socket[index], bs->m_event[index], &e);
if (r != 0) {
closesocket(bs->m_socket[index]);
WSACloseEvent(bs->m_event[index]);
for (int i = index; i < bs->m_total - 1; i++) {
bs->m_event[index] = bs->m_event[index + 1];
bs->m_socket[index] = bs->m_socket[index + 1];
}
bs->m_total--;
continue;
}
// 客户端连接请求
if (e.lNetworkEvents & FD_ACCEPT &&
e.iErrorCode[FD_ACCEPT_BIT] == 0 &&
bs->m_total<WSA_MAXIMUM_WAIT_EVENTS) {
SOCKET s = accept(bs->m_socket[index], NULL, NULL);
WSAEVENT event = WSACreateEvent();
bs->m_event[bs->m_total] = event;
bs->m_socket[bs->m_total] = s;
bs->m_total++;
WSAEventSelect(s, event, FD_CLOSE | FD_READ);
}
// 读数据
if ((e.lNetworkEvents & FD_READ) &&
e.iErrorCode[FD_READ_BIT] == 0) {
char *buf = new char[4096]();
int len = 0;
do {
len = recv(bs->m_socket[index], buf, 4096, 0);
if (len > 0) {
bs->OnRead(bs->m_socket[index], buf, len);
}
} while (len > 0);
}
// 连接关闭
if (e.lNetworkEvents & FD_CLOSE &&
e.iErrorCode[FD_CLOSE_BIT] == 0) {
closesocket(bs->m_socket[index]);
WSACloseEvent(bs->m_event[index]);
for (int i = index; i < bs->m_total - 1; i++) {
bs->m_socket[index] = bs->m_socket[index + 1];
bs->m_event[index] = bs->m_event[index + 1];
}
bs->m_total--;
}
}
return 0;
}
BaseServer::BaseServer(int port)
{
m_listenPort = port;
m_total = 0;
m_start = false;
}
BaseServer::~BaseServer()
{
UnInit();
}
// 启动server,成功返回true,失败返回false
bool BaseServer::Start()
{
if (!Init()) return false;
if (m_listenPort < 0 || m_listenPort > 65535) return false;
sockaddr_in localAddr;
localAddr.sin_family = AF_INET;
localAddr.sin_addr.S_un.S_addr = htonl(INADDR_ANY);
localAddr.sin_port = htons(m_listenPort);
m_listenSocket = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP);
if (bind(m_listenSocket, (sockaddr*)&localAddr, sizeof(localAddr)) != 0) return false;
if (listen(m_listenSocket, SOMAXCONN) != 0) return false;
WSAEVENT e = WSACreateEvent();
if (e == WSA_INVALID_EVENT) return false;
if (WSAEventSelect(m_listenSocket, e, FD_ACCEPT) != 0) {
WSACloseEvent(e);
return false;
}
m_event[m_total] = e;
m_socket[m_total] = m_listenSocket;
m_total++;
m_start = true;
HANDLE t = CreateThread(NULL, 0, ThreadProc, (LPVOID)this, 0, NULL);
if (t == NULL) return false;
CloseHandle(t);
return true;
}
bool BaseServer::Stop()
{
m_start = false;
for (int i = 0; i < m_total; i++) {
closesocket(m_socket[i]);
WSACloseEvent(m_event[i]);
m_total--;
}
return true;
}
// 初始化
bool BaseServer::Init()
{
WSADATA wsaData;
return (WSAStartup(MAKEWORD(2, 2), &wsaData) == 0);
}
// 释放资源
bool BaseServer::UnInit()
{
return (WSACleanup() == 0);
}
void BaseServer::OnRead(SOCKET s, char *buf, int len)
{
delete[] buf;
}
|
46be00a4d095dcd684aa3dee93ed3093fb511f53
|
bdc27c22522a99b5bff2ec4cfa95fadcba65747d
|
/testing/adios2/engine/inline/TestInlineWriteRead.cpp
|
d572574992b20e4995adafcd0e16228cc088ddb1
|
[
"Apache-2.0"
] |
permissive
|
ornladios/ADIOS2
|
a34e257b28adb26e6563b800502266ebb0c9088c
|
c8b7b66ed21b03bfb773bd972d5aeaaf10231e67
|
refs/heads/master
| 2023-08-31T18:11:22.186415
| 2023-08-29T20:45:03
| 2023-08-29T20:45:03
| 75,750,830
| 243
| 140
|
Apache-2.0
| 2023-09-14T11:15:00
| 2016-12-06T16:39:55
|
C++
|
UTF-8
|
C++
| false
| false
| 39,528
|
cpp
|
TestInlineWriteRead.cpp
|
/*
* Distributed under the OSI-approved Apache License, Version 2.0. See
* accompanying file Copyright.txt for details.
*/
#include <cstdint>
#include <cstring>
#include <iostream>
#include <stdexcept>
#include <adios2.h>
#include <gtest/gtest.h>
#include "../SmallTestData.h"
class InlineWriteRead : public ::testing::Test
{
public:
InlineWriteRead() = default;
SmallTestData m_TestData;
};
//******************************************************************************
// 1D 1x8 test data
//******************************************************************************
// helper
template <class T>
typename adios2::Variable<T>::Info setSelection(adios2::Variable<T> &var_i8, size_t step,
adios2::Engine &inlineReader)
{
var_i8.SetStepSelection({step, 1});
auto blocksInfo = inlineReader.BlocksInfo(var_i8, step);
// ASSERT_EQ(blocksInfo.size(), 1);
// must be copied, since blocksInfo will go out of scope and be destroyed.
typename adios2::Variable<T>::Info info = blocksInfo[0];
var_i8.SetBlockSelection(info.BlockID);
inlineReader.Get(var_i8, info);
return info;
}
template <class T>
void testBlocksInfo(adios2::Variable<T> &var, size_t step, adios2::Engine &inlineReader)
{
var.SetStepSelection({step, 1});
auto blocksInfo = inlineReader.BlocksInfo(var, step);
ASSERT_EQ(blocksInfo.size(), 1);
}
TEST_F(InlineWriteRead, InlineWriteRead1D8)
{
// Each process would write a 1x8 array and all processes would
// form a mpiSize * Nx 1D array
const std::string fname("InlineWriteRead1D8");
int mpiRank = 0, mpiSize = 1;
// Number of rows
const size_t Nx = 8;
// Number of steps
const size_t NSteps = 3;
#if ADIOS2_USE_MPI
MPI_Comm_rank(MPI_COMM_WORLD, &mpiRank);
MPI_Comm_size(MPI_COMM_WORLD, &mpiSize);
adios2::ADIOS adios(MPI_COMM_WORLD);
#else
adios2::ADIOS adios;
#endif
{
adios2::IO io = adios.DeclareIO("TestIO");
// Declare 1D variables (NumOfProcesses * Nx)
// The local process' part (start, count) can be defined now or later
// before Write().
{
const adios2::Dims shape{static_cast<size_t>(Nx * mpiSize)};
const adios2::Dims start{static_cast<size_t>(Nx * mpiRank)};
const adios2::Dims count{Nx};
auto var_iString = io.DefineVariable<std::string>("iString");
EXPECT_TRUE(var_iString);
auto var_i8 = io.DefineVariable<int8_t>("i8", shape, start, count);
EXPECT_TRUE(var_i8);
auto var_i16 = io.DefineVariable<int16_t>("i16", shape, start, count);
EXPECT_TRUE(var_i16);
auto var_i32 = io.DefineVariable<int32_t>("i32", shape, start, count);
EXPECT_TRUE(var_i32);
auto var_i64 = io.DefineVariable<int64_t>("i64", shape, start, count);
EXPECT_TRUE(var_i64);
auto var_u8 = io.DefineVariable<uint8_t>("u8", shape, start, count);
EXPECT_TRUE(var_u8);
auto var_u16 = io.DefineVariable<uint16_t>("u16", shape, start, count);
EXPECT_TRUE(var_u16);
auto var_u32 = io.DefineVariable<uint32_t>("u32", shape, start, count);
EXPECT_TRUE(var_u32);
auto var_u64 = io.DefineVariable<uint64_t>("u64", shape, start, count);
EXPECT_TRUE(var_u64);
auto var_r32 = io.DefineVariable<float>("r32", shape, start, count);
EXPECT_TRUE(var_r32);
auto var_r64 = io.DefineVariable<double>("r64", shape, start, count);
EXPECT_TRUE(var_r64);
auto var_cr32 = io.DefineVariable<std::complex<float>>("cr32", shape, start, count);
EXPECT_TRUE(var_cr32);
auto var_cr64 = io.DefineVariable<std::complex<double>>("cr64", shape, start, count);
EXPECT_TRUE(var_cr64);
}
// Create the Engine
io.SetEngine("Inline");
// writerID parameter makes sure the reader can find the writer.
io.SetParameter("verbose", "4");
adios2::Engine inlineWriter = io.Open(fname + "_write", adios2::Mode::Write);
adios2::Engine inlineReader = io.Open(fname + "_read", adios2::Mode::Read);
for (size_t step = 0; step < NSteps; ++step)
{
// Generate test data for each process uniquely
SmallTestData testData =
generateNewSmallTestData(m_TestData, static_cast<int>(step), mpiRank, mpiSize);
// Retrieve the variables that previously went out of scope
auto wvar_iString = io.InquireVariable<std::string>("iString");
auto wvar_i8 = io.InquireVariable<int8_t>("i8");
auto wvar_i16 = io.InquireVariable<int16_t>("i16");
auto wvar_i32 = io.InquireVariable<int32_t>("i32");
auto wvar_i64 = io.InquireVariable<int64_t>("i64");
auto wvar_u8 = io.InquireVariable<uint8_t>("u8");
auto wvar_u16 = io.InquireVariable<uint16_t>("u16");
auto wvar_u32 = io.InquireVariable<uint32_t>("u32");
auto wvar_u64 = io.InquireVariable<uint64_t>("u64");
auto wvar_r32 = io.InquireVariable<float>("r32");
auto wvar_r64 = io.InquireVariable<double>("r64");
auto wvar_cr32 = io.InquireVariable<std::complex<float>>("cr32");
auto wvar_cr64 = io.InquireVariable<std::complex<double>>("cr64");
// Make a 1D selection to describe the local dimensions of the
// variable we write and its offsets in the global spaces
adios2::Box<adios2::Dims> sel({mpiRank * Nx}, {Nx});
EXPECT_THROW(wvar_iString.SetSelection(sel), std::invalid_argument);
wvar_i8.SetSelection(sel);
wvar_i16.SetSelection(sel);
wvar_i32.SetSelection(sel);
wvar_i64.SetSelection(sel);
wvar_u8.SetSelection(sel);
wvar_u16.SetSelection(sel);
wvar_u32.SetSelection(sel);
wvar_u64.SetSelection(sel);
wvar_r32.SetSelection(sel);
wvar_r64.SetSelection(sel);
wvar_cr32.SetSelection(sel);
wvar_cr64.SetSelection(sel);
// Write each one
// fill in the variable with values from starting index to
// starting index + count
inlineWriter.BeginStep();
inlineWriter.Put(wvar_iString, testData.S1);
inlineWriter.Put(wvar_i8, testData.I8.data());
inlineWriter.Put(wvar_i16, testData.I16.data());
inlineWriter.Put(wvar_i32, testData.I32.data());
inlineWriter.Put(wvar_i64, testData.I64.data());
inlineWriter.Put(wvar_u8, testData.U8.data());
inlineWriter.Put(wvar_u16, testData.U16.data());
inlineWriter.Put(wvar_u32, testData.U32.data());
inlineWriter.Put(wvar_u64, testData.U64.data());
inlineWriter.Put(wvar_r32, testData.R32.data());
inlineWriter.Put(wvar_r64, testData.R64.data());
inlineWriter.Put(wvar_cr32, testData.CR32.data());
inlineWriter.Put(wvar_cr64, testData.CR64.data());
inlineWriter.EndStep();
// start reader section
auto var_iString = io.InquireVariable<std::string>("iString");
EXPECT_TRUE(var_iString);
ASSERT_EQ(var_iString.Shape().size(), 0);
auto var_i8 = io.InquireVariable<int8_t>("i8");
EXPECT_TRUE(var_i8);
ASSERT_EQ(var_i8.ShapeID(), adios2::ShapeID::GlobalArray);
ASSERT_EQ(var_i8.Shape()[0], mpiSize * Nx);
auto var_i16 = io.InquireVariable<int16_t>("i16");
EXPECT_TRUE(var_i16);
ASSERT_EQ(var_i16.ShapeID(), adios2::ShapeID::GlobalArray);
ASSERT_EQ(var_i16.Shape()[0], mpiSize * Nx);
auto var_i32 = io.InquireVariable<int32_t>("i32");
EXPECT_TRUE(var_i32);
ASSERT_EQ(var_i32.ShapeID(), adios2::ShapeID::GlobalArray);
ASSERT_EQ(var_i32.Shape()[0], mpiSize * Nx);
auto var_i64 = io.InquireVariable<int64_t>("i64");
EXPECT_TRUE(var_i64);
ASSERT_EQ(var_i64.ShapeID(), adios2::ShapeID::GlobalArray);
ASSERT_EQ(var_i64.Shape()[0], mpiSize * Nx);
auto var_u8 = io.InquireVariable<uint8_t>("u8");
EXPECT_TRUE(var_u8);
ASSERT_EQ(var_u8.ShapeID(), adios2::ShapeID::GlobalArray);
ASSERT_EQ(var_u8.Shape()[0], mpiSize * Nx);
auto var_u16 = io.InquireVariable<uint16_t>("u16");
EXPECT_TRUE(var_u16);
ASSERT_EQ(var_u16.ShapeID(), adios2::ShapeID::GlobalArray);
ASSERT_EQ(var_u16.Shape()[0], mpiSize * Nx);
auto var_u32 = io.InquireVariable<uint32_t>("u32");
EXPECT_TRUE(var_u32);
ASSERT_EQ(var_u32.ShapeID(), adios2::ShapeID::GlobalArray);
ASSERT_EQ(var_u32.Shape()[0], mpiSize * Nx);
auto var_u64 = io.InquireVariable<uint64_t>("u64");
EXPECT_TRUE(var_u64);
ASSERT_EQ(var_u64.ShapeID(), adios2::ShapeID::GlobalArray);
ASSERT_EQ(var_u64.Shape()[0], mpiSize * Nx);
auto var_r32 = io.InquireVariable<float>("r32");
EXPECT_TRUE(var_r32);
ASSERT_EQ(var_r32.ShapeID(), adios2::ShapeID::GlobalArray);
ASSERT_EQ(var_r32.Shape()[0], mpiSize * Nx);
auto var_r64 = io.InquireVariable<double>("r64");
EXPECT_TRUE(var_r64);
ASSERT_EQ(var_r64.ShapeID(), adios2::ShapeID::GlobalArray);
ASSERT_EQ(var_r64.Shape()[0], mpiSize * Nx);
auto var_cr32 = io.InquireVariable<std::complex<float>>("cr32");
EXPECT_TRUE(var_cr32);
ASSERT_EQ(var_cr32.ShapeID(), adios2::ShapeID::GlobalArray);
ASSERT_EQ(var_cr32.Shape()[0], mpiSize * Nx);
auto var_cr64 = io.InquireVariable<std::complex<double>>("cr64");
EXPECT_TRUE(var_cr64);
ASSERT_EQ(var_cr64.ShapeID(), adios2::ShapeID::GlobalArray);
ASSERT_EQ(var_cr64.Shape()[0], mpiSize * Nx);
std::string IString;
auto writerStep = inlineWriter.CurrentStep();
auto readerStep = inlineReader.CurrentStep();
ASSERT_EQ(writerStep, readerStep);
// Test skipping a step on the read side
if (step == 1)
{
continue;
}
inlineReader.BeginStep();
inlineReader.Get(var_iString, IString);
auto info_i8 = setSelection<int8_t>(var_i8, step, inlineReader);
auto info_i16 = setSelection<int16_t>(var_i16, step, inlineReader);
auto info_i32 = setSelection<int32_t>(var_i32, step, inlineReader);
auto info_i64 = setSelection<int64_t>(var_i64, step, inlineReader);
auto info_u8 = setSelection<uint8_t>(var_u8, step, inlineReader);
auto info_u16 = setSelection<uint16_t>(var_u16, step, inlineReader);
auto info_u32 = setSelection<uint32_t>(var_u32, step, inlineReader);
auto info_u64 = setSelection<uint64_t>(var_u64, step, inlineReader);
auto info_r32 = setSelection<float>(var_r32, step, inlineReader);
auto info_r64 = setSelection<double>(var_r64, step, inlineReader);
auto info_cr32 = setSelection<std::complex<float>>(var_cr32, step, inlineReader);
auto info_cr64 = setSelection<std::complex<double>>(var_cr64, step, inlineReader);
testBlocksInfo<int8_t>(var_i8, step, inlineReader);
testBlocksInfo<int16_t>(var_i16, step, inlineReader);
testBlocksInfo<int32_t>(var_i32, step, inlineReader);
testBlocksInfo<int64_t>(var_i64, step, inlineReader);
testBlocksInfo<uint8_t>(var_u8, step, inlineReader);
testBlocksInfo<uint16_t>(var_u16, step, inlineReader);
testBlocksInfo<uint32_t>(var_u32, step, inlineReader);
testBlocksInfo<uint64_t>(var_u64, step, inlineReader);
testBlocksInfo<float>(var_r32, step, inlineReader);
testBlocksInfo<double>(var_r64, step, inlineReader);
testBlocksInfo<std::complex<float>>(var_cr32, step, inlineReader);
testBlocksInfo<std::complex<double>>(var_cr64, step, inlineReader);
// Generate test data for each rank uniquely
SmallTestData currentTestData =
generateNewSmallTestData(m_TestData, static_cast<int>(step), mpiRank, mpiSize);
inlineReader.EndStep();
const int8_t *I8 = info_i8.Data();
const int16_t *I16 = info_i16.Data();
const int32_t *I32 = info_i32.Data();
const int64_t *I64 = info_i64.Data();
const uint8_t *U8 = info_u8.Data();
const uint16_t *U16 = info_u16.Data();
const uint32_t *U32 = info_u32.Data();
const uint64_t *U64 = info_u64.Data();
const float *R32 = info_r32.Data();
const double *R64 = info_r64.Data();
const std::complex<float> *CR32 = info_cr32.Data();
const std::complex<double> *CR64 = info_cr64.Data();
EXPECT_EQ(IString, currentTestData.S1);
for (size_t i = 0; i < Nx; ++i)
{
std::stringstream ss;
ss << "step=" << step << " i=" << i << " rank=" << mpiRank;
std::string msg = ss.str();
EXPECT_EQ(I8[i], currentTestData.I8[i]) << msg;
EXPECT_EQ(I16[i], currentTestData.I16[i]) << msg;
EXPECT_EQ(I32[i], currentTestData.I32[i]) << msg;
EXPECT_EQ(I64[i], currentTestData.I64[i]) << msg;
EXPECT_EQ(U8[i], currentTestData.U8[i]) << msg;
EXPECT_EQ(U16[i], currentTestData.U16[i]) << msg;
EXPECT_EQ(U32[i], currentTestData.U32[i]) << msg;
EXPECT_EQ(U64[i], currentTestData.U64[i]) << msg;
EXPECT_EQ(R32[i], currentTestData.R32[i]) << msg;
EXPECT_EQ(R64[i], currentTestData.R64[i]) << msg;
EXPECT_EQ(CR32[i], currentTestData.CR32[i]) << msg;
EXPECT_EQ(CR64[i], currentTestData.CR64[i]) << msg;
}
}
inlineWriter.Close();
inlineReader.Close();
}
}
//******************************************************************************
// 2D 2x4 test data
//******************************************************************************
TEST_F(InlineWriteRead, InlineWriteRead2D2x4)
{
// Each process would write a 2x4 array and all processes would
// form a 2D 2 * (numberOfProcess*Nx) matrix where Nx is 4 here
const std::string fname("InlineWriteRead2D2x4");
int mpiRank = 0, mpiSize = 1;
// Number of rows
const size_t Nx = 4;
const size_t Ny = 2;
// Number of steps
const size_t NSteps = 3;
#if ADIOS2_USE_MPI
MPI_Comm_rank(MPI_COMM_WORLD, &mpiRank);
MPI_Comm_size(MPI_COMM_WORLD, &mpiSize);
adios2::ADIOS adios(MPI_COMM_WORLD);
#else
adios2::ADIOS adios;
#endif
{
adios2::IO io = adios.DeclareIO("TestIO");
// Declare 2D variables (Ny * (NumOfProcesses * Nx))
// The local process' part (start, count) can be defined now or later
// before Write().
{
const adios2::Dims shape{Ny, static_cast<size_t>(Nx * mpiSize)};
const adios2::Dims start{0, static_cast<size_t>(mpiRank * Nx)};
const adios2::Dims count{Ny, Nx};
auto var_iString = io.DefineVariable<std::string>("iString");
EXPECT_TRUE(var_iString);
auto var_i8 = io.DefineVariable<int8_t>("i8", shape, start, count);
EXPECT_TRUE(var_i8);
auto var_i16 = io.DefineVariable<int16_t>("i16", shape, start, count);
EXPECT_TRUE(var_i16);
auto var_i32 = io.DefineVariable<int32_t>("i32", shape, start, count);
EXPECT_TRUE(var_i32);
auto var_i64 = io.DefineVariable<int64_t>("i64", shape, start, count);
EXPECT_TRUE(var_i64);
auto var_u8 = io.DefineVariable<uint8_t>("u8", shape, start, count);
EXPECT_TRUE(var_u8);
auto var_u16 = io.DefineVariable<uint16_t>("u16", shape, start, count);
EXPECT_TRUE(var_u16);
auto var_u32 = io.DefineVariable<uint32_t>("u32", shape, start, count);
EXPECT_TRUE(var_u32);
auto var_u64 = io.DefineVariable<uint64_t>("u64", shape, start, count);
EXPECT_TRUE(var_u64);
auto var_r32 = io.DefineVariable<float>("r32", shape, start, count);
EXPECT_TRUE(var_r32);
auto var_r64 = io.DefineVariable<double>("r64", shape, start, count);
EXPECT_TRUE(var_r64);
auto var_cr32 = io.DefineVariable<std::complex<float>>("cr32", shape, start, count);
EXPECT_TRUE(var_cr32);
auto var_cr64 = io.DefineVariable<std::complex<double>>("cr64", shape, start, count);
EXPECT_TRUE(var_cr64);
}
// Create the Engine
io.SetEngine("Inline");
// writerID parameter makes sure the reader can find the writer.
io.SetParameter("verbose", "4");
adios2::Engine inlineWriter = io.Open(fname + "_write", adios2::Mode::Write);
adios2::Engine inlineReader = io.Open(fname + "_read", adios2::Mode::Read);
for (size_t step = 0; step < NSteps; ++step)
{
// Generate test data for each process uniquely
SmallTestData testData =
generateNewSmallTestData(m_TestData, static_cast<int>(step), mpiRank, mpiSize);
// Retrieve the variables that previously went out of scope
auto wvar_iString = io.InquireVariable<std::string>("iString");
auto wvar_i8 = io.InquireVariable<int8_t>("i8");
auto wvar_i16 = io.InquireVariable<int16_t>("i16");
auto wvar_i32 = io.InquireVariable<int32_t>("i32");
auto wvar_i64 = io.InquireVariable<int64_t>("i64");
auto wvar_u8 = io.InquireVariable<uint8_t>("u8");
auto wvar_u16 = io.InquireVariable<uint16_t>("u16");
auto wvar_u32 = io.InquireVariable<uint32_t>("u32");
auto wvar_u64 = io.InquireVariable<uint64_t>("u64");
auto wvar_r32 = io.InquireVariable<float>("r32");
auto wvar_r64 = io.InquireVariable<double>("r64");
auto wvar_cr32 = io.InquireVariable<std::complex<float>>("cr32");
auto wvar_cr64 = io.InquireVariable<std::complex<double>>("cr64");
// Make a 2D selection to describe the local dimensions of the
// variable we write and its offsets in the global spaces
adios2::Box<adios2::Dims> sel({0, static_cast<size_t>(mpiRank * Nx)}, {Ny, Nx});
EXPECT_THROW(wvar_iString.SetSelection(sel), std::invalid_argument);
wvar_i8.SetSelection(sel);
wvar_i16.SetSelection(sel);
wvar_i32.SetSelection(sel);
wvar_i64.SetSelection(sel);
wvar_u8.SetSelection(sel);
wvar_u16.SetSelection(sel);
wvar_u32.SetSelection(sel);
wvar_u64.SetSelection(sel);
wvar_r32.SetSelection(sel);
wvar_r64.SetSelection(sel);
wvar_cr32.SetSelection(sel);
wvar_cr64.SetSelection(sel);
// Write each one
// fill in the variable with values from starting index to
// starting index + count
inlineWriter.BeginStep();
inlineWriter.Put(wvar_iString, testData.S1);
inlineWriter.Put(wvar_i8, testData.I8.data());
inlineWriter.Put(wvar_i16, testData.I16.data());
inlineWriter.Put(wvar_i32, testData.I32.data());
inlineWriter.Put(wvar_i64, testData.I64.data());
inlineWriter.Put(wvar_u8, testData.U8.data());
inlineWriter.Put(wvar_u16, testData.U16.data());
inlineWriter.Put(wvar_u32, testData.U32.data());
inlineWriter.Put(wvar_u64, testData.U64.data());
inlineWriter.Put(wvar_r32, testData.R32.data());
inlineWriter.Put(wvar_r64, testData.R64.data());
inlineWriter.Put(wvar_cr32, testData.CR32.data());
inlineWriter.Put(wvar_cr64, testData.CR64.data());
inlineWriter.EndStep();
// start reader section
auto var_iString = io.InquireVariable<std::string>("iString");
EXPECT_TRUE(var_iString);
ASSERT_EQ(var_iString.Shape().size(), 0);
auto var_i8 = io.InquireVariable<int8_t>("i8");
EXPECT_TRUE(var_i8);
ASSERT_EQ(var_i8.ShapeID(), adios2::ShapeID::GlobalArray);
ASSERT_EQ(var_i8.Shape()[0], Ny);
ASSERT_EQ(var_i8.Shape()[1], mpiSize * Nx);
auto var_i16 = io.InquireVariable<int16_t>("i16");
EXPECT_TRUE(var_i16);
ASSERT_EQ(var_i16.ShapeID(), adios2::ShapeID::GlobalArray);
ASSERT_EQ(var_i16.Shape()[0], Ny);
ASSERT_EQ(var_i16.Shape()[1], static_cast<size_t>(mpiSize * Nx));
auto var_i32 = io.InquireVariable<int32_t>("i32");
EXPECT_TRUE(var_i32);
ASSERT_EQ(var_i32.ShapeID(), adios2::ShapeID::GlobalArray);
ASSERT_EQ(var_i32.Shape()[0], Ny);
ASSERT_EQ(var_i32.Shape()[1], static_cast<size_t>(mpiSize * Nx));
auto var_i64 = io.InquireVariable<int64_t>("i64");
EXPECT_TRUE(var_i64);
ASSERT_EQ(var_i64.ShapeID(), adios2::ShapeID::GlobalArray);
ASSERT_EQ(var_i64.Shape()[0], Ny);
ASSERT_EQ(var_i64.Shape()[1], static_cast<size_t>(mpiSize * Nx));
auto var_u8 = io.InquireVariable<uint8_t>("u8");
EXPECT_TRUE(var_u8);
ASSERT_EQ(var_u8.ShapeID(), adios2::ShapeID::GlobalArray);
ASSERT_EQ(var_u8.Shape()[0], Ny);
ASSERT_EQ(var_u8.Shape()[1], static_cast<size_t>(mpiSize * Nx));
auto var_u16 = io.InquireVariable<uint16_t>("u16");
EXPECT_TRUE(var_u16);
ASSERT_EQ(var_u16.ShapeID(), adios2::ShapeID::GlobalArray);
ASSERT_EQ(var_u16.Shape()[0], Ny);
ASSERT_EQ(var_u16.Shape()[1], static_cast<size_t>(mpiSize * Nx));
auto var_u32 = io.InquireVariable<uint32_t>("u32");
EXPECT_TRUE(var_u32);
ASSERT_EQ(var_u32.ShapeID(), adios2::ShapeID::GlobalArray);
ASSERT_EQ(var_u32.Shape()[0], Ny);
ASSERT_EQ(var_u32.Shape()[1], static_cast<size_t>(mpiSize * Nx));
auto var_u64 = io.InquireVariable<uint64_t>("u64");
EXPECT_TRUE(var_u64);
ASSERT_EQ(var_u64.ShapeID(), adios2::ShapeID::GlobalArray);
ASSERT_EQ(var_u64.Shape()[0], Ny);
ASSERT_EQ(var_u64.Shape()[1], static_cast<size_t>(mpiSize * Nx));
auto var_r32 = io.InquireVariable<float>("r32");
EXPECT_TRUE(var_r32);
ASSERT_EQ(var_r32.ShapeID(), adios2::ShapeID::GlobalArray);
ASSERT_EQ(var_r32.Shape()[0], Ny);
ASSERT_EQ(var_r32.Shape()[1], static_cast<size_t>(mpiSize * Nx));
auto var_r64 = io.InquireVariable<double>("r64");
EXPECT_TRUE(var_r64);
ASSERT_EQ(var_r64.ShapeID(), adios2::ShapeID::GlobalArray);
ASSERT_EQ(var_r64.Shape()[0], Ny);
ASSERT_EQ(var_r64.Shape()[1], static_cast<size_t>(mpiSize * Nx));
auto var_cr32 = io.InquireVariable<std::complex<float>>("cr32");
EXPECT_TRUE(var_cr32);
ASSERT_EQ(var_cr32.ShapeID(), adios2::ShapeID::GlobalArray);
ASSERT_EQ(var_cr32.Shape()[0], Ny);
ASSERT_EQ(var_cr32.Shape()[1], static_cast<size_t>(mpiSize * Nx));
auto var_cr64 = io.InquireVariable<std::complex<double>>("cr64");
EXPECT_TRUE(var_cr64);
ASSERT_EQ(var_cr64.ShapeID(), adios2::ShapeID::GlobalArray);
ASSERT_EQ(var_cr64.Shape()[0], Ny);
ASSERT_EQ(var_cr64.Shape()[1], static_cast<size_t>(mpiSize * Nx));
std::string IString;
inlineReader.BeginStep();
inlineReader.Get(var_iString, IString);
auto info_i8 = setSelection<int8_t>(var_i8, step, inlineReader);
auto info_i16 = setSelection<int16_t>(var_i16, step, inlineReader);
auto info_i32 = setSelection<int32_t>(var_i32, step, inlineReader);
auto info_i64 = setSelection<int64_t>(var_i64, step, inlineReader);
auto info_u8 = setSelection<uint8_t>(var_u8, step, inlineReader);
auto info_u16 = setSelection<uint16_t>(var_u16, step, inlineReader);
auto info_u32 = setSelection<uint32_t>(var_u32, step, inlineReader);
auto info_u64 = setSelection<uint64_t>(var_u64, step, inlineReader);
auto info_r32 = setSelection<float>(var_r32, step, inlineReader);
auto info_r64 = setSelection<double>(var_r64, step, inlineReader);
auto info_cr32 = setSelection<std::complex<float>>(var_cr32, step, inlineReader);
auto info_cr64 = setSelection<std::complex<double>>(var_cr64, step, inlineReader);
// Generate test data for each rank uniquely
SmallTestData currentTestData =
generateNewSmallTestData(m_TestData, static_cast<int>(step), mpiRank, mpiSize);
inlineReader.EndStep();
const int8_t *I8 = info_i8.Data();
const int16_t *I16 = info_i16.Data();
const int32_t *I32 = info_i32.Data();
const int64_t *I64 = info_i64.Data();
const uint8_t *U8 = info_u8.Data();
const uint16_t *U16 = info_u16.Data();
const uint32_t *U32 = info_u32.Data();
const uint64_t *U64 = info_u64.Data();
const float *R32 = info_r32.Data();
const double *R64 = info_r64.Data();
const std::complex<float> *CR32 = info_cr32.Data();
const std::complex<double> *CR64 = info_cr64.Data();
EXPECT_EQ(IString, currentTestData.S1);
for (size_t i = 0; i < Nx * Ny; ++i)
{
std::stringstream ss;
ss << "step=" << step << " i=" << i << " rank=" << mpiRank;
std::string msg = ss.str();
EXPECT_EQ(I8[i], currentTestData.I8[i]) << msg;
EXPECT_EQ(I16[i], currentTestData.I16[i]) << msg;
EXPECT_EQ(I32[i], currentTestData.I32[i]) << msg;
EXPECT_EQ(I64[i], currentTestData.I64[i]) << msg;
EXPECT_EQ(U8[i], currentTestData.U8[i]) << msg;
EXPECT_EQ(U16[i], currentTestData.U16[i]) << msg;
EXPECT_EQ(U32[i], currentTestData.U32[i]) << msg;
EXPECT_EQ(U64[i], currentTestData.U64[i]) << msg;
EXPECT_EQ(R32[i], currentTestData.R32[i]) << msg;
EXPECT_EQ(R64[i], currentTestData.R64[i]) << msg;
EXPECT_EQ(CR32[i], currentTestData.CR32[i]) << msg;
EXPECT_EQ(CR64[i], currentTestData.CR64[i]) << msg;
}
}
inlineWriter.Close();
inlineReader.Close();
}
}
TEST_F(InlineWriteRead, InlineWriteReadContracts)
{
const std::string fname("InlineWriteReadContracts");
int mpiRank = 0, mpiSize = 1;
// Number of rows
const size_t Nx = 8;
// Number of steps
const size_t NSteps = 3;
#if ADIOS2_USE_MPI
MPI_Comm_rank(MPI_COMM_WORLD, &mpiRank);
MPI_Comm_size(MPI_COMM_WORLD, &mpiSize);
adios2::ADIOS adios(MPI_COMM_WORLD);
#else
adios2::ADIOS adios;
#endif
{
adios2::IO io = adios.DeclareIO("TestIO");
// Declare 1D variables (NumOfProcesses * Nx)
// The local process' part (start, count) can be defined now or later
// before Write().
{
const adios2::Dims shape{static_cast<size_t>(Nx * mpiSize)};
const adios2::Dims start{static_cast<size_t>(Nx * mpiRank)};
const adios2::Dims count{Nx};
auto var_iString = io.DefineVariable<std::string>("iString");
EXPECT_TRUE(var_iString);
auto var_i32 = io.DefineVariable<int32_t>("i32", shape, start, count);
EXPECT_TRUE(var_i32);
}
// Create the Engine
io.SetEngine("Inline");
// writerID parameter makes sure the reader can find the writer.
io.SetParameter("verbose", "4");
adios2::Engine inlineWriter = io.Open(fname + "_write", adios2::Mode::Write);
adios2::Engine inlineReader = io.Open(fname + "_read", adios2::Mode::Read);
// Want to test that the engine correctly fails when using the engine
// incorrectly
for (size_t step = 0; step < NSteps; ++step)
{
// Generate test data for each process uniquely
SmallTestData testData =
generateNewSmallTestData(m_TestData, static_cast<int>(step), mpiRank, mpiSize);
// Retrieve the variables that previously went out of scope
auto wvar_iString = io.InquireVariable<std::string>("iString");
auto wvar_i32 = io.InquireVariable<int32_t>("i32");
// Make a 1D selection to describe the local dimensions of the
// variable we write and its offsets in the global spaces
adios2::Box<adios2::Dims> sel({mpiRank * Nx}, {Nx});
EXPECT_THROW(wvar_iString.SetSelection(sel), std::invalid_argument);
wvar_i32.SetSelection(sel);
EXPECT_THROW(inlineWriter.EndStep(), std::runtime_error);
ASSERT_EQ(inlineWriter.BeginStep(), adios2::StepStatus::OK);
EXPECT_THROW(inlineWriter.BeginStep(), std::runtime_error);
ASSERT_EQ(inlineReader.BeginStep(), adios2::StepStatus::NotReady);
EXPECT_THROW(inlineReader.EndStep(), std::runtime_error);
inlineWriter.Put(wvar_iString, testData.S1, adios2::Mode::Sync);
EXPECT_THROW(inlineWriter.Put(wvar_i32, testData.I32.data(), adios2::Mode::Sync),
std::invalid_argument);
inlineWriter.Put(wvar_i32, testData.I32.data());
inlineWriter.EndStep();
auto var_iString = io.InquireVariable<std::string>("iString");
EXPECT_TRUE(var_iString);
ASSERT_EQ(var_iString.Shape().size(), 0);
auto var_i32 = io.InquireVariable<int32_t>("i32");
EXPECT_TRUE(var_i32);
ASSERT_EQ(var_i32.ShapeID(), adios2::ShapeID::GlobalArray);
ASSERT_EQ(var_i32.Shape()[0], mpiSize * Nx);
EXPECT_THROW(inlineReader.EndStep(), std::runtime_error);
ASSERT_EQ(inlineReader.BeginStep(), adios2::StepStatus::OK);
EXPECT_THROW(inlineReader.BeginStep(), std::runtime_error);
ASSERT_EQ(inlineWriter.BeginStep(), adios2::StepStatus::NotReady);
EXPECT_THROW(inlineWriter.EndStep(), std::runtime_error);
std::string IString;
inlineReader.Get(var_iString, IString);
auto info_i32 = setSelection<int32_t>(var_i32, step, inlineReader);
testBlocksInfo<int32_t>(var_i32, step, inlineReader);
// Generate test data for each rank uniquely
SmallTestData currentTestData =
generateNewSmallTestData(m_TestData, static_cast<int>(step), mpiRank, mpiSize);
const int32_t *testI32 = info_i32.Data();
EXPECT_EQ(testI32, nullptr);
inlineReader.EndStep();
EXPECT_EQ(IString, currentTestData.S1);
const int32_t *I32 = info_i32.Data();
for (size_t i = 0; i < Nx; ++i)
{
std::stringstream ss;
ss << "step=" << step << " i=" << i << " rank=" << mpiRank;
std::string msg = ss.str();
EXPECT_EQ(I32[i], currentTestData.I32[i]) << msg;
}
}
inlineWriter.Close();
inlineReader.Close();
}
}
TEST_F(InlineWriteRead, InlineWriteReadContracts2)
{
const std::string fname("InlineWriteReadContracts2");
int mpiRank = 0, mpiSize = 1;
// Number of rows
const size_t Nx = 8;
// Number of steps
const size_t NSteps = 3;
#if ADIOS2_USE_MPI
MPI_Comm_rank(MPI_COMM_WORLD, &mpiRank);
MPI_Comm_size(MPI_COMM_WORLD, &mpiSize);
adios2::ADIOS adios(MPI_COMM_WORLD);
#else
adios2::ADIOS adios;
#endif
{
adios2::IO io = adios.DeclareIO("TestIO");
// Declare 1D variables (NumOfProcesses * Nx)
// The local process' part (start, count) can be defined now or later
// before Write().
{
const adios2::Dims shape{static_cast<size_t>(Nx * mpiSize)};
const adios2::Dims start{static_cast<size_t>(Nx * mpiRank)};
const adios2::Dims count{Nx};
auto var_iString = io.DefineVariable<std::string>("iString");
EXPECT_TRUE(var_iString);
auto var_i32 = io.DefineVariable<int32_t>("i32", shape, start, count);
EXPECT_TRUE(var_i32);
}
// Create the Engine
io.SetEngine("Inline");
// writerID parameter makes sure the reader can find the writer.
io.SetParameter("verbose", "4");
adios2::Engine inlineWriter = io.Open(fname + "_write", adios2::Mode::Write);
adios2::Engine inlineReader = io.Open(fname + "_read", adios2::Mode::Read);
// Want to test that the engine correctly fails when using the engine
// incorrectly
for (size_t step = 0; step < NSteps; ++step)
{
// Generate test data for each process uniquely
SmallTestData testData =
generateNewSmallTestData(m_TestData, static_cast<int>(step), mpiRank, mpiSize);
// Retrieve the variables that previously went out of scope
auto wvar_iString = io.InquireVariable<std::string>("iString");
auto wvar_i32 = io.InquireVariable<int32_t>("i32");
// Make a 1D selection to describe the local dimensions of the
// variable we write and its offsets in the global spaces
adios2::Box<adios2::Dims> sel({mpiRank * Nx}, {Nx});
EXPECT_THROW(wvar_iString.SetSelection(sel), std::invalid_argument);
wvar_i32.SetSelection(sel);
inlineWriter.Put(wvar_iString, testData.S1);
EXPECT_THROW(inlineWriter.Put(wvar_i32, testData.I32.data(), adios2::Mode::Sync),
std::invalid_argument);
inlineWriter.Put(wvar_i32, testData.I32.data());
inlineWriter.PerformPuts();
auto var_iString = io.InquireVariable<std::string>("iString");
EXPECT_TRUE(var_iString);
ASSERT_EQ(var_iString.Shape().size(), 0);
auto var_i32 = io.InquireVariable<int32_t>("i32");
EXPECT_TRUE(var_i32);
ASSERT_EQ(var_i32.ShapeID(), adios2::ShapeID::GlobalArray);
ASSERT_EQ(var_i32.Shape()[0], mpiSize * Nx);
std::string IString;
inlineReader.Get(var_iString, IString, adios2::Mode::Sync);
auto info_i32 = setSelection<int32_t>(var_i32, step, inlineReader);
testBlocksInfo<int32_t>(var_i32, step, inlineReader);
// Generate test data for each rank uniquely
SmallTestData currentTestData =
generateNewSmallTestData(m_TestData, static_cast<int>(step), mpiRank, mpiSize);
const int32_t *testI32 = info_i32.Data();
EXPECT_EQ(testI32, nullptr);
inlineReader.PerformGets();
EXPECT_EQ(IString, currentTestData.S1);
const int32_t *I32 = info_i32.Data();
for (size_t i = 0; i < Nx; ++i)
{
std::stringstream ss;
ss << "step=" << step << " i=" << i << " rank=" << mpiRank;
std::string msg = ss.str();
EXPECT_EQ(I32[i], currentTestData.I32[i]) << msg;
}
}
inlineWriter.Close();
inlineReader.Close();
}
}
TEST_F(InlineWriteRead, IOInvariants)
{
#if ADIOS2_USE_MPI
int mpiRank = 0, mpiSize = 1;
MPI_Comm_rank(MPI_COMM_WORLD, &mpiRank);
MPI_Comm_size(MPI_COMM_WORLD, &mpiSize);
adios2::ADIOS adios(MPI_COMM_WORLD);
#else
adios2::ADIOS adios;
#endif
adios2::IO io = adios.DeclareIO("TestIO");
io.SetEngine("Inline");
adios2::Engine inlineWriter = io.Open("writer", adios2::Mode::Write);
EXPECT_TRUE(inlineWriter);
// The inline engine does not support multiple writers:
EXPECT_THROW(io.Open("another_writer", adios2::Mode::Write), std::exception);
// The inline engine does not support append mode:
EXPECT_THROW(io.Open("append_mode", adios2::Mode::Append), std::exception);
adios2::Engine inlineReader = io.Open("reader", adios2::Mode::Read);
EXPECT_TRUE(inlineReader);
// The inline engine does not support more than 2 writers or readers:
EXPECT_THROW(io.Open("reader2", adios2::Mode::Read), std::exception);
}
TEST_F(InlineWriteRead, PointerArithmetic)
{
int mpiRank = 0, mpiSize = 1;
#if ADIOS2_USE_MPI
MPI_Comm_rank(MPI_COMM_WORLD, &mpiRank);
MPI_Comm_size(MPI_COMM_WORLD, &mpiSize);
adios2::ADIOS adios(MPI_COMM_WORLD);
std::cout << "Using " << mpiSize << " ranks\n";
#else
adios2::ADIOS adios;
std::cout << "Using serial version of inline reader.\n";
#endif
adios2::IO io = adios.DeclareIO("TestIO");
io.SetEngine("Inline");
adios2::Engine writer = io.Open("writer", adios2::Mode::Write);
adios2::Engine reader = io.Open("reader", adios2::Mode::Read);
size_t N = 256;
// Test local array:
auto local_array = io.DefineVariable<double>("u", {}, {}, {N}, adios2::ConstantDims);
// Test global array:
auto global_array =
io.DefineVariable<double>("v", {mpiSize * N}, {mpiRank * N}, {N}, adios2::ConstantDims);
for (int64_t timeStep = 0; timeStep < 2; ++timeStep)
{
writer.BeginStep();
std::vector<double> sim_data(N, 3.2);
writer.Put(local_array, sim_data.data());
writer.Put(global_array, sim_data.data());
writer.EndStep();
reader.BeginStep();
double *local_data = nullptr;
reader.Get(local_array, &local_data);
double *global_data = nullptr;
reader.Get(global_array, &global_data);
// The data is valid before Endstep():
EXPECT_EQ(sim_data.data(), local_data);
EXPECT_EQ(sim_data.data(), global_data);
reader.EndStep();
// And it is valid after EndStep():
EXPECT_EQ(sim_data.data(), global_data);
EXPECT_EQ(sim_data.data(), local_data);
}
}
//******************************************************************************
// main
//******************************************************************************
int main(int argc, char **argv)
{
#if ADIOS2_USE_MPI
int provided;
// MPI_THREAD_MULTIPLE is only required if you enable the SST MPI_DP
MPI_Init_thread(nullptr, nullptr, MPI_THREAD_MULTIPLE, &provided);
#endif
int result;
::testing::InitGoogleTest(&argc, argv);
result = RUN_ALL_TESTS();
#if ADIOS2_USE_MPI
MPI_Finalize();
#endif
return result;
}
|
2dc07be5f1a37009f92be1ccf4d443feb8646589
|
83b8a9e0ba13a792f44fca455ba01043b9a81c78
|
/201909_Algorithm/201909_Algorithm/BOJ_2573.cpp
|
525ccbb0eca61ffaacf8f0363f99329cc6123d0b
|
[] |
no_license
|
BoGyuPark/VS_BOJ
|
0799a0c62fd72a6fc1e6f7e34fc539a742c0782b
|
965973600dedbd5f3032c3adb4b117cc43c62a8f
|
refs/heads/master
| 2020-04-14T12:45:53.930735
| 2019-12-04T03:06:44
| 2019-12-04T03:06:44
| 163,849,994
| 0
| 0
| null | null | null | null |
UHC
|
C++
| false
| false
| 2,092
|
cpp
|
BOJ_2573.cpp
|
/*BOJ 2573 빙산*/
#include<iostream>
#include<queue>
#include<vector>
#include<cstring>
using namespace std;
int n, m, map[301][301], check[301][301], t, iceSize, ans;
int dx[] = { 0,0,-1,1 };
int dy[] = { 1,-1,0,0 };
struct info {
int x, y, Size;
};
vector<info> v;
queue<pair<int, int>> q;
void reduceIce() {
//빙하의 크기를 줄이기 위해 4방향 탐색하여 물이 닿는 부분 체크
for (int i = 0; i < v.size(); i++) {
if (v[i].Size <= 0) continue;
int x = v[i].x, y = v[i].y;
int waterCnt = 0;
for (int j = 0; j < 4; j++) {
int nx = x + dx[j], ny = y + dy[j];
if (nx < 0 || ny < 0 || nx >= n || ny >= m) continue;
if (map[nx][ny] <= 0) waterCnt++;
}
v[i].Size -= waterCnt;
//빙하의 부분이 없어지면 빙하크기 감소
if (v[i].Size <= 0) iceSize--;
}
//물이 닿는 크기만큼 해당 좌표에서 빼준다.
for (int i = 0; i < v.size(); i++) {
if (map[v[i].x][v[i].y] <= 0) continue;
map[v[i].x][v[i].y] = v[i].Size;
}
}
bool IceSizeCheck() {
int cnt = 0;
memset(check, 0, sizeof(check));
for (int i = 0; i < v.size(); i++) {
if (v[i].Size <= 0) continue;
if (check[v[i].x][v[i].y] == true) continue;
q.push({ v[i].x,v[i].y });
check[v[i].x][v[i].y] = true;
cnt++;
if (cnt > 1) return true;
while (!q.empty()) {
int x = q.front().first, y = q.front().second;
q.pop();
for (int j = 0; j < 4; j++) {
int nx = x + dx[j], ny = y + dy[j];
if (nx < 0 || ny < 0 || nx >= n || ny >= m) continue;
if (check[nx][ny]) continue;
if (map[nx][ny] > 0) {
q.push({ nx,ny });
check[nx][ny] = true;
}
}
}
}
return false;
}
int main() {
ios_base::sync_with_stdio(0); cin.tie(0);
cin >> n >> m;
for (int i = 0; i < n; i++) {
for (int j = 0; j < m; j++) {
cin >> map[i][j];
if (map[i][j] != 0) v.push_back({ i,j,map[i][j] });
}
}
iceSize = v.size();
while (true) {
t++;
//빙하 줄이기
reduceIce();
if (iceSize == 0) {
ans = 0;
break;
}
//빙하 덩어리 체크
if (IceSizeCheck()) {
ans = t;
break;
}
}
cout << ans;
}
|
7600bb42e0d5f44dbeeb6703a0f4140a525f08f5
|
1bd9e3cda029e15d43a2e537663495ff27e317e2
|
/buoyantPimpleFoam_timevaryingBC/timevaryingCavityFoam/68/nut
|
baa42cb32a2cfc7450f5944551346134c9ed7661
|
[] |
no_license
|
tsam1307/OpenFoam_heatTrf
|
810b81164d3b67001bfce5ab9311d9b3d45b5c9d
|
799753d24862607a3383aa582a6d9e23840c3b15
|
refs/heads/main
| 2023-08-10T23:27:40.420639
| 2021-09-18T12:46:01
| 2021-09-18T12:46:01
| 382,377,763
| 1
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,052,569
|
nut
|
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: v2006 |
| \\ / A nd | Website: www.openfoam.com |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class volScalarField;
location "68";
object nut;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [0 2 -1 0 0 0 0];
internalField nonuniform List<scalar>
78750
(
1.82748e-07
1.32416e-07
9.48829e-07
7.7026e-07
1.75862e-06
2.6407e-07
1.26922e-06
6.75461e-07
6.25081e-07
7.17951e-07
9.74284e-07
1.18226e-06
3.6649e-06
4.41713e-06
1.19194e-05
1.70483e-05
2.16081e-05
2.38492e-05
2.67046e-05
2.76263e-05
2.85197e-05
2.94418e-05
3.12791e-05
3.26354e-05
3.44629e-05
3.4928e-05
3.55096e-05
3.0577e-05
3.16852e-05
2.57664e-05
1.4464e-05
4.72915e-07
6.8978e-07
1.28151e-06
4.07897e-07
9.25437e-06
5.0577e-06
1.00916e-05
3.7442e-05
3.43186e-05
2.69785e-05
2.56641e-05
2.27616e-05
3.49543e-05
4.87902e-05
6.81323e-05
2.8221e-05
9.20837e-05
7.09266e-05
3.77336e-05
5.46567e-05
5.4419e-05
5.66186e-05
4.41978e-05
4.94355e-05
6.86618e-05
0.000105834
0.000153533
0.000114142
8.63695e-05
7.84481e-05
7.61049e-05
7.15494e-05
5.88364e-05
4.98092e-05
3.11231e-05
2.18976e-05
1.24447e-05
1.28951e-05
9.79768e-06
9.98146e-06
1.0736e-05
2.20976e-05
4.70769e-05
3.50527e-06
1.34156e-05
4.1007e-05
0.000107891
8.08782e-05
2.1515e-05
9.41727e-06
4.11012e-05
3.17841e-05
6.27899e-06
4.84145e-05
6.85161e-05
1.79649e-05
8.97758e-05
7.01203e-05
8.47963e-05
8.06876e-05
7.59156e-05
6.39648e-05
5.33837e-05
4.95397e-05
5.11827e-05
6.17321e-05
6.0579e-05
4.24911e-05
2.87117e-05
1.67982e-05
1.05993e-05
1.23507e-05
8.67543e-05
1.05341e-05
1.00222e-05
4.16493e-05
1.48766e-05
3.28963e-05
5.65853e-05
1.90792e-05
5.86947e-07
7.84037e-07
3.61308e-06
1.66409e-06
5.48372e-06
1.53907e-05
3.75119e-05
1.9895e-05
2.65169e-05
4.44635e-05
4.06564e-05
4.64231e-05
5.43352e-05
6.51339e-05
7.18579e-05
8.34388e-05
8.12287e-05
6.54459e-05
4.0645e-05
2.09888e-05
1.79544e-05
2.50459e-05
3.05792e-05
3.28983e-05
3.48644e-05
4.18462e-05
6.67859e-05
4.95856e-05
1.0385e-05
1.01057e-05
4.68931e-05
9.78527e-05
0.000108913
0.000158222
0.000340476
0.000258354
9.0855e-05
7.64288e-05
0.000149716
0.000247475
0.000225385
0.000178464
0.000149712
0.000122783
0.000118528
0.000103769
0.000100882
9.33036e-05
9.21621e-05
9.54805e-05
0.000103976
0.00011502
3.92521e-05
1.83588e-05
2.3756e-05
1.6879e-05
7.3147e-06
6.78737e-06
8.55927e-06
1.00463e-05
1.12518e-05
2.06547e-05
7.52644e-05
8.8674e-06
9.16953e-06
6.11333e-05
0.000153564
0.000180738
0.000151769
0.000146102
0.000150837
0.000153436
0.000149928
0.000139679
0.000126478
0.000112859
9.90832e-05
8.65777e-05
7.35732e-05
6.09855e-05
5.21895e-05
4.89614e-05
5.35627e-05
6.99783e-05
7.49569e-05
5.20906e-05
3.99266e-05
5.46508e-06
2.46417e-06
4.47523e-06
7.33329e-06
8.88301e-06
1.6266e-05
2.51118e-05
2.56525e-05
2.87902e-05
5.31591e-05
5.58721e-05
7.74876e-06
1.17394e-06
1.22832e-05
1.34872e-05
5.57176e-05
8.40597e-05
7.83514e-05
4.934e-05
4.14179e-05
4.01866e-05
3.75375e-05
3.39745e-05
3.14697e-05
3.03466e-05
3.08191e-05
3.40198e-05
4.34584e-05
5.91883e-05
4.45911e-05
3.357e-05
3.22268e-05
3.41252e-05
3.31628e-05
2.87341e-05
3.28373e-05
6.85093e-05
2.49082e-05
2.43442e-05
4.61192e-05
6.03416e-05
3.8334e-05
2.68397e-05
2.10297e-05
2.77873e-05
7.15626e-05
6.61973e-06
8.3777e-06
1.97811e-05
2.88129e-05
4.39795e-05
4.09441e-05
4.91123e-05
9.03228e-05
0.000156027
0.000148764
0.000130613
0.000120709
0.000115125
0.000114507
0.000116008
8.80004e-05
4.90039e-05
3.30713e-05
3.22869e-05
3.44729e-05
3.05102e-05
2.73011e-05
2.78349e-05
2.9006e-05
2.98944e-05
3.26439e-05
3.98433e-05
5.50247e-05
7.60906e-05
8.90571e-05
7.71384e-05
4.43889e-05
2.04811e-05
2.06697e-05
6.6745e-05
6.98008e-06
1.11193e-05
8.23562e-05
7.6755e-05
5.6976e-05
5.41154e-05
6.24149e-05
8.57733e-05
0.000126188
0.000174749
0.000211991
0.000233146
0.000198168
9.63948e-05
5.46277e-05
4.85189e-05
7.23301e-05
3.68721e-05
1.17686e-05
9.89955e-06
1.51199e-05
2.31602e-05
2.91461e-05
3.20976e-05
3.34243e-05
3.40117e-05
3.41948e-05
3.49105e-05
3.84204e-05
4.6543e-05
5.16586e-05
3.76664e-05
2.54425e-05
3.34952e-05
7.8721e-05
7.34062e-06
5.02185e-06
3.93952e-05
8.54307e-05
0.000117735
0.000138904
0.000175595
0.000226321
0.000256715
0.000246688
0.000210527
0.000169719
0.000123672
8.29462e-05
6.68759e-05
8.5337e-05
6.1899e-05
3.56872e-05
4.55369e-05
6.14296e-05
5.56836e-05
3.64423e-05
2.74565e-05
2.90341e-05
3.44755e-05
3.86562e-05
3.87618e-05
3.45761e-05
3.0096e-05
2.95807e-05
3.55778e-05
4.2517e-05
3.57552e-05
4.2727e-05
7.70013e-05
6.638e-06
8.03656e-06
0.000128215
0.00016135
0.00020616
0.000188777
0.00017635
0.000167686
0.000145102
0.000109803
8.20833e-05
7.1922e-05
8.14544e-05
0.000109699
8.28635e-05
6.21654e-05
6.87231e-05
9.32638e-05
0.000103025
8.74179e-05
7.09405e-05
6.62018e-05
7.49065e-05
8.4762e-05
8.12192e-05
7.32147e-05
6.46891e-05
5.15915e-05
3.42718e-05
2.23998e-05
1.90629e-05
2.2006e-05
3.10343e-05
5.14505e-05
5.90946e-05
6.69771e-06
5.7037e-06
6.63e-05
3.80532e-05
4.73162e-05
6.70634e-05
0.000241451
0.000258356
0.000253992
0.000247314
0.000238699
9.27835e-05
5.06616e-05
4.03461e-05
3.91877e-05
4.24963e-05
4.90349e-05
5.57068e-05
5.71279e-05
5.27591e-05
4.64017e-05
4.14869e-05
4.06313e-05
4.29696e-05
4.47542e-05
4.53825e-05
4.58325e-05
3.71216e-05
1.97556e-05
1.31607e-05
1.36118e-05
1.98011e-05
3.70952e-05
6.24859e-05
3.21623e-05
6.13245e-06
2.84349e-06
4.19432e-05
1.56257e-05
4.83489e-05
2.2361e-05
3.50962e-05
4.62199e-05
4.70547e-05
5.79149e-05
6.00553e-05
6.21713e-05
6.60282e-05
6.91642e-05
7.22946e-05
7.34951e-05
6.84243e-05
5.71842e-05
4.48105e-05
3.52713e-05
2.88889e-05
2.50885e-05
2.23819e-05
2.00221e-05
1.84255e-05
1.82831e-05
1.98262e-05
2.13843e-05
1.97298e-05
1.59806e-05
1.42438e-05
1.59409e-05
1.97817e-05
2.28782e-05
3.1319e-05
3.5704e-06
7.29049e-06
1.13741e-05
2.9238e-05
1.66635e-05
1.5487e-05
4.10965e-05
0.000101167
0.000117556
0.000129402
0.000139488
0.000147252
0.000145366
0.000115788
7.4301e-05
5.48847e-05
5.47664e-05
6.84649e-05
8.42789e-05
7.96386e-05
6.33377e-05
5.31751e-05
4.87164e-05
4.3028e-05
3.49216e-05
2.67133e-05
2.02822e-05
1.55273e-05
1.18499e-05
9.70345e-06
9.60983e-06
1.13297e-05
1.66447e-05
7.44355e-06
4.43605e-06
2.6375e-06
5.68863e-06
1.66248e-05
1.54706e-05
2.89153e-05
2.88286e-05
3.33434e-05
5.58456e-05
9.60593e-05
0.000139102
0.000159399
0.000159991
0.000155922
0.000154863
0.000160725
0.000169008
0.000166244
0.000154226
0.000138306
0.000109528
8.59526e-05
9.11942e-05
0.0001255
0.000130726
6.5941e-05
4.39938e-05
3.78519e-05
3.08271e-05
2.61728e-05
2.32283e-05
1.98923e-05
5.77294e-06
4.07247e-06
7.10991e-06
1.41008e-05
4.53828e-06
6.6427e-06
1.75026e-05
1.65969e-05
2.38383e-05
2.86712e-05
3.22415e-05
3.69829e-05
4.24704e-05
4.78348e-05
5.24899e-05
5.63762e-05
5.94675e-05
6.16784e-05
6.40194e-05
6.64762e-05
6.585e-05
6.12105e-05
6.00334e-05
5.3114e-05
2.91485e-05
1.60884e-05
1.40456e-05
5.99246e-06
5.40166e-06
1.10958e-05
2.35694e-05
3.01232e-05
2.70914e-05
2.09106e-05
1.21157e-05
3.706e-06
5.25662e-06
1.66467e-05
4.68931e-05
5.50847e-06
3.62827e-06
2.09508e-05
3.12755e-05
2.60914e-05
2.4438e-05
2.48212e-05
2.65889e-05
2.99661e-05
3.56634e-05
4.47877e-05
5.94912e-05
8.58948e-05
0.000132312
0.000173267
0.000140777
9.3257e-05
6.18663e-05
4.5015e-05
4.01932e-05
4.29831e-05
4.26109e-05
3.45806e-05
3.57024e-05
5.63474e-05
0.000111017
0.000130496
9.83294e-05
6.94538e-05
5.25211e-05
3.62762e-05
1.79352e-05
3.73916e-06
6.60572e-06
2.69931e-05
5.25647e-06
6.68032e-06
3.0212e-05
6.62618e-05
7.33567e-05
6.70563e-05
5.7019e-05
4.85221e-05
4.49911e-05
4.73661e-05
5.59558e-05
7.08968e-05
9.09456e-05
0.000112132
0.000128519
0.000136507
0.000141024
0.000158707
0.000218177
0.000226773
0.000223971
0.000220451
0.000216045
0.000207554
0.000164421
0.000133394
0.000111758
9.07557e-05
6.97877e-05
4.2654e-05
1.85518e-05
8.46826e-06
2.59538e-06
3.46326e-06
2.44557e-05
5.91526e-06
6.62506e-06
3.61827e-05
9.84736e-05
0.000114234
0.000107917
8.96046e-05
6.77722e-05
5.15041e-05
4.27508e-05
4.00658e-05
4.22034e-05
4.86396e-05
5.90893e-05
7.2933e-05
8.8623e-05
0.000103751
0.000116194
0.000125918
0.00013511
0.000145449
0.00015539
0.000160937
0.000158998
0.000150537
0.000137969
0.000122336
0.000105149
8.63523e-05
5.75576e-05
2.14023e-05
9.77821e-06
8.11973e-06
8.45305e-06
3.81297e-05
5.70213e-06
6.04629e-06
3.36784e-05
9.75241e-05
0.000142104
0.000155472
0.000149517
0.00012208
8.48822e-05
5.79167e-05
4.26085e-05
3.44578e-05
3.11353e-05
3.21557e-05
3.80272e-05
4.96335e-05
6.72576e-05
8.92581e-05
0.00011204
0.000132157
0.000147648
0.000157436
0.000161103
0.000159262
0.000153262
0.000144408
0.000133711
0.000122408
0.000112127
9.80316e-05
5.26654e-05
2.10412e-05
1.06956e-05
1.03171e-05
4.00795e-05
5.8623e-06
5.87125e-06
3.06783e-05
0.000101302
0.000163685
0.000177098
0.000173401
0.000164977
0.000152919
0.00013146
0.000101218
7.27598e-05
5.19019e-05
3.8382e-05
3.12532e-05
3.04373e-05
3.68991e-05
5.22118e-05
7.69036e-05
0.000108388
0.000141012
0.00016903
0.000188661
0.00019832
0.000198184
0.000189519
0.000173941
0.000152064
0.000120402
7.19389e-05
2.8177e-05
1.30677e-05
1.09475e-05
1.72731e-05
5.98416e-05
6.91227e-06
6.26566e-06
3.10283e-05
9.54061e-05
0.000139466
0.000145387
0.000135793
0.00011935
0.000105585
0.000101559
0.000109661
0.000125534
0.000128968
9.93898e-05
6.3106e-05
4.09354e-05
3.1608e-05
3.29621e-05
4.56751e-05
7.14437e-05
0.000109408
0.000152509
0.000189078
0.000210423
0.000214537
0.00020343
0.000180628
0.000148819
0.000104677
4.74155e-05
1.36928e-05
6.47661e-06
1.22819e-05
3.33126e-05
4.70377e-05
7.14521e-06
7.43527e-06
4.09273e-05
0.000116154
0.000148793
0.000149977
0.000139712
0.000122064
0.0001003
8.20589e-05
7.62057e-05
8.80116e-05
0.000121427
0.000168031
0.000173934
0.000107509
5.68731e-05
3.69928e-05
3.46152e-05
4.5679e-05
6.98492e-05
0.000104155
0.000139506
0.000165372
0.000177393
0.000176899
0.000166468
0.000147567
0.000117172
6.75706e-05
2.25699e-05
8.14701e-06
1.08244e-05
3.21949e-05
3.87763e-05
6.99499e-06
8.22835e-06
5.65284e-05
0.00015303
0.000163051
0.000152465
0.000137757
0.000126218
0.000117806
0.000107524
9.68102e-05
9.59272e-05
0.000113499
0.000153
0.00020093
0.000205657
0.000131613
6.81036e-05
4.35239e-05
4.09562e-05
5.24482e-05
7.39133e-05
9.94077e-05
0.000122935
0.000141663
0.000154281
0.000158353
0.000150981
0.000130212
9.28759e-05
4.40866e-05
1.55801e-05
1.04684e-05
2.18369e-05
4.7852e-05
7.28912e-06
7.86043e-06
5.23071e-05
0.000150205
0.000157226
0.000138179
0.000115124
0.000102019
0.000100839
0.000107639
0.000116239
0.000123441
0.000134225
0.000155595
0.000186596
0.000209695
0.000190814
0.000124923
7.18776e-05
5.06626e-05
5.07138e-05
6.41526e-05
8.32029e-05
0.000100487
0.000113556
0.000122494
0.000126118
0.000123112
0.000111049
8.44531e-05
4.47697e-05
1.74057e-05
1.11633e-05
2.38053e-05
4.91403e-05
7.72426e-06
7.06674e-06
4.18689e-05
0.000136771
0.00015288
0.000133541
0.000108032
9.21359e-05
8.67406e-05
8.90948e-05
9.73519e-05
0.000110098
0.000127031
0.000150132
0.000181191
0.000214849
0.00023138
0.000202221
0.000132872
8.01045e-05
5.97738e-05
6.18908e-05
7.46532e-05
8.29097e-05
8.44849e-05
8.92586e-05
0.00010065
0.000110812
0.000106534
7.99e-05
4.09822e-05
1.70182e-05
1.24958e-05
3.17001e-05
3.66681e-05
7.49592e-06
7.16209e-06
4.11004e-05
0.000141456
0.000161215
0.000129273
0.00010286
9.47498e-05
9.42811e-05
9.2684e-05
9.10962e-05
9.36848e-05
0.000102666
0.000119536
0.000146552
0.000184913
0.00022825
0.000254828
0.000231802
0.00015636
9.23642e-05
6.56454e-05
6.39648e-05
7.02204e-05
6.92249e-05
6.9437e-05
8.10813e-05
0.0001018
0.000112461
9.57427e-05
5.64845e-05
2.49947e-05
1.58882e-05
3.09213e-05
3.39085e-05
7.11031e-06
8.08061e-06
4.85428e-05
0.000150885
0.000142143
9.20219e-05
7.16185e-05
7.91138e-05
0.000103615
0.000124101
0.000123667
0.00011396
0.000109307
0.000113682
0.000127365
0.000151143
0.000185075
0.000223337
0.000247924
0.000232454
0.000171126
0.000107452
7.42206e-05
6.50493e-05
6.45024e-05
6.18332e-05
6.40221e-05
7.80711e-05
0.000100754
0.000110125
8.54021e-05
4.31252e-05
2.35937e-05
3.19548e-05
4.59537e-05
7.37969e-06
8.49562e-06
5.2652e-05
0.000127648
0.000100658
6.28775e-05
5.10946e-05
6.13869e-05
9.21819e-05
0.000136638
0.000165618
0.000161132
0.000142281
0.000130368
0.000130285
0.000140241
0.000158297
0.0001812
0.000200157
0.000200252
0.000172369
0.000128676
9.26745e-05
7.4307e-05
6.95991e-05
6.81594e-05
6.50167e-05
6.57979e-05
7.44859e-05
8.70773e-05
8.46684e-05
5.57071e-05
3.57304e-05
4.65618e-05
6.30882e-05
7.91938e-06
7.91029e-06
4.23522e-05
0.000104825
9.14985e-05
6.44152e-05
4.89046e-05
4.73436e-05
5.95501e-05
8.75853e-05
0.00012736
0.00015857
0.000162841
0.000148631
0.000135559
0.000131898
0.000136005
0.000143255
0.000148322
0.000146159
0.000134765
0.000117204
9.98427e-05
8.79504e-05
8.21459e-05
7.7926e-05
7.09528e-05
6.31611e-05
5.8685e-05
5.86561e-05
5.87294e-05
5.2033e-05
4.88597e-05
7.26311e-05
5.89441e-05
8.03092e-06
7.10636e-06
3.14941e-05
8.94247e-05
9.93354e-05
8.11317e-05
5.17703e-05
3.14631e-05
2.68108e-05
3.56048e-05
5.825e-05
9.55576e-05
0.000137405
0.000158997
0.000150828
0.000132278
0.000121389
0.000122096
0.000130679
0.000139866
0.000143719
0.000140013
0.000129621
0.000116372
0.000103722
9.17725e-05
7.85643e-05
6.36327e-05
4.99137e-05
4.17375e-05
4.10202e-05
4.54614e-05
5.68156e-05
8.87176e-05
4.93499e-05
7.82955e-06
7.13959e-06
2.98993e-05
8.3874e-05
0.000108643
9.96804e-05
7.33675e-05
3.81851e-05
1.73675e-05
1.36138e-05
2.21673e-05
4.1997e-05
7.57319e-05
0.000126042
0.000183821
0.000212164
0.000181433
0.00013226
0.000106805
0.000107106
0.00012213
0.000136693
0.000144757
0.000147429
0.00014443
0.000134684
0.000118009
9.49857e-05
6.82152e-05
4.49646e-05
3.3226e-05
3.48793e-05
5.15954e-05
8.7319e-05
4.42484e-05
7.70031e-06
7.69803e-06
3.56539e-05
0.000104913
0.000131637
0.000120604
9.57263e-05
6.08248e-05
2.96553e-05
1.44537e-05
1.43888e-05
2.55094e-05
4.45933e-05
6.91846e-05
9.94607e-05
0.000136174
0.000167521
0.000166568
0.000133131
0.000107502
0.000108368
0.000131893
0.000162264
0.000182473
0.000187703
0.00018024
0.000162605
0.000136302
0.000102606
6.67431e-05
4.09653e-05
3.28564e-05
4.28681e-05
7.90304e-05
4.66855e-05
7.99882e-06
8.1017e-06
4.23252e-05
0.000121154
0.000139311
0.000130235
0.000106604
7.40569e-05
4.36002e-05
2.42117e-05
1.79166e-05
2.42528e-05
3.93693e-05
5.3915e-05
6.13494e-05
6.71333e-05
7.9502e-05
0.00010198
0.000130168
0.000155106
0.000172967
0.000185318
0.000194094
0.000198706
0.000197223
0.000188135
0.000170846
0.000144996
0.000110563
7.21793e-05
4.29547e-05
3.23316e-05
4.20853e-05
8.31952e-05
4.80273e-05
8.41824e-06
7.98736e-06
4.24507e-05
0.000120515
0.000145077
0.000140462
0.000123117
9.77463e-05
6.64881e-05
3.6234e-05
1.70598e-05
1.15568e-05
1.96511e-05
3.79621e-05
5.67985e-05
7.06703e-05
8.432e-05
0.00010302
0.000124905
0.000143297
0.000155351
0.00016303
0.000169016
0.000174414
0.000177963
0.000176597
0.000166995
0.000146434
0.000113311
7.27039e-05
4.13674e-05
3.02153e-05
4.15497e-05
8.90912e-05
4.27254e-05
8.39674e-06
7.93222e-06
4.42823e-05
0.000127976
0.000159899
0.000155956
0.000135599
0.000106981
8.15598e-05
5.91603e-05
3.24917e-05
9.38882e-06
1.47473e-06
1.13852e-05
3.07962e-05
5.24061e-05
6.79071e-05
8.29443e-05
0.000105682
0.000135015
0.000160815
0.000175211
0.000179959
0.000180817
0.000180828
0.000178745
0.0001705
0.000151227
0.000117321
7.41135e-05
4.10205e-05
2.9024e-05
4.04463e-05
8.98925e-05
3.52244e-05
8.01229e-06
8.57369e-06
5.53428e-05
0.000153819
0.00018133
0.000176635
0.000159727
0.00013103
9.6441e-05
7.11625e-05
5.46581e-05
3.21848e-05
7.76884e-06
1.7012e-06
7.78261e-06
2.8541e-05
5.53903e-05
8.27724e-05
0.000111221
0.000141781
0.000168022
0.000181832
0.00018325
0.000178385
0.000172317
0.000166105
0.00015704
0.000140084
0.000110743
7.27987e-05
4.25907e-05
3.10453e-05
4.29664e-05
8.99868e-05
3.13549e-05
7.70025e-06
8.94881e-06
6.21611e-05
0.000165552
0.000183287
0.000176875
0.000164163
0.000147467
0.000120567
8.66243e-05
6.5701e-05
6.03236e-05
4.84815e-05
1.78262e-05
2.5338e-06
6.84706e-06
2.51868e-05
5.54707e-05
9.16958e-05
0.000122324
0.000145323
0.000160554
0.00016675
0.000165206
0.000159564
0.00015239
0.000143281
0.000128875
0.000105275
7.43393e-05
4.79424e-05
3.72134e-05
4.98029e-05
9.34407e-05
3.21026e-05
7.61333e-06
8.73735e-06
5.3639e-05
0.000146185
0.000170077
0.000165341
0.00015184
0.00013633
0.000119876
9.58119e-05
6.65413e-05
5.18129e-05
5.80473e-05
7.38054e-05
4.46646e-05
9.6798e-06
2.85098e-06
1.02897e-05
3.79157e-05
8.89323e-05
0.00014111
0.000167823
0.00017292
0.000166939
0.000156067
0.000143721
0.0001314
0.000118231
0.000101209
7.88044e-05
5.71519e-05
4.78034e-05
6.16961e-05
0.000103525
3.72493e-05
7.7674e-06
8.92053e-06
5.77944e-05
0.000152913
0.000170913
0.000163163
0.000148458
0.000132181
0.000117632
0.000105065
8.76761e-05
6.32114e-05
5.02607e-05
5.9612e-05
9.32684e-05
9.25419e-05
2.93696e-05
5.52432e-06
1.34676e-06
2.1201e-05
6.22774e-05
0.000113741
0.000149874
0.000163154
0.000160802
0.000150022
0.000135443
0.000119246
0.00010148
8.20031e-05
6.47418e-05
5.88051e-05
7.53822e-05
0.000114075
4.25861e-05
7.91521e-06
8.95886e-06
6.1234e-05
0.000159397
0.000172302
0.000165482
0.000152654
0.000135483
0.000113624
9.15381e-05
7.69265e-05
7.05383e-05
6.43108e-05
5.85121e-05
6.2714e-05
7.74772e-05
7.49619e-05
2.81391e-05
2.04874e-06
3.02247e-06
2.94772e-05
7.8875e-05
0.000127904
0.000150052
0.000150849
0.000140447
0.000125089
0.000108574
9.29473e-05
7.90178e-05
6.85904e-05
6.78552e-05
8.72674e-05
0.000122099
4.70492e-05
8.11712e-06
8.64611e-06
5.5276e-05
0.000152145
0.00017228
0.000167723
0.000157027
0.00014512
0.000129992
0.000106165
7.86068e-05
6.3005e-05
6.3948e-05
7.45228e-05
8.57811e-05
9.74005e-05
0.000107306
9.20871e-05
4.09007e-05
8.27696e-06
2.82566e-06
1.91493e-05
5.99529e-05
0.000108113
0.00013376
0.000137766
0.000128032
0.000110155
8.9998e-05
7.33729e-05
6.48446e-05
6.92276e-05
9.35937e-05
0.00012558
4.79881e-05
8.17719e-06
8.60093e-06
5.44819e-05
0.000148014
0.000165238
0.000156175
0.00014064
0.000127836
0.00012086
0.000115347
0.00010082
7.55656e-05
5.74684e-05
5.56475e-05
6.66158e-05
8.56102e-05
0.000110184
0.000136009
0.000141113
9.11397e-05
3.31127e-05
5.97759e-06
7.77952e-06
4.12042e-05
8.85285e-05
0.000113169
0.000113854
0.000102669
8.62677e-05
7.10166e-05
6.31333e-05
6.80888e-05
9.23912e-05
0.000124066
4.82153e-05
8.20234e-06
8.48162e-06
4.95051e-05
0.000136361
0.000161621
0.000158339
0.000144144
0.000127272
0.000115475
0.000111709
0.000112174
0.000105126
8.17052e-05
5.75523e-05
4.75927e-05
5.13823e-05
6.54084e-05
8.58737e-05
0.000107317
0.000119576
0.000101284
5.07715e-05
1.62929e-05
7.08102e-06
2.69375e-05
7.02816e-05
0.000106721
0.000110666
9.21564e-05
7.00562e-05
5.81509e-05
6.23803e-05
8.83239e-05
0.000121312
4.69859e-05
8.2286e-06
8.25192e-06
4.36914e-05
0.000122643
0.000155432
0.000156202
0.000144218
0.000126222
0.000110528
0.000103676
0.000106967
0.000115974
0.000117278
9.42639e-05
5.98406e-05
4.03503e-05
4.00517e-05
5.48216e-05
7.84346e-05
0.000101587
0.000113398
0.000101267
6.26335e-05
3.00156e-05
1.92541e-05
2.91226e-05
5.4451e-05
8.10297e-05
8.86407e-05
7.63881e-05
6.23972e-05
6.23262e-05
8.42471e-05
0.000118415
4.71228e-05
8.28343e-06
8.07858e-06
4.07063e-05
0.000116949
0.00015295
0.000156781
0.000147121
0.000128238
0.000107672
9.55927e-05
9.68609e-05
0.000110755
0.000129898
0.000134021
0.000100449
5.09226e-05
2.32531e-05
2.23999e-05
3.99541e-05
6.48307e-05
7.96501e-05
7.47222e-05
5.66228e-05
3.64852e-05
2.48464e-05
2.82677e-05
4.52653e-05
6.6979e-05
7.92397e-05
7.446e-05
6.25551e-05
6.05994e-05
8.02599e-05
0.000119201
4.97738e-05
8.62581e-06
8.14676e-06
4.19221e-05
0.000122235
0.000163577
0.000168657
0.000158928
0.000139533
0.000115207
9.58099e-05
9.02075e-05
0.000101765
0.000129943
0.000162568
0.000164561
0.000105044
3.94335e-05
1.05677e-05
1.16296e-05
2.91072e-05
4.84043e-05
5.20944e-05
4.11235e-05
2.87246e-05
2.36264e-05
2.99793e-05
4.67182e-05
6.594e-05
7.66616e-05
7.44683e-05
6.54049e-05
6.45799e-05
8.60876e-05
0.000127455
5.10419e-05
8.9366e-06
8.27694e-06
4.56142e-05
0.000142092
0.000182167
0.000179092
0.000162803
0.000144052
0.000124879
0.000106537
9.49971e-05
9.66308e-05
0.000116105
0.000156019
0.000206105
0.0002268
0.000153196
5.07315e-05
1.17229e-05
1.11066e-05
2.74017e-05
4.39865e-05
4.41233e-05
3.28578e-05
2.41464e-05
2.52499e-05
3.72249e-05
5.40112e-05
6.25553e-05
6.12869e-05
5.85831e-05
6.49192e-05
9.30136e-05
0.000133648
4.86583e-05
8.90718e-06
8.5501e-06
5.0832e-05
0.000166036
0.000196813
0.000174433
0.000150124
0.000137398
0.000131381
0.00012653
0.000122569
0.000122181
0.000128133
0.000143059
0.000168778
0.000202435
0.000224172
0.000175877
6.56144e-05
1.69089e-05
1.03895e-05
2.3954e-05
4.06751e-05
4.0182e-05
2.94231e-05
2.33777e-05
2.7943e-05
4.34124e-05
5.82613e-05
5.81749e-05
5.6454e-05
6.83545e-05
0.000103679
0.000129604
4.14289e-05
8.47287e-06
9.42238e-06
6.76886e-05
0.000193321
0.000178592
0.000136002
0.000118193
0.000120233
0.00012994
0.000140651
0.000154755
0.000176346
0.000202338
0.000224739
0.000240654
0.000254133
0.000267977
0.000268166
0.000205904
8.31027e-05
2.18423e-05
7.4487e-06
1.8322e-05
3.60138e-05
3.78113e-05
2.8255e-05
2.28197e-05
2.70209e-05
4.00226e-05
5.13765e-05
5.6519e-05
7.18049e-05
0.000108072
0.000119954
3.61938e-05
7.99917e-06
1.00582e-05
9.43267e-05
0.000184331
0.000126501
9.68656e-05
0.000100782
0.000126094
0.000160215
0.000189671
0.00021029
0.000227813
0.000248514
0.000272547
0.000295036
0.000310566
0.000315873
0.000307696
0.000273526
0.000190177
8.03757e-05
2.15169e-05
5.87846e-06
1.67832e-05
3.21329e-05
3.3166e-05
2.60627e-05
2.26753e-05
2.77709e-05
4.1179e-05
5.73587e-05
7.87719e-05
0.000112252
0.000112699
3.35254e-05
7.6929e-06
1.02228e-05
0.000111743
0.000150597
9.43743e-05
8.56377e-05
0.000111621
0.000161969
0.000215391
0.000253412
0.000273397
0.000280679
0.000282984
0.000287354
0.000297279
0.000312209
0.000328474
0.000338843
0.000329268
0.000277552
0.00017691
7.58332e-05
2.40382e-05
1.02371e-05
2.07972e-05
3.28602e-05
3.03553e-05
2.31675e-05
2.10057e-05
2.77605e-05
4.66184e-05
7.86453e-05
0.000112914
0.000106995
3.26269e-05
7.60376e-06
1.03812e-05
0.000135408
0.000119742
8.0195e-05
9.03819e-05
0.000137901
0.000197294
0.000241839
0.00027191
0.000294918
0.00031423
0.000329857
0.000341258
0.000349017
0.000354787
0.000360039
0.00036431
0.000362478
0.000340459
0.000275999
0.000168317
7.15557e-05
2.51582e-05
1.4248e-05
2.49793e-05
3.53105e-05
3.11149e-05
2.3353e-05
2.19745e-05
3.21295e-05
6.21575e-05
0.000104292
0.000102321
3.28423e-05
7.68759e-06
1.00183e-05
0.000131178
0.000105581
7.54893e-05
9.52861e-05
0.000152838
0.000212728
0.000253394
0.000279463
0.000298281
0.000314021
0.000328771
0.000343379
0.000357732
0.000371047
0.000382188
0.000389563
0.000390033
0.000376815
0.000337847
0.000260529
0.000154372
6.68187e-05
2.66171e-05
1.93564e-05
3.10575e-05
3.87544e-05
3.23525e-05
2.46989e-05
2.55351e-05
4.14059e-05
8.11486e-05
0.000103965
3.52222e-05
8.00266e-06
9.52956e-06
9.10664e-05
0.000122752
7.62908e-05
7.61584e-05
0.000106251
0.000150986
0.000195425
0.000233859
0.00026643
0.000294078
0.000317318
0.000336669
0.000352852
0.000366516
0.000377814
0.000385907
0.00038829
0.000380139
0.000354583
0.000304608
0.000227113
0.000133865
5.98129e-05
2.69391e-05
2.33262e-05
3.55403e-05
4.20349e-05
3.42857e-05
2.77048e-05
3.31017e-05
6.10738e-05
0.00010516
3.87198e-05
8.33931e-06
9.20024e-06
6.46754e-05
0.000113095
6.90771e-05
5.87507e-05
7.32606e-05
0.000102806
0.000139639
0.000178575
0.000216913
0.000253412
0.000287403
0.000318403
0.000345963
0.000369559
0.000388536
0.000401766
0.000407145
0.000401342
0.000380391
0.000341014
0.000281354
0.000202176
0.000115929
5.35425e-05
2.87652e-05
2.8738e-05
3.83538e-05
3.93068e-05
3.20272e-05
3.24235e-05
5.38466e-05
0.000106877
4.12413e-05
8.47675e-06
8.62251e-06
4.70174e-05
9.88452e-05
7.24761e-05
5.68228e-05
5.76028e-05
6.89479e-05
8.80525e-05
0.000114206
0.000146365
0.000182461
0.000220058
0.000257207
0.000292606
0.000325165
0.000353674
0.000376212
0.000389376
0.000388327
0.000368447
0.000328345
0.000271424
0.000203953
0.000133493
7.27977e-05
3.80645e-05
2.86181e-05
3.40544e-05
3.85757e-05
3.49524e-05
3.61718e-05
5.88936e-05
0.000114324
4.12333e-05
8.4241e-06
8.27573e-06
3.94447e-05
9.76367e-05
9.72385e-05
7.58947e-05
5.74435e-05
5.02545e-05
5.16099e-05
5.98442e-05
7.48872e-05
9.72715e-05
0.00012791
0.000166756
0.00021085
0.000255732
0.000297682
0.000333309
0.000357841
0.000364948
0.00034957
0.000312182
0.000259262
0.000198766
0.000136956
8.15151e-05
4.44132e-05
2.98392e-05
3.09869e-05
3.58785e-05
3.6563e-05
4.19561e-05
6.98169e-05
0.00012009
3.92935e-05
8.22621e-06
8.03202e-06
3.86674e-05
0.000106603
0.000128324
0.000120636
9.66888e-05
7.07376e-05
5.41352e-05
4.64261e-05
4.50009e-05
4.8541e-05
5.85808e-05
8.06086e-05
0.00011936
0.00017163
0.000227614
0.00027823
0.000315536
0.000331271
0.000319989
0.000284277
0.000234533
0.000181281
0.000129521
8.23044e-05
4.75081e-05
3.13784e-05
2.99835e-05
3.41708e-05
3.83044e-05
4.95275e-05
8.40975e-05
0.000120562
3.67303e-05
8.00652e-06
7.87114e-06
3.86062e-05
0.000117325
0.000167612
0.000174176
0.000161056
0.000133373
0.000101216
7.62799e-05
5.91568e-05
4.53207e-05
3.46255e-05
3.38015e-05
4.98562e-05
8.89167e-05
0.00014902
0.000213751
0.000266031
0.000295978
0.000297643
0.000271439
0.000226999
0.000177014
0.000128538
8.41061e-05
4.99503e-05
3.27214e-05
3.01229e-05
3.43284e-05
4.12339e-05
5.81029e-05
9.70373e-05
0.000115164
3.39189e-05
7.73756e-06
8.10639e-06
3.76364e-05
0.000112587
0.000173903
0.000179017
0.000164964
0.000146262
0.000131079
0.000124179
0.000119663
9.83745e-05
5.45955e-05
2.79449e-05
2.51594e-05
4.48435e-05
9.51503e-05
0.000174627
0.000255377
0.000309775
0.000326551
0.000304501
0.000254338
0.000195322
0.000140634
9.29061e-05
5.53817e-05
3.45788e-05
2.99278e-05
3.49404e-05
4.53185e-05
6.73758e-05
0.000106612
0.00010968
3.21648e-05
7.5681e-06
8.85853e-06
3.83702e-05
0.000101758
0.000147191
0.000143872
0.000120327
9.02316e-05
7.13725e-05
7.33313e-05
9.49278e-05
0.00012153
9.54129e-05
4.20331e-05
2.66478e-05
4.09437e-05
9.70447e-05
0.00022227
0.000358797
0.000367158
0.000372142
0.000373684
0.000308404
0.000222081
0.00015629
0.000104995
6.45179e-05
3.91389e-05
3.05486e-05
3.49626e-05
4.92557e-05
7.64672e-05
0.000112616
0.000105121
3.12433e-05
7.50347e-06
9.86957e-06
5.16281e-05
0.000134341
0.000156287
0.000132677
9.42863e-05
5.92094e-05
4.13218e-05
4.24869e-05
5.75796e-05
7.32604e-05
6.5386e-05
4.72074e-05
5.30818e-05
0.000111211
0.00024588
0.000361134
0.000367738
0.000372668
0.000375445
0.000371367
0.000295365
0.000217465
0.000157855
0.000111709
7.33804e-05
4.57379e-05
3.28977e-05
3.43776e-05
4.97416e-05
8.08172e-05
0.000115054
0.000104179
3.1651e-05
7.65869e-06
1.00075e-05
7.91964e-05
0.000147523
0.000119334
8.29435e-05
5.25286e-05
3.66036e-05
3.62962e-05
4.85064e-05
6.1862e-05
6.97399e-05
9.09638e-05
0.000151798
0.000206802
0.00020764
0.000212428
0.000227965
0.000245748
0.000257563
0.000257766
0.000242063
0.000212102
0.000176722
0.000142966
0.000111254
8.03318e-05
5.36631e-05
3.74671e-05
3.46921e-05
4.71402e-05
7.84628e-05
0.000114495
0.000105564
3.25872e-05
7.85311e-06
9.13554e-06
7.30135e-05
0.000113462
8.80252e-05
5.9189e-05
4.18157e-05
4.02343e-05
5.74302e-05
8.98047e-05
0.000123312
0.000150471
0.000155357
0.00014661
0.00014447
0.000153612
0.000168881
0.000183807
0.000195206
0.000201509
0.000200814
0.000191595
0.000175216
0.000155289
0.000134359
0.000112177
8.77107e-05
6.3128e-05
4.45481e-05
3.73066e-05
4.47115e-05
7.2379e-05
0.000112983
0.000111096
3.43985e-05
8.04581e-06
8.70893e-06
6.10869e-05
0.000138948
0.000131668
0.000109608
8.73923e-05
7.12091e-05
6.44872e-05
6.54608e-05
6.77756e-05
7.01116e-05
7.73508e-05
9.2344e-05
0.00011358
0.000136557
0.000156861
0.00017237
0.000182512
0.000186963
0.000185458
0.000178418
0.000167273
0.000153831
0.000138856
0.000121395
0.00010008
7.59499e-05
5.44906e-05
4.25122e-05
4.45449e-05
6.67512e-05
0.000110328
0.000117652
3.63592e-05
8.08755e-06
8.80757e-06
5.27767e-05
0.000142991
0.000165289
0.000166187
0.000157678
0.000135774
0.000102735
7.19676e-05
5.06275e-05
3.8354e-05
3.5599e-05
4.44203e-05
6.65893e-05
9.90848e-05
0.00013302
0.000159916
0.000175789
0.000181083
0.000178973
0.000173048
0.000165404
0.000156435
0.000145484
0.000131103
0.000111842
8.8304e-05
6.52017e-05
4.98668e-05
4.81873e-05
6.6758e-05
0.000110648
0.000124456
3.84275e-05
8.07734e-06
8.84351e-06
5.20226e-05
0.000149664
0.0001795
0.00016987
0.000153014
0.000145201
0.000147633
0.000142602
0.000110815
7.02133e-05
4.34921e-05
3.14716e-05
3.25748e-05
4.86672e-05
8.01166e-05
0.000116812
0.000143204
0.000153863
0.000154328
0.000152065
0.000150565
0.00014918
0.000145298
0.00013606
0.000119679
9.71197e-05
7.34159e-05
5.62978e-05
5.24635e-05
6.8937e-05
0.000112322
0.000130097
3.99846e-05
8.06296e-06
8.98602e-06
5.6968e-05
0.000162912
0.000190428
0.000177384
0.000146982
0.000120444
0.0001137
0.000129991
0.000158746
0.000159708
0.00011039
6.29998e-05
3.92645e-05
3.19743e-05
3.85511e-05
5.91352e-05
8.62814e-05
0.000105343
0.000112773
0.000115777
0.000119935
0.000125398
0.000128829
0.000126256
0.000115267
9.68362e-05
7.61677e-05
6.09688e-05
5.8311e-05
7.60672e-05
0.000119712
0.000135399
4.10016e-05
8.10082e-06
9.0877e-06
5.75391e-05
0.000161391
0.000191572
0.000186942
0.000169619
0.000145524
0.000121477
0.000108315
0.000112762
0.000135244
0.000161559
0.000150792
9.83937e-05
5.76194e-05
3.85802e-05
3.44164e-05
4.36385e-05
6.16768e-05
7.6087e-05
8.3971e-05
9.13667e-05
0.000100879
0.000109762
0.000112663
0.000106331
9.21725e-05
7.55808e-05
6.3751e-05
6.38594e-05
8.43337e-05
0.00012798
0.000139377
4.15931e-05
8.12667e-06
9.12386e-06
5.48256e-05
0.000154927
0.00018321
0.000172858
0.000153686
0.000139184
0.000131237
0.000123857
0.000115782
0.000115165
0.000129974
0.00016029
0.000183578
0.000155038
9.43494e-05
5.52828e-05
3.86074e-05
3.72034e-05
4.74808e-05
5.86767e-05
6.72878e-05
7.76068e-05
8.93006e-05
9.71199e-05
9.55296e-05
8.51373e-05
7.2539e-05
6.50093e-05
6.92009e-05
9.34899e-05
0.000136495
0.000140885
4.11884e-05
8.10892e-06
9.40244e-06
5.80802e-05
0.000161222
0.000180614
0.000162164
0.000136847
0.000119687
0.000115509
0.000122428
0.000132848
0.000136571
0.000134578
0.000139651
0.000160894
0.000193043
0.000201037
0.000146044
8.16347e-05
4.86391e-05
3.75938e-05
4.10425e-05
4.94321e-05
5.87642e-05
7.06646e-05
8.13677e-05
8.43084e-05
7.80512e-05
6.91807e-05
6.59508e-05
7.50174e-05
0.000103496
0.000143758
0.000139934
4.04979e-05
8.04653e-06
9.63179e-06
6.41901e-05
0.000168964
0.00017238
0.000148058
0.000125904
0.000114903
0.00011336
0.00011894
0.000131309
0.000147483
0.000158337
0.000157604
0.000154594
0.00016404
0.000190121
0.000213332
0.000184828
0.000109283
6.03956e-05
4.18345e-05
4.04332e-05
4.63602e-05
5.62262e-05
6.82158e-05
7.50324e-05
7.20059e-05
6.49594e-05
6.36951e-05
7.58921e-05
0.00010766
0.000146038
0.000138093
4.01104e-05
8.13132e-06
9.51047e-06
6.57423e-05
0.000164021
0.000153695
0.000124988
0.000106303
0.000103086
0.000110548
0.000121608
0.000132818
0.000146344
0.000163346
0.000177896
0.000181547
0.000177715
0.000180451
0.000195535
0.000206795
0.000178168
0.000111821
6.5173e-05
4.65048e-05
4.42058e-05
4.93965e-05
5.94373e-05
6.90103e-05
7.02559e-05
6.50469e-05
6.39723e-05
7.65177e-05
0.000109255
0.000147331
0.000136505
3.93595e-05
8.19793e-06
9.20199e-06
6.61113e-05
0.000154915
0.000138557
0.000109268
9.2242e-05
9.1069e-05
0.000101686
0.000117727
0.000133958
0.000149804
0.00016702
0.000184957
0.000199023
0.000204812
0.000204182
0.000202922
0.000199442
0.000180215
0.000137502
9.10483e-05
6.21459e-05
5.08581e-05
5.01425e-05
5.58235e-05
6.35107e-05
6.62049e-05
6.38707e-05
6.53532e-05
8.03921e-05
0.00011482
0.000148754
0.000128541
3.69383e-05
8.19736e-06
8.8948e-06
6.63107e-05
0.000148082
0.000131805
0.000102289
8.49266e-05
8.30104e-05
9.32609e-05
0.000111348
0.000133164
0.000155284
0.000173618
0.000185638
0.000192489
0.000195799
0.000194061
0.000182944
0.000159841
0.000129333
0.000101533
8.29874e-05
7.26004e-05
6.52071e-05
6.01516e-05
6.15962e-05
6.72894e-05
6.87754e-05
6.48791e-05
6.54255e-05
8.03566e-05
0.00011407
0.000144936
0.000122195
3.53587e-05
8.2853e-06
8.75623e-06
6.33828e-05
0.000151415
0.000138239
0.000104254
8.2043e-05
7.61439e-05
8.27365e-05
9.89492e-05
0.0001204
0.0001383
0.000143696
0.000137439
0.0001289
0.000124883
0.000126433
0.000130643
0.000131617
0.000123266
0.000105831
8.67895e-05
7.24606e-05
6.41578e-05
6.10947e-05
6.21485e-05
6.52034e-05
6.72114e-05
6.77132e-05
7.27403e-05
9.14932e-05
0.000125662
0.000148441
0.000106452
3.14449e-05
7.88208e-06
8.83961e-06
5.88401e-05
0.000152775
0.000150174
0.000118332
9.25877e-05
8.3032e-05
8.55021e-05
9.47765e-05
0.000106204
0.000115502
0.000119191
0.00011533
0.000106246
9.924e-05
0.000100094
0.000108701
0.000118509
0.000120211
0.000109211
8.8684e-05
6.77597e-05
5.45761e-05
5.22555e-05
5.9538e-05
6.87007e-05
7.13989e-05
7.26534e-05
8.14155e-05
0.00010376
0.000136032
0.000151557
0.000102697
3.00084e-05
7.32549e-06
8.95688e-06
5.94305e-05
0.000150079
0.000145001
0.000113841
9.26113e-05
8.82762e-05
9.60774e-05
0.000111363
0.000130859
0.000150281
0.000162647
0.000160221
0.000138001
0.000101361
7.15459e-05
6.28077e-05
7.54902e-05
0.000103549
0.000127559
0.000126836
0.000100668
6.90103e-05
5.02007e-05
4.76042e-05
5.8612e-05
7.27305e-05
7.75409e-05
8.37341e-05
0.000104323
0.000136915
0.000152738
0.000106036
3.15634e-05
7.20127e-06
8.88103e-06
6.17125e-05
0.000149827
0.000132006
9.52028e-05
7.67416e-05
7.78372e-05
9.22762e-05
0.000113664
0.000138043
0.000166479
0.000200176
0.000233463
0.000249227
0.000220136
0.000141642
7.35483e-05
4.71456e-05
5.1278e-05
7.72567e-05
0.000107176
0.000112414
9.12927e-05
6.36067e-05
4.65493e-05
4.46232e-05
5.7934e-05
8.16094e-05
0.000102037
0.000122248
0.000144965
0.000150971
0.000105064
3.15957e-05
6.9392e-06
8.74146e-06
5.61274e-05
0.00014551
0.000132146
9.50949e-05
7.61274e-05
7.752e-05
9.33307e-05
0.000117633
0.000142706
0.000162872
0.000178744
0.000195034
0.000215542
0.000237381
0.000239926
0.000184803
9.52726e-05
4.87605e-05
4.27758e-05
6.37813e-05
9.67064e-05
0.000110819
9.49319e-05
6.65171e-05
4.6903e-05
4.29973e-05
5.61182e-05
8.69817e-05
0.000122299
0.000148759
0.000161633
0.000135016
4.07494e-05
7.82627e-06
8.82949e-06
5.36945e-05
0.000138965
0.000125378
8.71244e-05
6.91448e-05
7.2145e-05
8.98272e-05
0.00011737
0.000149803
0.000181641
0.000208287
0.000227862
0.000241608
0.000251723
0.000255369
0.000235465
0.000167769
8.2088e-05
4.32885e-05
4.24032e-05
6.7434e-05
0.00010461
0.00012066
0.000103234
7.23184e-05
5.09454e-05
4.71321e-05
6.2867e-05
0.000101067
0.000143417
0.000159466
0.000122335
3.73548e-05
7.57503e-06
8.83205e-06
5.47065e-05
0.000136969
0.000112659
7.32684e-05
5.98456e-05
6.84232e-05
9.41873e-05
0.000130968
0.000170083
0.000206746
0.000240844
0.000273244
0.00030373
0.000330153
0.000344525
0.000324284
0.000242517
0.000131448
6.36312e-05
4.50723e-05
5.50655e-05
8.15959e-05
0.000105234
0.000104022
8.13982e-05
5.77723e-05
4.71041e-05
5.45709e-05
8.51106e-05
0.000128417
0.000148492
0.000120416
3.61966e-05
7.48262e-06
8.69173e-06
5.14022e-05
0.00013214
0.000107797
6.77414e-05
5.43135e-05
6.29503e-05
8.98131e-05
0.000130519
0.000175344
0.000215386
0.000247983
0.000274454
0.00029622
0.000311018
0.000306951
0.000259917
0.000166969
8.44327e-05
4.84982e-05
5.12384e-05
9.29059e-05
0.000161731
0.000191709
0.000171097
0.000124353
7.95124e-05
5.35197e-05
4.81052e-05
6.42501e-05
0.000103151
0.000136183
0.000124441
4.04712e-05
8.33412e-06
8.82787e-06
5.07772e-05
0.00012942
0.000106063
6.41903e-05
4.91558e-05
5.57382e-05
7.93215e-05
0.000115935
0.000158017
0.00019793
0.000231797
0.000258964
0.000280299
0.000297234
0.000310451
0.000315005
0.000287894
0.000196099
8.92056e-05
4.37784e-05
4.3547e-05
7.48854e-05
0.000127476
0.000166127
0.00016702
0.000135804
9.45833e-05
6.86121e-05
6.638e-05
9.16632e-05
0.000134204
0.000131639
4.13144e-05
8.35912e-06
8.85943e-06
5.21245e-05
0.000128159
9.68107e-05
5.64668e-05
4.43584e-05
5.3917e-05
8.30885e-05
0.00012721
0.000174281
0.000214951
0.000246933
0.000271167
0.000288662
0.000299551
0.000302666
0.000295175
0.000272109
0.000225659
0.000152551
8.14189e-05
5.46446e-05
6.36597e-05
9.0078e-05
0.000117275
0.000133166
0.000134339
0.000119955
9.54323e-05
7.9472e-05
8.67747e-05
0.000124079
0.000150386
4.874e-05
8.80981e-06
8.80449e-06
5.17621e-05
0.0001276
9.63665e-05
5.46685e-05
4.09435e-05
4.88816e-05
7.74459e-05
0.000123777
0.000175556
0.0002216
0.000258536
0.000287082
0.000308775
0.000324789
0.00033421
0.000330342
0.000297675
0.000222849
0.000125981
5.57444e-05
3.20694e-05
5.41527e-05
0.000139945
0.000202179
0.000187051
0.000147041
0.000114523
9.61446e-05
9.1839e-05
0.000107829
0.000146445
0.000155057
4.87389e-05
8.99285e-06
8.86614e-06
5.2777e-05
0.000128401
9.55321e-05
5.33538e-05
3.86474e-05
4.42663e-05
6.93389e-05
0.000112699
0.000163472
0.000209657
0.000246307
0.000273164
0.000291978
0.000305551
0.000315959
0.000321304
0.000312259
0.000272212
0.000192016
0.000100693
4.62262e-05
3.60731e-05
6.76174e-05
0.000148939
0.000190496
0.000157228
0.000115208
9.61839e-05
0.000103048
0.000134657
0.000169666
0.000141334
4.09852e-05
8.19708e-06
8.85002e-06
5.44367e-05
0.000127903
8.61984e-05
4.74523e-05
3.61266e-05
4.366e-05
7.10109e-05
0.00011701
0.000168293
0.000212158
0.000244071
0.000263744
0.00027372
0.000278912
0.000283344
0.000286447
0.000281856
0.000259753
0.000213314
0.000148184
8.69862e-05
5.22158e-05
4.77582e-05
7.25949e-05
0.000122642
0.000155733
0.00014118
0.0001193
0.000120938
0.000150208
0.000179221
0.000139485
3.81234e-05
7.55512e-06
8.86257e-06
5.46668e-05
0.000127161
8.32788e-05
4.52557e-05
3.40342e-05
3.96675e-05
6.24177e-05
0.000102915
0.000150787
0.000192604
0.000221325
0.000235005
0.000237199
0.000237284
0.000244375
0.000260739
0.000279362
0.000285537
0.000264876
0.000214658
0.00014987
9.48268e-05
6.30823e-05
5.31553e-05
6.13898e-05
8.76656e-05
0.000124025
0.000145246
0.000153331
0.000166662
0.000176002
0.000129641
3.57134e-05
7.19424e-06
8.95148e-06
5.60738e-05
0.00012514
7.58314e-05
4.1323e-05
3.31174e-05
3.98796e-05
5.97609e-05
9.27463e-05
0.000134067
0.00017568
0.000210841
0.00023377
0.000239599
0.000230618
0.000219318
0.000217996
0.000229826
0.000248383
0.000260322
0.000251972
0.000217744
0.000165525
0.000113941
7.7399e-05
5.79653e-05
5.32156e-05
6.3949e-05
9.48838e-05
0.00013559
0.000158699
0.000160637
0.000117185
3.65018e-05
7.52127e-06
8.93505e-06
5.59538e-05
0.000121137
7.05683e-05
3.75078e-05
3.04551e-05
3.89446e-05
5.99436e-05
8.94333e-05
0.000122563
0.000155615
0.000185213
0.000207293
0.000217301
0.000213682
0.000202564
0.000195326
0.000200002
0.000216745
0.000237659
0.000250539
0.000246553
0.000223711
0.00018533
0.000139806
9.89641e-05
7.09403e-05
5.79727e-05
6.2051e-05
9.10192e-05
0.000140655
0.000156236
0.000124005
4.24029e-05
8.22746e-06
8.95902e-06
5.56618e-05
0.000120965
7.40447e-05
3.84937e-05
2.91796e-05
3.5735e-05
5.4454e-05
8.02432e-05
0.000108436
0.000137512
0.000166784
0.000193669
0.000212275
0.000215098
0.000200652
0.000179667
0.000166726
0.000169076
0.000185404
0.000207633
0.000224408
0.000228232
0.000218146
0.000196134
0.000164787
0.000129221
9.82201e-05
7.97616e-05
7.82325e-05
9.73454e-05
0.000133529
0.00015037
5.90968e-05
9.4305e-06
8.93921e-06
5.54063e-05
0.000121166
7.84965e-05
4.02177e-05
2.79312e-05
3.23698e-05
5.05739e-05
7.59015e-05
0.000100382
0.00012302
0.000146369
0.000171552
0.000195827
0.000211715
0.000209934
0.000189588
0.000164022
0.000148808
0.000150241
0.0001661
0.000188268
0.000206759
0.000216104
0.000216201
0.000207874
0.000189451
0.000157498
0.000114553
7.8022e-05
6.4247e-05
7.93008e-05
0.000127799
7.08945e-05
1.02971e-05
8.9089e-06
5.526e-05
0.000123399
8.96861e-05
4.72639e-05
2.88561e-05
2.79801e-05
4.20425e-05
6.75438e-05
9.47994e-05
0.000118128
0.000139558
0.000162734
0.000188371
0.00021164
0.000221364
0.000207312
0.00017491
0.000144115
0.000129868
0.000134798
0.000153802
0.000176472
0.000192728
0.000198337
0.000192384
0.000172469
0.00013613
9.2978e-05
6.43691e-05
6.02431e-05
8.85819e-05
0.000152163
6.06284e-05
1.02488e-05
8.88573e-06
5.61883e-05
0.00012588
9.80074e-05
5.54595e-05
3.2456e-05
2.65008e-05
3.48912e-05
5.66287e-05
8.44187e-05
0.000110236
0.000133105
0.000156345
0.000182823
0.000211317
0.000232347
0.000229237
0.000195222
0.000149429
0.000117253
0.000107833
0.0001179
0.000137314
0.000151976
0.00015392
0.000142668
0.000120889
9.49451e-05
7.4271e-05
6.72706e-05
8.3418e-05
0.000136613
0.000160144
4.32463e-05
9.15813e-06
8.84669e-06
5.75776e-05
0.000128862
0.000106068
6.50524e-05
3.82132e-05
2.77008e-05
3.0479e-05
4.66085e-05
7.16996e-05
9.82077e-05
0.000123461
0.000149201
0.000177873
0.000209687
0.000238343
0.000246988
0.000218464
0.000162872
0.000112966
8.72951e-05
8.51494e-05
9.79735e-05
0.000110145
0.00011074
0.00010335
9.31093e-05
8.33507e-05
7.97339e-05
9.09443e-05
0.000128056
0.00017586
0.000128716
3.4629e-05
8.0863e-06
8.81302e-06
5.92042e-05
0.000131343
0.000111387
7.36488e-05
4.56629e-05
3.17902e-05
2.98279e-05
4.00806e-05
5.99619e-05
8.30599e-05
0.000106765
0.000132904
0.000163813
0.000199621
0.000235158
0.000255711
0.000239971
0.000184872
0.000121287
7.89017e-05
6.25583e-05
6.63895e-05
8.01752e-05
8.75631e-05
8.58746e-05
8.38262e-05
8.60182e-05
9.70524e-05
0.000124291
0.000165025
0.000180444
0.000108659
3.11619e-05
7.47982e-06
8.78741e-06
6.1359e-05
0.000133026
0.000112578
7.77901e-05
5.19306e-05
3.7285e-05
3.24856e-05
3.86604e-05
5.48904e-05
7.51809e-05
9.59249e-05
0.000118789
0.000146961
0.000182048
0.000221103
0.000252799
0.000256502
0.000216562
0.0001486
8.93889e-05
5.66499e-05
4.70774e-05
5.44491e-05
6.92835e-05
7.75473e-05
8.25156e-05
9.47e-05
0.000118735
0.000153035
0.000181041
0.00017533
0.000101583
3.06846e-05
7.34551e-06
8.76545e-06
6.40663e-05
0.000132813
0.000110196
7.82464e-05
5.63222e-05
4.34451e-05
3.74211e-05
3.96909e-05
5.12569e-05
6.8606e-05
8.8601e-05
0.000111684
0.000139654
0.000173754
0.000212635
0.000248932
0.000266567
0.000246765
0.000188304
0.000118731
6.80829e-05
4.31155e-05
3.79529e-05
4.83086e-05
6.7054e-05
8.19471e-05
9.85689e-05
0.000127587
0.000162662
0.000182643
0.000170877
0.000101533
3.14626e-05
7.46381e-06
8.73495e-06
6.71091e-05
0.000130593
0.000105107
7.60938e-05
5.87865e-05
4.99204e-05
4.59619e-05
4.67736e-05
5.31705e-05
6.40895e-05
7.93811e-05
0.000100949
0.00013049
0.000168162
0.000211638
0.000254186
0.000282482
0.000279354
0.00023627
0.000166637
9.97354e-05
5.58594e-05
3.55335e-05
3.28565e-05
4.61841e-05
7.34626e-05
0.000103527
0.000133949
0.000164143
0.00018061
0.000169805
0.000105282
3.27959e-05
7.64531e-06
8.68472e-06
6.99826e-05
0.000127021
0.00010003
7.47817e-05
6.15425e-05
5.58079e-05
5.43619e-05
5.63696e-05
6.0979e-05
6.71915e-05
7.69246e-05
9.39447e-05
0.000120741
0.000157796
0.000203136
0.000250952
0.000289514
0.000302593
0.000278698
0.000221475
0.000149901
8.79208e-05
4.89108e-05
3.13213e-05
3.02666e-05
4.65217e-05
8.30484e-05
0.000125707
0.000157471
0.000174249
0.000167921
0.000109526
3.39699e-05
7.84823e-06
8.6121e-06
7.28672e-05
0.000121796
9.33082e-05
7.25909e-05
6.46465e-05
6.32204e-05
6.41607e-05
6.61631e-05
6.8277e-05
7.00964e-05
7.52809e-05
8.93819e-05
0.000115698
0.000154527
0.000202629
0.00025301
0.000294688
0.000314334
0.000302733
0.000261178
0.000200103
0.00013443
7.98263e-05
4.53273e-05
2.9945e-05
3.06584e-05
5.05954e-05
9.6459e-05
0.000144418
0.000166368
0.000163506
0.000113458
3.5514e-05
8.08216e-06
8.52556e-06
7.54472e-05
0.000116052
8.7276e-05
7.12669e-05
6.87023e-05
7.23983e-05
7.72587e-05
8.06954e-05
8.07595e-05
7.665e-05
7.34744e-05
7.99316e-05
0.000100993
0.000137953
0.000187787
0.000242139
0.000288774
0.000315005
0.000313177
0.000284353
0.000236021
0.000177829
0.00012021
7.34891e-05
4.37136e-05
3.08974e-05
3.40983e-05
5.77331e-05
0.000106467
0.000149356
0.00015929
0.000121405
3.86011e-05
8.63005e-06
8.38375e-06
7.73789e-05
0.000108661
7.99734e-05
6.87591e-05
7.17861e-05
8.07544e-05
8.95869e-05
9.55039e-05
9.6523e-05
9.03346e-05
8.00792e-05
7.71308e-05
9.02403e-05
0.000122637
0.000173424
0.00023409
0.000289434
0.000324107
0.000329712
0.000306947
0.000262209
0.000204389
0.000144644
9.44799e-05
5.97391e-05
3.95159e-05
3.30304e-05
4.23575e-05
7.43216e-05
0.000124478
0.000152692
0.000125225
3.93736e-05
8.87453e-06
8.17341e-06
7.52499e-05
0.000102209
7.4342e-05
6.68124e-05
7.48004e-05
8.87545e-05
0.000100831
0.000108204
0.000109975
0.000103504
8.81652e-05
7.47164e-05
7.6824e-05
0.000100134
0.00014742
0.000215043
0.000286737
0.0003397
0.000359559
0.000344598
0.000298086
0.000228183
0.000152595
9.28964e-05
5.81052e-05
4.14344e-05
3.51223e-05
4.039e-05
6.62993e-05
0.000118359
0.000154376
0.000119986
3.60311e-05
8.52868e-06
7.9192e-06
6.87807e-05
9.6269e-05
6.69856e-05
5.9402e-05
6.88874e-05
8.68475e-05
0.000104357
0.000116817
0.000123192
0.000121347
0.000106903
8.38877e-05
7.10489e-05
8.02892e-05
0.000115587
0.000179855
0.000263768
0.00033882
0.000372168
0.000372978
0.000328012
0.00024442
0.000153016
8.51972e-05
4.95783e-05
3.6853e-05
3.69267e-05
4.63717e-05
7.33469e-05
0.000125585
0.000158874
0.000107927
3.12742e-05
7.75623e-06
7.63331e-06
5.54763e-05
9.26314e-05
6.17604e-05
4.93816e-05
5.47584e-05
7.15263e-05
9.19288e-05
0.000109214
0.000120834
0.000125452
0.000118813
9.66226e-05
7.1467e-05
6.47914e-05
8.33011e-05
0.000131213
0.000207958
0.000291703
0.000349061
0.000361211
0.00032738
0.000256463
0.000167992
9.3001e-05
4.97704e-05
3.2849e-05
3.35659e-05
5.05006e-05
8.7478e-05
0.000137263
0.000157697
0.000101547
3.0152e-05
7.49196e-06
7.46918e-06
4.29877e-05
8.68093e-05
5.9182e-05
3.84735e-05
3.61582e-05
4.7454e-05
6.89413e-05
9.33322e-05
0.000113035
0.000125061
0.000126938
0.000112422
8.24847e-05
6.10577e-05
6.38812e-05
9.28442e-05
0.000151848
0.000231671
0.000299261
0.000327852
0.000316432
0.000272947
0.000204394
0.000127132
6.84601e-05
3.88481e-05
3.13347e-05
4.2934e-05
8.15931e-05
0.000135497
0.000154516
0.00010704
3.26225e-05
7.78413e-06
7.47243e-06
3.57185e-05
8.12729e-05
6.73956e-05
3.67009e-05
2.51492e-05
2.82259e-05
4.33445e-05
6.93331e-05
9.82465e-05
0.000120252
0.000130005
0.000121019
9.05745e-05
6.17526e-05
5.60447e-05
7.48357e-05
0.000121824
0.000197548
0.00027864
0.000329369
0.000336775
0.000308545
0.000253567
0.000179723
0.000106551
5.784e-05
3.71358e-05
3.78768e-05
6.2573e-05
0.000115711
0.000151708
0.000115846
3.51371e-05
8.04583e-06
7.7208e-06
3.44769e-05
8.35411e-05
8.05773e-05
4.19105e-05
2.18762e-05
1.94118e-05
2.86242e-05
5.12545e-05
8.57875e-05
0.000118502
0.000134609
0.000123179
8.67403e-05
5.81678e-05
5.36377e-05
7.23891e-05
0.000121213
0.000210612
0.00032067
0.000384796
0.000388066
0.000368078
0.000310309
0.00023328
0.00014975
8.27936e-05
4.68524e-05
3.73529e-05
5.16413e-05
0.000100994
0.000150535
0.000121518
3.57539e-05
8.10235e-06
8.18189e-06
3.86512e-05
9.68307e-05
8.44395e-05
4.15719e-05
2.07615e-05
1.70208e-05
2.52052e-05
4.82329e-05
8.51688e-05
0.000117233
0.000124054
9.68997e-05
6.23905e-05
4.90216e-05
5.77156e-05
9.39819e-05
0.000178174
0.000311806
0.000387632
0.000392832
0.000396093
0.000397513
0.000366158
0.000292106
0.000204142
0.000121003
6.57986e-05
4.33542e-05
4.66235e-05
8.23184e-05
0.000144994
0.000132454
3.73062e-05
8.28468e-06
8.71548e-06
4.95764e-05
0.000107892
5.97281e-05
2.9172e-05
1.7924e-05
1.85066e-05
3.33821e-05
6.58837e-05
9.69586e-05
0.000103134
7.91542e-05
5.16172e-05
4.40443e-05
5.91938e-05
0.000109245
0.000216654
0.00034613
0.000392601
0.00039819
0.000402233
0.000404792
0.000404251
0.000362859
0.000303814
0.000229504
0.000147801
8.2884e-05
5.076e-05
4.71691e-05
7.65154e-05
0.00014792
0.000140215
3.73347e-05
8.36581e-06
9.06131e-06
6.93293e-05
7.57937e-05
3.18764e-05
1.9457e-05
1.86253e-05
2.95772e-05
5.97419e-05
8.76256e-05
8.89401e-05
6.76053e-05
4.73406e-05
4.40329e-05
6.16404e-05
0.000114016
0.000216786
0.000327569
0.000387501
0.000400241
0.000404388
0.000407209
0.000394739
0.00036818
0.000326467
0.000268123
0.000196256
0.000126817
7.7948e-05
5.45277e-05
5.61812e-05
9.56359e-05
0.000171434
0.000130609
3.32702e-05
7.81159e-06
9.0045e-06
9.02835e-05
3.9569e-05
1.84087e-05
1.86677e-05
3.14008e-05
5.70438e-05
8.27645e-05
8.81899e-05
7.47138e-05
5.38041e-05
4.27863e-05
4.85077e-05
8.05606e-05
0.000164248
0.000291808
0.000380296
0.000399672
0.000403904
0.000407014
0.000408456
0.000380079
0.000331602
0.000268041
0.000199371
0.000139623
9.80332e-05
7.46268e-05
6.77149e-05
8.34727e-05
0.000136725
0.000185418
0.000118844
3.12177e-05
7.32845e-06
8.66422e-06
9.03934e-05
2.64213e-05
1.58717e-05
3.01948e-05
5.87195e-05
7.56239e-05
8.64811e-05
9.07202e-05
8.23702e-05
6.19033e-05
4.42534e-05
4.15841e-05
6.13354e-05
0.000124152
0.000240489
0.000330891
0.000380636
0.0004034
0.000406725
0.000404646
0.000377142
0.00032858
0.000262875
0.000191464
0.000131345
9.26229e-05
7.53274e-05
7.86739e-05
0.000108757
0.000163609
0.000188133
0.000123573
3.37392e-05
7.44253e-06
8.32913e-06
8.70125e-05
2.52203e-05
1.7951e-05
4.26645e-05
7.40054e-05
8.51105e-05
9.26547e-05
9.81084e-05
9.57722e-05
8.06478e-05
5.77109e-05
4.24546e-05
4.52458e-05
7.86382e-05
0.000176701
0.000303177
0.000350664
0.000355443
0.000351756
0.000345674
0.000332991
0.000308493
0.000269086
0.000216326
0.000159788
0.000114014
8.83354e-05
8.62914e-05
0.000115016
0.000175727
0.000207358
0.000144368
3.92251e-05
8.03112e-06
8.1218e-06
8.4147e-05
3.20576e-05
1.93159e-05
3.52003e-05
6.31332e-05
8.29476e-05
9.96103e-05
0.00011379
0.000121365
0.00011682
9.57753e-05
6.55079e-05
4.53008e-05
4.56173e-05
7.57024e-05
0.000167248
0.000310403
0.000372154
0.000369666
0.000350095
0.000328094
0.000303471
0.000271864
0.000230035
0.000180932
0.00013545
0.000105866
9.98608e-05
0.000125814
0.000188858
0.000232715
0.000174661
4.47633e-05
8.29141e-06
8.08415e-06
7.20257e-05
4.09081e-05
1.8156e-05
2.04021e-05
4.21218e-05
6.92722e-05
9.6814e-05
0.000122311
0.000141077
0.000148803
0.000141666
0.000116834
8.13747e-05
5.4599e-05
4.8234e-05
6.68286e-05
0.000126755
0.000237573
0.000317048
0.000331596
0.000316025
0.000290404
0.000258435
0.000218505
0.000173166
0.000133607
0.000111824
0.000114808
0.00014957
0.000206828
0.000226262
0.000144405
3.83748e-05
7.25752e-06
8.06275e-06
6.25783e-05
5.03584e-05
1.94542e-05
1.24912e-05
2.17196e-05
4.48033e-05
7.57299e-05
0.000112396
0.000147817
0.000172475
0.000179582
0.000165298
0.000131211
9.00847e-05
5.96621e-05
4.86389e-05
5.99754e-05
0.00010565
0.00019972
0.00027742
0.000287632
0.000263321
0.000229881
0.000195536
0.000160538
0.000128821
0.000111431
0.000118587
0.000158212
0.000213898
0.000225658
0.000129012
3.14962e-05
6.22651e-06
8.09625e-06
5.51351e-05
6.33365e-05
2.43579e-05
1.25283e-05
9.82738e-06
1.70979e-05
3.61028e-05
6.52884e-05
0.000106651
0.000153264
0.00019012
0.000205394
0.00019069
0.00014695
9.5354e-05
5.89193e-05
4.36249e-05
4.90387e-05
8.34844e-05
0.000163959
0.000242994
0.000249364
0.000216163
0.000178845
0.00015286
0.000139296
0.000138408
0.000158174
0.000205011
0.000250864
0.000234191
0.000106035
2.6607e-05
5.51023e-06
8.09365e-06
5.04616e-05
7.10051e-05
2.90862e-05
1.69578e-05
1.44186e-05
1.34877e-05
1.76608e-05
3.26176e-05
5.98816e-05
0.000104926
0.000161693
0.000209826
0.000232926
0.00022014
0.000169039
0.000104919
5.9598e-05
3.95907e-05
4.09679e-05
6.81227e-05
0.00013811
0.000216578
0.000217177
0.000177368
0.000143004
0.000130616
0.000141584
0.000173483
0.000213326
0.000234128
0.000212373
0.000107431
2.87744e-05
6.03261e-06
8.05612e-06
4.90826e-05
7.31607e-05
3.03087e-05
1.74109e-05
1.76414e-05
2.46346e-05
3.04897e-05
3.41787e-05
4.59844e-05
7.43933e-05
0.00012499
0.000187118
0.000235138
0.000250616
0.000225923
0.000167515
0.000102446
5.68853e-05
3.58562e-05
3.52017e-05
5.70137e-05
0.000115873
0.000189542
0.000192897
0.000162418
0.000143617
0.000149403
0.000176774
0.000205726
0.000212345
0.000181119
9.05411e-05
2.72626e-05
5.72634e-06
8.01339e-06
5.00097e-05
7.88754e-05
3.64242e-05
1.91244e-05
1.63208e-05
2.22212e-05
3.24394e-05
3.73408e-05
3.92876e-05
5.11763e-05
8.34266e-05
0.000142182
0.000212091
0.000262419
0.000272548
0.00023431
0.000162828
9.42387e-05
5.05645e-05
3.10774e-05
2.99785e-05
4.75283e-05
9.45611e-05
0.000167908
0.000199376
0.000193355
0.000191176
0.000205727
0.000227932
0.000235365
0.000203959
9.98667e-05
2.60996e-05
5.65112e-06
7.96946e-06
5.22644e-05
8.78588e-05
4.91805e-05
2.57356e-05
1.91327e-05
2.25663e-05
3.28119e-05
4.09978e-05
3.97717e-05
3.81558e-05
5.01957e-05
8.75232e-05
0.000160979
0.000243375
0.000288337
0.000282857
0.000229308
0.000150139
8.33778e-05
4.48742e-05
2.91188e-05
2.94862e-05
4.55459e-05
8.44043e-05
0.000152782
0.000222314
0.000257497
0.000267643
0.000264926
0.000251351
0.000209822
9.47184e-05
2.34751e-05
4.694e-06
8.00126e-06
5.52712e-05
9.58695e-05
6.26113e-05
3.3912e-05
2.24134e-05
2.30372e-05
3.41737e-05
5.14894e-05
6.09219e-05
5.41421e-05
4.3399e-05
4.9178e-05
8.07691e-05
0.000147688
0.000217767
0.000245235
0.000234884
0.00019709
0.000140973
8.70023e-05
5.20715e-05
3.66462e-05
3.55662e-05
4.59682e-05
6.73237e-05
9.88927e-05
0.000135155
0.000164591
0.000179944
0.000180452
0.00015513
7.9357e-05
2.62983e-05
5.25656e-06
8.11103e-06
6.15737e-05
9.88776e-05
6.8823e-05
4.34191e-05
2.86368e-05
2.46256e-05
3.11665e-05
4.67571e-05
6.33256e-05
7.00552e-05
6.11039e-05
4.66859e-05
4.70108e-05
6.85112e-05
0.000114277
0.000167167
0.000196371
0.000197277
0.000179322
0.000149195
0.000113078
8.11381e-05
6.12271e-05
5.35032e-05
5.51289e-05
6.42854e-05
8.0485e-05
0.00010219
0.000123657
0.000134701
0.000119002
7.91257e-05
3.75326e-05
6.94668e-06
8.22346e-06
7.06492e-05
9.34354e-05
6.31183e-05
4.64041e-05
3.66995e-05
3.26494e-05
3.78028e-05
5.2719e-05
7.00647e-05
7.97281e-05
7.60234e-05
5.92799e-05
4.43074e-05
4.54762e-05
6.50872e-05
0.000102965
0.000146576
0.00017439
0.00017892
0.000168158
0.000150644
0.000130102
0.000108891
9.07797e-05
7.92532e-05
7.62541e-05
8.4136e-05
0.000106073
0.000137172
0.000156737
0.000185392
0.000143294
9.32463e-05
1.16416e-05
8.18699e-06
7.99891e-05
8.10135e-05
5.5313e-05
4.71465e-05
4.50671e-05
4.51675e-05
5.18415e-05
6.7076e-05
8.39005e-05
9.42045e-05
9.42337e-05
8.11547e-05
5.92631e-05
4.61633e-05
5.2197e-05
7.8108e-05
0.000119784
0.000159122
0.000178866
0.000179951
0.000171371
0.000160119
0.000152058
0.000152171
0.000159686
0.000165145
0.000161585
0.000153456
0.000121546
6.50872e-05
4.29661e-05
5.5633e-05
0.00011847
1.15621e-05
8.0182e-06
8.68252e-05
6.80554e-05
5.05313e-05
5.17055e-05
5.92155e-05
6.71329e-05
7.85194e-05
9.49545e-05
0.000110625
0.000119266
0.00011682
9.87289e-05
6.94621e-05
4.93204e-05
5.04452e-05
7.61851e-05
0.000129633
0.000186511
0.000214449
0.000215695
0.000204993
0.000190252
0.000173439
0.000151106
0.000119487
9.05446e-05
7.22795e-05
5.78568e-05
4.55723e-05
4.31042e-05
6.22612e-05
0.000131937
3.85309e-05
7.9783e-06
7.77974e-06
8.94567e-05
6.00731e-05
5.1352e-05
6.30777e-05
8.11014e-05
9.51211e-05
0.000107319
0.000121792
0.000137597
0.000150387
0.000154385
0.000139401
9.92521e-05
5.97325e-05
4.59103e-05
6.09648e-05
0.000121574
0.000248366
0.000311078
0.000316128
0.000319375
0.000238958
0.000119919
6.18837e-05
4.55074e-05
4.96719e-05
6.07256e-05
6.08154e-05
6.03432e-05
8.17023e-05
0.000152394
8.27334e-05
2.16577e-05
5.72752e-06
7.56189e-06
9.01871e-05
5.90991e-05
5.72532e-05
7.71945e-05
0.000101706
0.000120735
0.000135439
0.000148104
0.000159386
0.00016787
0.00016974
0.00015727
0.000122058
7.56452e-05
4.53375e-05
3.87263e-05
5.65676e-05
0.000112994
0.000201632
0.000246608
0.000231674
0.000173908
0.00010426
5.90665e-05
4.18573e-05
4.55293e-05
7.00859e-05
0.000100889
0.000116503
0.000143769
0.000163855
7.82912e-05
2.53286e-05
6.58435e-06
7.29895e-06
9.17863e-05
6.28669e-05
6.65802e-05
9.23859e-05
0.000118195
0.000135814
0.000148881
0.000160322
0.000170425
0.000177887
0.000180467
0.000174019
0.000151218
0.000108622
6.34409e-05
3.78753e-05
3.42104e-05
5.10523e-05
9.2427e-05
0.000142507
0.000169113
0.000168202
0.000144318
0.000102435
6.53756e-05
4.85172e-05
4.96122e-05
6.74892e-05
0.00010564
0.000158411
0.00017404
9.99971e-05
3.20036e-05
7.26258e-06
6.98843e-06
9.48685e-05
6.5993e-05
7.17392e-05
0.000100484
0.000131374
0.000155686
0.000174576
0.000189532
0.000201068
0.000208758
0.000211141
0.000204821
0.000182568
0.000137557
8.23254e-05
4.38013e-05
2.94179e-05
3.47991e-05
6.2087e-05
0.000114548
0.000154746
0.00015393
0.000134282
0.000118945
0.000102767
7.58467e-05
5.58863e-05
5.7655e-05
9.14584e-05
0.000158176
0.00018416
0.000101246
2.64199e-05
5.29845e-06
6.59438e-06
9.53336e-05
6.40882e-05
6.95232e-05
9.93084e-05
0.000132489
0.00016011
0.000183874
0.00020524
0.000224044
0.000239155
0.000248964
0.000251283
0.000240156
0.000199516
0.000123778
5.94342e-05
3.17074e-05
2.82593e-05
4.44809e-05
9.35713e-05
0.000169975
0.00016438
0.000103504
6.4097e-05
5.29472e-05
5.83991e-05
7.23561e-05
0.000100349
0.000154906
0.000193861
0.000147513
5.50513e-05
1.6266e-05
2.65551e-06
6.27032e-06
9.0248e-05
5.10735e-05
5.25213e-05
8.22705e-05
0.000122285
0.00015564
0.000182038
0.00020389
0.000221999
0.000235825
0.000243596
0.000243009
0.000232388
0.000210621
0.000171732
0.000109708
5.3762e-05
2.96915e-05
2.76729e-05
4.05927e-05
7.08259e-05
0.000115096
0.000124144
8.90261e-05
6.17538e-05
5.47502e-05
6.81737e-05
0.000109798
0.000166188
0.000167239
9.12693e-05
3.29309e-05
1.12269e-05
1.44931e-06
6.15031e-06
7.80264e-05
3.8144e-05
3.30528e-05
5.36357e-05
9.32066e-05
0.000132095
0.000162368
0.000186234
0.000204958
0.000218483
0.000226088
0.000226905
0.000220002
0.000204756
0.000182221
0.000153716
0.000115186
6.84608e-05
3.7138e-05
2.66393e-05
2.83367e-05
3.73083e-05
5.12224e-05
6.75817e-05
8.33826e-05
9.94892e-05
0.000120293
0.000148098
0.00017362
0.000165648
9.21829e-05
3.43414e-05
1.39015e-05
2.15411e-06
6.39443e-06
6.85505e-05
3.2136e-05
2.08843e-05
3.2079e-05
6.74893e-05
0.000117149
0.000159128
0.000190455
0.000213976
0.000230935
0.000241543
0.000245631
0.000242988
0.000233458
0.000217229
0.000195662
0.000171579
0.000145851
0.000113312
7.46412e-05
4.57844e-05
3.19533e-05
2.81909e-05
3.06093e-05
3.81555e-05
5.40425e-05
9.19455e-05
0.000162345
0.000187558
0.000166403
0.0001159
5.52771e-05
2.42723e-05
3.66489e-06
6.83311e-06
7.25104e-05
3.3352e-05
1.69688e-05
2.28804e-05
5.25226e-05
0.000106817
0.000159972
0.000200047
0.000229134
0.000249083
0.000260768
0.000265017
0.000262328
0.000252708
0.000236605
0.000215764
0.00019276
0.000170101
0.000149293
0.000129242
0.000106389
7.94568e-05
5.45811e-05
3.79741e-05
2.99901e-05
2.88723e-05
3.38839e-05
4.70092e-05
8.14624e-05
0.000135497
0.000117154
6.66949e-05
2.89834e-05
5.57371e-06
7.2189e-06
8.98417e-05
3.60708e-05
1.69421e-05
2.0939e-05
5.04026e-05
0.000106657
0.000160266
0.000199302
0.000226276
0.000243647
0.000253961
0.00025965
0.000260699
0.000254748
0.000240874
0.000222196
0.000203791
0.000188918
0.000177643
0.000168215
0.000158518
0.000145797
0.00012673
0.000101069
7.4701e-05
5.47021e-05
4.34618e-05
4.0186e-05
4.5592e-05
6.40502e-05
0.00010353
0.000121278
4.34381e-05
7.18847e-06
7.44129e-06
0.000105411
4.39485e-05
2.07565e-05
2.20568e-05
4.84655e-05
9.66832e-05
0.000141951
0.000176979
0.000203985
0.000224125
0.000237969
0.000246277
0.000248431
0.000241035
0.000221898
0.000196714
0.000176469
0.00016831
0.000172422
0.000183474
0.000192894
0.000193028
0.00018084
0.000157889
0.00012828
9.72269e-05
6.96139e-05
4.82745e-05
3.37631e-05
3.11916e-05
5.49113e-05
0.000119249
3.23685e-05
6.7472e-06
7.67438e-06
0.000113203
5.99093e-05
2.8166e-05
2.28608e-05
3.8336e-05
7.65873e-05
0.000120333
0.000157695
0.000188847
0.000214456
0.000233501
0.000245663
0.000251093
0.00024622
0.000225933
0.000194834
0.000166844
0.000152276
0.000154004
0.000171239
0.000201007
0.000237788
0.000274256
0.000297691
0.000295177
0.000261922
0.000150183
5.92012e-05
2.74334e-05
2.49712e-05
5.53671e-05
0.000112381
2.38727e-05
4.5544e-06
7.88447e-06
0.000117675
7.18697e-05
4.05067e-05
3.21544e-05
3.96421e-05
6.60062e-05
0.000103729
0.000141561
0.000176639
0.000209136
0.000235837
0.000244549
0.000249948
0.000255092
0.000238146
0.00019975
0.000168224
0.000156723
0.000165078
0.000184204
0.000197515
0.000192784
0.000169282
0.00013491
0.000100996
7.462e-05
5.67048e-05
4.58913e-05
4.38848e-05
6.0858e-05
0.000105958
6.63948e-05
1.84152e-05
3.00876e-06
7.90104e-06
0.000119061
6.04058e-05
4.39881e-05
4.68897e-05
5.7069e-05
7.32339e-05
9.6415e-05
0.000122555
0.000147811
0.000170251
0.000188181
0.00019868
0.000197662
0.000182996
0.000158655
0.000132587
0.000111121
9.82118e-05
9.70734e-05
0.000111074
0.000143226
0.000187134
0.000218175
0.000218276
0.000191726
0.000151813
0.000113687
8.95849e-05
8.69557e-05
0.000111972
0.00013568
6.85224e-05
2.03017e-05
1.54019e-06
7.548e-06
0.000116417
7.58355e-05
6.64255e-05
7.22129e-05
7.62241e-05
7.93854e-05
8.81961e-05
0.000104216
0.000125406
0.000149248
0.000173905
0.000197902
0.000219594
0.00023686
0.000246814
0.000249714
0.00023598
0.000198568
0.00015649
0.000128397
0.000117679
0.000117866
0.000118034
0.000109132
9.28285e-05
7.80605e-05
7.11706e-05
7.57097e-05
9.69696e-05
0.000135109
0.000149133
7.76707e-05
1.97525e-05
1.99683e-06
7.4379e-06
0.000120788
7.08726e-05
6.67734e-05
8.42986e-05
9.79384e-05
0.000100584
0.000101677
0.00010795
0.000119871
0.000133663
0.000144675
0.000150367
0.000150294
0.000144276
0.000132297
0.000115821
9.85337e-05
8.56524e-05
7.99001e-05
8.14549e-05
9.02343e-05
0.000105922
0.000125857
0.000144539
0.000157503
0.00016303
0.000159199
0.0001402
0.00010684
7.89327e-05
6.00318e-05
4.07084e-05
2.07832e-05
7.91582e-07
7.65006e-06
0.000127093
8.34254e-05
6.94313e-05
7.36577e-05
8.28651e-05
8.90012e-05
9.04163e-05
8.95427e-05
8.96173e-05
9.26541e-05
9.94394e-05
0.000110306
0.000125683
0.000145948
0.000170355
0.000195099
0.000210159
0.000203122
0.00018016
0.000160004
0.000151057
0.000152826
0.000161675
0.000171317
0.000172097
0.000154322
0.000122742
0.00010051
0.000100429
0.000126334
0.000173579
0.000149132
2.77743e-05
1.80877e-06
7.70493e-06
8.96344e-05
6.07193e-05
6.7015e-05
9.97688e-05
0.000134736
0.000157726
0.000172368
0.000181955
0.000188082
0.000193246
0.000201022
0.00021437
0.000231586
0.000233486
0.000233171
0.000233248
0.000214587
0.000168299
0.000128645
0.000104494
9.41747e-05
9.35943e-05
9.81485e-05
0.000104358
0.000111813
0.000123273
0.000142114
0.000162522
0.000136405
6.50343e-05
3.26527e-05
2.12501e-05
1.34578e-05
5.02208e-07
7.20303e-06
6.8566e-05
6.10147e-05
6.79241e-05
8.20973e-05
9.43478e-05
0.00010597
0.000117345
0.000128303
0.000139075
0.000150037
0.000161191
0.000171976
0.000181351
0.000188512
0.000192159
0.000190564
0.000183587
0.00017419
0.000165872
0.000159667
0.000154774
0.000150317
0.000146172
0.000142392
0.000138772
0.000134909
0.000129189
0.000112685
7.27358e-05
3.62392e-05
2.29968e-05
2.92648e-05
8.48543e-05
3.44382e-06
6.91692e-06
5.32025e-05
5.7413e-05
6.36836e-05
7.0963e-05
7.70476e-05
8.2637e-05
8.73199e-05
9.10048e-05
9.3535e-05
9.47502e-05
9.51227e-05
9.48461e-05
9.37062e-05
9.18272e-05
8.92718e-05
8.61211e-05
8.24835e-05
7.85351e-05
7.45192e-05
7.0687e-05
6.72519e-05
6.43631e-05
6.21088e-05
6.0536e-05
5.96794e-05
5.96272e-05
6.0581e-05
6.26665e-05
6.53648e-05
6.95599e-05
8.37295e-05
8.60306e-05
5.52513e-05
2.90681e-06
3.80388e-06
3.91985e-06
1.30526e-05
2.43315e-05
3.53417e-05
4.26292e-05
4.71581e-05
5.77028e-05
8.1086e-05
0.000109967
0.000125924
0.000127413
0.000129267
0.000130991
0.000132826
0.000134541
0.000136175
0.000137638
0.000138895
0.000132792
0.000131864
0.000143193
0.000145272
0.000147352
0.000139284
0.000132485
0.000123666
0.000110507
9.70775e-05
7.42014e-05
9.09717e-05
3.79706e-05
3.00931e-05
2.17318e-05
1.08242e-05
2.76942e-06
1.858e-05
3.4709e-05
5.28166e-05
6.18355e-05
5.35193e-05
3.89451e-05
2.43204e-05
1.42758e-05
1.20127e-05
1.65616e-05
2.42883e-05
3.18279e-05
3.69938e-05
4.29436e-05
5.29845e-05
6.59267e-05
7.64859e-05
7.63326e-05
6.79601e-05
5.70554e-05
4.80557e-05
4.29973e-05
4.23406e-05
4.16127e-05
3.76551e-05
3.61273e-05
3.41011e-05
3.05588e-05
2.6954e-05
2.26653e-05
1.83264e-05
2.01926e-05
8.98843e-06
9.74866e-06
4.55876e-06
7.02118e-05
0.000126767
0.000116797
0.000138161
0.000171846
0.000175548
0.000183747
0.000193007
0.000198778
0.000200164
0.000189611
0.000182805
0.00017939
0.000169989
0.000159298
0.000149632
0.000140889
0.000133064
0.000125417
0.000117769
0.000109929
0.00010213
9.446e-05
8.71761e-05
8.03219e-05
7.4042e-05
6.07497e-05
4.23697e-05
3.28194e-05
2.92597e-05
2.94414e-05
3.17942e-05
2.68961e-05
3.9573e-06
5.16601e-06
2.78314e-05
1.15807e-05
5.4781e-05
7.93703e-05
7.83539e-05
7.09164e-05
7.57821e-05
0.00011578
0.00015201
0.000161813
0.000161858
0.000155853
0.000149166
0.000143292
0.000139722
0.000137888
0.000137404
0.000137466
0.000134576
0.000113546
9.86757e-05
8.93011e-05
8.40808e-05
8.34756e-05
8.82164e-05
9.81702e-05
9.87126e-05
8.76371e-05
7.18016e-05
5.60629e-05
4.25364e-05
2.55556e-05
7.0068e-06
3.35304e-06
7.76472e-06
3.47852e-05
4.8015e-05
6.83662e-05
8.90453e-05
0.000102858
0.000107491
9.42597e-05
8.45419e-05
9.58432e-05
0.00011867
0.000143659
0.000172008
0.000195255
0.000198872
0.000199541
0.000198606
0.000196834
0.000188569
0.000177167
0.000172116
0.000171363
0.000175251
0.000172766
0.000132683
9.33027e-05
7.89296e-05
8.57015e-05
0.000102778
0.000113229
9.89399e-05
6.80149e-05
4.21643e-05
1.38613e-05
2.5153e-06
4.92521e-06
1.17972e-06
1.74327e-05
4.75377e-05
8.55269e-05
8.03115e-05
8.11385e-05
0.000113898
0.000118273
0.000122423
0.000116568
0.000116988
0.0001331
0.000154813
0.000173357
0.000188113
0.000196663
0.000193467
0.000182395
0.000175399
0.000177942
0.000187636
0.000188135
0.000176157
0.000147448
9.41569e-05
9.20922e-05
9.46234e-05
8.21979e-05
6.67084e-05
5.35591e-05
4.10308e-05
2.26468e-05
5.74042e-06
2.90128e-06
3.68865e-06
2.20889e-05
6.25948e-05
0.000109606
9.86207e-05
9.13847e-05
0.000116021
0.00011685
0.000115381
0.000134058
0.00017029
0.000204771
0.000209493
0.000190204
0.000172567
0.000167393
0.000175447
0.000197112
0.000232536
0.00022976
0.000221805
0.000212279
0.0002007
0.000186545
0.000169586
0.000150487
0.00013094
0.000112846
8.59795e-05
6.35413e-05
4.94176e-05
3.81764e-05
2.58672e-05
8.10392e-06
2.78785e-06
2.8204e-06
1.30525e-05
1.34652e-05
3.11146e-05
4.88876e-05
6.58816e-05
6.33619e-05
7.44444e-05
0.000110762
0.000167072
0.00020667
0.000217494
0.000215636
0.000215682
0.000223203
0.00023778
0.000256852
0.000259844
0.000254922
0.000249085
0.000241712
0.000232161
0.000219741
0.000203595
0.000182762
0.000156678
0.000126345
9.57062e-05
7.29367e-05
5.4667e-05
4.04985e-05
3.07169e-05
2.09312e-05
5.69189e-06
3.16907e-06
3.91447e-06
6.98449e-06
5.03911e-05
7.8057e-05
8.46362e-05
9.11367e-05
0.000103372
0.000119201
0.000136589
0.000158442
0.000185557
0.00022107
0.000262985
0.000271394
0.000276762
0.000214539
0.000183428
0.000196108
0.000230245
0.000253625
0.000253778
0.000243154
0.000229906
0.000213522
0.000193313
0.000168699
0.000139814
0.000108618
8.04164e-05
5.607e-05
3.78408e-05
2.8221e-05
1.92682e-05
5.15301e-06
3.23986e-06
2.56108e-06
2.24979e-05
6.6069e-05
3.91163e-05
8.18926e-05
0.000139468
0.000132812
0.00013098
0.000148131
0.000176958
0.000208089
0.000234767
0.000248612
0.000231227
0.000199075
0.000190946
0.000216798
0.000244501
0.000244402
0.000234033
0.000235981
0.000247127
0.000231077
0.000211782
0.000189162
0.000163266
0.000134817
0.000105765
7.9292e-05
5.00134e-05
3.50963e-05
2.56657e-05
1.59762e-05
4.15259e-06
3.19651e-06
4.61719e-06
1.52557e-05
4.81206e-05
8.96786e-05
0.000103636
0.000107308
0.000112879
0.000124304
0.00014264
0.000166298
0.000190585
0.000210584
0.000224519
0.000236942
0.000255777
0.000284153
0.000308732
0.000306167
0.000300025
0.00029117
0.00027987
0.000266001
0.000249243
0.000229221
0.000205626
0.00017849
0.000148616
0.000118012
8.94834e-05
5.24979e-05
3.62653e-05
2.70906e-05
1.75903e-05
4.20145e-06
3.2125e-06
1.71541e-06
1.48904e-05
7.33912e-05
0.000130627
0.000167455
0.000155801
0.000136534
0.000146376
0.000177622
0.000194325
0.000183848
0.000171681
0.000170409
0.0001816
0.000205574
0.000239997
0.00028083
0.000314077
0.000310625
0.00030211
0.000289465
0.000273636
0.000254539
0.000231828
0.000205351
0.000175422
0.000143264
0.000111365
7.95043e-05
4.74066e-05
3.29561e-05
2.54863e-05
1.61946e-05
4.15678e-06
3.2711e-06
3.5699e-06
1.55711e-05
5.77435e-05
0.000109671
0.000148269
0.000145313
0.000119787
0.000112028
0.000124357
0.000173298
0.000232147
0.000261137
0.000270384
0.000185923
0.000141547
0.000128796
0.000132208
0.000143937
0.000160458
0.000181338
0.000207522
0.000237777
0.000263353
0.000255432
0.000230668
0.000201583
0.000169215
0.000135211
0.000102
6.23729e-05
3.73072e-05
2.42012e-05
1.53779e-05
4.11033e-06
3.24326e-06
1.93557e-06
8.10805e-06
4.49554e-05
0.000102274
0.000122587
0.000209958
0.000212153
0.00013117
0.000105916
0.000101848
0.000107105
0.000120672
0.000147142
0.000188003
0.000226663
0.000213509
0.000171676
0.00015145
0.000150721
0.000157093
0.000165243
0.000172891
0.000179983
0.000188282
0.000199373
0.000207567
0.000178982
0.000148144
0.00011703
8.41978e-05
5.02053e-05
2.94289e-05
1.57191e-05
3.76529e-06
3.53065e-06
3.5917e-06
7.67786e-06
3.04142e-05
7.49264e-05
0.000128624
0.000154044
0.000166594
0.000186311
0.000192755
0.000173577
0.000153308
0.000142214
0.000138655
0.000140859
0.000147815
0.000156236
0.000162069
0.000165524
0.000169688
0.000177153
0.000184057
0.000185722
0.00018161
0.000170677
0.000152551
0.000133871
0.000121681
0.000108695
8.96405e-05
6.91029e-05
5.11871e-05
3.60103e-05
2.10061e-05
4.53e-06
3.72152e-06
3.52316e-06
1.26661e-05
5.72896e-05
0.000118794
0.000173398
0.000211793
0.000213281
0.000211897
0.000217892
0.000232302
0.000249635
0.00026231
0.00026795
0.000270079
0.000272287
0.000275101
0.000274496
0.00026379
0.000242727
0.000210391
0.000162701
0.000124748
0.00011693
0.000136751
0.000162312
0.000169377
0.000164186
0.000146335
0.000113282
7.63776e-05
5.03768e-05
3.63585e-05
2.60427e-05
5.83884e-06
3.59277e-06
2.79736e-06
1.39265e-05
5.97878e-05
0.000120788
0.00017699
0.000225007
0.000245006
0.000254086
0.000259893
0.000263067
0.000263927
0.000263622
0.000263209
0.000262816
0.000262109
0.000260666
0.000259167
0.000258268
0.000255892
0.000251686
0.000253081
0.000271036
0.000304996
0.000329073
0.000309283
0.000275719
0.000237705
0.00019636
0.000153553
0.00010685
6.33315e-05
3.75983e-05
2.36345e-05
5.43359e-06
3.57457e-06
3.16586e-06
1.59634e-05
7.14314e-05
0.000143456
0.000204129
0.000227176
0.000244942
0.000268523
0.000296548
0.000324832
0.000349237
0.000367406
0.000379438
0.000387285
0.000393548
0.000399933
0.000406384
0.00041157
0.000413317
0.000409908
0.000401167
0.000388732
0.000374671
0.000359001
0.000339025
0.000309164
0.000270848
0.000226721
0.000169691
0.00011525
7.39581e-05
4.51629e-05
2.53608e-05
5.36567e-06
3.66075e-06
3.14063e-06
2.04102e-05
8.84657e-05
0.000170791
0.000238537
0.000272868
0.000276727
0.000284289
0.000300173
0.000321822
0.000345173
0.000366194
0.000382021
0.000391824
0.00039682
0.000399624
0.000402723
0.000407164
0.000412437
0.000416926
0.000418555
0.000415402
0.000406276
0.000390879
0.000369024
0.000339153
0.000300096
0.000250725
0.000190858
0.000133273
8.95131e-05
5.80289e-05
3.28671e-05
6.62178e-06
3.74483e-06
2.91813e-06
1.92496e-05
8.67706e-05
0.000173193
0.000249793
0.000309022
0.000318747
0.000311408
0.000311784
0.000321982
0.000339388
0.000360987
0.000383974
0.000405766
0.000424169
0.000437982
0.000447618
0.000454501
0.000459561
0.0004624
0.000461521
0.000455189
0.000442296
0.000422673
0.000396625
0.000363827
0.000322418
0.000270384
0.000210251
0.000151451
0.000103945
6.92835e-05
4.04059e-05
8.27542e-06
3.87977e-06
2.67307e-06
1.41913e-05
7.1918e-05
0.000152607
0.000231838
0.000300549
0.000349922
0.000354727
0.000350937
0.000352375
0.000361656
0.000377183
0.000396264
0.000416526
0.000436698
0.000456333
0.000474434
0.000489136
0.000499175
0.000504264
0.000503973
0.000497229
0.000482876
0.000460676
0.000431599
0.000396604
0.000350805
0.000292599
0.000227072
0.000165601
0.000117033
8.05427e-05
4.69117e-05
9.72977e-06
4.00017e-06
2.79225e-06
1.11555e-05
6.20195e-05
0.000135959
0.000211432
0.000281633
0.000342674
0.00037752
0.000389001
0.000393049
0.00039861
0.0004095
0.000426552
0.000448384
0.000471235
0.000491071
0.000507751
0.000524045
0.000539039
0.000546896
0.000541439
0.000526755
0.00050736
0.000482697
0.000452358
0.000416216
0.000369377
0.000306913
0.000237487
0.000174715
0.00012733
9.10105e-05
5.20617e-05
1.07424e-05
4.06326e-06
3.10728e-06
1.19435e-05
6.26358e-05
0.000134675
0.000207767
0.000276798
0.000339093
0.000385725
0.000412912
0.000430165
0.000441959
0.000451333
0.000461461
0.000475887
0.000497807
0.000526319
0.000551896
0.000566024
0.000572396
0.000574569
0.000568082
0.000551195
0.000529566
0.000502664
0.000470041
0.000431498
0.000386185
0.000322396
0.000250562
0.000184312
0.000133705
9.60995e-05
5.48534e-05
1.12976e-05
4.11002e-06
3.41463e-06
1.497e-05
7.00705e-05
0.000143161
0.000215688
0.000283768
0.000346017
0.000401344
0.000435851
0.00045955
0.000477513
0.000490527
0.000499694
0.000507564
0.000518227
0.000536738
0.000564298
0.000590548
0.000601366
0.000598714
0.000589791
0.000575817
0.00055443
0.000525366
0.000490316
0.000449015
0.000400545
0.000335109
0.000260927
0.000191222
0.000135955
9.49604e-05
5.29646e-05
1.08333e-05
4.13111e-06
3.73293e-06
2.10868e-05
8.7754e-05
0.000166425
0.00024006
0.000306822
0.000366951
0.000420654
0.000462537
0.000489719
0.000507712
0.000520815
0.000530939
0.000539081
0.000546817
0.000557291
0.000574511
0.00059853
0.000618539
0.000621367
0.000609864
0.00059294
0.000573578
0.000549059
0.000515182
0.000472367
0.000421328
0.000353886
0.000277006
0.000202873
0.000141529
9.50662e-05
5.08921e-05
1.01726e-05
4.0647e-06
3.95809e-06
2.60064e-05
0.000103906
0.000192262
0.000271392
0.000339934
0.000390439
0.00043838
0.00048498
0.000524252
0.00055165
0.000567476
0.000575625
0.000580418
0.000584838
0.000590874
0.000600976
0.000617755
0.000639289
0.000652956
0.000645936
0.000622659
0.000594096
0.000565494
0.000534555
0.00049504
0.000441831
0.000374548
0.00029877
0.000223648
0.000157803
0.000104546
5.3115e-05
1.0258e-05
3.98523e-06
4.01021e-06
2.55989e-05
0.000105669
0.000201222
0.000288374
0.000363195
0.000412721
0.000454521
0.000498801
0.000543181
0.000581958
0.000610209
0.00062626
0.000632405
0.000633209
0.00063292
0.000634549
0.000640792
0.000653895
0.000671114
0.000677735
0.00065604
0.000628263
0.000594629
0.00055346
0.00050559
0.000449091
0.000383981
0.000313602
0.000244085
0.000180826
0.000123703
5.9465e-05
1.12724e-05
3.97543e-06
3.93907e-06
2.08797e-05
9.33474e-05
0.000186556
0.000276691
0.000357975
0.000420752
0.000468628
0.00051327
0.000558076
0.000601219
0.00063814
0.000664643
0.000679215
0.0006836
0.000681679
0.000677501
0.000674203
0.000674351
0.000679438
0.000685582
0.000678242
0.00064798
0.000611624
0.000569505
0.000518909
0.00045609
0.000389114
0.00032391
0.000262893
0.00020371
0.000137766
6.59258e-05
1.27209e-05
4.00789e-06
3.98915e-06
1.94217e-05
8.63071e-05
0.000173449
0.000259309
0.000339691
0.00041129
0.000467158
0.000512913
0.00055466
0.000596329
0.000637611
0.000674652
0.000702844
0.000719775
0.000726094
0.000724495
0.000718077
0.000709324
0.000699935
0.00069035
0.000677981
0.000657091
0.000624334
0.000580723
0.00052719
0.000465495
0.000401149
0.00034002
0.000281178
0.000213897
0.000142095
6.89197e-05
1.3573e-05
3.98764e-06
4.1837e-06
2.32145e-05
9.42699e-05
0.000181409
0.000263818
0.000339267
0.000402767
0.000457291
0.000504262
0.000544267
0.000581432
0.000619284
0.000658192
0.000695281
0.000726042
0.000746983
0.000757207
0.000758025
0.000751455
0.00073884
0.000720477
0.000696139
0.000665859
0.000630026
0.000588613
0.000540927
0.000487041
0.000428088
0.000363738
0.000293259
0.00022075
0.000146448
7.15635e-05
1.4273e-05
3.93401e-06
4.49067e-06
3.0621e-05
0.00011616
0.000213795
0.000300115
0.000371998
0.000406144
0.000445503
0.000493037
0.000539128
0.00057849
0.000613724
0.000649317
0.000687005
0.000724968
0.000758464
0.00078174
0.000790763
0.000785384
0.00076926
0.000747071
0.000721564
0.000692701
0.000658996
0.000619613
0.000574734
0.000521922
0.000456584
0.00038578
0.000310773
0.000232929
0.000153477
7.4538e-05
1.47031e-05
3.88307e-06
4.56823e-06
3.5044e-05
0.000131385
0.00024144
0.000337033
0.000409397
0.000426444
0.000448322
0.000487641
0.000539666
0.000591744
0.00063384
0.000666246
0.00069547
0.000727025
0.000762297
0.000797207
0.000820929
0.000820534
0.000810686
0.000789188
0.000757654
0.000723001
0.000687247
0.000650023
0.000606544
0.000548619
0.000483585
0.000411822
0.0003341
0.000251618
0.000166034
8.05885e-05
1.57875e-05
3.90482e-06
4.33025e-06
3.13889e-05
0.00012487
0.000239897
0.000344075
0.000428463
0.000445824
0.0004613
0.000490378
0.000533954
0.000587032
0.000640595
0.000686407
0.000721613
0.000748554
0.000771777
0.000794711
0.000816717
0.000830944
0.000828585
0.000811054
0.000781779
0.000745848
0.000706829
0.000666825
0.000624232
0.000568503
0.000504103
0.000432391
0.000353513
0.00026808
0.000177549
8.60539e-05
1.68534e-05
3.96933e-06
4.17795e-06
2.72065e-05
0.000115017
0.000228593
0.000335962
0.000427452
0.000465881
0.00048086
0.000500084
0.000530124
0.000569571
0.000614775
0.000662324
0.000710155
0.000755776
0.000793847
0.000819152
0.000831091
0.00083249
0.000825746
0.000811129
0.000787825
0.000756228
0.000718986
0.000679394
0.000637001
0.000581703
0.000517977
0.000446818
0.000367858
0.000281045
0.000187315
9.1221e-05
1.80986e-05
4.00714e-06
4.30478e-06
2.79899e-05
0.000117381
0.000230782
0.0003381
0.000430999
0.000485685
0.000503599
0.000516658
0.000535361
0.000563592
0.000600855
0.000643574
0.000688647
0.000733515
0.000774314
0.000806764
0.000828373
0.000838395
0.000836797
0.000824036
0.000801427
0.000771147
0.000735301
0.000693771
0.000643168
0.000586127
0.000522488
0.00045181
0.000373447
0.000286797
0.000192113
9.38657e-05
1.88564e-05
3.98892e-06
4.33853e-06
2.96674e-05
0.000122916
0.000238623
0.000347147
0.000440936
0.000503911
0.000525597
0.000540017
0.000551783
0.000565135
0.000588201
0.000623546
0.00066589
0.000709401
0.000751261
0.000788764
0.000818326
0.000837003
0.000842742
0.000834253
0.000810438
0.000778949
0.000740455
0.000695183
0.000643392
0.000585282
0.000520878
0.000449923
0.000371838
0.000285841
0.000191699
9.35203e-05
1.89131e-05
3.92929e-06
4.25102e-06
2.67281e-05
0.000114242
0.000225448
0.000332986
0.000428807
0.00051036
0.000541415
0.000556288
0.000568914
0.000577547
0.000584723
0.000601413
0.000634232
0.000677318
0.00072092
0.000760201
0.000792916
0.000817033
0.000830426
0.000830434
0.000813351
0.00078184
0.000742968
0.000696959
0.0006441
0.000584688
0.00051893
0.000446833
0.000368106
0.000282164
0.000188734
9.16522e-05
1.85866e-05
3.86435e-06
4.48696e-06
2.81756e-05
0.000115592
0.000223299
0.000327153
0.000420963
0.000502705
0.000561057
0.00057669
0.000588799
0.000603046
0.000614336
0.000621078
0.000631386
0.000654109
0.000686671
0.000719142
0.000747312
0.000771294
0.000789736
0.000799979
0.000799038
0.000781684
0.000743994
0.000698615
0.00064583
0.000585964
0.000519327
0.000446121
0.000366332
0.000279704
0.000186238
8.99019e-05
1.8267e-05
3.82089e-06
4.71552e-06
3.32352e-05
0.000127336
0.000237418
0.000340402
0.00043171
0.000510651
0.000577414
0.00059722
0.000602435
0.000613532
0.000629441
0.000644176
0.000654743
0.000660348
0.000668852
0.000689302
0.000715813
0.000738217
0.000755055
0.00076686
0.000772298
0.000767271
0.000740768
0.000697309
0.000645943
0.000586873
0.000520371
0.00044671
0.000366074
0.000278543
0.000184561
8.84944e-05
1.7907e-05
3.77492e-06
4.68834e-06
3.20855e-05
0.000124526
0.00023521
0.000339929
0.000433128
0.000513746
0.000582001
0.000631851
0.000637864
0.000637312
0.000643902
0.000654651
0.000665198
0.000675958
0.000683043
0.000681677
0.000683383
0.000700262
0.000722087
0.000741523
0.000755721
0.000758736
0.000736106
0.00069429
0.000644572
0.000586924
0.000521411
0.00044819
0.00036747
0.000279508
0.000185051
8.86978e-05
1.79602e-05
3.73789e-06
4.82311e-06
3.37101e-05
0.000128802
0.000241368
0.000347299
0.000441329
0.000522585
0.000591382
0.000647776
0.000661246
0.000662229
0.000662698
0.000667543
0.0006738
0.000677757
0.000681134
0.000685925
0.000691183
0.00070132
0.000717788
0.000729843
0.000737728
0.00074227
0.000732206
0.000691033
0.000642244
0.000585631
0.000521031
0.000448383
0.00036776
0.000279463
0.000184519
8.80085e-05
1.77396e-05
3.68684e-06
4.98624e-06
3.63256e-05
0.000136386
0.000253926
0.000363395
0.000459306
0.000541103
0.000609513
0.000660963
0.000675266
0.000681113
0.000684533
0.000686406
0.000689016
0.000692271
0.000694455
0.000696641
0.00070092
0.000705002
0.000707584
0.000715878
0.000724245
0.000727254
0.000721756
0.000689372
0.000641062
0.000585227
0.000521523
0.000449656
0.000369482
0.000281177
0.000185825
8.87414e-05
1.79036e-05
3.63732e-06
5.03703e-06
3.71933e-05
0.000141161
0.000264697
0.000379702
0.000479725
0.000564132
0.000633944
0.000685098
0.000703616
0.000712295
0.000719625
0.000724821
0.00072507
0.000721738
0.000717636
0.000714398
0.000713934
0.000718438
0.0007248
0.0007247
0.000721034
0.000721434
0.00071638
0.00069153
0.000642097
0.000585741
0.000522052
0.000450517
0.000370683
0.000282429
0.000186698
8.90349e-05
1.79632e-05
3.60753e-06
4.94337e-06
3.73058e-05
0.000143684
0.000271413
0.000390867
0.000494673
0.000581791
0.000653155
0.000685311
0.000705079
0.000720238
0.000732486
0.000743602
0.000752912
0.00075696
0.000754335
0.00074729
0.000738936
0.000731545
0.000727392
0.000726693
0.000723701
0.000715297
0.000711022
0.000698464
0.00064715
0.000589113
0.000524223
0.000452028
0.000371938
0.000283546
0.000187496
8.93005e-05
1.80093e-05
3.59428e-06
4.77748e-06
3.47149e-05
0.000137373
0.000263592
0.000384168
0.000490839
0.000581545
0.000656464
0.000693691
0.000715785
0.00073303
0.000746123
0.000755333
0.000762546
0.000769838
0.000775446
0.000775345
0.000768866
0.000758394
0.000746384
0.000735439
0.000727672
0.000720905
0.000709332
0.000692007
0.00065644
0.000596736
0.000529938
0.000456042
0.000374691
0.000285438
0.000188674
8.97526e-05
1.81769e-05
3.62026e-06
4.69134e-06
3.2775e-05
0.000131232
0.000253269
0.000371747
0.000478696
0.000571503
0.000649578
0.000698587
0.000725117
0.000743087
0.000754681
0.000761436
0.000764574
0.000765539
0.000768565
0.000774549
0.000777324
0.000773126
0.000762741
0.000748075
0.000730644
0.000711651
0.000692456
0.000675146
0.000654856
0.000604842
0.00053691
0.000461216
0.00037787
0.000286822
0.000188682
8.90451e-05
1.79872e-05
3.63864e-06
4.65686e-06
2.89768e-05
0.000120659
0.000236776
0.000351523
0.000457214
0.000550961
0.000631666
0.000699153
0.000737249
0.000757871
0.000765779
0.000765412
0.000761783
0.000757819
0.000754393
0.000755343
0.000759757
0.000760544
0.000753916
0.000740432
0.000722555
0.00070317
0.000685036
0.000669574
0.000652199
0.000612008
0.000544165
0.000467538
0.000382502
0.000289445
0.000189484
8.87044e-05
1.77432e-05
3.61031e-06
4.8917e-06
2.75701e-05
0.000116152
0.000228949
0.000341053
0.000445229
0.000538703
0.000620285
0.000689586
0.000746738
0.00077742
0.000788351
0.000784909
0.000773931
0.000761434
0.000751485
0.000745117
0.00074481
0.000744822
0.000739135
0.000726517
0.000708951
0.000690211
0.00067444
0.000663081
0.000650088
0.000615787
0.000548947
0.000472556
0.000386969
0.000292717
0.000191226
8.90276e-05
1.75728e-05
3.54779e-06
5.21563e-06
2.83178e-05
0.000116953
0.000227771
0.000337731
0.000440592
0.000533809
0.000616042
0.000686572
0.000744121
0.000774464
0.000788158
0.000790048
0.000783809
0.000772171
0.000757964
0.00074506
0.000736408
0.000734342
0.000732804
0.000724077
0.000707067
0.000685553
0.000665533
0.000651817
0.000641377
0.000616261
0.000550164
0.000474033
0.000388187
0.000293194
0.000190687
8.77745e-05
1.69923e-05
3.44489e-06
5.53188e-06
2.88489e-05
0.00011631
0.000223769
0.000330074
0.000430424
0.000522807
0.000605808
0.000678319
0.00073958
0.000774063
0.000784655
0.00078549
0.000782723
0.00077741
0.000768203
0.000754546
0.000738974
0.000725254
0.000716185
0.00071039
0.000699248
0.00068139
0.000660055
0.000640772
0.000626717
0.000607641
0.000551049
0.000475437
0.000389597
0.000294122
0.000190832
8.73156e-05
1.67768e-05
3.34471e-06
5.81492e-06
3.13267e-05
0.000120869
0.000228539
0.0003334
0.000431785
0.000522519
0.000604594
0.000677047
0.000739089
0.000783499
0.000794601
0.000792121
0.000786105
0.000780071
0.000773608
0.000764593
0.000751586
0.000735596
0.000719119
0.000704364
0.000692658
0.000676871
0.000657221
0.000637129
0.000619583
0.000600144
0.00055378
0.00047858
0.000392606
0.000296415
0.000192
8.75449e-05
1.68553e-05
3.26678e-06
5.90105e-06
3.10491e-05
0.000119593
0.000228096
0.000334159
0.000433521
0.000524873
0.000607357
0.000680271
0.000743028
0.000787916
0.000803212
0.000805528
0.000802601
0.00079732
0.000790017
0.000779727
0.00076543
0.00074747
0.000728166
0.000710162
0.000694682
0.000680749
0.000661654
0.000639687
0.00061853
0.000597187
0.000559817
0.000485354
0.000399607
0.000302876
0.000197016
9.0501e-05
1.77555e-05
3.26068e-06
5.9328e-06
2.87026e-05
0.000113471
0.000221593
0.000329019
0.000430203
0.000523169
0.000606956
0.000681023
0.000745002
0.000795438
0.000811504
0.000814264
0.000813037
0.00081052
0.000806333
0.000798939
0.000786772
0.000769206
0.000747486
0.000724674
0.000703452
0.000684636
0.000666599
0.000645576
0.000624623
0.000602404
0.000565576
0.000491567
0.000406185
0.000309321
0.000202398
9.38003e-05
1.87643e-05
3.32142e-06
6.04782e-06
2.8772e-05
0.000114412
0.00022508
0.000335174
0.000438409
0.000532633
0.000616999
0.000691208
0.000755175
0.00080887
0.000832502
0.000836276
0.000833728
0.000829743
0.000824741
0.000817367
0.000806011
0.000789633
0.000768334
0.00074389
0.000719435
0.00069723
0.000677285
0.000657087
0.000634745
0.000609988
0.000569354
0.000494626
0.000408976
0.000312038
0.000204838
9.53787e-05
1.93134e-05
3.40868e-06
6.13493e-06
3.03725e-05
0.000120022
0.000234524
0.000347106
0.000451751
0.000546692
0.000631319
0.000705497
0.000769283
0.000822805
0.000851114
0.000857797
0.000856893
0.00085366
0.000848817
0.000841291
0.000829713
0.000813242
0.000791885
0.00076659
0.000739463
0.000713637
0.000691397
0.000672385
0.000651745
0.000623843
0.00057343
0.000496465
0.000409343
0.000311765
0.000204607
9.53829e-05
1.94293e-05
3.47051e-06
6.19845e-06
3.33816e-05
0.000129048
0.000248013
0.000363009
0.000468519
0.000563444
0.000647634
0.000721212
0.000784408
0.000837504
0.000875895
0.000884533
0.000882918
0.000878762
0.000873326
0.000865494
0.000853826
0.000837388
0.000816099
0.000790678
0.000762551
0.000734043
0.000708313
0.000687412
0.00066848
0.000638994
0.000580357
0.000500451
0.000410914
0.000311791
0.000204101
9.50546e-05
1.9393e-05
3.50045e-06
6.15169e-06
3.72569e-05
0.000141026
0.000266147
0.000384529
0.000491057
0.000585411
0.000668175
0.000740012
0.000801494
0.000853113
0.000894071
0.000906049
0.00090654
0.000903317
0.000897976
0.000889711
0.000877433
0.000860504
0.000839024
0.000813817
0.000786233
0.000758018
0.000731318
0.000707925
0.000686032
0.000654381
0.000591377
0.000508549
0.000416104
0.000314506
0.000205127
9.5244e-05
1.93288e-05
3.50118e-06
5.99198e-06
4.13509e-05
0.000153823
0.000285882
0.000408235
0.000515955
0.000609454
0.000690127
0.000758654
0.000815349
0.000862515
0.000896232
0.0009156
0.000923776
0.000924796
0.000921127
0.000913378
0.000901157
0.000884197
0.000862918
0.000838247
0.000811352
0.000783652
0.000756962
0.000732916
0.000709893
0.000676047
0.0006057
0.00052048
0.000425207
0.000320621
0.000208491
9.64948e-05
1.93874e-05
3.47745e-06
5.82324e-06
4.41662e-05
0.000162939
0.00030181
0.0004295
0.000540029
0.000633739
0.000704052
0.000749233
0.000794546
0.000841251
0.000883826
0.000915981
0.000934626
0.000941456
0.000940195
0.000933274
0.000921291
0.000904575
0.000883961
0.000860611
0.00083578
0.000810751
0.000786884
0.00076477
0.000740234
0.000696022
0.000620313
0.0005335
0.000435975
0.000328541
0.000213272
9.84465e-05
1.95864e-05
3.44123e-06
5.66881e-06
4.44224e-05
0.000164113
0.000306389
0.000438882
0.000553646
0.000649925
0.000708874
0.000735733
0.000768472
0.000811105
0.000858903
0.000902188
0.000931282
0.000946138
0.000950264
0.000946417
0.00093618
0.000920558
0.000900821
0.000878694
0.000856039
0.000834633
0.000815758
0.000798164
0.000771839
0.000709087
0.000633048
0.000545437
0.000446416
0.000336697
0.000218543
0.000100859
1.99797e-05
3.39581e-06
5.60889e-06
4.31398e-05
0.000160016
0.00030074
0.000434551
0.00055261
0.000652986
0.000735237
0.000744773
0.000757712
0.000791042
0.000844389
0.000905459
0.000940885
0.000947742
0.000948582
0.000948331
0.000942551
0.000929451
0.000910975
0.000890454
0.000871041
0.000854872
0.000841441
0.000823799
0.000782341
0.000718179
0.000642492
0.000554842
0.000455135
0.000343916
0.000223538
0.000103449
2.05804e-05
3.35239e-06
5.69377e-06
4.4075e-05
0.000161474
0.000300278
0.000432388
0.000550189
0.000651844
0.000737587
0.000791977
0.000801049
0.000818353
0.00086192
0.000926528
0.00096812
0.000960395
0.000946923
0.000943693
0.000940856
0.000931082
0.000914938
0.000896654
0.000880595
0.000868994
0.000859468
0.000840958
0.000787802
0.000724043
0.000648824
0.000561447
0.000461534
0.000349408
0.000227441
0.000105572
2.11525e-05
3.29718e-06
5.77871e-06
4.59645e-05
0.000166181
0.000305773
0.000437292
0.000554276
0.00065567
0.000742137
0.000814924
0.000865413
0.000890783
0.000919628
0.000947693
0.000954439
0.00094706
0.000943728
0.000943571
0.000940094
0.000930197
0.000915449
0.000899879
0.000887506
0.000879581
0.0008709
0.000844596
0.000791208
0.000727514
0.000652574
0.000565514
0.000465722
0.00035329
0.000230492
0.000107472
2.17395e-05
3.24013e-06
5.80742e-06
4.65247e-05
0.000167546
0.000308138
0.000440226
0.000557417
0.000659054
0.000746092
0.000819775
0.00088117
0.000931178
0.000939851
0.000934558
0.000934648
0.000941623
0.000948675
0.000949777
0.000943268
0.000930757
0.000915678
0.000902124
0.000893346
0.000889146
0.000881512
0.000848023
0.000793738
0.000729464
0.000654247
0.000567144
0.000467403
0.000354961
0.000231982
0.000108584
2.21212e-05
3.17274e-06
5.812e-06
4.77047e-05
0.000169798
0.000310242
0.000441603
0.000558071
0.000659293
0.000746221
0.000819964
0.000881535
0.000930116
0.000934592
0.000936369
0.00094547
0.00095662
0.000962922
0.000961031
0.000951401
0.000937037
0.000922027
0.000910572
0.000905597
0.000905644
0.000897702
0.000851121
0.000795657
0.000730468
0.000654632
0.000567227
0.000467486
0.000355275
0.000232628
0.000109407
2.246e-05
3.11648e-06
5.68039e-06
4.93448e-05
0.000174387
0.000316624
0.00044847
0.000564452
0.00066444
0.000749573
0.000821166
0.000859682
0.000887532
0.000911729
0.000933933
0.000952565
0.000965394
0.000970494
0.000967231
0.000957188
0.000943826
0.0009317
0.000925159
0.000925891
0.000926698
0.000899734
0.000852287
0.000795997
0.000730079
0.000653681
0.000565952
0.0004662
0.000354332
0.000232318
0.000109693
2.264e-05
3.07652e-06
5.32169e-06
4.72692e-05
0.000170685
0.000314049
0.000447785
0.000564954
0.00066487
0.000748615
0.000783933
0.000815509
0.000852971
0.000892047
0.000927077
0.000953848
0.000969787
0.000974589
0.000970186
0.000959807
0.000947756
0.000939286
0.000938854
0.00094496
0.000938011
0.00089846
0.000850768
0.000794258
0.00072817
0.000651702
0.000564068
0.000464645
0.00035337
0.000232132
0.000110118
2.28657e-05
3.06464e-06
4.9554e-06
4.1633e-05
0.000156835
0.000295781
0.000428937
0.000547751
0.000650338
0.000737169
0.000803752
0.000827211
0.000854501
0.000889017
0.00092146
0.000946034
0.000961924
0.000968072
0.000964201
0.000953664
0.000942663
0.000937792
0.000942575
0.000950238
0.000932274
0.000893122
0.000845815
0.000789687
0.000724005
0.000648002
0.000560943
0.000462256
0.000351889
0.000231622
0.000110318
2.30243e-05
3.06446e-06
4.81605e-06
3.81273e-05
0.000147221
0.000279895
0.000409144
0.000526682
0.000629988
0.000718739
0.000793503
0.000836445
0.000845737
0.000862323
0.000893147
0.000925799
0.000946232
0.000952243
0.000947964
0.000937697
0.000927229
0.000923456
0.000929846
0.000939039
0.000923241
0.000884619
0.000837928
0.00078249
0.000717572
0.000642417
0.000556308
0.000458694
0.000349511
0.000230439
0.000110091
2.30655e-05
3.06346e-06
4.84105e-06
3.62977e-05
0.000141039
0.000267889
0.000392334
0.000506946
0.000609116
0.000698095
0.000773987
0.000831732
0.000844268
0.000848219
0.000861434
0.000888937
0.000922838
0.00094502
0.000946109
0.000933576
0.000919053
0.000911084
0.000914172
0.000922932
0.000912295
0.000874003
0.000827891
0.000773242
0.000709281
0.000635217
0.000550308
0.000453976
0.000346123
0.000228362
0.000109153
2.28162e-05
3.03934e-06
4.97184e-06
3.44568e-05
0.000134513
0.000255888
0.000375719
0.000487253
0.000587954
0.000676862
0.000753747
0.000818746
0.000844024
0.000851101
0.000856086
0.000866559
0.000887528
0.000918302
0.000945598
0.000950154
0.000933176
0.00091369
0.000905246
0.000907542
0.000901048
0.0008624
0.000816416
0.000762308
0.00069922
0.000626288
0.000542704
0.000447838
0.000341538
0.000225351
0.000107604
2.23752e-05
3.00061e-06
5.24684e-06
3.42669e-05
0.000132109
0.000249666
0.000365388
0.000473482
0.00057186
0.000659654
0.000736516
0.000802357
0.00083677
0.000845466
0.000851709
0.000860058
0.000870637
0.000886364
0.000911815
0.000943642
0.00096095
0.000947056
0.000920742
0.000904425
0.0008924
0.000852307
0.000805586
0.000751412
0.000688826
0.000616832
0.000534487
0.000441022
0.000336184
0.000221476
0.000105273
2.16519e-05
2.92861e-06
5.60868e-06
3.61535e-05
0.000135454
0.000252295
0.000365742
0.000471006
0.000566727
0.000652448
0.000727977
0.000793201
0.0008267
0.000834746
0.000841067
0.000852611
0.00086702
0.000880623
0.000894652
0.000916069
0.000948517
0.000974441
0.000956192
0.000925233
0.000888272
0.000845557
0.000796865
0.000741528
0.000678603
0.000607016
0.000525688
0.00043368
0.00033054
0.000217582
0.000103059
2.10217e-05
2.8497e-06
5.95027e-06
3.88921e-05
0.000142673
0.000262104
0.000375648
0.000479346
0.000572734
0.000656025
0.000729451
0.000793116
0.000821071
0.000831466
0.000839448
0.00085155
0.000868339
0.000886929
0.000904376
0.000921363
0.00094211
0.00096429
0.000959569
0.000926943
0.000887738
0.000842423
0.00079116
0.000733671
0.000669258
0.000596945
0.000515649
0.000424356
0.00032252
0.000211386
9.92313e-05
1.99286e-05
2.72972e-06
6.15927e-06
4.08324e-05
0.000150204
0.000274673
0.000390357
0.000493682
0.00058518
0.000665917
0.000730893
0.000780395
0.000815837
0.000840038
0.000857402
0.000872413
0.000887988
0.00090484
0.000921894
0.00093773
0.000952197
0.000965119
0.000967986
0.000934647
0.000893547
0.000845744
0.000791641
0.000731325
0.000664494
0.000590485
0.000508371
0.000417141
0.000316133
0.000206435
9.62364e-05
1.91339e-05
2.61201e-06
6.16942e-06
4.02399e-05
0.000151679
0.000279722
0.000397327
0.000498779
0.000563773
0.000623666
0.000683017
0.000739364
0.000789121
0.000830147
0.000862593
0.000888027
0.000908231
0.000924597
0.000938087
0.000949145
0.000957156
0.000959926
0.000954476
0.000937946
0.000901528
0.000853016
0.00079715
0.000734254
0.000664467
0.00058766
0.0005034
0.000411023
0.000310024
0.000201448
9.32531e-05
1.83739e-05
2.48503e-06
6.00491e-06
3.6995e-05
0.000143531
0.000269395
0.000387347
0.000491385
0.000565971
0.000614919
0.000658562
0.000700516
0.000740341
0.000777631
0.000812872
0.000846692
0.000878408
0.000905496
0.000924692
0.000934158
0.000935495
0.000933909
0.000934552
0.000933607
0.000905239
0.00085887
0.000803968
0.000740785
0.000669602
0.000590651
0.000504023
0.000409638
0.000307527
0.000199052
9.19101e-05
1.80086e-05
2.39346e-06
5.87614e-06
3.34506e-05
0.000131614
0.000249502
0.000362804
0.000465655
0.000556145
0.000610148
0.00065098
0.000686959
0.000719265
0.000748193
0.000774782
0.00080059
0.000826669
0.000852294
0.000874978
0.000892607
0.000905605
0.000916738
0.000928334
0.000934124
0.00090339
0.000860747
0.000809034
0.000748249
0.000678479
0.000599854
0.000512501
0.000416557
0.000312424
0.000201911
9.30761e-05
1.80978e-05
2.34077e-06
5.926e-06
3.08877e-05
0.000122627
0.000234258
0.000341836
0.000440286
0.000528152
0.000586232
0.000626931
0.000663884
0.000700262
0.000734998
0.000765972
0.000791762
0.000812997
0.000832828
0.000854515
0.000877456
0.000898614
0.000916401
0.000928798
0.000927117
0.000896476
0.000857077
0.000808605
0.000750797
0.00068347
0.000606548
0.000520021
0.00042397
0.000318829
0.000206519
9.54093e-05
1.86258e-05
2.36385e-06
6.00613e-06
3.10228e-05
0.000122516
0.00023325
0.000338939
0.000434947
0.000520412
0.000594177
0.000633807
0.000660937
0.000685928
0.000711764
0.000737812
0.000762403
0.000784493
0.000804269
0.000823223
0.000843826
0.000865811
0.000886687
0.000903718
0.000910129
0.000890436
0.00085375
0.000808265
0.000753533
0.000689082
0.000614483
0.000529406
0.000433692
0.000327652
0.000213246
9.91649e-05
1.95499e-05
2.42085e-06
5.98284e-06
3.03226e-05
0.000119919
0.00022909
0.000333852
0.000429369
0.00051456
0.000589155
0.000637212
0.000666321
0.000688026
0.000707896
0.000727454
0.000745795
0.000761489
0.000774553
0.000787366
0.000803714
0.000826391
0.000851341
0.00087037
0.000881401
0.00087935
0.000849134
0.000806042
0.000753923
0.000692191
0.000620114
0.000536923
0.000442003
0.00033533
0.000218864
0.000101973
2.0265e-05
2.54617e-06
5.98405e-06
2.83254e-05
0.000113534
0.000219608
0.000322562
0.000417304
0.000502513
0.000577744
0.000637857
0.000669021
0.000689134
0.000706602
0.000724088
0.000741129
0.000756004
0.000767419
0.000776103
0.000785555
0.000800658
0.000823568
0.000845232
0.000856717
0.000857259
0.000841497
0.00079945
0.000748441
0.000688049
0.000617544
0.000535955
0.000442293
0.000336131
0.000219245
0.000101546
2.00164e-05
2.54467e-06
6.0592e-06
2.801e-05
0.00011231
0.000218187
0.000321087
0.000415786
0.000500988
0.000576283
0.000641529
0.000687582
0.000705735
0.000716003
0.000726481
0.000738285
0.000749529
0.000758046
0.000763454
0.000768352
0.000777767
0.000796281
0.000821343
0.000839616
0.000844115
0.000831058
0.000792716
0.00074283
0.000684043
0.000615856
0.000537263
0.000446817
0.000343155
0.000226754
0.00010666
2.1506e-05
2.64191e-06
6.10192e-06
2.79875e-05
0.0001124
0.000219229
0.000323441
0.000419461
0.000505801
0.000581946
0.000647716
0.000703169
0.000725233
0.000731836
0.000736675
0.000743263
0.000750129
0.000754723
0.000756405
0.000758216
0.000766134
0.000784316
0.000805758
0.000821123
0.00083097
0.000825741
0.00078292
0.000730495
0.000668843
0.000598194
0.000518383
0.000428664
0.000327969
0.000216353
0.000101272
2.01876e-05
2.58508e-06
6.15743e-06
2.72469e-05
0.000110626
0.00021797
0.000323578
0.000421426
0.000509766
0.000587888
0.000655414
0.000712226
0.000741437
0.000747485
0.000748458
0.000751349
0.00075677
0.00076249
0.000765938
0.000766486
0.000767039
0.000773431
0.00079045
0.000809931
0.000819933
0.000817524
0.00078245
0.000728726
0.000664456
0.000590249
0.000506781
0.000414546
0.000313742
0.000205187
9.55584e-05
1.89668e-05
2.54002e-06
6.27638e-06
2.76089e-05
0.000111938
0.000221232
0.00032901
0.000428977
0.000519354
0.00059942
0.00066876
0.000727193
0.000764157
0.000772514
0.000771503
0.000769934
0.000770342
0.000772312
0.000774435
0.000775536
0.000775515
0.000775675
0.000778539
0.000786567
0.000797239
0.000806504
0.000792432
0.000740591
0.000677013
0.00060201
0.000516241
0.000420636
0.000316314
0.000205209
9.49131e-05
1.88254e-05
2.60262e-06
6.36902e-06
2.82178e-05
0.000114151
0.000225518
0.000335485
0.000437578
0.000529959
0.000611895
0.000682961
0.000742922
0.00078039
0.00079225
0.000793673
0.00079217
0.000790596
0.000789365
0.000787776
0.00078509
0.000781713
0.000779907
0.000782829
0.000789651
0.000788289
0.000786942
0.000786908
0.000750696
0.000688076
0.000613282
0.000526787
0.000429389
0.000322294
0.000207978
9.51979e-05
1.84349e-05
2.61265e-06
6.47049e-06
2.88142e-05
0.000115837
0.000228481
0.000339935
0.000443701
0.000537928
0.000621861
0.000695041
0.000757172
0.000794287
0.000810421
0.000816301
0.000817196
0.000815312
0.000811269
0.000804993
0.000796466
0.000786653
0.000778467
0.000776653
0.00078539
0.000801036
0.000807871
0.000801821
0.000763351
0.000700202
0.000624002
0.000535513
0.000435848
0.000326437
0.000209964
9.54934e-05
1.80671e-05
2.60002e-06
6.55418e-06
3.01005e-05
0.000119352
0.000233176
0.000345293
0.000449659
0.000544655
0.000629617
0.000704129
0.000767902
0.000807419
0.000826781
0.000836207
0.000840763
0.000842211
0.00084032
0.000834096
0.000822869
0.000807156
0.000789369
0.000774102
0.000767222
0.000773336
0.000790578
0.000804916
0.000782218
0.000721586
0.000645647
0.000554876
0.000450779
0.000335809
0.00021412
9.63335e-05
1.797e-05
2.58823e-06
6.57593e-06
3.11362e-05
0.000122191
0.000236587
0.000348632
0.000452731
0.000547527
0.000632537
0.000707486
0.000772193
0.000825903
0.000849158
0.000858296
0.000862086
0.000863729
0.000862999
0.000858353
0.000848483
0.000833041
0.000812934
0.000790584
0.000769952
0.000756045
0.000753873
0.000765331
0.000778412
0.000741934
0.000671285
0.000582949
0.000477203
0.000356393
0.000226254
0.000100902
1.88836e-05
2.59233e-06
6.56582e-06
3.21687e-05
0.00012505
0.000240034
0.000351912
0.000455481
0.000549598
0.000633909
0.000708254
0.000772563
0.000826847
0.000861148
0.000872495
0.000875486
0.000876389
0.000876108
0.00087314
0.000865739
0.000853053
0.000835244
0.000813275
0.000788866
0.000764651
0.000744276
0.000732142
0.000731082
0.000731302
0.000679346
0.000597275
0.000495624
0.000374674
0.000239422
0.000106649
2.02341e-05
2.62125e-06
6.50724e-06
3.26101e-05
0.000126304
0.00024146
0.000353044
0.000456019
0.000549411
0.00063302
0.000706789
0.000770706
0.000824796
0.000860954
0.000873192
0.000877546
0.000879973
0.000880781
0.000878367
0.000871323
0.000859395
0.000843304
0.000823912
0.000801713
0.000776996
0.000750514
0.00072421
0.000700971
0.000681766
0.000657524
0.000584095
0.000487189
0.000370745
0.000237831
0.000104975
1.98467e-05
2.61846e-06
6.45399e-06
3.33911e-05
0.000128658
0.000244629
0.000356212
0.000458442
0.000550572
0.000632706
0.000705057
0.000767805
0.000821079
0.000851606
0.00086399
0.000870511
0.000874442
0.000875436
0.000872546
0.000865107
0.000853195
0.000838026
0.000821517
0.000805078
0.000788665
0.000770708
0.000749052
0.000722237
0.000688564
0.000640068
0.000558351
0.00046122
0.000348246
0.000222096
9.70446e-05
1.83883e-05
2.55133e-06
6.38201e-06
3.33929e-05
0.000129301
0.000246186
0.000358356
0.00046049
0.000551811
0.000632614
0.000703382
0.000764555
0.000809518
0.000831989
0.000846704
0.000857781
0.000864801
0.000866719
0.000863209
0.000854657
0.000841858
0.000826362
0.000811182
0.000800209
0.000795906
0.000796019
0.000789752
0.000755211
0.000695018
0.000622647
0.000537491
0.000439441
0.00032932
0.000210091
9.3175e-05
1.81237e-05
2.4787e-06
6.34604e-06
3.35973e-05
0.000130416
0.000248553
0.0003618
0.000464361
0.000555303
0.000634997
0.000704151
0.000763133
0.000793404
0.000814087
0.000831892
0.00084665
0.000856291
0.000859324
0.000855553
0.000845995
0.000832282
0.000816338
0.000801198
0.000792039
0.000794169
0.000805894
0.000804342
0.000754999
0.000694284
0.000621386
0.000535945
0.000438305
0.000329674
0.000212866
9.7572e-05
1.96448e-05
2.49941e-06
6.32518e-06
3.31823e-05
0.00012987
0.000248645
0.000362964
0.000466456
0.000557807
0.000637221
0.000705415
0.000753598
0.000780619
0.000801771
0.000821674
0.000839489
0.000852562
0.000858515
0.000856415
0.000847131
0.000832921
0.000816594
0.000801171
0.000791053
0.000792109
0.000805024
0.000808897
0.000761081
0.000702229
0.000631352
0.000547792
0.000451427
0.000342881
0.000224535
0.000105723
2.1764e-05
2.57943e-06
6.35845e-06
3.26728e-05
0.000128699
0.000247469
0.00036253
0.00046703
0.000559212
0.000639003
0.000706978
0.000746463
0.000771475
0.000793387
0.000815011
0.000835262
0.000851568
0.000861296
0.000862764
0.000855876
0.000842429
0.00082576
0.000809652
0.000797855
0.000795237
0.000804389
0.00081152
0.000766774
0.000710221
0.000641923
0.000560729
0.000465779
0.0003569
0.000236006
0.000112576
2.32483e-05
2.61227e-06
6.43557e-06
3.15565e-05
0.000125519
0.000242862
0.000357791
0.000463102
0.000556437
0.000637243
0.000702469
0.000736681
0.000761373
0.000785021
0.000808899
0.000831543
0.000850711
0.000864132
0.000869885
0.000866847
0.000855512
0.000838599
0.000820581
0.000805679
0.000796783
0.000796783
0.000799545
0.000769485
0.000714969
0.000648867
0.000569636
0.000475841
0.000366712
0.0002438
0.000116859
2.40908e-05
2.59061e-06
6.57295e-06
2.98724e-05
0.000120145
0.000234257
0.000347727
0.000453281
0.000547889
0.000630277
0.000689011
0.000723618
0.00075034
0.000775799
0.000801166
0.000825394
0.000846763
0.000863415
0.000873477
0.000875225
0.000867769
0.000852176
0.000832038
0.000812165
0.000795628
0.00078382
0.000778659
0.000769167
0.000716195
0.000651902
0.000574325
0.000481586
0.000372474
0.00024827
0.000119084
2.45202e-05
2.53728e-06
6.77449e-06
2.78842e-05
0.00011313
0.000221932
0.000331887
0.000436329
0.000531755
0.000614752
0.000668829
0.000707193
0.000738607
0.000767069
0.000793731
0.000818344
0.000840076
0.000857859
0.000870368
0.000875965
0.000873085
0.000861146
0.000841521
0.000817804
0.000794163
0.000772421
0.000754253
0.000741811
0.000714293
0.000651769
0.000575892
0.000484555
0.000376198
0.000251758
0.000121339
2.53149e-05
2.52956e-06
7.04565e-06
2.61427e-05
0.000106091
0.000208172
0.000312339
0.000413405
0.000506
0.000580613
0.000640665
0.000688231
0.000726597
0.000758908
0.00078699
0.000811566
0.000832751
0.000850271
0.000863407
0.000870894
0.000871158
0.000862947
0.000846138
0.000822337
0.000794819
0.000767003
0.000740692
0.000719287
0.000702694
0.000648221
0.000573714
0.000483582
0.000376024
0.000251803
0.000121211
2.53883e-05
2.51598e-06
7.36547e-06
2.5209e-05
0.000101026
0.00019657
0.000293407
0.000382676
0.000464111
0.000540854
0.00060971
0.000667516
0.000714052
0.000751191
0.000781024
0.000805183
0.000824921
0.000840976
0.000853333
0.000861177
0.000863153
0.000857843
0.000844481
0.000823533
0.00079676
0.000766703
0.000735641
0.000705431
0.000679493
0.000641897
0.000568938
0.000480481
0.000374444
0.000251237
0.000121102
2.57044e-05
2.55805e-06
7.68619e-06
2.5459e-05
9.96376e-05
0.000190533
0.000279737
0.000352254
0.000426403
0.000503846
0.000579044
0.000645688
0.000700236
0.000742531
0.000774194
0.000797481
0.00081492
0.000828468
0.000838857
0.000845664
0.000847751
0.000843827
0.000833086
0.000815734
0.000793035
0.000766652
0.000737441
0.00070494
0.00066979
0.000632017
0.000559773
0.000472709
0.000368504
0.000247168
0.000118741
2.52822e-05
2.5686e-06
7.9358e-06
2.67055e-05
0.000102159
0.000191761
0.000276218
0.000338226
0.00040259
0.000474394
0.000549535
0.000620662
0.000681427
0.000728973
0.000763482
0.000786716
0.000801838
0.000812138
0.000819451
0.000823979
0.000824904
0.000821166
0.000812095
0.000797912
0.000779983
0.000760292
0.000739673
0.000714726
0.000676963
0.000618407
0.000545685
0.000459314
0.000357109
0.000238869
0.000114094
2.43113e-05
2.56016e-06
8.04667e-06
2.81994e-05
0.000106469
0.000197733
0.000281389
0.000340403
0.000394062
0.000455682
0.000524654
0.000594587
0.000658039
0.00070979
0.000747855
0.000772502
0.000786195
0.000793117
0.000796547
0.000797665
0.000796176
0.000791316
0.000782752
0.000771281
0.000759029
0.000748405
0.000738486
0.000717926
0.00066469
0.000601555
0.000527418
0.000440738
0.000339958
0.000225297
0.000106084
2.23139e-05
2.44672e-06
8.00196e-06
2.89673e-05
0.000108937
0.000202099
0.00028648
0.000349594
0.000396578
0.000448037
0.000507964
0.000572369
0.000634346
0.0006877
0.000728991
0.000756877
0.000771441
0.000776026
0.000775362
0.000772302
0.000767485
0.000760461
0.000750932
0.000739741
0.000729231
0.000722205
0.000718116
0.000705091
0.000652329
0.000588863
0.000514101
0.00042706
0.000326882
0.00021452
9.96207e-05
2.06402e-05
2.334e-06
7.83527e-06
2.80839e-05
0.000106489
0.000199691
0.000284963
0.000352941
0.000399084
0.000445244
0.000498157
0.000556529
0.000615327
0.000668723
0.000712429
0.000744156
0.000762043
0.000766422
0.000762164
0.000754256
0.000745
0.000734697
0.000723082
0.000710517
0.000698637
0.000690019
0.000685588
0.000677784
0.00064148
0.000579917
0.0005063
0.000419828
0.000320017
0.000208446
9.55485e-05
1.94646e-05
2.21558e-06
7.614e-06
2.5813e-05
9.94862e-05
0.000189702
0.000273858
0.000340957
0.000391219
0.000439536
0.000491342
0.000546737
0.000602869
0.000655611
0.000701134
0.000736792
0.000760027
0.000767607
0.000761547
0.000748542
0.000733413
0.000717919
0.000702322
0.000686785
0.000672134
0.000659876
0.000651141
0.000643417
0.000624345
0.000569711
0.000498986
0.000414748
0.000316432
0.000205724
9.36066e-05
1.88522e-05
2.13198e-06
7.40377e-06
2.25918e-05
8.89174e-05
0.000173245
0.000252743
0.000311625
0.00036754
0.000423719
0.000480661
0.000538153
0.000594958
0.000648945
0.000697552
0.000738181
0.000767761
0.000781139
0.000775691
0.00075806
0.000736156
0.000713754
0.000691741
0.000670305
0.000650171
0.000632779
0.000619476
0.000609199
0.000593982
0.00055496
0.000487534
0.000406282
0.0003105
0.000201744
9.11326e-05
1.81664e-05
2.06944e-06
7.28662e-06
1.97788e-05
7.87614e-05
0.000155965
0.000220223
0.000275795
0.000336023
0.000400386
0.000465296
0.000528318
0.000588371
0.000644953
0.000697523
0.000744764
0.00078325
0.000805413
0.000803652
0.000783106
0.000755112
0.000725923
0.000696937
0.000667966
0.000639407
0.000612882
0.000590683
0.000574134
0.000560085
0.000535359
0.000473211
0.000395398
0.00030265
0.000196423
8.80348e-05
1.74132e-05
2.01211e-06
7.32144e-06
1.80364e-05
7.20127e-05
0.000143648
0.000196819
0.000247203
0.000307028
0.000375224
0.000446194
0.000514884
0.000579048
0.000639377
0.000697664
0.000751814
0.000788442
0.000816598
0.000835192
0.000815746
0.000783725
0.00075109
0.000718895
0.000685097
0.000648807
0.000611316
0.000575429
0.000544128
0.000518303
0.000493551
0.000455673
0.00038369
0.000296362
0.000194036
8.74806e-05
1.74196e-05
1.94364e-06
7.53673e-06
1.82366e-05
7.2514e-05
0.000142667
0.000191553
0.000236336
0.000290636
0.000355622
0.000426582
0.000497324
0.000564996
0.000629846
0.000685204
0.000729629
0.000768091
0.000799338
0.000822004
0.000834355
0.000812628
0.000783479
0.000752788
0.000719004
0.000680209
0.000635959
0.000588081
0.00054034
0.000496363
0.000456886
0.000417511
0.000362855
0.000282937
0.000188131
8.63209e-05
1.74615e-05
1.84068e-06
7.85845e-06
2.00731e-05
7.91481e-05
0.00015143
0.000202546
0.000242659
0.000288599
0.000344824
0.000409305
0.00047686
0.00054408
0.000610396
0.000669323
0.000713159
0.000752092
0.000784777
0.000809729
0.000822565
0.000815012
0.000798342
0.000777574
0.000752707
0.000721327
0.000681007
0.000631309
0.000574517
0.000514309
0.00045369
0.000394371
0.000337283
0.000263958
0.000176649
8.24404e-05
1.67145e-05
1.66592e-06
8.11853e-06
2.26622e-05
8.75524e-05
0.000163527
0.000222385
0.000259665
0.000298171
0.000345453
0.000401094
0.000461562
0.000525111
0.000593306
0.000660468
0.00070363
0.000741425
0.000766536
0.000782573
0.000792272
0.000796193
0.000795325
0.000790596
0.00078006
0.000759012
0.000722415
0.000672102
0.000613619
0.000548639
0.000478961
0.00040606
0.000330376
0.000250736
0.000165288
7.68943e-05
1.50438e-05
1.46377e-06
8.17126e-06
2.40965e-05
9.16119e-05
0.000170585
0.000238339
0.000277412
0.0003138
0.000356161
0.000405053
0.000459112
0.000519306
0.000587304
0.00065242
0.000693352
0.000713735
0.000729293
0.000745075
0.000759844
0.000772861
0.000784963
0.000795147
0.00079638
0.000770496
0.00073408
0.000687551
0.000631449
0.000566799
0.000495043
0.000417752
0.000336135
0.000250659
0.000161695
7.36913e-05
1.33928e-05
1.25998e-06
8.01701e-06
2.33392e-05
8.91645e-05
0.000169321
0.000241607
0.000286295
0.000326011
0.000368784
0.000415608
0.000465644
0.000520051
0.000582501
0.000648173
0.000692682
0.000708608
0.000716541
0.000726624
0.000739275
0.00075428
0.000772609
0.000791677
0.000796058
0.000773701
0.000741588
0.000699488
0.000647415
0.000585731
0.000515184
0.000436792
0.000351655
0.000260927
0.000166529
7.49451e-05
1.29088e-05
1.11309e-06
7.78967e-06
2.10365e-05
8.17003e-05
0.000160144
0.000230496
0.000280197
0.000325226
0.000371887
0.000421262
0.000472602
0.000526261
0.000585279
0.000648692
0.000693911
0.000721529
0.000720592
0.000720724
0.000729239
0.000743691
0.000762966
0.000785028
0.000794162
0.000774537
0.000745668
0.000707101
0.000658498
0.000599752
0.000531074
0.000452997
0.000366304
0.000272177
0.000173194
7.74042e-05
1.28913e-05
1.01309e-06
7.6014e-06
1.89555e-05
7.40088e-05
0.000148343
0.000212266
0.000265055
0.00031526
0.000366367
0.000419438
0.000474237
0.00053042
0.000588681
0.000648206
0.000695077
0.000726358
0.00075316
0.000747366
0.000739115
0.000741093
0.000753265
0.0007732
0.000791369
0.00077377
0.000747287
0.000711489
0.00066571
0.000609413
0.000542315
0.000464501
0.000376473
0.000279424
0.0001765
7.73528e-05
1.21676e-05
9.31625e-07
7.47985e-06
1.77272e-05
6.86021e-05
0.000137964
0.000192926
0.00024702
0.000301687
0.000356428
0.000411683
0.000467914
0.000525369
0.000584502
0.00064429
0.000694606
0.000725361
0.00075185
0.000773626
0.000785562
0.000772907
0.000765198
0.00076915
0.000780338
0.000774213
0.000749851
0.000716921
0.000674513
0.000621678
0.000557582
0.00048167
0.000393847
0.000294938
0.000188096
8.35772e-05
1.34108e-05
9.134e-07
7.38389e-06
1.73826e-05
6.67449e-05
0.000131622
0.00017866
0.000231298
0.000289276
0.00034773
0.000404819
0.000461002
0.000516738
0.000571897
0.000626426
0.000678911
0.000718856
0.000745187
0.000767063
0.00078412
0.000795645
0.000785651
0.000770057
0.000761298
0.000759962
0.000752062
0.000721855
0.000682878
0.000633856
0.000573417
0.000500299
0.000413654
0.00031371
0.000203359
9.29664e-05
1.58063e-05
9.59215e-07
7.31758e-06
1.77046e-05
6.79515e-05
0.000129743
0.000171776
0.000220013
0.000277195
0.0003382
0.000398764
0.000457439
0.000514459
0.000569447
0.000620732
0.000666648
0.000704662
0.000730595
0.000752273
0.000769632
0.000782309
0.000789623
0.000778501
0.000756638
0.000739375
0.000728894
0.000720962
0.000688249
0.000643589
0.000587549
0.000518024
0.000433059
0.000331804
0.000216733
9.96472e-05
1.73831e-05
1.0136e-06
7.27249e-06
1.83012e-05
7.09086e-05
0.000133003
0.000173679
0.000219714
0.000274609
0.000333889
0.000394803
0.000456222
0.00051712
0.00057646
0.000627693
0.000660712
0.00068921
0.000713466
0.000733726
0.000750106
0.000762485
0.000770427
0.000773204
0.000763243
0.000734442
0.00071151
0.000698055
0.000684309
0.000643711
0.000592378
0.000527692
0.000446867
0.000347796
0.000231461
0.000109101
2.04426e-05
1.1695e-06
7.20932e-06
1.93545e-05
7.58201e-05
0.000139592
0.000180338
0.000226247
0.000282807
0.000343792
0.000402974
0.000460761
0.000518901
0.000575516
0.000622321
0.00065238
0.000677957
0.000699389
0.000717008
0.000731066
0.000741653
0.000748597
0.00075136
0.000749113
0.000715706
0.000681255
0.000664864
0.000660954
0.000634617
0.000586611
0.000525351
0.000447977
0.000352045
0.00023768
0.000114649
2.25432e-05
1.27882e-06
7.09285e-06
2.00081e-05
7.92626e-05
0.000145107
0.000187717
0.000233367
0.00028976
0.000352173
0.000411401
0.000464427
0.000515442
0.000565831
0.000611512
0.000645134
0.000667489
0.000685635
0.000699988
0.000710924
0.000718683
0.000714991
0.00070782
0.000700685
0.000679493
0.000645632
0.000620034
0.000615141
0.00062075
0.000575802
0.000517127
0.000441626
0.000346891
0.000233485
0.000112113
2.24249e-05
1.42179e-06
6.97956e-06
1.9456e-05
7.81816e-05
0.000144199
0.000190644
0.000237961
0.000294248
0.00035784
0.000419995
0.000473298
0.00051985
0.000565887
0.000608449
0.000636858
0.000656537
0.000671642
0.000682656
0.000690082
0.000694322
0.000695645
0.000678964
0.000655058
0.000634689
0.000614532
0.000594823
0.000585617
0.000587882
0.000555534
0.000501109
0.000428945
0.000336111
0.000223502
0.000104459
2.07412e-05
1.38697e-06
6.94812e-06
1.82733e-05
7.42817e-05
0.000136665
0.000187476
0.00023861
0.000295905
0.000360249
0.0004265
0.000485841
0.000532724
0.000570491
0.000604897
0.000628157
0.000645916
0.000658605
0.00066673
0.000670865
0.00067151
0.000669096
0.000663935
0.00064618
0.000608811
0.000572972
0.000546182
0.000530935
0.00052942
0.000525515
0.00047946
0.000417371
0.000334592
0.000228968
0.000110591
2.28554e-05
1.48801e-06
7.01959e-06
1.69919e-05
6.90025e-05
0.000123764
0.000176848
0.000233688
0.00029475
0.000358906
0.000423412
0.000482865
0.00053189
0.000567081
0.000595224
0.00061751
0.000634
0.000643857
0.000648707
0.000651258
0.000649403
0.000643169
0.000633848
0.000620098
0.000593975
0.000559176
0.000520765
0.000485668
0.000459661
0.00044449
0.000423924
0.000366208
0.000291973
0.000198873
9.39362e-05
1.83294e-05
1.37746e-06
7.17598e-06
1.62727e-05
6.47194e-05
0.000111621
0.000163103
0.000222813
0.000288599
0.00035702
0.000423497
0.000480996
0.000521073
0.000555127
0.000583187
0.000605233
0.000621256
0.000629921
0.000623463
0.000615038
0.000607429
0.000600001
0.000592105
0.000582819
0.000569883
0.000550266
0.000522784
0.000489361
0.000453782
0.000418394
0.000371426
0.000310622
0.000237311
0.000151884
6.4831e-05
1.18325e-05
1.16818e-06
7.31425e-06
1.63924e-05
6.292e-05
0.000103756
0.000151518
0.000210815
0.000279818
0.000353235
0.000419687
0.00046672
0.000507424
0.000541815
0.000569997
0.00059205
0.000608001
0.000617871
0.000621651
0.000604966
0.000586213
0.000569568
0.000555553
0.000544919
0.000536077
0.000518532
0.000490444
0.000458251
0.000421051
0.0003776
0.000326447
0.000266341
0.000196974
0.000120699
4.84872e-05
8.71948e-06
9.09989e-07
7.34158e-06
1.69862e-05
6.31789e-05
9.97206e-05
0.000143307
0.000199883
0.00026946
0.0003452
0.000404776
0.000452228
0.000493363
0.000528097
0.000556551
0.000578853
0.000595068
0.000605212
0.000609281
0.000607332
0.000590355
0.00056574
0.000542547
0.000523667
0.000509584
0.000494012
0.000463681
0.000430288
0.000393483
0.000352438
0.000305718
0.000251393
0.000187855
0.000116092
4.69603e-05
8.14284e-06
7.27304e-07
7.23916e-06
1.789e-05
6.52482e-05
9.94269e-05
0.000139355
0.000192685
0.000260665
0.000336095
0.000391894
0.000439052
0.000480237
0.000515193
0.000543976
0.00056672
0.000583485
0.000594234
0.000598871
0.000597277
0.00058946
0.000575761
0.00055673
0.000533033
0.00050543
0.000474654
0.000441346
0.000405993
0.000368784
0.000329507
0.000287267
0.00023992
0.000184163
0.000117874
4.91701e-05
8.28131e-06
6.35484e-07
7.0272e-06
1.95227e-05
7.02836e-05
0.000104044
0.000140973
0.000191489
0.000257753
0.000331376
0.000383307
0.000429158
0.000469704
0.000504523
0.000533565
0.000556933
0.000574702
0.00058682
0.000593106
0.000593297
0.000587073
0.000574302
0.000555202
0.000530234
0.000500051
0.000465477
0.000427469
0.000387008
0.000344881
0.000301497
0.000256791
0.000209779
0.000158265
0.000100014
4.03831e-05
6.19789e-06
5.00737e-07
6.72665e-06
2.14622e-05
7.68718e-05
0.000113243
0.000147632
0.000194369
0.000257103
0.00032778
0.000378762
0.000422248
0.000461224
0.000495186
0.000524002
0.000547748
0.000566538
0.000580389
0.000589154
0.000592518
0.00059002
0.000581135
0.000565532
0.000543168
0.00051426
0.000479259
0.000438862
0.000394051
0.00034606
0.000296127
0.000245156
0.000193396
0.00014022
8.48523e-05
3.2353e-05
4.49387e-06
4.58124e-07
6.35079e-06
2.38547e-05
8.54872e-05
0.0001283
0.000161133
0.000203667
0.000261376
0.000328209
0.000381331
0.000421622
0.000458005
0.000489992
0.000517425
0.000540373
0.000558991
0.00057339
0.000583537
0.000589205
0.000589965
0.000585192
0.000574186
0.000556464
0.000531769
0.000500017
0.000461282
0.000415864
0.000364504
0.000308512
0.000249511
0.000188937
0.000128087
6.93441e-05
2.16173e-05
2.15981e-06
4.0251e-07
5.9286e-06
2.51009e-05
9.14741e-05
0.000143711
0.000175964
0.000214302
0.000267015
0.000330879
0.00038729
0.000424585
0.000458369
0.000488194
0.000513864
0.000535397
0.000552948
0.000566698
0.000576758
0.000583098
0.000585486
0.000583487
0.000576362
0.000559499
0.000528918
0.00049897
0.000469428
0.000435719
0.000395127
0.000340447
0.000278927
0.00021211
0.000142473
7.47288e-05
2.12407e-05
1.61078e-06
3.41711e-07
5.54e-06
2.52765e-05
9.48563e-05
0.000157706
0.000189752
0.000224055
0.000272423
0.000334736
0.00039456
0.000428877
0.000460035
0.000487695
0.000511636
0.000531779
0.000548174
0.000560966
0.000570316
0.000576328
0.000578977
0.000578139
0.00057352
0.000552226
0.000511096
0.000476804
0.00045402
0.000440563
0.000425616
0.000378803
0.000319939
0.000251813
0.000176629
9.94967e-05
3.37279e-05
3.62731e-06
3.15711e-07
5.22002e-06
2.4634e-05
9.52808e-05
0.000166055
0.000199263
0.000231052
0.000276259
0.000337802
0.000399854
0.000431446
0.000459929
0.000485234
0.000507241
0.000525841
0.000540973
0.000552646
0.000560935
0.000565955
0.000562097
0.000536466
0.000515478
0.000497217
0.000474195
0.000447453
0.000424856
0.000415251
0.000422031
0.000419268
0.000368733
0.000304194
0.000226294
0.00013919
5.66521e-05
8.60036e-06
4.58107e-07
5.00725e-06
2.447e-05
9.60678e-05
0.000170832
0.000206308
0.00023675
0.000277923
0.000336105
0.000402446
0.000431362
0.000456875
0.000479364
0.000498972
0.000515693
0.000529442
0.000540119
0.000547653
0.000552033
0.00055326
0.00055137
0.000520557
0.000481975
0.000448072
0.000419816
0.000398635
0.000390831
0.000404985
0.000436587
0.00040199
0.00034623
0.000270055
0.000175151
7.65316e-05
1.31625e-05
7.51452e-07
4.83776e-06
2.58481e-05
0.000100535
0.000178085
0.000217701
0.00025009
0.000289412
0.000342673
0.00040446
0.000432585
0.000454345
0.000472985
0.000488906
0.00050232
0.000513276
0.00052171
0.000527494
0.000530515
0.00053062
0.000527702
0.00052179
0.000495169
0.000449763
0.000407139
0.000372964
0.000348885
0.000337958
0.000344996
0.00036645
0.000339226
0.000273174
0.000182003
8.01677e-05
1.40258e-05
8.90158e-07
4.68472e-06
2.82109e-05
0.000107232
0.000186961
0.000229647
0.000264803
0.000303939
0.000352043
0.000405485
0.000434938
0.000453349
0.000468466
0.000480748
0.000490501
0.000497887
0.000502935
0.000505574
0.000505706
0.000503152
0.000497761
0.000489547
0.000478595
0.000465055
0.000422821
0.000375317
0.000336398
0.000310873
0.000300872
0.000304308
0.000290495
0.000230961
0.000148482
6.01776e-05
1.0233e-05
7.2177e-07
4.46642e-06
2.99421e-05
0.000112392
0.000196043
0.000243203
0.000278903
0.000316968
0.000360334
0.000405417
0.000434643
0.000449851
0.000461868
0.000471149
0.000477971
0.000482462
0.000484611
0.000484298
0.000481354
0.000475505
0.000466526
0.000454377
0.00043914
0.000421017
0.000400294
0.00037732
0.000336025
0.000291335
0.000255585
0.000229736
0.000208134
0.000165845
0.000102228
3.90721e-05
6.83041e-06
3.9978e-07
4.21982e-06
3.06789e-05
0.000114526
0.00019948
0.000253171
0.000291782
0.000331085
0.000372426
0.000410551
0.000429691
0.000442451
0.000452172
0.000459384
0.000464387
0.000467305
0.000468116
0.000466675
0.000462762
0.000456031
0.00044618
0.00043304
0.000416563
0.000396859
0.0003742
0.000348967
0.00032153
0.000292111
0.000260627
0.000225296
0.000187784
0.000142107
8.76391e-05
3.3844e-05
5.49564e-06
2.57149e-07
3.94615e-06
2.98305e-05
0.000112615
0.000197323
0.000263365
0.000310108
0.000352412
0.000380671
0.000400668
0.000415623
0.000426866
0.00043527
0.000441385
0.000445511
0.000447757
0.000448079
0.000446294
0.000442113
0.000435074
0.000424756
0.000410844
0.000393114
0.0003715
0.000346138
0.000317403
0.000285885
0.000252281
0.000217165
0.000180673
0.000142298
0.000101147
5.78075e-05
2.06335e-05
2.98269e-06
1.43339e-07
3.67118e-06
3.19569e-05
0.000116261
0.000198303
0.000261358
0.000306752
0.000339149
0.000362586
0.000379871
0.000392835
0.00040266
0.000410097
0.000415607
0.000419446
0.000421713
0.000422384
0.000421335
0.000418362
0.000413105
0.000405238
0.000394457
0.000380474
0.000363091
0.000342261
0.000318094
0.000290853
0.000260904
0.000228597
0.000194033
0.000156736
0.000115487
6.94008e-05
2.49729e-05
2.88174e-06
1.66828e-07
3.3501e-06
2.68169e-05
0.000100396
0.000175367
0.000233798
0.000276158
0.000306945
0.000329858
0.000347369
0.000361053
0.000371912
0.000380586
0.000387487
0.000392872
0.00039688
0.000399537
0.00040081
0.000400551
0.00039841
0.000393996
0.000386783
0.000376089
0.000361165
0.000341319
0.000316062
0.000285225
0.000249055
0.000208232
0.000163856
0.000117574
7.2229e-05
3.34057e-05
9.2641e-06
9.42431e-07
6.27479e-08
3.03889e-06
2.81856e-05
9.29291e-05
0.000154115
0.000200971
0.00023595
0.000263146
0.000284891
0.000302495
0.000316716
0.000328017
0.000336712
0.000343039
0.000347183
0.000349281
0.000349395
0.000347559
0.000343683
0.000337284
0.000328215
0.000316438
0.000301818
0.00028421
0.000263575
0.000240071
0.000214127
0.000186456
0.00015797
0.000129506
0.000101289
7.20706e-05
3.97347e-05
1.13567e-05
9.25919e-07
3.2246e-08
3.02909e-06
1.90184e-05
5.3247e-05
9.74314e-05
0.000134487
0.000168117
0.000198871
0.000226353
0.000250374
0.000270889
0.000287986
0.000301886
0.000312931
0.000321558
0.00032826
0.000333559
0.000337959
0.000341901
0.000345663
0.000349557
0.00035377
0.0003582
0.000362359
0.000365156
0.000364556
0.000357145
0.000337825
0.000300184
0.000238934
0.000156805
7.50514e-05
2.39441e-05
5.43335e-06
7.35525e-07
8.04957e-08
2.8456e-06
3.60579e-05
4.94579e-05
8.98215e-05
0.000132905
0.000161827
0.000191843
0.000220808
0.000247576
0.00027142
0.000291916
0.0003088
0.000321933
0.00033128
0.000336866
0.000338703
0.000336767
0.000330936
0.000320981
0.000306556
0.000287374
0.000263256
0.000234238
0.000200894
0.000164649
0.000127802
9.3003e-05
6.25162e-05
3.78811e-05
2.03603e-05
9.72833e-06
4.65831e-06
2.44884e-06
6.72473e-07
1.1784e-07
3.09739e-06
4.26006e-05
3.49104e-05
3.65544e-05
4.87097e-05
6.15197e-05
7.59732e-05
9.1454e-05
0.000103451
0.000110409
0.000116594
0.000121686
0.000125483
0.000127772
0.000128485
0.000127583
0.000125071
0.000120966
0.000115313
0.000108179
9.96739e-05
8.99491e-05
7.92529e-05
6.79601e-05
5.65857e-05
4.5749e-05
3.6134e-05
2.83674e-05
2.30451e-05
2.06758e-05
2.1214e-05
2.03412e-05
2.04198e-05
5.64016e-06
8.13961e-07
5.34667e-06
4.66191e-05
4.51212e-05
5.24458e-05
6.48673e-05
6.93666e-05
6.90753e-05
6.90243e-05
6.91041e-05
6.92339e-05
6.93741e-05
6.9496e-05
6.95762e-05
6.95948e-05
6.95326e-05
6.93718e-05
6.9096e-05
6.59127e-05
6.27205e-05
5.96094e-05
5.65776e-05
5.37024e-05
5.10556e-05
4.87099e-05
4.6757e-05
4.53769e-05
4.47517e-05
4.49884e-05
4.61918e-05
4.80571e-05
4.87925e-05
4.50249e-05
4.02927e-05
3.91767e-05
3.2653e-06
7.80422e-06
5.4952e-05
9.4862e-05
8.81443e-05
7.95673e-05
7.49134e-05
7.84607e-05
8.58744e-05
9.44709e-05
0.000105378
0.000119561
0.000128118
0.000131219
0.000134739
0.000122587
0.00010772
9.38582e-05
8.47425e-05
8.30471e-05
8.93611e-05
9.98899e-05
8.82805e-05
5.21705e-05
3.34838e-05
2.92675e-05
3.3844e-05
3.12291e-05
2.33432e-05
2.72283e-05
3.08471e-05
2.43175e-05
1.80939e-05
1.31333e-05
1.34388e-05
9.23905e-06
2.19747e-06
4.67001e-05
7.42946e-05
7.44045e-05
5.34081e-05
3.23043e-05
3.18449e-05
3.59834e-05
3.82391e-05
3.8976e-05
3.64192e-05
3.18265e-05
2.88874e-05
2.9243e-05
3.32261e-05
3.59273e-05
3.55107e-05
3.46394e-05
3.25553e-05
3.00363e-05
2.74768e-05
2.53358e-05
2.4259e-05
2.56154e-05
2.93752e-05
3.00604e-05
2.59897e-05
2.28164e-05
2.09086e-05
1.76287e-05
1.12965e-05
6.04225e-06
3.70289e-06
3.61512e-06
3.56128e-06
7.6737e-06
6.94348e-05
0.000109478
9.37863e-05
7.47743e-05
8.63575e-05
9.78956e-05
0.000105994
0.000108853
0.00010343
9.82493e-05
9.37145e-05
9.11905e-05
9.25209e-05
9.83122e-05
0.000100173
9.87943e-05
9.80788e-05
9.84414e-05
0.000100338
9.81106e-05
9.54161e-05
9.35497e-05
9.04948e-05
8.89715e-05
8.8235e-05
8.47885e-05
8.16261e-05
8.3848e-05
8.62946e-05
6.92103e-05
3.85601e-05
1.84815e-05
5.14556e-06
2.63912e-06
9.04101e-06
3.65722e-05
4.99091e-05
5.1574e-05
5.90955e-05
5.45259e-05
4.30924e-05
3.93405e-05
4.91518e-05
6.77376e-05
8.05918e-05
8.96715e-05
9.53682e-05
9.54972e-05
9.38329e-05
9.56392e-05
0.000104129
0.000109976
0.000107659
0.000106701
0.000107074
0.000109249
0.000113842
0.000120721
0.000128103
0.000133345
0.000134891
0.000131893
0.000121642
0.000100453
6.98953e-05
3.8831e-05
1.54965e-05
3.39173e-06
2.67709e-06
7.81132e-06
1.47076e-05
1.78477e-05
2.30868e-05
4.06238e-05
6.14219e-05
8.15915e-05
9.74598e-05
9.8162e-05
9.47483e-05
0.000104969
0.000127506
0.000145833
0.000155065
0.000159317
0.000158091
0.000152528
0.000144482
0.00013578
0.000128156
0.000122745
0.000113568
0.000103527
0.000108196
0.000127124
0.000138929
0.000145646
0.000148805
0.000145366
0.000131499
0.000104487
6.74116e-05
2.72808e-05
5.9077e-06
2.57064e-06
1.103e-06
1.41776e-06
2.79838e-06
4.71409e-06
8.54188e-06
9.44061e-06
2.4754e-05
4.67509e-05
7.35477e-05
0.000108031
0.000141894
0.000163792
0.000170529
0.000165118
0.000154666
0.000146497
0.000144652
0.000149399
0.000149832
0.000141116
0.000134441
0.000130924
0.000130908
0.000134047
0.000138373
0.000140581
0.000137996
0.000128989
0.000113141
9.14634e-05
6.62275e-05
4.0479e-05
1.76967e-05
3.96347e-06
2.94057e-06
3.87772e-06
2.19936e-05
5.63103e-05
0.000103322
9.03368e-05
7.41909e-05
7.41817e-05
8.94241e-05
0.000105464
0.000116615
0.000126275
0.000136379
0.000146295
0.000154781
0.000161141
0.000164191
0.000163356
0.000161084
0.000158292
0.000156249
0.000155739
0.000158551
0.000160734
0.000157938
0.000155618
0.000151663
0.000143916
0.000130782
0.000111919
8.877e-05
6.38203e-05
3.48432e-05
1.77051e-05
4.13686e-06
2.88032e-06
1.30377e-06
2.2597e-06
6.11512e-06
1.90275e-05
3.97642e-05
5.97507e-05
7.36513e-05
9.36475e-05
0.000118185
0.000143593
0.000167392
0.000188518
0.000206786
0.000218204
0.000224952
0.000228737
0.000229517
0.000227445
0.000222912
0.000216639
0.000209392
0.00020196
0.000194883
0.000188179
0.000181228
0.000172794
0.000161161
0.000144498
0.000121647
9.35706e-05
6.15901e-05
3.14801e-05
1.62068e-05
3.9158e-06
2.95872e-06
2.50996e-06
5.74521e-06
3.52854e-05
6.96455e-05
0.000121262
0.000159848
0.000176719
0.00018714
0.00019389
0.000198677
0.000202364
0.000205152
0.00020709
0.000208849
0.000211546
0.000216392
0.000224963
0.000237681
0.000250172
0.000246654
0.000241839
0.000236024
0.000229413
0.000221994
0.000213405
0.000202827
0.000188958
0.000170196
0.000145236
0.000114163
6.90335e-05
3.49779e-05
1.794e-05
4.53837e-06
2.98727e-06
2.0292e-06
5.96763e-06
2.52287e-05
5.24154e-05
7.28971e-05
9.11189e-05
0.000111928
0.000133741
0.000154129
0.000172272
0.000188159
0.000201807
0.000213401
0.000223732
0.000234165
0.000246986
0.000263021
0.00027093
0.000270325
0.00026837
0.00026513
0.000260658
0.000254928
0.000247753
0.000238677
0.000226888
0.000211193
0.000190184
0.000162778
0.000129237
8.03257e-05
4.07634e-05
2.08202e-05
5.31577e-06
3.02439e-06
2.1747e-06
5.70967e-06
3.12674e-05
6.80373e-05
9.39241e-05
0.000112557
0.000132893
0.000155644
0.000178183
0.000200664
0.000224736
0.000248944
0.000264947
0.000273072
0.000279371
0.00028399
0.000287051
0.000288639
0.0002889
0.00028793
0.000285682
0.000282066
0.000276882
0.000269771
0.00026014
0.000247119
0.000229576
0.000206314
0.000176571
0.000140892
8.9192e-05
4.61461e-05
2.36807e-05
5.97267e-06
3.06548e-06
2.24637e-06
6.63005e-06
3.3153e-05
7.04947e-05
0.000104759
0.000124179
0.000140599
0.000156123
0.00016927
0.000182191
0.000198806
0.000222479
0.000255188
0.00029141
0.000301905
0.000306564
0.000309635
0.000311262
0.00031157
0.000310589
0.000308218
0.000304278
0.00029845
0.000290241
0.000278947
0.000263657
0.000243327
0.000217032
0.000184464
0.000146674
9.89842e-05
5.18436e-05
2.62747e-05
6.31882e-06
3.04474e-06
2.34202e-06
6.77087e-06
3.58767e-05
7.78436e-05
0.000115479
0.000146679
0.000170963
0.000190428
0.000201795
0.000204835
0.000206569
0.00021142
0.000221129
0.000237355
0.000263203
0.000300234
0.000336898
0.000338887
0.000339161
0.000337881
0.000334945
0.000330107
0.000323006
0.000313113
0.000299714
0.000281931
0.000258827
0.000229653
0.000194287
0.00015386
0.000108031
5.81601e-05
2.93346e-05
6.43818e-06
2.98477e-06
2.32932e-06
8.56826e-06
4.43676e-05
9.19741e-05
0.000136102
0.000172468
0.000199492
0.000208242
0.000218155
0.000238667
0.000262837
0.000281616
0.00029054
0.000290603
0.000286214
0.000283029
0.000285223
0.000292215
0.000300194
0.000307385
0.000315486
0.000328109
0.000343414
0.000337188
0.000322737
0.000303478
0.000278606
0.000247416
0.000209742
0.000166598
0.000111417
6.27135e-05
3.26322e-05
6.69043e-06
3.02729e-06
2.25423e-06
7.7535e-06
4.10937e-05
8.84666e-05
0.000133994
0.000174835
0.000210485
0.000240012
0.000256285
0.000267172
0.000279097
0.000294437
0.000311999
0.000329377
0.000344296
0.000354995
0.000360259
0.000359784
0.000354606
0.000347027
0.000339628
0.000334025
0.000330793
0.000330833
0.000332515
0.000322107
0.000296111
0.000263629
0.000224605
0.000179987
0.000119567
6.89426e-05
3.63381e-05
7.35287e-06
3.11025e-06
2.24233e-06
8.41774e-06
4.46578e-05
9.52579e-05
0.00014334
0.000185692
0.000220607
0.000245676
0.000267526
0.000288218
0.000307833
0.000325923
0.000342143
0.000356183
0.000367554
0.000375712
0.000380408
0.000382067
0.000381791
0.000381173
0.000382495
0.000387326
0.000392016
0.000378887
0.000361435
0.00033913
0.000311341
0.000277503
0.000237387
0.000191595
0.000134548
7.97563e-05
4.18336e-05
8.30424e-06
3.121e-06
2.27392e-06
9.91895e-06
5.07142e-05
0.000104668
0.000155359
0.000200347
0.000239137
0.000266956
0.00028892
0.000307365
0.00032435
0.000341726
0.000360811
0.000382035
0.000404256
0.000423065
0.000430257
0.000434872
0.000436825
0.000435962
0.000432072
0.000424913
0.000414172
0.000399456
0.000380296
0.000356172
0.000326564
0.00029104
0.000249432
0.000202146
0.000149018
9.17394e-05
4.76665e-05
9.01175e-06
3.16217e-06
2.28455e-06
1.03888e-05
5.31998e-05
0.000110392
0.000164
0.000211459
0.000252944
0.000287512
0.000313272
0.000334854
0.000354038
0.000372135
0.000390538
0.000410756
0.00043307
0.000451774
0.000459124
0.000463595
0.000465106
0.000463518
0.000458629
0.000450191
0.000437899
0.000421385
0.000400232
0.000373993
0.000342245
0.000304677
0.000261232
0.000212381
0.000154309
9.91843e-05
5.10384e-05
9.70028e-06
3.28718e-06
2.20524e-06
1.12161e-05
5.76381e-05
0.000119196
0.000176607
0.000226885
0.000270508
0.000308434
0.000341471
0.000367233
0.000385362
0.000401329
0.000416915
0.00043302
0.000450324
0.000468728
0.000485731
0.000493735
0.00049526
0.000493222
0.000487415
0.0004776
0.0004635
0.000444801
0.000421162
0.000392233
0.000357707
0.000317402
0.000271411
0.000218331
0.000158189
0.000103846
5.34932e-05
1.03202e-05
3.43681e-06
2.11259e-06
1.15966e-05
6.0729e-05
0.000126376
0.000188384
0.0002426
0.000289118
0.00032908
0.000363666
0.000393804
0.00042016
0.000443218
0.000459643
0.000472845
0.000486628
0.000501629
0.000515965
0.000522335
0.000524303
0.000522386
0.000516297
0.000505742
0.000490427
0.000470059
0.000444351
0.000413029
0.000375865
0.000332746
0.000283849
0.000223757
0.000162846
0.000107976
5.50258e-05
1.06914e-05
3.56527e-06
2.07723e-06
1.15112e-05
6.17986e-05
0.000129583
0.000195297
0.000253895
0.000304522
0.000347812
0.000384868
0.000416777
0.000444414
0.000468409
0.000489174
0.00050696
0.000521878
0.000533907
0.000542904
0.000548619
0.000550733
0.000548884
0.000542685
0.000531755
0.000515735
0.000494299
0.000467164
0.000434105
0.000394962
0.000349701
0.000294746
0.000232232
0.000170792
0.000114145
5.71385e-05
1.10348e-05
3.64346e-06
2.23004e-06
1.22401e-05
6.43698e-05
0.000133366
0.000201196
0.000262963
0.000317237
0.00036405
0.000404102
0.000438322
0.000467611
0.000492704
0.000514136
0.000532248
0.000547225
0.000559118
0.000567855
0.00057325
0.000575023
0.000572814
0.000566207
0.000554763
0.000538051
0.000515682
0.000487336
0.000452787
0.00041192
0.000364768
0.000309081
0.000246197
0.000184061
0.00012369
6.05399e-05
1.16093e-05
3.65832e-06
2.5167e-06
1.36646e-05
6.82963e-05
0.000138377
0.000207628
0.000271806
0.000329285
0.000379592
0.000422948
0.000459962
0.000491392
0.000517976
0.000540328
0.000558892
0.000573945
0.000585612
0.000593886
0.000598649
0.000599674
0.000596646
0.000589174
0.000576815
0.000559112
0.000535625
0.000505978
0.000469899
0.000427261
0.000378128
0.00032281
0.000262027
0.000197097
0.000129894
6.34185e-05
1.21403e-05
3.65423e-06
2.85849e-06
1.55364e-05
7.3108e-05
0.00014435
0.000214195
0.000276099
0.000331675
0.000383427
0.000430528
0.000471979
0.000507489
0.000537313
0.000561984
0.000582099
0.000598135
0.000610366
0.000618899
0.000623679
0.000624493
0.000621
0.000612522
0.000599038
0.000580169
0.000555465
0.000524512
0.000486827
0.000441281
0.000389969
0.000333953
0.000271163
0.000204177
0.000134549
6.53519e-05
1.25122e-05
3.67393e-06
3.0609e-06
1.69809e-05
7.75212e-05
0.000150994
0.000221715
0.000286051
0.000338077
0.000386245
0.000431829
0.000474057
0.000512007
0.000545074
0.000573025
0.000595876
0.000613803
0.000627077
0.000635955
0.000640594
0.000640998
0.000636965
0.000628118
0.000613958
0.000593889
0.000567237
0.000533397
0.000492328
0.000445341
0.000394991
0.000342055
0.000280732
0.000211746
0.000139407
6.72804e-05
1.28597e-05
3.69428e-06
3.13115e-06
1.83902e-05
8.29061e-05
0.000160932
0.000234651
0.000301777
0.000362407
0.000407853
0.000447409
0.000485024
0.000520964
0.000554468
0.000584529
0.000610256
0.000631058
0.000646682
0.000657136
0.000662562
0.0006631
0.000658742
0.00064921
0.000633964
0.000612296
0.000583423
0.000546787
0.000502771
0.000453643
0.000402962
0.000351361
0.000290348
0.000219793
0.000144957
6.97071e-05
1.32867e-05
3.7002e-06
3.1362e-06
1.94152e-05
8.7703e-05
0.000171539
0.000250696
0.000321671
0.000384498
0.000439858
0.000478884
0.00050975
0.000538726
0.000567438
0.000595407
0.000621318
0.000643752
0.00066161
0.000674256
0.000681444
0.000683145
0.000679344
0.000669855
0.000654183
0.000631542
0.000601053
0.000562196
0.000515663
0.000464285
0.000412267
0.000360348
0.000298247
0.000226525
0.000149919
7.21077e-05
1.37437e-05
3.72403e-06
3.2402e-06
1.99334e-05
8.98821e-05
0.00017745
0.000261942
0.000338391
0.000405761
0.00046428
0.000507552
0.000537663
0.000561986
0.000584352
0.000606432
0.000628245
0.000648735
0.000666464
0.000680156
0.000688958
0.000692405
0.000690233
0.000682153
0.000667644
0.000645834
0.000615639
0.000576338
0.000528663
0.000475826
0.000422515
0.000369517
0.000305633
0.000232667
0.000154569
7.46979e-05
1.43809e-05
3.77559e-06
3.45396e-06
2.02203e-05
8.99408e-05
0.000177992
0.000264894
0.000345527
0.000417966
0.000481481
0.000529355
0.000562814
0.000587854
0.000607868
0.000625218
0.00064135
0.000656631
0.000670514
0.000681969
0.000689917
0.000693484
0.00069203
0.000685011
0.000671766
0.000651354
0.000622672
0.000585173
0.000540063
0.000490658
0.000439773
0.000383692
0.000314475
0.000239623
0.00015963
7.76995e-05
1.51945e-05
3.80593e-06
3.68782e-06
2.08916e-05
9.05994e-05
0.000177784
0.000264048
0.0003454
0.000420285
0.000487761
0.000547186
0.000589643
0.000619337
0.000641438
0.000658337
0.000671529
0.000682031
0.000690318
0.000696302
0.000699513
0.000699323
0.000695076
0.000686115
0.000671725
0.000651166
0.000623992
0.000590635
0.000552506
0.000510383
0.000460752
0.000395556
0.000324179
0.000246995
0.000164679
8.05181e-05
1.59479e-05
3.78476e-06
3.78656e-06
2.22781e-05
9.45024e-05
0.000183199
0.000269219
0.000349526
0.000423663
0.000491446
0.000552577
0.000606675
0.00064804
0.000674846
0.000694845
0.000710294
0.00072141
0.000728187
0.000730781
0.00072937
0.000724029
0.000714629
0.000700811
0.000682089
0.000658172
0.000629527
0.000597746
0.000564466
0.000527407
0.000474787
0.000408037
0.000334385
0.000254401
0.000169145
8.24229e-05
1.63432e-05
3.73678e-06
3.75808e-06
2.348e-05
9.94295e-05
0.000193027
0.000282338
0.000363668
0.000437162
0.000503551
0.000563356
0.000616772
0.000660761
0.000689344
0.000712196
0.00073171
0.000747285
0.000757855
0.000762794
0.000761939
0.000755439
0.000743556
0.000726427
0.000704027
0.000676558
0.000645191
0.000612431
0.000580398
0.000545263
0.000489659
0.000421753
0.000346216
0.000263533
0.000174978
8.4966e-05
1.67902e-05
3.71335e-06
3.69916e-06
2.38403e-05
0.000102074
0.000200931
0.00029616
0.000382071
0.000458121
0.000525192
0.000584342
0.000636396
0.000681252
0.000705777
0.000724151
0.000740965
0.000756156
0.000768043
0.000775024
0.000776161
0.000771066
0.000759677
0.000742086
0.000718515
0.00068964
0.000657228
0.000624265
0.000592923
0.000558852
0.000503557
0.000434907
0.000358054
0.000273214
0.00018157
8.79784e-05
1.73772e-05
3.72837e-06
3.71278e-06
2.41757e-05
0.000103627
0.000204739
0.000303803
0.000394341
0.000474775
0.000545272
0.000606619
0.000659714
0.00070532
0.000743973
0.000763543
0.000772485
0.00077926
0.000785212
0.00078886
0.000788343
0.000782351
0.000770219
0.000751731
0.000727085
0.000697162
0.000663988
0.000630649
0.000599321
0.000566191
0.000514373
0.000445016
0.000367016
0.000280384
0.000186189
8.97171e-05
1.76238e-05
3.72416e-06
3.78245e-06
2.46819e-05
0.000105294
0.00020714
0.000307343
0.000399824
0.000482837
0.000556141
0.00062012
0.000675397
0.00072263
0.000762395
0.00079513
0.000814045
0.000818026
0.000817915
0.000816478
0.000812743
0.000804803
0.000791179
0.000771153
0.000744801
0.00071326
0.000679008
0.000645449
0.000614462
0.000580664
0.000523983
0.000453656
0.000374588
0.000286594
0.000190573
9.18724e-05
1.80662e-05
3.69263e-06
3.8261e-06
2.56751e-05
0.000108387
0.000212076
0.000313872
0.000407783
0.000492162
0.000566801
0.000632048
0.000688458
0.000736626
0.0007771
0.000810334
0.000836673
0.000849288
0.000848047
0.000842762
0.00083574
0.000825819
0.000811085
0.000790233
0.00076312
0.000731149
0.000697412
0.000665512
0.000635434
0.000595933
0.000532445
0.000460777
0.000380434
0.000291144
0.000193688
9.34128e-05
1.84382e-05
3.65415e-06
3.8984e-06
2.66098e-05
0.000110639
0.000214751
0.000317176
0.000412188
0.000498007
0.000574212
0.000640971
0.000698706
0.000747939
0.000789195
0.000822945
0.000849576
0.000869382
0.000875005
0.000867483
0.000855732
0.000841894
0.000824894
0.000803055
0.000775817
0.000744647
0.000712863
0.000683396
0.000653235
0.000605123
0.000540402
0.000467396
0.000385659
0.000294958
0.000196095
9.45173e-05
1.87333e-05
3.61868e-06
4.04006e-06
2.70084e-05
0.000111337
0.000214604
0.000316082
0.00041074
0.000496971
0.000574236
0.000642471
0.000701861
0.000752721
0.000795432
0.000830383
0.000857935
0.000878396
0.000892017
0.000892807
0.000878998
0.000860204
0.000839025
0.000815027
0.000787585
0.000757634
0.000727936
0.000700564
0.000670067
0.000614393
0.00054875
0.000474608
0.000391531
0.000299339
0.000198922
9.59015e-05
1.91203e-05
3.58896e-06
4.17716e-06
2.82786e-05
0.000114884
0.000219454
0.000321132
0.000415349
0.000500964
0.000577753
0.000645808
0.000705347
0.000756634
0.000799955
0.000835593
0.000863821
0.00088488
0.000898978
0.000906291
0.000901395
0.000882032
0.000857397
0.000830594
0.000802539
0.000774567
0.000748498
0.000722308
0.00068125
0.000623312
0.000557126
0.000482178
0.000398008
0.000304443
0.000202438
9.7777e-05
1.96146e-05
3.56202e-06
4.29229e-06
2.89768e-05
0.000117537
0.000224534
0.000328083
0.000423383
0.000509404
0.000586148
0.000653923
0.000713113
0.000764098
0.000807219
0.000842771
0.000871005
0.000892123
0.000906292
0.000913642
0.000909533
0.000892865
0.000869956
0.000844508
0.00081909
0.000795735
0.0007732
0.000739817
0.000689344
0.000631137
0.000564626
0.000489213
0.000404353
0.000309799
0.000206453
0.000100135
2.02657e-05
3.54215e-06
4.41364e-06
2.97126e-05
0.000120294
0.000229826
0.000335575
0.000432478
0.000519486
0.000596692
0.000664531
0.000723523
0.000774163
0.000816883
0.00085204
0.000879908
0.000896382
0.00090532
0.000908209
0.000904156
0.000892668
0.000875264
0.000855106
0.000835402
0.000816544
0.000790374
0.000746574
0.000695603
0.000636949
0.000570007
0.000494112
0.00040864
0.000313267
0.000208862
0.000101378
2.0601e-05
3.51175e-06
4.46268e-06
3.03201e-05
0.000122716
0.000234893
0.000343064
0.000441738
0.000529797
0.000607411
0.000675151
0.000733675
0.000783598
0.00082544
0.000851457
0.000866562
0.000878595
0.000888662
0.00089525
0.000896606
0.00089196
0.000882294
0.000870138
0.000856624
0.000835302
0.000797485
0.000752895
0.000701189
0.000641878
0.000574353
0.000497921
0.000411899
0.0003159
0.000210753
0.000102446
2.08929e-05
3.47439e-06
4.45706e-06
3.05397e-05
0.000124036
0.000238834
0.000349929
0.000451019
0.000540668
0.000619005
0.000686697
0.000744549
0.000793338
0.000828297
0.000841702
0.000850574
0.000860124
0.000869974
0.000878184
0.000883304
0.000885184
0.000884685
0.000881944
0.000872787
0.000843575
0.000805007
0.000759492
0.000706807
0.000646562
0.000578204
0.000501057
0.000414418
0.000317844
0.000212105
0.000103209
2.11494e-05
3.44575e-06
4.45285e-06
3.13636e-05
0.000126446
0.00024348
0.00035727
0.000460981
0.000552773
0.000632552
0.000700924
0.000758743
0.000806901
0.000844895
0.000852042
0.000852381
0.000854466
0.000859166
0.000864847
0.000869971
0.000874166
0.000878066
0.000881349
0.000878323
0.000852152
0.000813208
0.000766931
0.000713217
0.000651812
0.000582286
0.00050405
0.000416449
0.000319051
0.000212633
0.000103287
2.11757e-05
3.42241e-06
4.45824e-06
3.15137e-05
0.000126756
0.000244218
0.000359212
0.000464793
0.000558795
0.000640771
0.000711046
0.000770292
0.000819313
0.000858924
0.000875813
0.000870705
0.000863291
0.000859429
0.000859012
0.000860603
0.000863431
0.000867722
0.000873324
0.000875925
0.000860828
0.00082205
0.000775433
0.000720939
0.000658433
0.000587635
0.000508113
0.000419338
0.000320959
0.000213772
0.00010385
2.13654e-05
3.41357e-06
4.49895e-06
3.19996e-05
0.000127658
0.000244935
0.00035989
0.000465933
0.000560933
0.000644316
0.000716209
0.000777093
0.000827621
0.000868507
0.000900462
0.00090588
0.000892151
0.000877019
0.000866133
0.000859846
0.000857191
0.000857509
0.000860373
0.000863754
0.000859988
0.000829827
0.000783574
0.000728877
0.000665621
0.000593621
0.000512594
0.0004222
0.000322285
0.000213852
0.000103292
2.11663e-05
3.39323e-06
4.59002e-06
3.24835e-05
0.000128516
0.000245108
0.000359298
0.000465006
0.000560227
0.000644332
0.000717319
0.000779515
0.00083144
0.000873708
0.000906963
0.000931832
0.000929206
0.000910631
0.000891003
0.000875708
0.000865605
0.000860185
0.000858674
0.00085927
0.000856327
0.000835449
0.000789965
0.000735684
0.000672358
0.000599743
0.000517589
0.000425682
0.00032409
0.000214144
0.000102695
2.08404e-05
3.33508e-06
4.7402e-06
3.24192e-05
0.00012817
0.000244002
0.000357351
0.000462531
0.000557688
0.000642189
0.000715939
0.000779142
0.000832188
0.000875587
0.000909905
0.000935725
0.000944263
0.000930668
0.000911159
0.000893528
0.000880506
0.000872745
0.000869931
0.000869822
0.000865193
0.000839247
0.000794179
0.000740343
0.00067731
0.000604685
0.000522126
0.000429412
0.000326704
0.000215526
0.000103035
2.07844e-05
3.25529e-06
4.93388e-06
3.32784e-05
0.000130177
0.000246293
0.000359332
0.000464058
0.000558887
0.000643305
0.000717231
0.000780819
0.000834377
0.000878325
0.00091315
0.000939377
0.00094495
0.000934944
0.000919255
0.000904049
0.000892604
0.000886466
0.000885679
0.000886897
0.000879014
0.000841913
0.000796796
0.000743092
0.000680227
0.000607659
0.00052492
0.000431722
0.000328247
0.000216159
0.000102936
2.06135e-05
3.16153e-06
5.18482e-06
3.36202e-05
0.000131157
0.000247515
0.000360371
0.000464837
0.000559545
0.000644075
0.000718348
0.000782466
0.00083665
0.000881194
0.000911314
0.000926693
0.000930586
0.000926181
0.000917098
0.000907228
0.000900155
0.000898402
0.000901609
0.000902522
0.000881441
0.000843884
0.00079856
0.000744855
0.000682112
0.000609674
0.000526948
0.000433547
0.000329615
0.000216899
0.000103118
2.05765e-05
3.07693e-06
5.45972e-06
3.3718e-05
0.000131625
0.00024848
0.000361243
0.000465219
0.000559303
0.000643257
0.000717075
0.000773091
0.000816548
0.000851264
0.000878004
0.000896465
0.000906645
0.000909546
0.000907281
0.000902864
0.00089988
0.000901493
0.00090772
0.000909985
0.000884477
0.000846304
0.000800511
0.000746518
0.000683647
0.000611175
0.000528411
0.000434854
0.000330569
0.000217325
0.000103098
2.05273e-05
3.01376e-06
5.69041e-06
3.44531e-05
0.000133663
0.000251967
0.000365293
0.000468883
0.000561835
0.000644118
0.000704602
0.000749686
0.000788245
0.00082204
0.000850323
0.000871976
0.000886462
0.000894164
0.00089642
0.000895551
0.00089478
0.000897507
0.000904736
0.000909446
0.000888739
0.000849999
0.000803634
0.00074915
0.000685915
0.000613202
0.000530264
0.000436504
0.000331889
0.000218149
0.000103411
2.06139e-05
2.98386e-06
5.87296e-06
3.41613e-05
0.00013305
0.000252287
0.000366574
0.000470615
0.000563336
0.000644721
0.000693613
0.000730843
0.00076513
0.000797344
0.000826075
0.000849762
0.000867462
0.000879
0.000884991
0.000886963
0.000887489
0.000889864
0.000896381
0.000903737
0.000894667
0.000855369
0.000808284
0.000753047
0.000689131
0.000615862
0.000532497
0.000438388
0.000333414
0.000219219
0.000103956
2.07964e-05
2.9916e-06
5.97114e-06
3.36678e-05
0.000131605
0.000251467
0.000366876
0.000471899
0.000565189
0.000646645
0.000699134
0.000729433
0.000755745
0.000782422
0.000808487
0.000831825
0.00085079
0.000864588
0.000873263
0.000877671
0.000879592
0.000881701
0.000886573
0.000893907
0.000894729
0.000862669
0.000814911
0.000758766
0.000693855
0.000619637
0.000535452
0.000440682
0.00033517
0.000220474
0.000104672
2.10614e-05
3.03227e-06
5.96531e-06
3.32017e-05
0.000130124
0.000250405
0.000367157
0.000473803
0.000568636
0.000651417
0.000721796
0.000749232
0.000766345
0.000784296
0.000804183
0.000824018
0.000841585
0.000855389
0.000864907
0.00087055
0.000873547
0.000875916
0.000880032
0.000886681
0.000890428
0.000871814
0.000823675
0.000766701
0.000700668
0.000625198
0.000539786
0.000443932
0.000337539
0.000222133
0.000105646
2.1369e-05
3.07515e-06
5.9004e-06
3.22528e-05
0.000127511
0.000247465
0.000365019
0.000473159
0.000569823
0.00065449
0.000727238
0.000776759
0.000790931
0.000799538
0.000811159
0.000825362
0.000839555
0.000851577
0.000860303
0.000865692
0.000868718
0.000871154
0.000875202
0.000882238
0.000889329
0.000882251
0.000834189
0.00077673
0.000709748
0.000633006
0.00054616
0.000448879
0.000341195
0.000224674
0.00010713
2.17876e-05
3.10395e-06
5.77485e-06
3.16453e-05
0.000125831
0.000245464
0.000363428
0.000472505
0.000570507
0.000656816
0.000731424
0.000794596
0.000827698
0.000830851
0.000832098
0.00083788
0.000846553
0.000855156
0.000861656
0.000865418
0.000867117
0.000868537
0.000872084
0.000879432
0.000888383
0.000886804
0.000845268
0.000787932
0.000720466
0.000642695
0.000554396
0.000455398
0.000345912
0.00022767
0.000108597
2.21064e-05
3.10681e-06
5.59971e-06
3.12325e-05
0.000124875
0.000244254
0.000362407
0.000472044
0.000570941
0.000658462
0.000734579
0.000799537
0.000853712
0.000875239
0.000869753
0.000864458
0.000864642
0.000867899
0.000871079
0.000872445
0.000872018
0.000871437
0.000873358
0.000880001
0.000889874
0.000891542
0.000855916
0.000799209
0.000731809
0.000653492
0.000564052
0.000463402
0.0003519
0.00023149
0.000110385
2.24447e-05
3.09357e-06
5.3916e-06
3.08351e-05
0.000124126
0.000243367
0.000361672
0.000471661
0.000571094
0.000659362
0.000736477
0.000802709
0.000858445
0.000904133
0.000916962
0.000904818
0.000893931
0.00088891
0.00088705
0.000885286
0.000882486
0.000879725
0.000879685
0.000885081
0.00089507
0.000898481
0.00086513
0.000809255
0.000742286
0.000663861
0.000573693
0.000471681
0.000358262
0.000235581
0.000112255
2.27866e-05
3.07311e-06
5.18118e-06
3.05923e-05
0.000123834
0.000243117
0.000361734
0.00047216
0.000572073
0.000660865
0.000738595
0.000805591
0.000862282
0.000909144
0.000946671
0.000950974
0.000933454
0.000918004
0.000908519
0.000902277
0.000896832
0.000892226
0.000890868
0.000895747
0.000906173
0.000909783
0.000872473
0.000817364
0.00075097
0.000672747
0.000582263
0.000479328
0.000364368
0.000239664
0.000114211
2.31744e-05
3.05064e-06
5.03907e-06
3.0086e-05
0.000122907
0.000241987
0.000360884
0.00047192
0.000572575
0.00066212
0.000740573
0.000808277
0.000865698
0.000913348
0.000951751
0.000981427
0.000971409
0.000949391
0.000931785
0.000919877
0.000911324
0.000905322
0.000903808
0.000909689
0.000921373
0.000921761
0.000877713
0.000823119
0.000757229
0.000679334
0.00058884
0.000485419
0.000369428
0.000243194
0.000116003
2.35783e-05
3.03064e-06
5.02818e-06
2.96297e-05
0.000122089
0.000241077
0.000360323
0.00047206
0.000573588
0.000664028
0.000743301
0.000811713
0.000869738
0.000917909
0.000956771
0.000986852
0.000992831
0.000972543
0.000950235
0.000933313
0.000921753
0.000915025
0.000914771
0.000922891
0.000934309
0.000924715
0.0008808
0.000826497
0.000760966
0.000683386
0.000593028
0.000489435
0.000372864
0.000245644
0.000117279
2.39025e-05
3.01077e-06
5.16654e-06
2.94272e-05
0.000121849
0.000241155
0.000361024
0.000473628
0.000576139
0.000667547
0.00074768
0.000816781
0.000875301
0.000923781
0.000962785
0.000992857
0.000992399
0.00097473
0.000954007
0.000936502
0.000923885
0.000917009
0.000917783
0.000927326
0.000938929
0.000926489
0.000882426
0.000828114
0.000762685
0.000685257
0.000595019
0.000491411
0.000374604
0.000246905
0.000117966
2.41285e-05
2.98942e-06
5.39092e-06
2.99147e-05
0.000123254
0.000243535
0.000364288
0.000477728
0.000581028
0.000673151
0.000753878
0.000823408
0.000882156
0.000930632
0.000968572
0.000979151
0.000974219
0.000960821
0.00094469
0.000929645
0.000917785
0.000910896
0.00091135
0.000920562
0.000933341
0.000927766
0.000883459
0.000828939
0.000763367
0.000685858
0.000595569
0.000491899
0.000374978
0.000247117
0.000118076
2.42179e-05
2.95881e-06
5.53178e-06
3.11555e-05
0.000126509
0.000248175
0.000369698
0.000483502
0.000586953
0.000679134
0.000759873
0.000829373
0.000888012
0.000936241
0.000962449
0.000968451
0.00096325
0.000951973
0.000938216
0.00092459
0.000913046
0.000905552
0.000904531
0.000911924
0.00092529
0.000929002
0.000884479
0.000829747
0.000763984
0.000686319
0.000595915
0.000492164
0.000375188
0.00024731
0.000118297
2.4345e-05
2.92098e-06
5.46912e-06
3.2411e-05
0.000129641
0.000252199
0.000374005
0.000487697
0.000590846
0.000682691
0.000763167
0.000832531
0.000891188
0.000939597
0.000978221
0.000983752
0.000974867
0.000961155
0.000946098
0.000931516
0.000918949
0.000910222
0.000907689
0.000913374
0.000925377
0.000929283
0.000885521
0.00083065
0.000764774
0.000687029
0.00059658
0.000492822
0.000375876
0.000248041
0.000118968
2.45727e-05
2.8787e-06
5.27086e-06
3.2873e-05
0.000130669
0.000253096
0.000374651
0.000488056
0.000590926
0.000682553
0.00076293
0.000832362
0.000891277
0.000940146
0.000979442
0.00100962
0.0010079
0.000989327
0.000968804
0.00095045
0.000935478
0.000925209
0.000921815
0.000927126
0.000937425
0.000931406
0.000886393
0.000831335
0.000765388
0.000687663
0.000597312
0.000493709
0.000376947
0.000249247
0.000120028
2.48866e-05
2.83661e-06
5.09744e-06
3.25479e-05
0.000129614
0.000250927
0.000371672
0.000484622
0.00058731
0.000678956
0.000759508
0.000829251
0.000888609
0.000938058
0.00097808
0.00100915
0.00103172
0.00102405
0.000999743
0.000975635
0.000957023
0.000945723
0.000943182
0.000949106
0.000954873
0.000931823
0.000886342
0.000831037
0.000765028
0.000687401
0.000597277
0.000493999
0.000377603
0.000250198
0.000120943
2.51445e-05
2.79584e-06
5.02189e-06
3.24009e-05
0.000129028
0.000249104
0.000368627
0.000480677
0.000582819
0.000674219
0.000754757
0.000824661
0.000884329
0.000934228
0.000974834
0.00100662
0.00103005
0.00104555
0.00102916
0.00100367
0.00098269
0.000970947
0.000969646
0.000974775
0.000968571
0.000931218
0.000885123
0.000829464
0.000763343
0.000685817
0.000595978
0.00049313
0.00037725
0.000250332
0.000121318
2.52422e-05
2.75005e-06
5.02792e-06
3.28016e-05
0.00012984
0.000249099
0.000367395
0.000478279
0.000579494
0.000670244
0.000750384
0.000820105
0.000879773
0.000929833
0.000970753
0.001003
0.00102701
0.00104321
0.00104806
0.00103046
0.0010125
0.00100344
0.00100299
0.000997619
0.000967242
0.000929077
0.000882408
0.000826419
0.000760205
0.000682814
0.000593322
0.000491003
0.000375787
0.000249579
0.00012114
2.51911e-05
2.69816e-06
5.10185e-06
3.33395e-05
0.000131156
0.000250034
0.000367382
0.000477214
0.000577486
0.000667481
0.000747068
0.000816421
0.000875882
0.00092588
0.000966873
0.000999318
0.00102366
0.0010403
0.00104962
0.00105076
0.00104431
0.0010368
0.00101948
0.000995442
0.000964293
0.000925494
0.000878369
0.000822123
0.000755868
0.000678654
0.000589549
0.000487816
0.000373354
0.000248013
0.000120431
2.49973e-05
2.64232e-06
5.2316e-06
3.34264e-05
0.000131615
0.000250448
0.000367353
0.000476573
0.000576216
0.00066565
0.000744781
0.000813789
0.000873008
0.000922853
0.000963775
0.000996227
0.00102064
0.00103742
0.00104689
0.00104936
0.00104503
0.00103403
0.00101634
0.00099181
0.000960145
0.000920879
0.000873397
0.000816955
0.000750696
0.000673688
0.000585007
0.000483908
0.00037027
0.000245901
0.00011936
2.47171e-05
2.58838e-06
5.38019e-06
3.29946e-05
0.000130948
0.000249992
0.000366913
0.000475929
0.000575228
0.000664256
0.000742981
0.000811641
0.0008706
0.000920267
0.000959479
0.000985786
0.00100605
0.0010237
0.00103902
0.00104706
0.00104264
0.00103141
0.00101335
0.000988356
0.000956155
0.00091635
0.000868395
0.000811607
0.000745178
0.000668218
0.000579827
0.000479272
0.000366431
0.000243095
0.000117789
2.43083e-05
2.54141e-06
5.50409e-06
3.22707e-05
0.00012927
0.000248441
0.000365498
0.000474341
0.000573111
0.000661269
0.000738783
0.000793018
0.000836457
0.00087349
0.000905605
0.000933954
0.000960098
0.000985639
0.00101092
0.00103267
0.00104028
0.00102915
0.00101096
0.000985641
0.000952964
0.000912592
0.000864049
0.000806719
0.000739863
0.000662653
0.000574243
0.00047395
0.000361699
0.000239341
0.000115479
2.36811e-05
2.49305e-06
5.5706e-06
3.14146e-05
0.000126625
0.000245354
0.000362323
0.000470887
0.000568959
0.000655869
0.000721157
0.000762871
0.000797352
0.000829359
0.000859342
0.000887411
0.000914478
0.000942002
0.000970989
0.00100032
0.00102399
0.00102692
0.00100908
0.00098378
0.000950861
0.000910043
0.000860916
0.000802944
0.00073547
0.000657751
0.000569032
0.000468719
0.000356836
0.000235342
0.00011295
2.29867e-05
2.43464e-06
5.55712e-06
3.11272e-05
0.000125213
0.000243506
0.000360451
0.000469101
0.000567287
0.00065435
0.000730174
0.000780122
0.000805019
0.000824156
0.000843002
0.000862442
0.000882939
0.000905475
0.000931115
0.00095998
0.00098948
0.00101118
0.00100638
0.000981786
0.000949195
0.000908369
0.000858951
0.000800469
0.000732346
0.000653935
0.000564596
0.000463872
0.000351951
0.000231003
0.000110003
2.21453e-05
2.36039e-06
5.47969e-06
3.23617e-05
0.000128092
0.000246455
0.000362827
0.000470796
0.000568478
0.000655387
0.000731532
0.000797106
0.000852413
0.000872974
0.000876503
0.000879578
0.000886506
0.000898152
0.00091491
0.000937009
0.00096342
0.000989246
0.00100079
0.000977363
0.000945708
0.000905541
0.000856483
0.000798065
0.000729738
0.00065091
0.000561025
0.00045976
0.000347504
0.000226735
0.000106862
2.11525e-05
2.25452e-06
5.40321e-06
3.34146e-05
0.000130613
0.000248493
0.000363692
0.00047043
0.000567058
0.000653197
0.000728931
0.000794513
0.000850269
0.000896563
0.000922563
0.000920521
0.000914585
0.000914308
0.000922352
0.000939246
0.000963697
0.00098844
0.000992408
0.00096968
0.000938918
0.000899712
0.000851586
0.000793998
0.000726351
0.00064803
0.000558488
0.000457444
0.000345371
0.00022488
0.000105548
2.06836e-05
2.16151e-06
5.38466e-06
3.28465e-05
0.000129026
0.000245648
0.000359657
0.000465395
0.000561257
0.000646873
0.000722322
0.000787857
0.0008438
0.000890506
0.000928348
0.000933409
0.000927721
0.000925254
0.00093127
0.000947591
0.000972456
0.000994488
0.000983243
0.000960417
0.000929888
0.000891186
0.000843764
0.000787007
0.000720247
0.000642808
0.0005541
0.000453825
0.000342465
0.000222664
0.00010407
2.01661e-05
2.09953e-06
5.3949e-06
3.27215e-05
0.000128545
0.000244649
0.000357884
0.000462683
0.000557566
0.000642268
0.000716942
0.000781877
0.000837397
0.000883824
0.00091419
0.000919315
0.000917739
0.000918847
0.000927061
0.000944503
0.000969578
0.000990374
0.000975029
0.000951841
0.000921174
0.0008826
0.000835591
0.000779518
0.000713679
0.000637341
0.000549835
0.000450762
0.000340487
0.00022152
0.000103452
1.99692e-05
2.07932e-06
5.3869e-06
3.3222e-05
0.000129704
0.000245892
0.000358697
0.000462667
0.000556478
0.000640018
0.000713565
0.000777499
0.000832188
0.000877962
0.000899345
0.000903683
0.000904331
0.000907506
0.000916466
0.000933283
0.000957043
0.000977845
0.000967871
0.000944262
0.000913197
0.000874336
0.000827222
0.000771277
0.000705822
0.000630115
0.000543447
0.000445355
0.000336125
0.000218224
0.00010135
1.9407e-05
2.09226e-06
5.40246e-06
3.29047e-05
0.00012893
0.000244884
0.000357531
0.000461244
0.000554616
0.000637545
0.000710369
0.000773557
0.00082756
0.000870816
0.000885609
0.000890412
0.000894002
0.000899838
0.000909899
0.00092605
0.000948186
0.000968466
0.000962673
0.000938629
0.000907068
0.000867734
0.000820258
0.000764148
0.000698787
0.000623466
0.00053747
0.000440287
0.000332117
0.000215338
9.96299e-05
1.89615e-05
2.10917e-06
5.44149e-06
3.24703e-05
0.000127884
0.000243719
0.000356352
0.000459953
0.000553027
0.000635449
0.00070759
0.000769971
0.000823111
0.00085386
0.000866358
0.000874056
0.000882016
0.000891472
0.000902984
0.00091773
0.000936555
0.000955821
0.000959715
0.000935354
0.000903284
0.000863344
0.000815281
0.000758742
0.00069325
0.000618212
0.000532974
0.000436979
0.000330243
0.000214789
9.98683e-05
1.92581e-05
2.17827e-06
5.46911e-06
3.27011e-05
0.000128561
0.000244888
0.000357831
0.000461458
0.000554238
0.000636055
0.000707325
0.00076865
0.000820657
0.000844678
0.000854499
0.000863076
0.000874092
0.000887345
0.000901947
0.000917589
0.0009342
0.000949905
0.000956805
0.000934602
0.00090224
0.000861676
0.000812707
0.00075507
0.000688427
0.000612362
0.000526424
0.000430268
0.000324086
0.000209966
9.70027e-05
1.85897e-05
2.23228e-06
5.49577e-06
3.22744e-05
0.000127661
0.000244141
0.000357608
0.000461844
0.000555077
0.000637025
0.000708015
0.000768635
0.000815122
0.000831011
0.000839026
0.000848886
0.000862871
0.00088034
0.000900104
0.000921171
0.000942045
0.000958347
0.00095863
0.000934791
0.000902857
0.000862597
0.000813764
0.000756089
0.000689278
0.000613009
0.000526965
0.000430939
0.000325203
0.00021171
9.88839e-05
1.92768e-05
2.26629e-06
5.54055e-06
3.18913e-05
0.000126566
0.000242914
0.000356678
0.000461484
0.000555369
0.000637857
0.000709102
0.000769563
0.000808079
0.00081999
0.000825764
0.000834281
0.000847973
0.000866623
0.000889218
0.000914283
0.000939039
0.000957531
0.000957937
0.000934565
0.000903047
0.000863095
0.000814407
0.000756679
0.000689614
0.000612937
0.000526421
0.000429996
0.000324075
0.000210708
9.82757e-05
1.90996e-05
2.23602e-06
5.57694e-06
3.2067e-05
0.000126896
0.000243172
0.000356993
0.000462131
0.000556577
0.000639717
0.000711541
0.000772368
0.000814838
0.000825109
0.000826921
0.000831246
0.000841628
0.000858568
0.000881662
0.000909739
0.000939185
0.00096082
0.000956871
0.000933966
0.000902938
0.000863399
0.000814946
0.000757186
0.000689757
0.000612367
0.00052485
0.000427295
0.000320421
0.000206747
9.52019e-05
1.80616e-05
2.13739e-06
5.60212e-06
3.16694e-05
0.000125686
0.000241354
0.000354994
0.000460447
0.000555649
0.000639841
0.000712822
0.000774703
0.000821954
0.000832302
0.000831203
0.000830973
0.000836205
0.000848386
0.00086829
0.00089617
0.00092948
0.00095771
0.00095577
0.00093361
0.000903477
0.00086492
0.000817442
0.000760543
0.000693761
0.000616717
0.000529184
0.000431232
0.00032362
0.000208984
9.6433e-05
1.82666e-05
2.03253e-06
5.63827e-06
3.19528e-05
0.000126055
0.000241258
0.000354295
0.000459371
0.00055464
0.000639411
0.000713427
0.000776643
0.000829171
0.000848146
0.000846254
0.00084043
0.000837836
0.000840843
0.000850593
0.000868589
0.000896041
0.000930054
0.000954779
0.0009336
0.000904528
0.000867098
0.000820758
0.000764907
0.000698947
0.00062235
0.000534757
0.000436145
0.000327253
0.000210879
9.6757e-05
1.81125e-05
1.93945e-06
5.65664e-06
3.23614e-05
0.00012698
0.000241907
0.000354288
0.000458677
0.000553483
0.000638197
0.000712661
0.000776848
0.0008308
0.000866818
0.000869489
0.000861532
0.000853651
0.000849307
0.000849343
0.000854896
0.000868487
0.000892395
0.00092196
0.000931651
0.000903573
0.000867211
0.000821998
0.000767275
0.00070232
0.000626427
0.000539028
0.00043993
0.000329832
0.000211774
9.63235e-05
1.77789e-05
1.90252e-06
5.66864e-06
3.26267e-05
0.000127531
0.000242445
0.000354514
0.000458393
0.000552659
0.000636983
0.000711364
0.000775883
0.000830627
0.000875679
0.000883645
0.000877139
0.000868464
0.000861477
0.000856619
0.000854038
0.000855332
0.000864034
0.000883207
0.00090657
0.000900106
0.000864331
0.000819811
0.00076589
0.000701831
0.000626847
0.000540218
0.000441545
0.000331334
0.000212607
9.6377e-05
1.77997e-05
1.94554e-06
5.66986e-06
3.31981e-05
0.000128902
0.000244182
0.000356153
0.000459555
0.000553135
0.000636752
0.000710583
0.00077485
0.000829736
0.000875363
0.000891071
0.000888038
0.00088013
0.00087225
0.000865131
0.000858378
0.000852119
0.000848056
0.000849873
0.000861136
0.000876308
0.000860318
0.000815981
0.000762279
0.000698525
0.000623977
0.000537922
0.000439906
0.000330319
0.00021204
9.6057e-05
1.78822e-05
2.04726e-06
5.64708e-06
3.36012e-05
0.000130008
0.000245895
0.000358135
0.000461382
0.000554461
0.000637379
0.000710485
0.00077417
0.000828758
0.000874475
0.000896308
0.000896792
0.000890485
0.000883022
0.000875556
0.00086759
0.000858496
0.000848419
0.00083901
0.000833708
0.00083576
0.000839941
0.000814091
0.000760429
0.000696713
0.000622272
0.000536457
0.00043885
0.00032981
0.000212059
9.62865e-05
1.81289e-05
2.16603e-06
5.60838e-06
3.39726e-05
0.000131158
0.00024792
0.000360783
0.000464214
0.00055704
0.000639377
0.000711724
0.000774633
0.00082859
0.000873964
0.000902711
0.000906699
0.000902136
0.000895877
0.000889632
0.00088286
0.000874409
0.00086352
0.000850542
0.000837334
0.000826784
0.00082008
0.0008091
0.000761897
0.000697999
0.000623465
0.000537691
0.00044026
0.000331444
0.000213743
9.74446e-05
1.84512e-05
2.22902e-06
5.5559e-06
3.42652e-05
0.000132254
0.00025002
0.000363754
0.00046768
0.000560565
0.000642569
0.000714295
0.000776436
0.00082963
0.000874401
0.000911139
0.000919577
0.000916666
0.000911893
0.000907876
0.000904033
0.000898696
0.000890343
0.000878461
0.000864057
0.000849169
0.000834516
0.000814014
0.000765376
0.000700705
0.000625572
0.000539434
0.000441888
0.000333134
0.00021544
9.86122e-05
1.86251e-05
2.19744e-06
5.49863e-06
3.4346e-05
0.00013284
0.000251462
0.00036613
0.00047078
0.000564035
0.000646026
0.000717399
0.000778937
0.000831397
0.000875435
0.00091158
0.000931365
0.00093222
0.000929168
0.000927543
0.00092734
0.000926501
0.000922965
0.000915676
0.00090471
0.000889983
0.000867511
0.000822377
0.000766487
0.000700928
0.000625128
0.000538548
0.000440831
0.000332234
0.000214985
9.85701e-05
1.84751e-05
2.08828e-06
5.44581e-06
3.44084e-05
0.000133365
0.000252704
0.000368219
0.000473616
0.000567368
0.00064954
0.000720776
0.000781907
0.000833766
0.000877112
0.00091259
0.000940727
0.00094498
0.000944104
0.000945838
0.000950524
0.000955655
0.00095808
0.000953891
0.000936475
0.000905609
0.000866846
0.000819701
0.000763609
0.000697966
0.000622158
0.000535638
0.00043809
0.000329852
0.00021325
9.77201e-05
1.81442e-05
1.95161e-06
5.39904e-06
3.43438e-05
0.000133562
0.000253383
0.000369575
0.000475663
0.000569966
0.000652456
0.00072374
0.000784659
0.000836086
0.000878846
0.00091366
0.000941135
0.000953907
0.000957349
0.000963648
0.000973667
0.000980932
0.000972767
0.000955753
0.000931805
0.000900588
0.000861684
0.000814592
0.000758724
0.000693433
0.000618053
0.00053199
0.000434898
0.000327143
0.000211149
9.64937e-05
1.77241e-05
1.82293e-06
5.3637e-06
3.42209e-05
0.000133525
0.000253579
0.000370236
0.000476889
0.000571712
0.000654567
0.000726001
0.000786835
0.000837958
0.000880232
0.000914437
0.000941249
0.000958542
0.000966476
0.000976644
0.00098409
0.000979355
0.000968256
0.000950603
0.000926147
0.000894573
0.000855486
0.000808403
0.000752745
0.000687845
0.000613
0.000527553
0.000431102
0.00032398
0.000208665
9.49427e-05
1.72435e-05
1.7166e-06
5.34661e-06
3.4007e-05
0.000133118
0.000253029
0.000369821
0.000476828
0.000572088
0.000655336
0.000727028
0.000787927
0.000838902
0.000880824
0.000914509
0.00094068
0.000956566
0.000966266
0.000977985
0.0009806
0.000975145
0.000963366
0.000945083
0.000920066
0.000888021
0.000848588
0.000801319
0.000745668
0.000680991
0.000606573
0.000521724
0.000425995
0.000319683
0.000205305
9.28625e-05
1.669e-05
1.63787e-06
5.35316e-06
3.36664e-05
0.000132188
0.000251458
0.000367945
0.000474988
0.000570513
0.000654119
0.000726141
0.000787248
0.000838254
0.000880004
0.000913321
0.000938963
0.000947589
0.0009567
0.000970553
0.000976479
0.000970412
0.000958024
0.000939143
0.000913547
0.000880965
0.000841064
0.00079344
0.000737597
0.000672941
0.000598793
0.000514471
0.000419505
0.000314168
0.000201004
9.02194e-05
1.60417e-05
1.57901e-06
5.38882e-06
3.30866e-05
0.000130396
0.000248395
0.000364093
0.00047086
0.000566491
0.000650425
0.000722847
0.000784304
0.00083552
0.000877284
0.000910384
0.000927564
0.000932864
0.000940892
0.000955937
0.000971211
0.000964952
0.000952103
0.000932737
0.000906634
0.000873531
0.000833118
0.000785028
0.000728824
0.000663994
0.000589948
0.000506082
0.000411973
0.000307902
0.000196384
8.76051e-05
1.54672e-05
1.53855e-06
5.46613e-06
3.22593e-05
0.000127569
0.000243449
0.000357739
0.000463864
0.000559441
0.000643698
0.000716631
0.000778627
0.000830286
0.000872304
0.000903182
0.000912192
0.000915491
0.000922165
0.00093561
0.000952608
0.00095865
0.00094561
0.000926026
0.000899673
0.000866273
0.000825508
0.000777018
0.000720402
0.000655219
0.000580993
0.00049726
0.000403751
0.000300867
0.000191164
8.47241e-05
1.4867e-05
1.50791e-06
5.59049e-06
3.10447e-05
0.000123283
0.000235884
0.000347933
0.000452975
0.000548364
0.00063302
0.000706665
0.000769475
0.000821877
0.000864442
0.000884811
0.000893968
0.000899331
0.000906019
0.000916896
0.000931643
0.000944242
0.000938078
0.000918602
0.000892389
0.00085914
0.000818498
0.000770064
0.000713412
0.000648107
0.000573734
0.000489966
0.000396728
0.000294641
0.00018643
8.21202e-05
1.43509e-05
1.48524e-06
5.75848e-06
2.96324e-05
0.000117986
0.000226098
0.000334791
0.000438032
0.000532934
0.000618007
0.000692591
0.00075654
0.000810041
0.000844736
0.000865631
0.000878001
0.000886382
0.000894468
0.000904613
0.000917079
0.000928567
0.000928974
0.000909641
0.000883741
0.000850976
0.000810949
0.000763195
0.000707206
0.00064247
0.000568529
0.000485069
0.000392106
0.000290436
0.000183017
8.00563e-05
1.38619e-05
1.44751e-06
5.94605e-06
2.82323e-05
0.000112468
0.000215255
0.000319364
0.000419684
0.000513359
0.000598541
0.000674107
0.00073948
0.000789478
0.000825006
0.00084956
0.000866304
0.000878551
0.000889476
0.000901231
0.000913756
0.000923056
0.000918212
0.000898675
0.000872839
0.000840451
0.000801121
0.000754349
0.000699557
0.000636131
0.000563493
0.000481213
0.000389209
0.000288244
0.000181345
7.89387e-05
1.34996e-05
1.39413e-06
6.11768e-06
2.71818e-05
0.000107905
0.000205463
0.000304209
0.000400352
0.000491541
0.000575873
0.000651882
0.000715899
0.000766767
0.000806407
0.000836189
0.000858009
0.000874692
0.000889476
0.000904476
0.000918054
0.00092088
0.000906871
0.000886764
0.000860572
0.00082814
0.00078915
0.000743132
0.000689495
0.000627565
0.000556656
0.000476184
0.000385886
0.000286325
0.000180362
7.84217e-05
1.32823e-05
1.34011e-06
6.24063e-06
2.66916e-05
0.000105155
0.000198577
0.000292133
0.000383364
0.000470791
0.000552882
0.000625597
0.000688925
0.000743558
0.000788811
0.000824471
0.000851728
0.00087327
0.000892401
0.0009101
0.000918756
0.000910722
0.000896182
0.000875431
0.000848628
0.00081577
0.000776668
0.000730949
0.000678068
0.000617348
0.000548039
0.000469437
0.000381108
0.000283387
0.000178874
7.78116e-05
1.31208e-05
1.30853e-06
6.30505e-06
2.66556e-05
0.000104172
0.000195112
0.000284633
0.00037122
0.000454321
0.00053078
0.000600172
0.00066483
0.000723254
0.000773274
0.000813885
0.000846014
0.000872325
0.000895156
0.000909922
0.000909464
0.000901645
0.000886911
0.000865657
0.000838184
0.000804655
0.000765058
0.000719178
0.000666585
0.000606654
0.000538617
0.000461682
0.000375254
0.000279459
0.000176634
7.6816e-05
1.29371e-05
1.30401e-06
6.32266e-06
2.71234e-05
0.000105121
0.000195316
0.000282479
0.000365614
0.000444932
0.00051719
0.000583859
0.000648222
0.000708315
0.00076119
0.000805382
0.00084176
0.000871893
0.000891237
0.000900007
0.000900624
0.000893474
0.00087897
0.000857524
0.000829507
0.000795213
0.000754809
0.000708285
0.000655414
0.00059572
0.000528505
0.000452937
0.000368274
0.000274407
0.000173407
7.5168e-05
1.26211e-05
1.31334e-06
6.32146e-06
2.81051e-05
0.000107942
0.000198823
0.000285201
0.000366312
0.000442857
0.000513486
0.000577135
0.000639083
0.000698334
0.000752177
0.000798742
0.000834828
0.000861693
0.000880138
0.000890209
0.000892064
0.00088594
0.000872135
0.000850982
0.000822823
0.000787985
0.000746736
0.000699242
0.000645513
0.000585344
0.000518276
0.000443613
0.000360582
0.000268844
0.00017007
7.3714e-05
1.24279e-05
1.33362e-06
6.33234e-06
2.956e-05
0.000112189
0.000204633
0.000291231
0.000371361
0.000446017
0.000514897
0.000575844
0.000634902
0.00069205
0.000744409
0.000788427
0.000823061
0.000850019
0.000869075
0.000880128
0.000883179
0.00087831
0.000865665
0.000845436
0.000817849
0.000783151
0.000741586
0.000693364
0.000638625
0.00057739
0.000509508
0.000434622
0.000352229
0.000262067
0.000165573
7.1639e-05
1.21298e-05
1.3471e-06
6.36179e-06
3.11491e-05
0.000116735
0.00021103
0.000298304
0.000377965
0.000451169
0.000516901
0.000575626
0.000631882
0.000685283
0.000733944
0.000776213
0.000811094
0.000837354
0.000856324
0.00086783
0.000871777
0.000868127
0.000856891
0.000838118
0.000811892
0.000778323
0.00073754
0.000689672
0.000634833
0.000573099
0.000504472
0.00042886
0.000346129
0.000256389
0.000161282
6.94325e-05
1.17249e-05
1.33397e-06
6.39801e-06
3.25507e-05
0.000120645
0.000216717
0.000304815
0.000384228
0.000456168
0.000514605
0.000570317
0.000625131
0.000677214
0.000724239
0.000764676
0.000797988
0.000823797
0.000841823
0.000852987
0.00085716
0.000854244
0.00084416
0.000826845
0.000802257
0.000770373
0.000731189
0.000684718
0.00063098
0.000569986
0.000501728
0.000426188
0.000343398
0.000253736
0.000159141
6.827e-05
1.14141e-05
1.27508e-06
6.40688e-06
3.3525e-05
0.000123456
0.00022118
0.000310216
0.00038954
0.000454584
0.00050871
0.000563045
0.000618037
0.000670376
0.000716936
0.000756152
0.000787898
0.000811194
0.000827522
0.00083752
0.000841086
0.000838119
0.000828505
0.000812119
0.000788829
0.000758501
0.000721015
0.000676268
0.000624179
0.000564685
0.000497736
0.000423295
0.000341413
0.000252523
0.000158606
6.81586e-05
1.12438e-05
1.17472e-06
6.34271e-06
3.34802e-05
0.000123761
0.000222648
0.000312733
0.000392385
0.000450617
0.000501062
0.000554761
0.000610616
0.000664085
0.0007114
0.00075048
0.00078038
0.000800531
0.000814794
0.000823126
0.000825478
0.000821784
0.000811944
0.00079582
0.000773239
0.000743997
0.000707878
0.000664671
0.000614183
0.00055626
0.000490797
0.000417757
0.00033724
0.000249735
0.000157174
6.76831e-05
1.09586e-05
1.049e-06
6.20467e-06
3.21751e-05
0.000120907
0.000220062
0.000311288
0.000392015
0.000448351
0.00049666
0.000549003
0.000604498
0.000658684
0.00070742
0.000747273
0.000773962
0.000791941
0.000804175
0.00081071
0.000811568
0.000806731
0.000796142
0.000779688
0.000757202
0.000728458
0.000693189
0.0006511
0.000601889
0.000545283
0.000481071
0.000409165
0.000329706
0.000243357
0.000152334
6.49151e-05
1.01603e-05
9.13988e-07
6.04176e-06
2.99103e-05
0.000115286
0.000213157
0.000304928
0.00038696
0.0004462
0.000494373
0.000545435
0.000600028
0.000654543
0.000704852
0.000745624
0.000768039
0.000784453
0.000795098
0.000800129
0.000799637
0.000793657
0.000782174
0.000765116
0.000742349
0.000713669
0.000678813
0.00063746
0.000589254
0.00053383
0.000470866
0.000400164
0.000321808
0.000236533
0.00014685
6.15529e-05
9.29117e-06
8.03602e-07
5.91367e-06
2.75072e-05
0.00010866
0.000203777
0.000294882
0.000377697
0.000441723
0.000492359
0.000543498
0.00059729
0.000651565
0.000702058
0.000738961
0.000760663
0.000776203
0.000785896
0.000789977
0.000788597
0.000781834
0.000769702
0.000752157
0.000729092
0.000700338
0.000665659
0.000624755
0.000577268
0.000522806
0.000460985
0.000391517
0.000314385
0.000230271
0.000141827
5.84208e-05
8.5314e-06
7.19949e-07
5.84273e-06
2.56255e-05
0.000102786
0.000194254
0.000283452
0.000366085
0.000433711
0.000489097
0.000542834
0.000597331
0.000651369
0.000700132
0.000729177
0.000750466
0.000765494
0.000774644
0.0007782
0.000776354
0.000769207
0.000756778
0.000739023
0.000715835
0.000687055
0.000652461
0.000611767
0.000564636
0.000510691
0.000449557
0.000380948
0.00030486
0.000222026
0.000135275
5.4485e-05
7.64925e-06
6.53004e-07
5.82557e-06
2.42859e-05
9.80924e-05
0.00018559
0.000271933
0.000352934
0.000419906
0.000481633
0.000541581
0.00060005
0.00065371
0.000688851
0.000716543
0.000737407
0.000751973
0.000760681
0.000763868
0.000761765
0.000754494
0.000742081
0.000724468
0.00070153
0.000673084
0.000638895
0.000598672
0.000552068
0.000498699
0.000438191
0.000370279
0.000295024
0.000213322
0.000128334
5.04447e-05
6.80498e-06
6.03148e-07
5.83532e-06
2.34967e-05
9.4809e-05
0.000178672
0.000260919
0.000333243
0.000403255
0.000472518
0.00053949
0.000598284
0.000640995
0.000675641
0.000702782
0.000723023
0.000736941
0.000745037
0.000747708
0.000745231
0.000737764
0.000725353
0.000707946
0.000685403
0.000657522
0.000624049
0.000584682
0.000539061
0.000486773
0.000427424
0.000360724
0.000286725
0.000206372
0.000123043
4.75782e-05
6.30277e-06
5.73646e-07
5.85247e-06
2.30318e-05
9.2295e-05
0.000172622
0.000244227
0.000315565
0.00038989
0.000464867
0.000534625
0.000586644
0.000628767
0.000662787
0.000689224
0.000708691
0.000721804
0.000729121
0.000731095
0.000728057
0.000720206
0.00070762
0.00069026
0.000667992
0.000640599
0.000607811
0.000569316
0.000524751
0.000473704
0.000415755
0.000350595
0.00027826
0.000199703
0.000118376
4.52975e-05
5.9969e-06
5.64772e-07
5.8752e-06
2.25727e-05
8.96132e-05
0.000162245
0.000229198
0.000300736
0.000378117
0.000456248
0.000524669
0.00057466
0.000616347
0.00064991
0.000675803
0.000694625
0.000707019
0.000713589
0.00071485
0.000711196
0.000702888
0.000690053
0.000672694
0.000650706
0.000623897
0.000592004
0.000554711
0.000511647
0.000462377
0.000406414
0.000343351
0.000273094
0.00019645
0.000116762
4.50124e-05
6.15494e-06
5.70793e-07
5.91098e-06
2.20875e-05
8.66998e-05
0.000150737
0.000214677
0.000286816
0.000366331
0.000445709
0.000511619
0.000561102
0.000602525
0.00063595
0.000661716
0.000680345
0.00069244
0.000698612
0.000699412
0.000695287
0.000686557
0.000673408
0.000655902
0.000633986
0.000607518
0.000576282
0.000539995
0.00049831
0.000450795
0.000396931
0.000336207
0.000268349
0.000193894
0.000115858
4.50253e-05
6.35532e-06
5.97133e-07
5.97685e-06
2.18287e-05
8.43248e-05
0.000140384
0.000201095
0.000273078
0.000353559
0.000433122
0.000496783
0.000545464
0.000586505
0.000619879
0.000645807
0.000664684
0.000677014
0.000683348
0.000684223
0.000680108
0.000671362
0.000658222
0.000640801
0.000619098
0.000593014
0.000562378
0.000526957
0.000486456
0.000440497
0.000388592
0.000330158
0.000264723
0.000192458
0.000115888
4.54831e-05
6.60423e-06
6.34389e-07
6.08698e-06
2.161e-05
8.2082e-05
0.000130255
0.000187199
0.00025814
0.00033842
0.000416946
0.000480405
0.000527667
0.000567816
0.000600803
0.000626787
0.00064606
0.000658992
0.000666003
0.000667523
0.00066397
0.000655696
0.000642964
0.000625919
0.000604581
0.00057886
0.000548584
0.000513509
0.000473345
0.00042776
0.000376391
0.000318857
0.000254872
0.000184701
0.000110681
4.28355e-05
6.23434e-06
6.91276e-07
6.22108e-06
2.1287e-05
7.75265e-05
0.000121639
0.000174658
0.000242451
0.000320543
0.000397641
0.000462905
0.00050945
0.000547902
0.000579659
0.000604911
0.000623938
0.000637061
0.000644613
0.000646924
0.000644308
0.000637038
0.000625351
0.000609417
0.000589283
0.000564871
0.00053599
0.000502353
0.000463581
0.000419232
0.000368846
0.000312009
0.000248525
0.000178862
0.000105708
3.96926e-05
5.62499e-06
6.91105e-07
6.34395e-06
2.05364e-05
7.32276e-05
0.000113166
0.000161407
0.000224602
0.000299886
0.000376515
0.00044263
0.000492263
0.000528606
0.00055856
0.000582407
0.000600478
0.000613086
0.000620509
0.000622994
0.00062077
0.000612007
0.000598449
0.000582086
0.000564222
0.00054453
0.000517645
0.000485693
0.000448922
0.000406841
0.000358862
0.000304396
0.00024305
0.000175128
0.000103227
3.8184e-05
5.29003e-06
6.60227e-07
6.44167e-06
1.89302e-05
6.79595e-05
0.00010356
0.000146408
0.00020373
0.000275617
0.0003538
0.000424742
0.000475873
0.00051054
0.000538799
0.000561131
0.000578016
0.000589839
0.00059688
0.000599328
0.000597317
0.00059095
0.000580329
0.00056556
0.000546745
0.000523955
0.000497201
0.000466395
0.000431311
0.000391543
0.000346489
0.000295383
0.000237454
0.000172448
0.000102395
3.79634e-05
5.09679e-06
5.57538e-07
6.51897e-06
1.65582e-05
6.12283e-05
9.28374e-05
0.000130631
0.000181189
0.000247338
0.000325284
0.000402608
0.000459396
0.000493496
0.00052077
0.00054196
0.000557768
0.00056875
0.000575279
0.000577564
0.000575687
0.00056965
0.00055942
0.000544973
0.000526311
0.000503469
0.000476512
0.000445499
0.000410443
0.000371252
0.000327663
0.000279197
0.00022517
0.000165002
9.96705e-05
3.79441e-05
5.17249e-06
4.96387e-07
6.58267e-06
1.42385e-05
5.43896e-05
8.25638e-05
0.000116148
0.000160018
0.000218192
0.00029136
0.000372253
0.000440757
0.000475703
0.000503221
0.000524197
0.000539562
0.000550105
0.000556393
0.000558766
0.000557367
0.000552186
0.000543113
0.000529987
0.000512637
0.000490918
0.000464735
0.000434055
0.000398897
0.000359306
0.000315299
0.000266808
0.000213655
0.00015571
9.39547e-05
3.59055e-05
4.86766e-06
4.30536e-07
6.61954e-06
1.2741e-05
4.9193e-05
7.47545e-05
0.000105176
0.000143344
0.000192961
0.000257548
0.000335614
0.000413462
0.000456484
0.000485128
0.000506727
0.000522264
0.000532689
0.000538768
0.000541025
0.000539748
0.000535024
0.000526785
0.000514859
0.000499009
0.000478973
0.000454501
0.000425378
0.000391453
0.000352647
0.000308959
0.000260449
0.000207261
0.000149768
8.94719e-05
3.37219e-05
4.37203e-06
3.65087e-07
6.58512e-06
1.24333e-05
4.73528e-05
7.13525e-05
9.96019e-05
0.00013343
0.000175243
0.000229234
0.00029801
0.000375463
0.000435975
0.000466021
0.000488967
0.000505555
0.000516699
0.000523256
0.000525892
0.000525036
0.000520886
0.000513442
0.000502555
0.000487965
0.000469348
0.000446353
0.000418634
0.00038589
0.000347898
0.00030455
0.000255887
0.00020219
0.000144217
8.4209e-05
3.03911e-05
3.57855e-06
2.75767e-07
6.43142e-06
1.2922e-05
4.88561e-05
7.24608e-05
9.94922e-05
0.000130414
0.000165925
0.000209463
0.000265499
0.000335214
0.000407478
0.000446388
0.000470536
0.000488372
0.000500588
0.000507997
0.000511339
0.000511176
0.000507837
0.000501437
0.000491896
0.000478974
0.000462316
0.00044149
0.000416006
0.000385359
0.000349082
0.000306814
0.000258398
0.000204028
0.000144622
8.30585e-05
2.89597e-05
3.09866e-06
2.0032e-07
6.16371e-06
1.35691e-05
5.2071e-05
7.62774e-05
0.000102785
0.000132376
0.000163858
0.000198836
0.000241481
0.000296068
0.000362441
0.00042533
0.000450584
0.000469941
0.000483715
0.000492514
0.00049703
0.000497881
0.000495516
0.000490182
0.000481927
0.000470594
0.000455863
0.000437272
0.000414238
0.000386077
0.000352056
0.000311479
0.000263861
0.000209168
0.000148329
8.47248e-05
2.91554e-05
2.97641e-06
1.60687e-07
5.83652e-06
1.39693e-05
5.43019e-05
8.12486e-05
0.00010757
0.000136757
0.000167396
0.000198377
0.000231723
0.000271643
0.000321861
0.000380663
0.000427958
0.000448404
0.00046362
0.000473886
0.000479719
0.000481709
0.000480354
0.000476022
0.000468925
0.000459067
0.000446257
0.000430103
0.00041001
0.000385165
0.000354552
0.000317044
0.000271604
0.000217694
0.000155974
9.00649e-05
3.16985e-05
3.35854e-06
1.54907e-07
5.51913e-06
1.41454e-05
5.5793e-05
8.6488e-05
0.000112625
0.00014068
0.000171671
0.000203453
0.000234249
0.00026537
0.000300275
0.000342285
0.000390186
0.000424995
0.000441274
0.00045283
0.000459864
0.000462812
0.000462137
0.000458271
0.000451543
0.000442129
0.000430034
0.000415085
0.000396898
0.000374806
0.000347768
0.000314341
0.000272837
0.000221853
0.000161246
9.44673e-05
3.42097e-05
3.94321e-06
1.85813e-07
5.234e-06
1.47381e-05
5.84431e-05
9.30757e-05
0.000119366
0.000145354
0.000174977
0.000208425
0.000242678
0.000274465
0.000303326
0.000331592
0.000362592
0.000396353
0.000417669
0.00042991
0.00043784
0.000441548
0.000441282
0.000437408
0.000430312
0.00042025
0.000407329
0.00039153
0.000372692
0.000350477
0.000324252
0.000292948
0.000255024
0.000208756
0.000153201
9.06905e-05
3.32366e-05
4.06366e-06
2.10842e-07
4.98418e-06
1.55645e-05
6.13917e-05
9.9698e-05
0.000126276
0.000150111
0.000176697
0.000208715
0.000245445
0.000282541
0.000314762
0.000340014
0.000360358
0.000379268
0.000395327
0.000407814
0.000416693
0.000421613
0.000422434
0.000419266
0.000412405
0.000402127
0.000388622
0.000371969
0.000352146
0.00032903
0.000302344
0.000271525
0.000235549
0.000192953
0.00014247
8.53019e-05
3.17307e-05
4.09525e-06
2.34287e-07
4.76377e-06
1.6807e-05
6.52653e-05
0.000106253
0.000132574
0.000154763
0.000179127
0.00020957
0.000247743
0.000289005
0.000313332
0.000330264
0.000346172
0.000361052
0.000374572
0.000386167
0.000395183
0.000401034
0.000403207
0.000401431
0.000395709
0.000386126
0.000372768
0.000355672
0.000334824
0.000310173
0.000281643
0.00024909
0.000212229
0.000170559
0.000123625
7.26386e-05
2.63655e-05
3.38189e-06
2.28639e-07
4.57321e-06
1.81174e-05
6.86628e-05
0.000110242
0.000135389
0.0001562
0.000179893
0.000210961
0.000250257
0.000284392
0.000300116
0.000314564
0.000328241
0.000341263
0.000353409
0.000364236
0.000373202
0.000379772
0.0003834
0.000383644
0.000380239
0.000373042
0.000362016
0.000347136
0.000328314
0.000305422
0.000278327
0.000246882
0.000210887
0.000170031
0.000124024
7.38214e-05
2.72173e-05
3.47794e-06
2.42825e-07
4.41729e-06
1.96822e-05
7.16447e-05
0.000110255
0.000133215
0.000153592
0.000179149
0.000214021
0.000253267
0.000269383
0.000283433
0.000296268
0.00030844
0.000320124
0.000331168
0.000341208
0.000349789
0.000356452
0.000360727
0.000362204
0.000360543
0.000355415
0.000346507
0.000333523
0.000316183
0.000294234
0.000267475
0.000235786
0.000199156
0.000157725
0.000111988
6.3935e-05
2.20033e-05
2.59396e-06
1.90393e-07
4.27963e-06
2.19835e-05
7.40186e-05
0.00010126
0.000119617
0.000140326
0.000169951
0.000207949
0.000229439
0.000244804
0.000258889
0.000272025
0.000284393
0.000295976
0.000306575
0.000315889
0.000323598
0.000329422
0.000333104
0.000334472
0.000333388
0.000329685
0.00032314
0.000313461
0.00030028
0.00028316
0.000261598
0.000235038
0.000202889
0.000164583
0.000119874
7.02228e-05
2.44689e-05
2.70016e-06
1.65001e-07
4.1477e-06
2.21222e-05
6.64189e-05
8.32686e-05
9.42746e-05
0.000112791
0.00014503
0.0001746
0.000192159
0.000209736
0.000226931
0.000243321
0.000258569
0.000272388
0.000284501
0.000294647
0.000302599
0.000308184
0.000311248
0.000311725
0.000309561
0.000304655
0.000296816
0.000285742
0.00027101
0.000252115
0.000228546
0.000199922
0.000166175
0.000127798
8.62627e-05
4.52338e-05
1.37325e-05
1.30895e-06
6.80845e-08
3.95454e-06
2.5324e-05
5.66914e-05
6.18592e-05
6.40555e-05
8.01587e-05
0.000114531
0.00013451
0.000156026
0.000177929
0.00019892
0.000218159
0.000235165
0.000249654
0.000261447
0.000270452
0.000276638
0.000280028
0.000280608
0.000278465
0.000273766
0.000266686
0.000257419
0.000246168
0.000233136
0.000218476
0.000202184
0.000183842
0.000162132
0.000134206
9.62335e-05
4.96453e-05
1.2678e-05
8.65975e-07
2.91095e-08
3.78015e-06
2.22581e-05
4.65022e-05
4.48463e-05
4.42986e-05
6.12086e-05
9.05404e-05
0.000110684
0.00013243
0.000154786
0.000176611
0.000197071
0.000215634
0.000231996
0.00024602
0.000257667
0.000267055
0.000274314
0.000279494
0.000282536
0.000283208
0.000281056
0.000275355
0.000265064
0.000248859
0.000225305
0.000193315
0.000153086
0.000107466
6.32778e-05
2.94861e-05
1.03953e-05
2.2385e-06
1.10936e-07
1.30204e-08
3.41099e-06
3.55631e-05
4.50951e-05
4.16904e-05
5.56463e-05
8.49571e-05
9.99869e-05
0.00011191
0.000125157
0.000138764
0.000152169
0.000164672
0.000175662
0.000184689
0.000191166
0.000194674
0.00019504
0.000192081
0.000185721
0.000175958
0.000163023
0.000147293
0.000129258
0.000109587
8.91297e-05
6.88847e-05
4.99408e-05
3.32987e-05
1.99984e-05
1.04611e-05
4.55806e-06
1.62311e-06
4.66995e-07
9.69907e-08
3.03236e-08
3.33078e-06
3.59667e-05
4.74314e-05
4.12078e-05
3.43081e-05
3.21338e-05
3.29361e-05
3.43726e-05
3.70273e-05
4.09575e-05
4.50815e-05
4.86265e-05
5.05025e-05
5.03884e-05
4.9825e-05
4.86373e-05
4.68501e-05
4.44114e-05
4.13797e-05
3.78143e-05
3.38175e-05
2.95058e-05
2.50265e-05
2.05477e-05
1.62625e-05
1.23794e-05
9.11944e-06
6.69554e-06
5.29228e-06
4.9821e-06
5.54508e-06
6.1e-06
4.52371e-06
1.29363e-06
1.97229e-07
5.23615e-06
3.25635e-05
4.34288e-05
5.27848e-05
6.32025e-05
6.63208e-05
6.54146e-05
6.41603e-05
6.26806e-05
6.11679e-05
5.9774e-05
5.85548e-05
5.74968e-05
5.65553e-05
5.57143e-05
5.49629e-05
5.42879e-05
5.36779e-05
5.31282e-05
5.26399e-05
5.22216e-05
5.18907e-05
5.16769e-05
5.16258e-05
5.18021e-05
5.22935e-05
5.32141e-05
5.42054e-05
5.23285e-05
4.96506e-05
4.8517e-05
5.16066e-05
5.70919e-05
2.90651e-05
3.12635e-06
1.01724e-05
6.7169e-05
7.18416e-05
7.2881e-05
7.64037e-05
8.16591e-05
8.61604e-05
8.65158e-05
7.98709e-05
6.8085e-05
5.78873e-05
5.35881e-05
5.54505e-05
6.21857e-05
7.26399e-05
8.5564e-05
9.61889e-05
9.44468e-05
7.67832e-05
5.50777e-05
3.85706e-05
2.81394e-05
2.31125e-05
2.2708e-05
2.22566e-05
1.93181e-05
1.73546e-05
1.32595e-05
7.45703e-06
4.75163e-06
6.63427e-06
1.13433e-05
7.34192e-06
7.103e-06
1.90364e-06
3.31483e-06
2.86929e-05
4.49449e-05
5.91366e-05
7.51588e-05
9.12911e-05
9.95238e-05
9.79892e-05
9.1565e-05
8.29e-05
7.23629e-05
6.14201e-05
5.23651e-05
4.57868e-05
4.09594e-05
3.71607e-05
3.28896e-05
2.93657e-05
2.37556e-05
1.78274e-05
8.40847e-06
4.89732e-06
1.07063e-06
6.25068e-07
2.17778e-06
8.07145e-07
7.48003e-06
1.16898e-05
1.22544e-05
1.11431e-05
1.40506e-05
2.59613e-05
2.43001e-05
5.51657e-06
1.10214e-06
9.41788e-06
1.38293e-05
3.05513e-05
4.51075e-05
6.04845e-05
8.61159e-05
0.000100805
0.000106885
0.000119583
0.000116996
9.3131e-05
8.22637e-05
7.84436e-05
7.73597e-05
7.85203e-05
8.14799e-05
7.36983e-05
6.1239e-05
4.84183e-05
3.81708e-05
3.2247e-05
3.06769e-05
3.04283e-05
3.08406e-05
3.03425e-05
3.19125e-05
4.03276e-05
4.69014e-05
4.64006e-05
4.96224e-05
6.42221e-05
5.40638e-05
2.94553e-05
6.0354e-06
1.55554e-06
4.7855e-06
1.10918e-05
1.98752e-05
2.01824e-05
3.88577e-06
5.41811e-06
1.04568e-05
2.43141e-05
2.98913e-05
3.66726e-05
8.44023e-05
7.52322e-05
6.12562e-05
5.56355e-05
5.51982e-05
5.78013e-05
6.32741e-05
6.53771e-05
6.12215e-05
6.02294e-05
6.18162e-05
6.52424e-05
6.98856e-05
7.54273e-05
8.16102e-05
8.77679e-05
9.26855e-05
9.50771e-05
9.34963e-05
8.59065e-05
6.97117e-05
4.50714e-05
2.03219e-05
4.12641e-06
1.91659e-06
6.95829e-07
1.99877e-08
6.80687e-06
7.29559e-06
3.5391e-05
6.01526e-05
7.54595e-05
7.75188e-05
6.8123e-05
7.97887e-05
0.000104656
0.000102333
9.25812e-05
8.88204e-05
8.75845e-05
8.60362e-05
8.50503e-05
8.53002e-05
7.84811e-05
7.63987e-05
8.50736e-05
9.30597e-05
9.72649e-05
0.000103204
0.000109773
0.00011556
0.000119298
0.00011977
0.000115342
0.000103765
8.30283e-05
5.45072e-05
2.33578e-05
5.04189e-06
1.84371e-06
1.84331e-06
2.46647e-06
1.75492e-05
4.1101e-05
6.08233e-05
6.12976e-05
6.53927e-05
8.51104e-05
9.81336e-05
0.000106787
0.000116305
0.000123329
0.000126223
0.000127593
0.000128901
0.000128941
0.000127476
0.000125803
0.000123448
0.000127004
0.000125659
0.000124717
0.000125523
0.000127516
0.000129668
0.0001307
0.000129213
0.000123615
0.00011214
9.34443e-05
6.83064e-05
4.15131e-05
1.76198e-05
3.90393e-06
1.97346e-06
1.72565e-06
6.93464e-06
2.81784e-05
5.14298e-05
6.22806e-05
6.84777e-05
7.93128e-05
9.42403e-05
0.000109272
0.000121807
0.000131298
0.000138022
0.000142721
0.000146087
0.000147545
0.000146695
0.000144305
0.000141331
0.000137994
0.000138403
0.000147539
0.000162606
0.000160494
0.000158284
0.000155818
0.000152625
0.000147789
0.000139859
0.000126879
0.000106916
7.98192e-05
4.73187e-05
1.86598e-05
4.60781e-06
1.9528e-06
1.79546e-06
3.16714e-06
2.01141e-05
4.86022e-05
7.12159e-05
9.20001e-05
0.000110161
0.000123445
0.000134638
0.000144266
0.000152749
0.000160449
0.000167578
0.000174141
0.000179931
0.000184654
0.00018805
0.000189964
0.000190434
0.000189855
0.000188565
0.000186784
0.000184552
0.000181781
0.000178238
0.000173434
0.000166486
0.000155965
0.000139919
0.000116478
8.5803e-05
4.77248e-05
1.92692e-05
4.61011e-06
2.07728e-06
1.88743e-06
6.73157e-06
3.51081e-05
6.75497e-05
8.8878e-05
0.000104347
0.000118355
0.000132546
0.000147682
0.000163006
0.000172596
0.00017888
0.000184384
0.000189335
0.000193813
0.000197765
0.000201044
0.000203448
0.00020494
0.000205667
0.000205632
0.000204851
0.000203302
0.000200873
0.000197295
0.000192058
0.000184293
0.00017267
0.000155436
0.000130897
9.88932e-05
5.43909e-05
2.24407e-05
5.49033e-06
2.16455e-06
1.8941e-06
4.7741e-06
2.72503e-05
5.98127e-05
8.60578e-05
0.000106659
0.000125028
0.000143337
0.000162096
0.000174356
0.000183879
0.000191759
0.000198292
0.000203742
0.000208316
0.000212146
0.000215268
0.000217618
0.000219262
0.000220253
0.000220487
0.000219872
0.000218284
0.000215503
0.000211155
0.000204643
0.000195071
0.000181219
0.000161665
0.000135292
0.000102433
5.70644e-05
2.49607e-05
5.89504e-06
2.29772e-06
1.97643e-06
7.10597e-06
3.84017e-05
7.69934e-05
0.00010846
0.000129985
0.000147506
0.000164295
0.000182011
0.000196948
0.000206016
0.000213497
0.000219669
0.000224759
0.00022895
0.000232359
0.000235035
0.000236962
0.000238196
0.00023873
0.000238417
0.000237113
0.000234621
0.000230652
0.000224779
0.000216392
0.000204663
0.00018857
0.000167055
0.000139453
0.00010631
6.00799e-05
2.77952e-05
6.49898e-06
2.43964e-06
1.98459e-06
6.64721e-06
3.6664e-05
7.57419e-05
0.000107827
0.000132459
0.000153828
0.000174322
0.00019525
0.000213013
0.000223897
0.000232781
0.000239997
0.000245815
0.000250441
0.000254027
0.000256659
0.000258354
0.00025915
0.000258998
0.000257742
0.000255206
0.00025116
0.00024529
0.000237171
0.000226247
0.00021183
0.000193143
0.000169475
0.000140522
0.000107008
6.12773e-05
2.99199e-05
6.78351e-06
2.59932e-06
2.03908e-06
7.98463e-06
4.27658e-05
8.62995e-05
0.000124049
0.000150611
0.000171984
0.00019134
0.000211246
0.000232289
0.000247537
0.000257026
0.00026472
0.000270882
0.000275706
0.000279317
0.000281773
0.000283061
0.000283179
0.000282041
0.000279479
0.0002753
0.000269262
0.000261066
0.000250338
0.000236627
0.000219419
0.000198194
0.000172542
0.000142398
0.000106773
6.23501e-05
3.19774e-05
7.08276e-06
2.76687e-06
2.0963e-06
8.30156e-06
4.41714e-05
8.93609e-05
0.000129142
0.000159307
0.00018412
0.000205757
0.000226757
0.000248943
0.000269719
0.000280633
0.000289392
0.000296301
0.00030158
0.000305369
0.000307729
0.00030864
0.000308057
0.000305861
0.000301867
0.000295872
0.00028764
0.000276903
0.000263366
0.000246705
0.000226581
0.000202688
0.000174864
0.000143289
0.000102874
6.22563e-05
3.34838e-05
7.11784e-06
2.94655e-06
2.16625e-06
9.08807e-06
4.75948e-05
9.59303e-05
0.000139886
0.000174485
0.000202861
0.000227842
0.000251516
0.00027503
0.000293484
0.000305846
0.000315786
0.000323618
0.000329565
0.00033376
0.000336242
0.000336963
0.000335832
0.000332692
0.000327334
0.00031954
0.000309093
0.000295783
0.000279413
0.0002598
0.000236785
0.000210254
0.000180202
0.000146936
0.000101709
6.33138e-05
3.53346e-05
7.35571e-06
3.09471e-06
2.18646e-06
9.35963e-06
4.88265e-05
9.87553e-05
0.000145146
0.000184336
0.000215613
0.000242676
0.000268032
0.000293514
0.000315766
0.00032998
0.000341396
0.00035036
0.000357124
0.000361841
0.000364564
0.000365244
0.000363761
0.00035992
0.000353471
0.000344159
0.00033175
0.000316061
0.000296984
0.000274482
0.000248587
0.000219396
0.000187088
0.000149689
0.000103314
6.60518e-05
3.78034e-05
7.70091e-06
3.21489e-06
2.22424e-06
9.82109e-06
5.08017e-05
0.000102733
0.00015139
0.000193346
0.000226747
0.000255637
0.000282125
0.000308206
0.00033424
0.000353993
0.000366967
0.000377094
0.000384647
0.000389804
0.000392645
0.000393142
0.000391178
0.000386551
0.000378996
0.000368234
0.000354013
0.000336154
0.000314588
0.000289367
0.000260667
0.000228772
0.0001941
0.000150082
0.000105053
6.9168e-05
4.00531e-05
7.99552e-06
3.33522e-06
2.23931e-06
9.87054e-06
5.13309e-05
0.000104757
0.000155519
0.00020122
0.000237195
0.000268219
0.000296467
0.000324065
0.000352281
0.000376708
0.000391619
0.000403264
0.000411907
0.00041774
0.000420864
0.00042128
0.000418895
0.000413522
0.000404908
0.000392775
0.000376869
0.000357012
0.00033315
0.000305388
0.000273994
0.000239396
0.000201018
0.000151092
0.000107176
7.22393e-05
4.1383e-05
8.27716e-06
3.45964e-06
2.2577e-06
1.01128e-05
5.26056e-05
0.000107801
0.000160645
0.000208638
0.000250605
0.000284274
0.00031386
0.000341967
0.000370567
0.000398373
0.00041549
0.000428904
0.000438901
0.000445652
0.000449257
0.00044973
0.000447001
0.000440914
0.000431246
0.000417746
0.000400181
0.000378395
0.000352356
0.000322202
0.000288269
0.000251111
0.000205414
0.000153957
0.000110583
7.57675e-05
4.30026e-05
8.6287e-06
3.59094e-06
2.26999e-06
1.03828e-05
5.41427e-05
0.000111267
0.000166296
0.000216556
0.000261667
0.000301754
0.000335323
0.000365253
0.000394282
0.00041866
0.000437735
0.000452994
0.000464545
0.000472476
0.00047684
0.000477633
0.000474787
0.000468166
0.000457579
0.00044281
0.000423667
0.000400027
0.000371899
0.000339462
0.000303112
0.000263505
0.000210746
0.000157979
0.000114778
7.9684e-05
4.49403e-05
9.06802e-06
3.72525e-06
2.32636e-06
1.1093e-05
5.71255e-05
0.000116589
0.000174007
0.000226566
0.00027382
0.00031593
0.000353204
0.000385961
0.000414475
0.000438947
0.000459503
0.000476209
0.000489087
0.000498132
0.00050331
0.000504556
0.000501763
0.000494785
0.000483442
0.000467548
0.000446944
0.000421555
0.000391435
0.00035682
0.000318168
0.000275802
0.000217686
0.000163526
0.00011989
8.40338e-05
4.70827e-05
9.55992e-06
3.84458e-06
2.44953e-06
1.22471e-05
6.13699e-05
0.000123466
0.000183283
0.000238109
0.000287458
0.000331443
0.000370369
0.000404576
0.000434372
0.000459998
0.000481618
0.000499315
0.000513105
0.000522946
0.000528749
0.000530383
0.000527687
0.000520472
0.000508538
0.000491695
0.000469805
0.000442822
0.000410845
0.000374172
0.000333345
0.000286048
0.000225652
0.000170347
0.000125842
8.87577e-05
4.91066e-05
9.9956e-06
3.93511e-06
2.6123e-06
1.36817e-05
6.63598e-05
0.000131661
0.000194256
0.000251571
0.000302546
0.000347133
0.000388047
0.000425285
0.000456607
0.000483161
0.000505505
0.000523764
0.000537991
0.000548157
0.000554165
0.000555861
0.000553047
0.000545497
0.000532975
0.000515273
0.000492239
0.000463834
0.000430181
0.000391617
0.000348749
0.000296576
0.000234337
0.000178039
0.000132507
9.38765e-05
5.10337e-05
1.03747e-05
4.00105e-06
2.77121e-06
1.50866e-05
7.12115e-05
0.000139919
0.000205446
0.000265246
0.000316508
0.00036063
0.000401245
0.000438889
0.00047338
0.000504365
0.000530926
0.000549655
0.000564129
0.000574346
0.000580237
0.000581668
0.000578448
0.000570347
0.000557116
0.000538529
0.000514418
0.000484727
0.000449573
0.000409304
0.00036456
0.000307058
0.000243339
0.000186405
0.000139907
9.95173e-05
5.29301e-05
1.0717e-05
4.04604e-06
2.89076e-06
1.62328e-05
7.54097e-05
0.000147747
0.000216633
0.000279339
0.000335535
0.000379945
0.000419284
0.00045543
0.000488639
0.000518918
0.000546194
0.000570145
0.000589597
0.000601413
0.000607076
0.000608077
0.000604257
0.000595412
0.000581317
0.000561752
0.000536549
0.000505639
0.000469117
0.000427308
0.000380354
0.000317177
0.000252548
0.000195541
0.000148274
0.000105962
5.49761e-05
1.10678e-05
4.07669e-06
2.97673e-06
1.69858e-05
7.8414e-05
0.000154047
0.0002264
0.000292314
0.00035134
0.000402633
0.000442636
0.000477307
0.000508544
0.000536887
0.000562453
0.000585149
0.000604701
0.000620561
0.00063148
0.000634613
0.000630225
0.000620613
0.000605599
0.000585001
0.000558671
0.000526552
0.000488737
0.000445545
0.000391246
0.000326378
0.000262097
0.000205413
0.00015768
0.000113505
5.73706e-05
1.14876e-05
4.1049e-06
3.03768e-06
1.74224e-05
8.03612e-05
0.00015875
0.000234412
0.000303675
0.00036584
0.000420987
0.000469174
0.000505013
0.000534742
0.000560768
0.000583987
0.000604602
0.000622345
0.000636654
0.00064691
0.000652542
0.000652721
0.000645558
0.000629777
0.000608234
0.000580828
0.000547535
0.000508467
0.000461145
0.000401245
0.000335831
0.000272348
0.000216123
0.000167921
0.000120897
6.01985e-05
1.20203e-05
4.13825e-06
3.1048e-06
1.78666e-05
8.21295e-05
0.000162762
0.000241248
0.000313572
0.000378777
0.000436784
0.000487806
0.000532132
0.000565251
0.000590266
0.000610869
0.000628512
0.000643591
0.000655854
0.000664608
0.000668985
0.000668195
0.000661651
0.000648924
0.000629499
0.000602572
0.000568295
0.000525573
0.000472841
0.000411794
0.0003469
0.000284164
0.000228325
0.000179248
0.000127417
6.34495e-05
1.27012e-05
4.17485e-06
3.18993e-06
1.85715e-05
8.4456e-05
0.000167171
0.000248093
0.000323077
0.000391008
0.000451659
0.000505138
0.000551681
0.000591559
0.000622039
0.000642566
0.00065769
0.000669432
0.000678457
0.000684588
0.000687138
0.000685226
0.00067803
0.000664887
0.000645189
0.000618199
0.000582969
0.000538567
0.00048486
0.000423647
0.000359173
0.000297081
0.000241628
0.000191389
0.000133924
6.66626e-05
1.33958e-05
4.20408e-06
3.28336e-06
1.94499e-05
8.72414e-05
0.000172043
0.000255118
0.000332352
0.000402613
0.000465604
0.000521339
0.000569969
0.000611703
0.000646772
0.000673237
0.000688806
0.000698462
0.000704469
0.00070755
0.00070751
0.000703659
0.000695087
0.000680903
0.000660292
0.000632375
0.000596197
0.000551022
0.000497007
0.000436073
0.000372312
0.000311069
0.000256084
0.000204405
0.000140258
6.97012e-05
1.40624e-05
4.22145e-06
3.36191e-06
2.03085e-05
9.01164e-05
0.000177282
0.000262588
0.000341879
0.0004141
0.000479013
0.000536632
0.000587071
0.000630482
0.000667036
0.00069691
0.000717009
0.000726723
0.00073086
0.000731428
0.000728863
0.000722771
0.000712342
0.000696604
0.000674612
0.000645462
0.000608303
0.000562591
0.000508661
0.000448463
0.000385983
0.000326253
0.000271788
0.000216348
0.000146182
7.23506e-05
1.46182e-05
4.22487e-06
3.41538e-06
2.11214e-05
9.30509e-05
0.000182978
0.00027093
0.000352472
0.000426571
0.000493091
0.000552152
0.000603928
0.000648592
0.000686301
0.000717198
0.000741421
0.000751951
0.000755081
0.000753976
0.00074953
0.000741545
0.000729338
0.000711984
0.000688507
0.000658027
0.000619812
0.000573518
0.000519745
0.000460734
0.000400523
0.000343282
0.000288658
0.000225096
0.000151689
7.47252e-05
1.5103e-05
4.2179e-06
3.44711e-06
2.17243e-05
9.54401e-05
0.000188056
0.000278922
0.000363124
0.000439443
0.000507735
0.000568195
0.000621094
0.000666687
0.000705186
0.000736758
0.000761534
0.000775036
0.000777347
0.000774317
0.000767964
0.000758318
0.000744625
0.000725921
0.000701212
0.000669604
0.000630467
0.0005837
0.000530266
0.00047278
0.000415319
0.000361023
0.000306204
0.000233954
0.000157049
7.68639e-05
1.55065e-05
4.20406e-06
3.48914e-06
2.22537e-05
9.7423e-05
0.000192165
0.000285594
0.00037243
0.000451178
0.000521546
0.000583677
0.000637865
0.000684424
0.000723635
0.000755729
0.000780885
0.000798341
0.000800197
0.000794964
0.000786181
0.000774479
0.000759157
0.000739154
0.000713404
0.000680939
0.000641148
0.000594171
0.000541471
0.000486218
0.000432152
0.000379429
0.000317809
0.00024295
0.000162731
7.92495e-05
1.59643e-05
4.18739e-06
3.54699e-06
2.27225e-05
9.90805e-05
0.000195443
0.000290865
0.000379895
0.000460849
0.000533272
0.000597201
0.000652875
0.000700601
0.000740685
0.000773399
0.00079897
0.000817576
0.000823378
0.00081687
0.000805291
0.000791032
0.000773832
0.000752474
0.000725708
0.000692512
0.000652299
0.000605458
0.000553962
0.000501326
0.000450555
0.000398658
0.000329528
0.000252063
0.000168667
8.19235e-05
1.65138e-05
4.16965e-06
3.61753e-06
2.34691e-05
0.00010139
0.000199407
0.000296583
0.00038742
0.000470158
0.000544263
0.000609703
0.00066667
0.000715446
0.000756336
0.00078963
0.000815586
0.000834417
0.000845783
0.000839209
0.000825105
0.000807862
0.000788239
0.000765246
0.000737415
0.000703557
0.000663185
0.000617022
0.000567549
0.000518309
0.00047016
0.000414261
0.000340772
0.000260868
0.000174499
8.46665e-05
1.71171e-05
4.14797e-06
3.70061e-06
2.43419e-05
0.000103949
0.000203438
0.000302079
0.000394436
0.000478717
0.000554318
0.000621138
0.000679308
0.000729075
0.000770728
0.000804566
0.000830865
0.000849871
0.000861788
0.000860868
0.000845902
0.000825438
0.000802549
0.000777177
0.000747942
0.000713434
0.00067323
0.000628559
0.000582263
0.000537014
0.000490152
0.000426229
0.000351032
0.000268895
0.000179834
8.72227e-05
1.77022e-05
4.11784e-06
3.80466e-06
2.51823e-05
0.000106425
0.000207226
0.000306978
0.000400427
0.000485855
0.00056266
0.000630688
0.000690007
0.000740801
0.000783313
0.000817812
0.000844572
0.000863851
0.000875881
0.000880862
0.00086707
0.000844144
0.000817891
0.000789519
0.000758192
0.000722737
0.000682921
0.000640294
0.000597728
0.000556088
0.000507184
0.000437337
0.000360437
0.000276154
0.000184593
8.94832e-05
1.82303e-05
4.07949e-06
3.89776e-06
2.61454e-05
0.000109391
0.000211951
0.000313016
0.000407441
0.000493661
0.000571184
0.000639921
0.000699955
0.00075145
0.000794615
0.000829682
0.000856889
0.000876477
0.000888673
0.000893686
0.000886389
0.000863763
0.00083501
0.000803621
0.000769897
0.00073328
0.000694078
0.000654129
0.000615421
0.000575202
0.000518274
0.000447363
0.000368935
0.000282669
0.000188795
9.14222e-05
1.86671e-05
4.03216e-06
3.97537e-06
2.69752e-05
0.000112112
0.000216678
0.000319451
0.000415187
0.000502361
0.000580576
0.000649836
0.000710299
0.000762177
0.000805698
0.000841088
0.000868575
0.000888374
0.000900696
0.00090574
0.00090087
0.000879286
0.000850144
0.000817544
0.000782605
0.000745566
0.000707417
0.00067029
0.000634861
0.000593289
0.00052872
0.000456722
0.000376866
0.000288786
0.000192789
9.33081e-05
1.90933e-05
3.98391e-06
4.0503e-06
2.77385e-05
0.000114632
0.000221139
0.000325686
0.000422895
0.000511211
0.000590263
0.000660112
0.000720981
0.000773141
0.000816864
0.000852409
0.000880011
0.000899886
0.000912234
0.000917238
0.00090923
0.000888289
0.000860556
0.000828877
0.000794489
0.000758514
0.000722838
0.000689126
0.000654356
0.00060328
0.000538013
0.000465063
0.000383933
0.000294223
0.000196302
9.49195e-05
1.94451e-05
3.93584e-06
4.11705e-06
2.84056e-05
0.000116819
0.000225088
0.000331307
0.000429956
0.00051943
0.000599362
0.000669842
0.000731138
0.000783569
0.000827455
0.000863088
0.000890732
0.000910612
0.000922924
0.000923946
0.000912005
0.000892408
0.000867486
0.000838398
0.000806253
0.000772903
0.000740776
0.000710017
0.000671598
0.000612744
0.000546627
0.000472716
0.000390422
0.000299284
0.000199684
9.65845e-05
1.98358e-05
3.89211e-06
4.16943e-06
2.89157e-05
0.000118536
0.000228425
0.000336296
0.000436413
0.000527081
0.00060791
0.000679009
0.000740685
0.000793307
0.000837245
0.000872839
0.000900382
0.000920117
0.000925993
0.000920452
0.000908515
0.000891714
0.0008704
0.000845057
0.000817016
0.000788514
0.000761016
0.000730556
0.000680848
0.000621194
0.000554208
0.000479337
0.000395956
0.000303554
0.000202511
9.79743e-05
2.0179e-05
3.85073e-06
4.21883e-06
2.95182e-05
0.000120311
0.000231599
0.000340948
0.00044246
0.000534327
0.000616092
0.000687846
0.000749904
0.000802668
0.00084655
0.000881938
0.00090917
0.000923938
0.000923098
0.00091531
0.000903688
0.000888746
0.000870402
0.000849129
0.000826403
0.000803821
0.000779699
0.000742923
0.000689446
0.000628921
0.000560969
0.000485068
0.000400594
0.000307024
0.000204748
9.90598e-05
2.04584e-05
3.80685e-06
4.26923e-06
2.99931e-05
0.000121617
0.000233816
0.00034421
0.000446846
0.000539823
0.000622592
0.00069517
0.000757831
0.00081096
0.000854979
0.000890305
0.000917316
0.000928104
0.000923371
0.0009128
0.000899978
0.000885543
0.000869428
0.000852112
0.000834713
0.000817327
0.000794917
0.00075156
0.000697435
0.000636052
0.000567096
0.000490103
0.000404498
0.000309792
0.000206416
9.98072e-05
2.0655e-05
3.75777e-06
4.32457e-06
3.05154e-05
0.000122987
0.000235867
0.000346919
0.000450267
0.000544012
0.000627567
0.000700888
0.000764192
0.000817824
0.000862183
0.000897678
0.000924707
0.000936465
0.000929172
0.000915321
0.00090014
0.000884969
0.000869922
0.00085533
0.000841744
0.000827974
0.000806782
0.000759639
0.000704966
0.000642781
0.00057281
0.000494656
0.000407824
0.000311911
0.000207464
0.00010011
2.07104e-05
3.69752e-06
4.3818e-06
3.09823e-05
0.000124274
0.000237749
0.000349266
0.000453067
0.000547311
0.000631416
0.000705319
0.000769199
0.000823358
0.000868163
0.000904003
0.00093127
0.00094652
0.000938494
0.000922215
0.000904761
0.000888481
0.00087392
0.000861406
0.000850795
0.000838905
0.00081471
0.000767251
0.000712195
0.000649357
0.00057848
0.00049921
0.000411132
0.00031396
0.000208399
0.000100305
2.07075e-05
3.62673e-06
4.44906e-06
3.13479e-05
0.000125391
0.000239501
0.00035147
0.000455619
0.000550185
0.000634636
0.000708927
0.000773229
0.000827823
0.000873048
0.000909266
0.000936847
0.000952531
0.000944781
0.000928179
0.000910265
0.000894097
0.000880759
0.000870585
0.000862478
0.000850992
0.00082187
0.000774285
0.000718948
0.000655621
0.000584016
0.000503786
0.000414563
0.000316159
0.000209445
0.000100544
2.06958e-05
3.55041e-06
4.51947e-06
3.17538e-05
0.000126663
0.000241609
0.000354188
0.000458743
0.00055358
0.000638236
0.000712715
0.000777217
0.000832032
0.000877491
0.000913939
0.000941725
0.000953767
0.000946143
0.000930791
0.000914258
0.000899677
0.000888487
0.000881027
0.000875319
0.000863713
0.000828502
0.000780741
0.000725143
0.00066141
0.000589206
0.000508158
0.000417911
0.000318344
0.000210487
0.000100759
2.06604e-05
3.47196e-06
4.59446e-06
3.21058e-05
0.000127763
0.000243488
0.00035669
0.000461701
0.000556857
0.000641738
0.000716388
0.00078104
0.000836001
0.000881604
0.000918191
0.000946094
0.000951067
0.000943006
0.000929882
0.000916119
0.000904313
0.00089609
0.000891818
0.000888445
0.000875057
0.000834666
0.000786683
0.000730816
0.000666717
0.000594001
0.000512257
0.000421119
0.00032051
0.000211586
0.000101042
2.0648e-05
3.39646e-06
4.67618e-06
3.24572e-05
0.000128785
0.000245222
0.000359012
0.000464458
0.000559911
0.000644981
0.000719749
0.000784478
0.000839496
0.000885145
0.000921757
0.000942476
0.000943991
0.000936738
0.000926312
0.000915872
0.000907611
0.000903117
0.000902243
0.000899874
0.000880932
0.000840362
0.000792149
0.000735991
0.000671521
0.000598317
0.000515934
0.000423988
0.000322429
0.000212529
0.000101251
2.06189e-05
3.32814e-06
4.75882e-06
3.27781e-05
0.000129661
0.000246733
0.000361106
0.000467035
0.000562844
0.000648145
0.000723033
0.000787797
0.000842789
0.000888367
0.000924217
0.00093488
0.000934129
0.000928646
0.000921492
0.000914584
0.000909758
0.000908598
0.000910643
0.000909369
0.000886716
0.00084596
0.000797488
0.000741
0.000676122
0.000602412
0.000519403
0.000426691
0.000324241
0.000213419
0.000101442
2.05993e-05
3.27212e-06
4.84352e-06
3.29029e-05
0.000129957
0.00024736
0.000362147
0.000468534
0.000564785
0.000650459
0.000725618
0.000790536
0.000845562
0.000891055
0.000917578
0.000925006
0.000924457
0.000920879
0.000916403
0.000912438
0.00091057
0.00091225
0.000916744
0.000916744
0.000892573
0.000851659
0.000802916
0.00074606
0.000680723
0.000606467
0.00052281
0.000429341
0.000326034
0.000214328
0.000101663
2.0596e-05
3.23052e-06
4.93274e-06
3.29444e-05
0.000130002
0.000247564
0.000362599
0.00046932
0.000565959
0.000652021
0.000727517
0.000792677
0.000847827
0.000893318
0.000910433
0.000914853
0.000914795
0.000913243
0.000911277
0.000909848
0.000910395
0.000914332
0.000920843
0.000922347
0.00089859
0.000857576
0.00080858
0.000751341
0.000685511
0.000610666
0.000526332
0.000432099
0.000327955
0.000215391
0.00010202
2.06431e-05
3.20185e-06
5.01891e-06
3.29555e-05
0.000129951
0.00024761
0.000362788
0.000469722
0.000566647
0.000653034
0.000728844
0.000794255
0.000849545
0.000889041
0.000902798
0.000906509
0.000907088
0.000906857
0.00090653
0.000906836
0.000909115
0.000914777
0.000923064
0.000926468
0.000904702
0.000863674
0.000814474
0.000756861
0.000690513
0.000615031
0.000529967
0.000434933
0.000329939
0.000216529
0.000102448
2.07154e-05
3.18091e-06
5.09679e-06
3.30048e-05
0.000130029
0.000247866
0.000363174
0.000470221
0.000567288
0.000653867
0.000729901
0.000795534
0.000851
0.000885988
0.000897265
0.000900268
0.000901275
0.000901983
0.000902685
0.00090393
0.000907053
0.000913613
0.000923183
0.000928832
0.00091089
0.000869959
0.000820639
0.000762695
0.000695828
0.000619668
0.000533802
0.000437882
0.000331967
0.000217667
0.000102866
2.07853e-05
3.16439e-06
5.15473e-06
3.30201e-05
0.000130153
0.000248376
0.000363996
0.000471235
0.000568422
0.000655099
0.000731244
0.000797007
0.000852613
0.000886113
0.00089546
0.000897296
0.000898038
0.000899068
0.000900272
0.000901862
0.000905062
0.00091165
0.000921817
0.000929745
0.000917123
0.000876408
0.000827077
0.000768889
0.000701551
0.000624711
0.00053799
0.000441091
0.000334138
0.000218842
0.000103261
2.08394e-05
3.14932e-06
5.18776e-06
3.29275e-05
0.000130068
0.000248742
0.00036484
0.000472433
0.000569841
0.00065665
0.000732889
0.000798747
0.000854476
0.000889462
0.000897553
0.00089786
0.000897683
0.000898399
0.000899566
0.000901058
0.000903915
0.000910005
0.000920186
0.0009301
0.000923338
0.000882924
0.000833684
0.000775357
0.000707638
0.000630177
0.000542615
0.000444696
0.000336618
0.000220209
0.000103735
2.09041e-05
3.13436e-06
5.20412e-06
3.27536e-05
0.000129829
0.000248918
0.000365561
0.000473632
0.000571387
0.000658417
0.000734793
0.000800759
0.000856613
0.000895196
0.00090272
0.000901169
0.00089953
0.0008995
0.000900319
0.000901494
0.000903816
0.000909138
0.00091885
0.000930197
0.000929382
0.000889316
0.000840248
0.000781885
0.000713894
0.000635914
0.000547588
0.000448685
0.000339461
0.00022186
0.00010437
2.10061e-05
3.1187e-06
5.22191e-06
3.26432e-05
0.000129787
0.00024934
0.000366568
0.000475173
0.000573337
0.000660641
0.000737182
0.000803249
0.000859193
0.000901636
0.000909381
0.000906164
0.000902647
0.000901374
0.000901626
0.000902521
0.000904465
0.000909251
0.000918541
0.000930218
0.000932154
0.000895391
0.000846579
0.000788274
0.000720118
0.000641729
0.000552742
0.000452936
0.000342607
0.000223798
0.000105203
2.11625e-05
3.10147e-06
5.2563e-06
3.26473e-05
0.000130022
0.000250135
0.000368022
0.00047723
0.000575861
0.000663475
0.000740188
0.000806329
0.000862296
0.0009074
0.000915662
0.000911402
0.000906229
0.000903499
0.000902841
0.000903299
0.00090502
0.000909555
0.000918578
0.000930429
0.000933887
0.000901068
0.000852547
0.000794352
0.000726102
0.000647393
0.000557843
0.000457232
0.000345878
0.000225903
0.000106182
2.13658e-05
3.0815e-06
5.30951e-06
3.2833e-05
0.000130668
0.00025143
0.000370012
0.000479845
0.000578966
0.000666909
0.000743797
0.000809988
0.000865917
0.000912014
0.000921062
0.000916244
0.000909845
0.000905793
0.000904117
0.000903974
0.00090539
0.000909734
0.000918647
0.00093076
0.000935603
0.000906269
0.000858052
0.000800002
0.000731712
0.000652754
0.00056273
0.000461409
0.000349128
0.000228065
0.000107248
2.16016e-05
3.0569e-06
5.36852e-06
3.3172e-05
0.000131628
0.000253046
0.000372281
0.000482709
0.000582316
0.000670609
0.0007477
0.00081396
0.000869847
0.000915824
0.000925615
0.00092075
0.000913547
0.000908383
0.000905707
0.000904886
0.000905936
0.000910108
0.000918992
0.000931431
0.000937518
0.000910964
0.00086305
0.000805165
0.000736876
0.000657731
0.000567311
0.000465375
0.000352269
0.000230217
0.000108365
2.18599e-05
3.02713e-06
5.41521e-06
3.34744e-05
0.00013242
0.000254347
0.000374133
0.000485116
0.000585232
0.000673943
0.000751337
0.000817775
0.000873724
0.000919666
0.000930214
0.000925357
0.000917563
0.000911496
0.000907914
0.000906399
0.000907031
0.000911019
0.000919934
0.000932751
0.000939869
0.000915172
0.000867543
0.000809832
0.000741575
0.000662292
0.000571542
0.000469074
0.000355236
0.000232291
0.000109477
2.21207e-05
2.99361e-06
5.43697e-06
3.35839e-05
0.000132664
0.000254807
0.000374953
0.0004864
0.000587022
0.000676222
0.000754045
0.000820822
0.00087701
0.000923101
0.000936355
0.000931676
0.000923076
0.000915949
0.000911386
0.000909128
0.000909307
0.000913121
0.000922127
0.000935333
0.000943111
0.000918908
0.000871529
0.000813989
0.000745787
0.00066641
0.000575392
0.000472466
0.000357985
0.000234242
0.000110552
2.23752e-05
2.95787e-06
5.43524e-06
3.3515e-05
0.000132399
0.000254427
0.00037467
0.000486402
0.00058744
0.000677125
0.000755446
0.000822695
0.000879306
0.000925768
0.000945404
0.000941239
0.000931217
0.00092249
0.000916661
0.000913544
0.00091325
0.000916951
0.000926164
0.000939769
0.000947671
0.000922177
0.000874996
0.000817611
0.000749476
0.000670042
0.000578811
0.0004755
0.00036046
0.000236014
0.000111542
2.26058e-05
2.92295e-06
5.42571e-06
3.34031e-05
0.000131993
0.0002537
0.000373801
0.000485602
0.000586891
0.00067696
0.000755747
0.000823502
0.000880631
0.000927613
0.000956185
0.000953333
0.000941647
0.000930867
0.000923476
0.000919406
0.000918701
0.000922463
0.000932104
0.000946148
0.000953556
0.000924967
0.000877934
0.000820687
0.000752635
0.000673186
0.000581808
0.000478193
0.000362689
0.000237638
0.00011247
2.28218e-05
2.89103e-06
5.43018e-06
3.33109e-05
0.000131652
0.000252979
0.000372794
0.000484495
0.000585874
0.000676196
0.000755356
0.000823565
0.000881198
0.000928716
0.000964629
0.000963893
0.000951578
0.000939311
0.000930578
0.000925694
0.000924785
0.000928897
0.000939207
0.000953641
0.000959983
0.000927225
0.000880288
0.000823162
0.000755207
0.000675784
0.000584322
0.000480483
0.000364605
0.000239044
0.000113272
2.30013e-05
2.8612e-06
5.4553e-06
3.32603e-05
0.000131443
0.000252414
0.000371872
0.00048334
0.000584654
0.000675075
0.000754473
0.000823024
0.000881071
0.000929042
0.000967408
0.000969954
0.000958523
0.000946144
0.000937
0.000931858
0.000931116
0.000935861
0.000946993
0.000961724
0.000966362
0.000928946
0.000882057
0.000825032
0.000757185
0.000677831
0.000586354
0.000482381
0.000366225
0.00024025
0.000113966
2.31551e-05
2.83253e-06
5.49077e-06
3.3231e-05
0.000131336
0.000252031
0.000371119
0.00048226
0.000583363
0.000673716
0.000753185
0.000821925
0.000880247
0.000928553
0.000967284
0.000970903
0.000961325
0.000950314
0.000942006
0.000937511
0.000937648
0.000943732
0.000956205
0.000970194
0.00096752
0.000930066
0.000883208
0.000826275
0.000758549
0.000679303
0.000587878
0.00048386
0.000367538
0.000241266
0.000114576
2.32928e-05
2.80333e-06
5.52355e-06
3.31137e-05
0.000131049
0.000251546
0.000370344
0.000481169
0.000582002
0.000672175
0.000751573
0.000820344
0.000878779
0.000927248
0.000961688
0.00096613
0.000959247
0.000950714
0.000944342
0.000941538
0.000943484
0.000951549
0.000965434
0.00097817
0.000968159
0.000930597
0.000883729
0.000826866
0.000759264
0.000680159
0.000588848
0.000484879
0.000368504
0.000242062
0.000115091
2.34188e-05
2.77328e-06
5.5443e-06
3.28935e-05
0.000130481
0.000250753
0.000369304
0.000479851
0.000580412
0.000670356
0.000749593
0.000818274
0.000876681
0.000925158
0.000952369
0.000956928
0.000952863
0.000947355
0.000943522
0.000942953
0.000947182
0.000957626
0.000973233
0.000985012
0.000968318
0.000930624
0.000883712
0.000826888
0.00075939
0.000680428
0.000589266
0.00048541
0.000369077
0.000242583
0.000115459
2.35126e-05
2.74076e-06
5.5486e-06
3.26427e-05
0.000129747
0.000249676
0.000367927
0.000478182
0.000578465
0.000668161
0.000747193
0.00081572
0.000874015
0.000922407
0.000942899
0.000946694
0.000944573
0.000941649
0.000940247
0.000941938
0.000948488
0.000961337
0.000978789
0.000990118
0.000968025
0.000930232
0.000883279
0.000826482
0.000759077
0.00068026
0.000589271
0.000485584
0.000369382
0.000242943
0.00011577
2.36037e-05
2.70672e-06
5.53642e-06
3.24176e-05
0.000128984
0.000248436
0.000366282
0.000476185
0.000576163
0.000665602
0.000744424
0.000812788
0.000870962
0.000919265
0.000936633
0.000939221
0.000937435
0.000935704
0.000935877
0.000939345
0.000947867
0.00096281
0.000981978
0.000993291
0.000967226
0.000929407
0.000882454
0.000825698
0.000758384
0.000679709
0.000588903
0.000485421
0.000369413
0.000243124
0.000116002
2.36824e-05
2.67119e-06
5.51148e-06
3.22844e-05
0.000128407
0.000247307
0.000364638
0.000474103
0.000573727
0.000662895
0.000741521
0.000809756
0.000867861
0.000916149
0.000935516
0.000937365
0.000934413
0.000932047
0.000932293
0.000936451
0.000946147
0.000962545
0.000983011
0.000994496
0.000965854
0.000928107
0.000881229
0.000824565
0.000757372
0.000678857
0.000588253
0.000485005
0.000369242
0.000243168
0.000116168
2.37534e-05
2.6349e-06
5.48094e-06
3.2249e-05
0.000128068
0.000246425
0.000363206
0.000472186
0.000571421
0.000660302
0.00073874
0.000806878
0.00086497
0.000913324
0.000938549
0.000940644
0.000935855
0.000931556
0.000930553
0.000934291
0.000944278
0.000961423
0.000982558
0.000992878
0.000963857
0.000926266
0.000879545
0.000823044
0.000756026
0.000677706
0.000587322
0.000484319
0.000368816
0.000242992
0.000116183
2.37814e-05
2.59894e-06
5.44935e-06
3.23357e-05
0.00012803
0.000245836
0.000361972
0.000470359
0.000569116
0.000657656
0.000735889
0.000803943
0.000862058
0.000910535
0.00094348
0.000946658
0.000940196
0.000933702
0.000930973
0.000933777
0.000943636
0.000961182
0.00098226
0.0009901
0.000961233
0.000923829
0.00087732
0.000821049
0.000754277
0.000676217
0.000586112
0.000483406
0.000368215
0.000242696
0.000116134
2.37923e-05
2.56499e-06
5.42005e-06
3.24897e-05
0.000128201
0.000245516
0.00036097
0.000468662
0.00056681
0.000654882
0.000732812
0.00080073
0.000858865
0.000907502
0.000946958
0.000954633
0.000947186
0.000938452
0.00093388
0.000935696
0.000945443
0.000963262
0.000983511
0.000986742
0.000957954
0.000920708
0.000874422
0.000818422
0.000751954
0.00067422
0.000584452
0.00048209
0.000367245
0.000242069
0.000115836
2.37233e-05
2.53204e-06
5.39798e-06
3.26439e-05
0.000128437
0.000245429
0.000360334
0.00046738
0.000564888
0.000652403
0.000729907
0.000797554
0.000855578
0.000904249
0.000943868
0.000959618
0.000953997
0.000944229
0.000938213
0.000939308
0.000949192
0.000967277
0.000986063
0.000982937
0.000954084
0.000916893
0.000870769
0.000815019
0.000748871
0.000671507
0.000582139
0.000480194
0.000365771
0.000241024
0.000115243
2.35574e-05
2.50044e-06
5.38229e-06
3.28562e-05
0.000128889
0.000245755
0.000360281
0.000466787
0.000563686
0.000650602
0.000727583
0.000794826
0.000852586
0.000901139
0.000940774
0.000960093
0.000956092
0.000946698
0.000940713
0.00094211
0.000952673
0.000971183
0.000988439
0.000979055
0.000950013
0.000912757
0.000866692
0.00081112
0.000745257
0.000668264
0.000579331
0.000477859
0.00036393
0.000239692
0.000114463
2.33382e-05
2.47293e-06
5.37348e-06
3.31172e-05
0.000129514
0.000246375
0.000360663
0.000466767
0.000563155
0.000649515
0.000725954
0.000792721
0.000850108
0.00089841
0.000937918
0.00095845
0.000955602
0.000947124
0.000941941
0.000944203
0.000955681
0.000974619
0.00099036
0.000975262
0.000945944
0.000908515
0.000862394
0.00080689
0.000741216
0.000664525
0.00057599
0.000474993
0.000361597
0.000237952
0.000113411
2.30421e-05
2.4477e-06
5.37555e-06
3.32203e-05
0.000129773
0.000246589
0.000360716
0.000466563
0.000562609
0.000648567
0.000724578
0.000790932
0.000847957
0.000895978
0.0009353
0.000954753
0.000952651
0.000945736
0.000942314
0.000946266
0.000959159
0.000978672
0.000992792
0.000971833
0.000942172
0.000904487
0.000858216
0.000802684
0.000737114
0.000660656
0.000572477
0.000471945
0.000359113
0.000236123
0.000112339
2.27528e-05
2.42528e-06
5.3925e-06
3.32182e-05
0.000129768
0.000246492
0.000360498
0.000466188
0.000562019
0.000647694
0.000723368
0.000789359
0.000846029
0.00089373
0.000932791
0.000947669
0.000945686
0.000941059
0.000940425
0.000946924
0.000961797
0.000981758
0.000991301
0.000968856
0.000938844
0.000900863
0.000854389
0.000798778
0.000733269
0.000657023
0.000569197
0.000469138
0.000356871
0.000234517
0.00011144
2.25397e-05
2.41112e-06
5.42384e-06
3.31391e-05
0.000129514
0.00024604
0.00035991
0.000465507
0.000561235
0.000646757
0.00072221
0.000787915
0.000844253
0.00089161
0.00092951
0.00093762
0.000935817
0.000934118
0.000936858
0.00094629
0.00096318
0.000983213
0.000989114
0.000966355
0.000935986
0.000897649
0.000850868
0.000795043
0.000729453
0.000653281
0.000565697
0.000466042
0.000354319
0.000232625
0.000110322
2.22481e-05
2.40184e-06
5.47036e-06
3.29143e-05
0.000128825
0.000244933
0.000358537
0.000464018
0.000559716
0.000645222
0.000720612
0.000786173
0.000842271
0.00088929
0.000918045
0.000924146
0.00092395
0.000925189
0.000931075
0.000943309
0.000962192
0.000982813
0.000987412
0.000964457
0.000933816
0.000895172
0.000848101
0.000792053
0.000726356
0.000650235
0.000562876
0.000463621
0.000352443
0.00023138
0.000109713
2.2142e-05
2.40956e-06
5.53346e-06
3.26835e-05
0.000128034
0.000243601
0.000356792
0.000462034
0.000557642
0.000643148
0.000718564
0.000784115
0.000840122
0.000886939
0.000907157
0.000911208
0.000911974
0.000915187
0.000923136
0.00093704
0.000956995
0.00097859
0.000985898
0.00096285
0.000932003
0.000893075
0.000845688
0.000789354
0.000723459
0.000647281
0.000560046
0.000461101
0.000350394
0.000229904
0.000108861
2.19461e-05
2.42367e-06
5.60814e-06
3.26067e-05
0.0001276
0.000242626
0.000355263
0.000460077
0.000555427
0.000640825
0.000716232
0.000781811
0.00083782
0.000883959
0.000898874
0.000901719
0.000902889
0.000906963
0.000915861
0.000930606
0.000951177
0.000973722
0.000984387
0.000961322
0.000930336
0.000891161
0.000843457
0.000786787
0.00072061
0.000644276
0.000557081
0.000458416
0.000348227
0.000228419
0.000108082
2.17831e-05
2.43445e-06
5.68605e-06
3.26215e-05
0.000127421
0.000241998
0.000354038
0.000458283
0.000553197
0.000638332
0.000713636
0.000779225
0.000835292
0.000878789
0.000893207
0.000896016
0.000896974
0.000900636
0.000909102
0.000923565
0.000944126
0.000967336
0.00098119
0.000959362
0.000928317
0.000888973
0.000841002
0.000784
0.000717482
0.00064088
0.000553581
0.00045507
0.000345352
0.000226319
0.000106924
2.15075e-05
2.4228e-06
5.75877e-06
3.29219e-05
0.000128039
0.000242499
0.000354046
0.000457631
0.000551896
0.000636505
0.000711465
0.0007769
0.000832977
0.000876787
0.000891784
0.000894788
0.00089538
0.000898142
0.000905258
0.000918064
0.000936981
0.000959259
0.000974188
0.000957247
0.00092615
0.00088667
0.000838476
0.000781177
0.000714317
0.000637383
0.000549847
0.000451299
0.00034186
0.000223504
0.000105179
2.10182e-05
2.3814e-06
5.81177e-06
3.3369e-05
0.000129154
0.000243849
0.000355144
0.000458152
0.000551697
0.000635597
0.000709966
0.000774995
0.000830882
0.000876871
0.00089306
0.000896647
0.000897363
0.000899787
0.000906014
0.000917299
0.000934172
0.000954495
0.000969012
0.000955433
0.000924207
0.000884544
0.000836112
0.000778526
0.000711343
0.000634084
0.000546276
0.0004476
0.00033829
0.000220455
0.00010315
2.0401e-05
2.31947e-06
5.83899e-06
3.40094e-05
0.000130862
0.000246192
0.000357555
0.000460163
0.000553016
0.000636099
0.000709664
0.000774006
0.000829395
0.00087606
0.000894873
0.000899605
0.000900943
0.000903778
0.000910147
0.000921073
0.000936852
0.000955379
0.000968042
0.000953964
0.000922567
0.000882701
0.000834033
0.000776178
0.000708702
0.000631148
0.000543083
0.000444254
0.000334995
0.000217551
0.000101139
1.97651e-05
2.24968e-06
5.83295e-06
3.46112e-05
0.000132586
0.000248798
0.000360556
0.000463056
0.000555409
0.00063775
0.000710471
0.000773986
0.000828662
0.000874798
0.000896271
0.000901924
0.000903957
0.000907777
0.000915348
0.000927339
0.000943526
0.000961185
0.000971176
0.000952528
0.000920976
0.000880958
0.000832129
0.000774093
0.000706417
0.000628648
0.000540382
0.000441412
0.000332158
0.000214993
9.93232e-05
1.91759e-05
2.18082e-06
5.79943e-06
3.51511e-05
0.000134196
0.000251412
0.000363823
0.000466507
0.000558613
0.000640383
0.000712336
0.000775009
0.000828872
0.000874312
0.000897673
0.000903632
0.00090613
0.000911118
0.000920493
0.000934574
0.000952397
0.000969665
0.000974336
0.000950795
0.000919129
0.000879034
0.000830154
0.000772081
0.000704368
0.000626558
0.00053825
0.000439257
0.000330048
0.00021309
9.79497e-05
1.87065e-05
2.11638e-06
5.74417e-06
3.5457e-05
0.000135247
0.000253368
0.00036656
0.000469686
0.000561844
0.000643321
0.000714724
0.000776693
0.000829801
0.000874526
0.000899322
0.000905095
0.000907715
0.000913774
0.000925114
0.000941553
0.000960947
0.000976535
0.000972273
0.000948602
0.000916861
0.000876735
0.000827859
0.000769821
0.000702166
0.000624434
0.00053622
0.000437344
0.000328293
0.000211584
9.6894e-05
1.83409e-05
2.0621e-06
5.68146e-06
3.55742e-05
0.000135782
0.000254602
0.000368566
0.000472282
0.000564731
0.000646182
0.000717287
0.000778761
0.000831263
0.00087536
0.000902235
0.00090766
0.000909806
0.000916213
0.00092877
0.000946788
0.000967077
0.000981068
0.000970098
0.000946298
0.000914487
0.000874334
0.000825465
0.000767458
0.000699859
0.000622207
0.000534103
0.000435374
0.000326526
0.000210112
9.58985e-05
1.80164e-05
2.01797e-06
5.62133e-06
3.5496e-05
0.000135774
0.000255002
0.00036961
0.000473958
0.000566864
0.000648525
0.000719593
0.000780822
0.000832935
0.000876571
0.000906786
0.000912108
0.000913335
0.000919345
0.000932312
0.000951115
0.000971608
0.000983885
0.000967829
0.00094389
0.000912004
0.00087182
0.000822948
0.000764958
0.000697391
0.00061979
0.000531766
0.000433168
0.000324529
0.000208457
9.48022e-05
1.76842e-05
1.97951e-06
5.57187e-06
3.53231e-05
0.000135447
0.000254811
0.000369873
0.000474787
0.0005682
0.000650213
0.000721437
0.000782634
0.000834563
0.000877919
0.000912753
0.000918499
0.000918724
0.00092396
0.000936909
0.000955932
0.000975195
0.000981804
0.000965272
0.000941185
0.000909222
0.000869017
0.00082016
0.000762207
0.000694693
0.000617157
0.000529222
0.000430755
0.000322333
0.000206626
9.35894e-05
1.73249e-05
1.9373e-06
5.53511e-06
3.50885e-05
0.000134884
0.000254126
0.000369416
0.000474761
0.000568652
0.000651074
0.000722578
0.000783902
0.000835814
0.000879033
0.000914197
0.000925835
0.000926102
0.000930164
0.000942441
0.00096099
0.000978341
0.000979116
0.000962272
0.000937984
0.000905913
0.000865677
0.000816849
0.000758969
0.000691556
0.000614146
0.000526363
0.000428094
0.000319955
0.000204684
9.2333e-05
1.69616e-05
1.88981e-06
5.50837e-06
3.47966e-05
0.000134098
0.000252974
0.000368256
0.000473856
0.000568126
0.000650939
0.000722767
0.00078431
0.000836321
0.000879529
0.000914594
0.000932663
0.000934314
0.00093755
0.000948695
0.000966153
0.00098125
0.00097602
0.000958784
0.000934223
0.000901991
0.000861693
0.000812889
0.000755105
0.000687846
0.000610635
0.000523091
0.000425113
0.000317347
0.000202591
9.09975e-05
1.65793e-05
1.83481e-06
5.48723e-06
3.44616e-05
0.000133115
0.000251365
0.000366369
0.000472003
0.000566504
0.000649636
0.000721786
0.0007836
0.000835803
0.000879116
0.000914207
0.000938444
0.00094208
0.000945039
0.000955107
0.000971125
0.000983187
0.000972405
0.000954711
0.00092981
0.000897354
0.000856945
0.000808139
0.000750454
0.000683386
0.000606449
0.000519258
0.000421712
0.000314475
0.000200383
8.96549e-05
1.62126e-05
1.77825e-06
5.46846e-06
3.40661e-05
0.000131887
0.00024925
0.0003637
0.000469125
0.000563673
0.000647007
0.00071943
0.000781524
0.000833977
0.000877485
0.000912708
0.000940243
0.000949224
0.000953072
0.000962305
0.000975434
0.000979473
0.000968142
0.000949981
0.000924712
0.000891997
0.000851444
0.000802612
0.00074502
0.00067816
0.000601545
0.000514783
0.000417775
0.000311191
0.000197897
8.81694e-05
1.58144e-05
1.71869e-06
5.44957e-06
3.35777e-05
0.000130348
0.00024655
0.000360173
0.000465147
0.000559544
0.000642932
0.00071553
0.000777859
0.000830557
0.000874292
0.000909704
0.000937378
0.000955011
0.000961669
0.000970054
0.000979307
0.000974944
0.000963102
0.000944502
0.000918879
0.00088591
0.000845216
0.000796365
0.000738884
0.000672274
0.00059605
0.000509822
0.00041349
0.000307723
0.000195384
8.67533e-05
1.54591e-05
1.66494e-06
5.43336e-06
3.29874e-05
0.000128467
0.000243214
0.00035573
0.000460009
0.000554052
0.000637334
0.000709992
0.000772476
0.00082538
0.000869336
0.000904961
0.000932824
0.00095342
0.000967153
0.000974308
0.000975024
0.000969309
0.000957066
0.000938124
0.000912235
0.000879095
0.000838336
0.000789542
0.00073225
0.00066597
0.000590223
0.000504623
0.000409066
0.000304209
0.000192895
8.53822e-05
1.5121e-05
1.61421e-06
5.42662e-06
3.23371e-05
0.000126355
0.000239372
0.000350495
0.000453823
0.000547294
0.000630285
0.000702843
0.000765348
0.000818339
0.000862413
0.000898157
0.000926113
0.000946749
0.000960438
0.00096745
0.000967947
0.00096198
0.000949496
0.000930357
0.000904343
0.000871166
0.000830478
0.000781877
0.000724914
0.000659112
0.000584002
0.000499199
0.000404593
0.00030081
0.000190639
8.42387e-05
1.48562e-05
1.56903e-06
5.43652e-06
3.16336e-05
0.000124029
0.000235059
0.000344524
0.000446666
0.000539368
0.000621903
0.000694221
0.000756623
0.000809591
0.000853677
0.00088944
0.000917401
0.00093801
0.000951635
0.000958543
0.000958906
0.000952793
0.000940179
0.000920952
0.000894918
0.000861816
0.000821316
0.000773034
0.000716537
0.000651359
0.000577038
0.000493191
0.00039969
0.000297126
0.000188214
8.30093e-05
1.45609e-05
1.51958e-06
5.47221e-06
3.09308e-05
0.000121602
0.000230441
0.000338039
0.000438826
0.000530634
0.000612625
0.000684634
0.000746871
0.000799751
0.000843781
0.000879491
0.000907384
0.000927902
0.000941409
0.00094818
0.000948394
0.000942138
0.000929405
0.000910106
0.000884073
0.000851067
0.000810782
0.000762855
0.000706874
0.000642392
0.000568962
0.000486205
0.000393983
0.000292848
0.000185428
8.16295e-05
1.42353e-05
1.46831e-06
5.53605e-06
3.01123e-05
0.000118795
0.00022518
0.000330739
0.000430103
0.000521028
0.000602528
0.000674298
0.000736437
0.000789281
0.000833287
0.000868956
0.000896776
0.000917187
0.000930556
0.000937166
0.000937211
0.000930792
0.000917924
0.000898538
0.000872488
0.000839557
0.000799463
0.000751864
0.00069637
0.000632556
0.000559996
0.000478326
0.000387411
0.000287781
0.000181998
7.98438e-05
1.37976e-05
1.41003e-06
5.62745e-06
2.90819e-05
0.00011529
0.000218748
0.000322
0.000419896
0.000510052
0.000591265
0.000663034
0.000725308
0.000778321
0.000822469
0.000858222
0.000886059
0.000906422
0.000919689
0.000926159
0.000926042
0.000919459
0.000906446
0.000886955
0.000860864
0.000827977
0.000788033
0.000740715
0.000685654
0.000622447
0.00055069
0.000470043
0.000380388
0.000282256
0.000178171
7.78121e-05
1.33034e-05
1.35476e-06
5.74446e-06
2.76793e-05
0.000110609
0.000210277
0.000310632
0.000406857
0.000496365
0.000577618
0.000649811
0.000712663
0.000766261
0.000810916
0.000847061
0.000875164
0.000895679
0.000909002
0.000915453
0.000915269
0.000908594
0.000895487
0.000875927
0.000849815
0.000816979
0.000777184
0.000730133
0.000675477
0.000612833
0.000541812
0.000462089
0.00037356
0.000276769
0.000174241
7.56353e-05
1.27646e-05
1.30236e-06
5.88907e-06
2.60174e-05
0.000104943
0.000199745
0.000296184
0.000390135
0.000478869
0.000560388
0.000633429
0.000697374
0.000752086
0.000797748
0.000834728
0.000863481
0.000884469
0.000898114
0.000904768
0.000904695
0.000898073
0.000884987
0.000865442
0.000839364
0.000806611
0.000766972
0.000720178
0.000665907
0.000603795
0.000533472
0.00045462
0.000367141
0.00027158
0.00017047
7.35084e-05
1.22499e-05
1.26287e-06
6.0713e-06
2.44674e-05
9.91887e-05
0.000188116
0.000277825
0.000363172
0.00044964
0.000535596
0.000613806
0.000679068
0.000735252
0.000782325
0.000820548
0.000850334
0.000872145
0.000886425
0.000893558
0.000893844
0.000887492
0.000874619
0.000855255
0.00082935
0.000796781
0.000757364
0.000710853
0.000656954
0.000595331
0.000525637
0.000447571
0.000361038
0.000266581
0.000166752
7.13502e-05
1.17383e-05
1.23339e-06
6.30093e-06
2.37652e-05
9.53438e-05
0.000178219
0.000250916
0.000328817
0.000414936
0.000505684
0.000593088
0.000660664
0.000717938
0.000766195
0.000805545
0.000836322
0.000858968
0.000873935
0.000881633
0.000882392
0.000876449
0.000863947
0.000844931
0.000819366
0.000787138
0.000748069
0.000701925
0.00064843
0.000587273
0.000518137
0.000440755
0.000355066
0.000261635
0.000163048
6.92176e-05
1.12735e-05
1.2213e-06
6.54688e-06
2.47185e-05
9.62866e-05
0.000172562
0.000236905
0.000308608
0.000392473
0.000484894
0.000575728
0.000646272
0.000703434
0.000751913
0.000791644
0.000822856
0.000845932
0.000861306
0.000869388
0.000870525
0.000864972
0.000852883
0.000834317
0.000809235
0.000777521
0.000738984
0.000693379
0.000640418
0.000579791
0.000511195
0.000434396
0.000349382
0.000256787
0.000159299
6.70169e-05
1.0816e-05
1.21909e-06
6.71548e-06
2.73224e-05
0.000102646
0.000179236
0.000238408
0.000303809
0.0003821
0.000470339
0.000559744
0.00063821
0.000693824
0.000741272
0.000780346
0.000811159
0.000834008
0.000849279
0.000857358
0.000858586
0.000853224
0.000841437
0.000823286
0.000798735
0.000767654
0.00072983
0.000684985
0.000632795
0.000572914
0.000505015
0.000428864
0.000344479
0.000252577
0.000155996
6.5085e-05
1.04538e-05
1.23003e-06
6.71955e-06
3.01926e-05
0.000110333
0.000192405
0.00024879
0.000308297
0.000379805
0.000461107
0.000544466
0.000621183
0.00068527
0.000733885
0.000771413
0.000801095
0.000823129
0.000837829
0.000845536
0.000846568
0.000841179
0.000829539
0.000811719
0.000787686
0.000757308
0.000720355
0.000676517
0.000625413
0.00056663
0.000499765
0.000424513
0.000340855
0.000249537
0.000153548
6.35756e-05
1.01797e-05
1.24071e-06
6.56671e-06
3.17584e-05
0.00011487
0.000199774
0.000259558
0.000315464
0.000381248
0.000456122
0.000533196
0.00060471
0.000665703
0.000715145
0.000754635
0.000786248
0.000810705
0.000825499
0.000832578
0.000833215
0.00082764
0.000816018
0.000798427
0.000774852
0.000745175
0.000709173
0.000666523
0.000616806
0.00055954
0.000494216
0.000420401
0.000337946
0.000247501
0.000152081
6.26574e-05
1.0029e-05
1.2467e-06
6.34285e-06
3.13969e-05
0.000114669
0.000201042
0.000265167
0.000320116
0.000382293
0.000452608
0.000525156
0.000592866
0.000650983
0.000698137
0.000735361
0.000764533
0.000787267
0.000804424
0.000815534
0.000817165
0.000811271
0.000799546
0.000782069
0.000758838
0.000729758
0.000694639
0.000653179
0.00060497
0.000549497
0.000486178
0.000414441
0.000333935
0.000245081
0.000150719
6.19335e-05
9.91407e-06
1.22854e-06
6.13085e-06
2.9482e-05
0.00011044
0.000196907
0.000263996
0.000320002
0.000381086
0.000449029
0.000518824
0.000584083
0.000640347
0.000686127
0.000722115
0.000749904
0.000771001
0.000786377
0.000796152
0.000798498
0.000792046
0.000779978
0.000762365
0.000739209
0.000710436
0.000675891
0.000635326
0.000588385
0.000534603
0.000473408
0.000404182
0.000326428
0.000240295
0.000148226
6.09422e-05
9.75517e-06
1.17778e-06
5.98093e-06
2.68335e-05
0.000103568
0.000188158
0.000255433
0.000314087
0.000376836
0.000444935
0.000513901
0.000577982
0.000633107
0.000677899
0.000713055
0.000740187
0.000760714
0.000774865
0.000780309
0.000778634
0.00077142
0.000758796
0.000740819
0.000717483
0.000688716
0.000654387
0.000614294
0.000568155
0.000515597
0.000456151
0.000389279
0.000314495
0.000231809
0.00014326
5.88586e-05
9.369e-06
1.08966e-06
5.91846e-06
2.43923e-05
9.62387e-05
0.000177277
0.000241238
0.000303143
0.000369814
0.000440471
0.000510463
0.000574475
0.000628968
0.000673099
0.000707934
0.000733971
0.000749246
0.00075822
0.000761276
0.000758723
0.00075078
0.000737585
0.000719192
0.000695586
0.000666689
0.000632371
0.00059245
0.000546699
0.000494835
0.000436521
0.000371381
0.000299095
0.000219762
0.00013528
5.50649e-05
8.59478e-06
9.7933e-07
5.92927e-06
2.2729e-05
9.00273e-05
0.00016208
0.000224973
0.00029028
0.00036125
0.000435645
0.000508326
0.000574009
0.000628616
0.000667011
0.000695588
0.000716922
0.000731503
0.000739804
0.000742244
0.000739158
0.000730789
0.000717289
0.000698718
0.000675057
0.000646216
0.000612054
0.000572385
0.000526991
0.000475635
0.000418074
0.000354083
0.000283554
0.000206827
0.000125977
5.02645e-05
7.57373e-06
8.66938e-07
5.97357e-06
2.18733e-05
8.58555e-05
0.000149188
0.000209617
0.000276695
0.000351737
0.000431006
0.000507374
0.000570195
0.000613962
0.000649743
0.000677837
0.0006987
0.000712842
0.00072076
0.000722892
0.000719593
0.000711122
0.00069764
0.000679215
0.000655829
0.000627388
0.000593735
0.000554667
0.000509954
0.000459355
0.000402652
0.000339699
0.000270537
0.000195742
0.000117688
4.58161e-05
6.60953e-06
7.72225e-07
6.01573e-06
2.14478e-05
8.30826e-05
0.000139187
0.000196391
0.000263878
0.000342108
0.000424959
0.00050083
0.000553548
0.000596585
0.000631728
0.00065927
0.000679673
0.000693456
0.000701128
0.000703135
0.000699839
0.000691505
0.000678301
0.000660297
0.000637475
0.000609739
0.000576924
0.000538813
0.000495155
0.000445685
0.000390167
0.000328454
0.000260633
0.000187404
0.000111395
4.23732e-05
5.86537e-06
7.0007e-07
6.03324e-06
2.11718e-05
8.10326e-05
0.000131564
0.000185746
0.000252628
0.000332075
0.000415573
0.000487462
0.000537187
0.00057921
0.000613484
0.000640294
0.000660109
0.000673462
0.000680871
0.000682789
0.000679579
0.000671503
0.000658724
0.000641308
0.000619236
0.000592406
0.000560651
0.000523746
0.000481425
0.000433403
0.000379409
0.000319261
0.000253014
0.000181377
0.000107078
4.01095e-05
5.38797e-06
6.42888e-07
6.02545e-06
2.06862e-05
7.87364e-05
0.000124567
0.000176179
0.000241991
0.000321567
0.000404888
0.00047279
0.000521149
0.000561957
0.000595168
0.000621083
0.000640186
0.000653023
0.00066012
0.000661934
0.000658827
0.000651054
0.000638767
0.000622021
0.000600784
0.000574946
0.00054433
0.000508706
0.000467801
0.000421317
0.000368965
0.000310531
0.000246029
0.000176132
0.000103568
3.84058e-05
5.06013e-06
5.94554e-07
6.00391e-06
1.9836e-05
7.50677e-05
0.000117197
0.000166722
0.000231309
0.000310612
0.000393754
0.000458014
0.000505014
0.000544557
0.000576632
0.000601575
0.000619898
0.000632167
0.00063892
0.000640621
0.000637627
0.000630187
0.00061844
0.000602428
0.000582102
0.000557337
0.000527943
0.000493678
0.000454258
0.000409378
0.000358741
0.000302118
0.000239483
0.000171439
0.000100628
3.70693e-05
4.80979e-06
5.51638e-07
5.98523e-06
1.8882e-05
7.01032e-05
0.000109739
0.000157108
0.000220018
0.000298788
0.000381853
0.0004423
0.000488089
0.000526481
0.000557498
0.000581516
0.000599085
0.000610802
0.000617224
0.000618825
0.000615965
0.000608891
0.000597734
0.000582521
0.000563187
0.000539587
0.000511506
0.000478681
0.000440809
0.000397569
0.00034865
0.000293806
0.00023299
0.000166765
9.77019e-05
3.57298e-05
4.56348e-06
5.14968e-07
5.96303e-06
1.82189e-05
6.62548e-05
0.00010331
0.000148056
0.000208789
0.000286755
0.000369708
0.000426128
0.000470675
0.000507911
0.000537873
0.000560969
0.000577781
0.000588935
0.000595007
0.000596483
0.000593734
0.00058701
0.000576446
0.000562071
0.000543814
0.000521518
0.000494952
0.00046382
0.000427783
0.00038647
0.000339514
0.00028661
0.000227651
0.000163131
9.55502e-05
3.47819e-05
4.36326e-06
4.74671e-07
5.92815e-06
1.7825e-05
6.35378e-05
9.83832e-05
0.000140422
0.000198317
0.000274322
0.000356349
0.000410005
0.000453177
0.000489195
0.000518088
0.000540271
0.000556341
0.000566934
0.000572633
0.000573929
0.000571193
0.000564681
0.000554533
0.00054079
0.000523391
0.000502191
0.000476962
0.000447404
0.000413159
0.000373821
0.000328969
0.000278222
0.000221382
0.000158837
9.29802e-05
3.36346e-05
4.12858e-06
4.3381e-07
5.87601e-06
1.76186e-05
6.17083e-05
9.48211e-05
0.000134328
0.000189125
0.000262311
0.000342485
0.000394393
0.000435964
0.00047063
0.000498397
0.000519674
0.000535052
0.000545159
0.000550568
0.000551753
0.000549077
0.000542784
0.000533015
0.000519818
0.000503148
0.000482877
0.000458797
0.000430624
0.000398003
0.000360518
0.000317712
0.000269139
0.000214506
0.000154082
9.01473e-05
3.2454e-05
3.90972e-06
3.94495e-07
5.82152e-06
1.73494e-05
6.00485e-05
9.18053e-05
0.000128989
0.000180389
0.00024988
0.000327575
0.000379282
0.000419031
0.000452201
0.000478775
0.00049914
0.000513864
0.000523554
0.000528756
0.000529915
0.000527364
0.000521321
0.000511908
0.000499168
0.000483062
0.000463482
0.000440247
0.000413105
0.000381733
0.00034574
0.000304682
0.000258104
0.000205668
0.000147565
8.59798e-05
3.05986e-05
3.61143e-06
3.62735e-07
5.78143e-06
1.69157e-05
5.81166e-05
8.87145e-05
0.000123826
0.00017172
0.000236774
0.000311341
0.000364637
0.000402414
0.000433963
0.000459258
0.000478667
0.000492744
0.000502077
0.000507186
0.000508483
0.000506264
0.000500704
0.000491889
0.000479833
0.000464482
0.000445724
0.000423393
0.000397259
0.00036703
0.000332345
0.000292789
0.000247929
0.000197443
0.000141516
8.22653e-05
2.91144e-05
3.41625e-06
3.42204e-07
5.76626e-06
1.61841e-05
5.56589e-05
8.49996e-05
0.000118014
0.000162109
0.000222008
0.000292973
0.000349796
0.000385694
0.000415688
0.000439728
0.000458161
0.00047153
0.000480416
0.000485336
0.000486692
0.000484758
0.00047968
0.000471506
0.000460214
0.000445722
0.000427901
0.000406584
0.000381561
0.000352571
0.00031929
0.00028133
0.000238262
0.000189735
0.000135867
7.86947e-05
2.75623e-05
3.18967e-06
3.1945e-07
5.75973e-06
1.52811e-05
5.30072e-05
8.10879e-05
0.00011204
0.000152247
0.000206697
0.000273774
0.000334669
0.00036893
0.000397596
0.000420572
0.000438166
0.000450897
0.000459342
0.000464027
0.000465364
0.000463636
0.000458982
0.000451432
0.000440937
0.000427378
0.00041059
0.000390381
0.000366535
0.000338812
0.000306935
0.000270576
0.000229358
0.000182932
0.000131312
7.62633e-05
2.67043e-05
3.07254e-06
2.94403e-07
5.73799e-06
1.41737e-05
5.02124e-05
7.72405e-05
0.000106265
0.000142366
0.000190696
0.000253086
0.000318568
0.000351552
0.000379273
0.000401553
0.00041861
0.000430909
0.000439001
0.000443414
0.000444584
0.000442824
0.000438298
0.000431056
0.000421056
0.00040817
0.000392207
0.000372937
0.000350108
0.000323459
0.000292725
0.000257636
0.000217913
0.000173323
0.000123955
7.15035e-05
2.45936e-05
2.72242e-06
2.44754e-07
5.67572e-06
1.29969e-05
4.73148e-05
7.39191e-05
0.000101764
0.000134142
0.000175877
0.000231063
0.000293961
0.000333328
0.000360399
0.00038244
0.000399485
0.000411868
0.000420068
0.000424582
0.00042585
0.000424208
0.000419853
0.000412869
0.000403257
0.000390922
0.000375684
0.000357306
0.000335503
0.000309967
0.000280384
0.000246459
0.000207944
0.000164715
0.000117047
6.68288e-05
2.25755e-05
2.41843e-06
2.05694e-07
5.57791e-06
1.17402e-05
4.38914e-05
7.06591e-05
9.85429e-05
0.000128166
0.000162963
0.0002083
0.000264712
0.000313021
0.000339505
0.000361625
0.000379132
0.000392119
0.000400919
0.000405959
0.000407651
0.000406342
0.000402243
0.000395465
0.000386051
0.000373956
0.000359045
0.000341112
0.00031989
0.000295058
0.000266266
0.000233173
0.00019552
0.000153272
0.000106995
5.91851e-05
1.89471e-05
1.89731e-06
1.6191e-07
5.4526e-06
1.06414e-05
4.01019e-05
6.72064e-05
9.6579e-05
0.000125521
0.000154872
0.000190036
0.000236617
0.000290209
0.000317435
0.000339514
0.000357725
0.000371793
0.000381779
0.000387962
0.000390697
0.000390322
0.000387057
0.000381024
0.000372295
0.000360861
0.000346647
0.00032951
0.000309249
0.000285598
0.000258223
0.000226733
0.000190733
0.000149983
0.000104864
5.79022e-05
1.85047e-05
1.86162e-06
1.55087e-07
5.32041e-06
9.68713e-06
3.60987e-05
6.26436e-05
9.40211e-05
0.000124851
0.000151916
0.000178666
0.000212098
0.000255613
0.000294148
0.000315332
0.000333857
0.000348998
0.000360381
0.000367987
0.00037203
0.000372813
0.000370565
0.000365417
0.000357448
0.000346639
0.000332907
0.000316121
0.000296117
0.000272698
0.000245635
0.000214671
0.000179558
0.000140192
9.70621e-05
5.27586e-05
1.6485e-05
1.63896e-06
1.37226e-07
5.16484e-06
9.14914e-06
3.31265e-05
5.79526e-05
9.02175e-05
0.000124563
0.000153578
0.000176467
0.000199386
0.000229753
0.000268092
0.000291945
0.000309708
0.000325337
0.00033802
0.000347286
0.000353031
0.000355416
0.000354669
0.000350973
0.000344451
0.000335114
0.00032288
0.000307602
0.000289104
0.000267197
0.000241675
0.000212306
0.000178836
0.000141055
9.91369e-05
5.50894e-05
1.7735e-05
1.83038e-06
1.47392e-07
4.98813e-06
8.86338e-06
3.14292e-05
5.35656e-05
8.39317e-05
0.000120335
0.000154321
0.000179358
0.000197399
0.00021619
0.000242427
0.000271066
0.00028679
0.000301657
0.000314715
0.000325115
0.000332319
0.000336166
0.000336772
0.000334335
0.000329037
0.000320947
0.000309998
0.000296006
0.00027872
0.000257857
0.000233141
0.000204336
0.000171284
0.000134004
9.30405e-05
5.07882e-05
1.59226e-05
1.5936e-06
1.26745e-07
4.77114e-06
9.00595e-06
3.17196e-05
5.12591e-05
7.75194e-05
0.000112242
0.000150105
0.000181217
0.00020078
0.000213509
0.000228128
0.000249665
0.000268094
0.000281022
0.000293066
0.00030335
0.000311066
0.00031569
0.000317094
0.000315386
0.00031076
0.000303416
0.000293429
0.000280727
0.000265114
0.00024631
0.000224
0.000197847
0.000167527
0.000132776
9.36667e-05
5.19614e-05
1.63563e-05
1.60368e-06
1.21249e-07
4.56793e-06
9.30759e-06
3.33489e-05
5.04026e-05
7.12957e-05
0.000100861
0.000139032
0.000176326
0.000198727
0.000215383
0.000223808
0.000235535
0.000254097
0.000265869
0.000276848
0.000286623
0.000294488
0.000299793
0.000302247
0.000301762
0.000298329
0.000292109
0.000283233
0.000271681
0.000257263
0.000239635
0.000218357
0.000192958
0.000163031
0.000128388
8.94679e-05
4.87026e-05
1.49428e-05
1.41313e-06
1.02013e-07
4.36341e-06
1.0225e-05
3.6572e-05
5.20122e-05
6.82022e-05
9.18022e-05
0.000126213
0.000160344
0.000182873
0.000202158
0.000218074
0.000225032
0.000237076
0.000254927
0.00026475
0.000272951
0.000279094
0.000282703
0.000283576
0.000281637
0.000276772
0.000269128
0.000258936
0.000246351
0.000231387
0.000213902
0.00019364
0.000170274
0.000143444
0.000112819
7.83904e-05
4.19828e-05
1.23555e-05
1.10644e-06
7.4001e-08
4.22882e-06
1.11201e-05
3.84842e-05
5.37694e-05
6.56897e-05
8.35508e-05
0.000113076
0.000146416
0.000169299
0.000190059
0.000207775
0.000215305
0.00022608
0.000244857
0.000256722
0.000264207
0.000269618
0.000272774
0.000273736
0.000272545
0.000269008
0.00026315
0.000255103
0.000244935
0.000232532
0.000217517
0.000199256
0.000176936
0.00014975
0.000117244
7.9986e-05
4.12728e-05
1.13993e-05
9.45405e-07
6.0275e-08
4.06086e-06
1.41083e-05
4.5911e-05
5.70385e-05
6.60688e-05
8.39648e-05
0.000115816
0.000147524
0.000168963
0.000187565
0.000192084
0.000197915
0.000212053
0.000234842
0.000254103
0.000259038
0.000261268
0.000260818
0.000257787
0.000252247
0.000244109
0.000233403
0.000220269
0.000204907
0.000187528
0.000168332
0.000147503
0.000125208
0.000101567
7.65696e-05
5.02193e-05
2.42851e-05
6.07458e-06
4.17702e-07
1.4807e-08
3.91555e-06
1.5891e-05
4.83169e-05
5.41587e-05
5.94299e-05
7.37321e-05
0.00010036
0.000130815
0.000151564
0.000168306
0.000178498
0.000188895
0.000204351
0.000223983
0.000229883
0.000232727
0.000232875
0.000230765
0.000226959
0.000222071
0.000216553
0.000210747
0.000204735
0.000198205
0.000190356
0.000179855
0.000164866
0.000143268
0.000113354
7.62744e-05
3.89424e-05
1.26986e-05
2.19213e-06
1.18574e-07
2.2969e-08
3.59555e-06
2.4437e-05
5.08449e-05
5.18089e-05
5.45085e-05
6.60948e-05
8.19831e-05
0.000100013
0.000120955
0.000134592
0.000147641
0.00016042
0.000172155
0.000182132
0.000189744
0.000194565
0.000196319
0.000194844
0.000190062
0.00018198
0.000170723
0.000156581
0.00013995
0.000121361
0.000101488
8.11401e-05
6.12466e-05
4.26639e-05
2.69393e-05
1.49594e-05
6.7715e-06
2.15516e-06
4.29937e-07
1.1323e-07
7.53527e-08
3.34396e-06
2.93636e-05
4.15618e-05
3.80874e-05
3.65862e-05
3.78083e-05
3.91832e-05
4.26681e-05
4.89795e-05
5.67673e-05
6.42975e-05
7.06852e-05
7.37801e-05
7.57874e-05
7.691e-05
7.69515e-05
7.57908e-05
7.33827e-05
6.97687e-05
6.50836e-05
5.94766e-05
5.31557e-05
4.63543e-05
3.93101e-05
3.22985e-05
2.56028e-05
1.9507e-05
1.42831e-05
1.01794e-05
7.36635e-06
5.8818e-06
5.16075e-06
3.76953e-06
1.10931e-06
1.59044e-07
6.24641e-06
3.22693e-05
4.22497e-05
4.67872e-05
4.96747e-05
4.50517e-05
3.70207e-05
3.12102e-05
2.9407e-05
3.02858e-05
3.17228e-05
3.29293e-05
3.40717e-05
3.52191e-05
3.52483e-05
3.52807e-05
3.53823e-05
3.55244e-05
3.56978e-05
3.59097e-05
3.61803e-05
3.65547e-05
3.70953e-05
3.78667e-05
3.89566e-05
4.04662e-05
4.25036e-05
4.35283e-05
4.3008e-05
4.47391e-05
5.0868e-05
6.03302e-05
6.15595e-05
1.9817e-05
1.32611e-06
1.19111e-05
6.57468e-05
6.85759e-05
7.07152e-05
7.39332e-05
7.68654e-05
8.07809e-05
8.65409e-05
9.3363e-05
9.91808e-05
0.000101538
9.94148e-05
9.40537e-05
8.6466e-05
7.48769e-05
5.90012e-05
4.40094e-05
3.32464e-05
2.62465e-05
2.15721e-05
1.83256e-05
1.55133e-05
1.20817e-05
9.28148e-06
7.98973e-06
8.08864e-06
9.14509e-06
1.0715e-05
1.20349e-05
1.05985e-05
8.16605e-06
5.43817e-06
3.23483e-06
1.70992e-06
1.18241e-07
5.87339e-06
7.75895e-06
1.18703e-05
2.0534e-05
3.15757e-05
4.53447e-05
6.2983e-05
8.18698e-05
9.40631e-05
9.48619e-05
8.41318e-05
6.68227e-05
4.9494e-05
3.56817e-05
2.6102e-05
1.97055e-05
1.40688e-05
1.03052e-05
6.66304e-06
4.7862e-06
1.92337e-06
2.09807e-07
1.23021e-06
7.09837e-07
2.2296e-06
3.48142e-07
1.58994e-06
2.57811e-06
6.8065e-06
1.01982e-05
1.67619e-05
2.29553e-05
2.3178e-05
5.76949e-06
1.05946e-06
7.42677e-06
8.38524e-06
1.29379e-05
2.79833e-05
4.14451e-05
9.07853e-05
0.000145626
0.000156673
0.000142404
0.000135657
0.000128203
8.38346e-05
5.47927e-05
5.01825e-05
4.97092e-05
4.73403e-05
4.53103e-05
4.46334e-05
4.46043e-05
4.02934e-05
3.64004e-05
3.38814e-05
3.24051e-05
3.1658e-05
3.15724e-05
3.24076e-05
3.46756e-05
3.8756e-05
4.46528e-05
5.30951e-05
6.22639e-05
5.50581e-05
2.96979e-05
5.39934e-06
1.70719e-06
6.4029e-07
4.68349e-07
1.0047e-06
2.06398e-06
1.41088e-06
7.08087e-06
3.81467e-06
6.82865e-06
2.9144e-05
7.37641e-05
5.91393e-05
4.85364e-05
4.18353e-05
4.16959e-05
4.33325e-05
4.62814e-05
5.04271e-05
5.53304e-05
5.82788e-05
6.1903e-05
6.59595e-05
7.0054e-05
7.39039e-05
7.70392e-05
7.91053e-05
7.99649e-05
7.98291e-05
7.92446e-05
7.85919e-05
7.69009e-05
6.88444e-05
4.63749e-05
2.12249e-05
5.24053e-06
2.00692e-06
2.20625e-06
2.10755e-05
3.37237e-05
2.51737e-05
2.84721e-05
4.94223e-05
6.77049e-05
5.81266e-05
4.91932e-05
4.56593e-05
4.75736e-05
5.17293e-05
5.66283e-05
6.16983e-05
6.72231e-05
7.35263e-05
8.10948e-05
9.09544e-05
0.000104375
0.000123343
0.000126894
0.000129831
0.000133027
0.000135741
0.000137211
0.000136677
0.000133359
0.000126411
0.000114935
9.82394e-05
7.64807e-05
4.84696e-05
2.10094e-05
5.64156e-06
2.08762e-06
1.41853e-06
9.14834e-07
8.9453e-06
2.08946e-05
3.46565e-05
5.34232e-05
6.77001e-05
7.55191e-05
8.09067e-05
8.50568e-05
8.83069e-05
9.25983e-05
9.94371e-05
0.000109963
0.000125982
0.000142287
0.000143716
0.000144131
0.000144264
0.000144788
0.000145904
0.000147463
0.000149076
0.000150202
0.000150154
0.00014811
0.000143126
0.000134168
0.000120253
0.000100839
7.66213e-05
4.7081e-05
2.09811e-05
5.38571e-06
2.18824e-06
1.65519e-06
4.63393e-06
2.57546e-05
4.08436e-05
5.50904e-05
6.7646e-05
7.67901e-05
8.27569e-05
8.68255e-05
9.03121e-05
9.35706e-05
9.62619e-05
9.92964e-05
0.00010439
0.000113611
0.00012911
0.000148994
0.00015363
0.000156043
0.00015783
0.000159239
0.000160389
0.000161221
0.0001615
0.000160778
0.000158359
0.000153289
0.000144394
0.000130455
0.000110631
8.52895e-05
4.92281e-05
2.28878e-05
5.99839e-06
2.21622e-06
1.60656e-06
4.78049e-06
2.60487e-05
4.95517e-05
6.49738e-05
7.73073e-05
8.83849e-05
9.88078e-05
0.00010906
0.000119227
0.000124752
0.000129658
0.000135242
0.000141453
0.000147886
0.000153983
0.000159247
0.000163408
0.000166533
0.000168776
0.000170226
0.000170966
0.000170975
0.000170078
0.000167901
0.000163843
0.000157068
0.000146559
0.000131317
0.000110781
8.54792e-05
4.82375e-05
2.37567e-05
6.12348e-06
2.33792e-06
1.72353e-06
4.96396e-06
2.73463e-05
5.01281e-05
6.6269e-05
7.98558e-05
9.20336e-05
0.00010337
0.00011454
0.000126022
0.000134617
0.000139749
0.000144897
0.000150291
0.000155919
0.000161549
0.000166829
0.000171393
0.00017507
0.000177755
0.000179368
0.000179908
0.000179341
0.000177525
0.00017416
0.000168757
0.000160636
0.000148982
0.000133012
0.000112296
8.37867e-05
4.77163e-05
2.48115e-05
6.49277e-06
2.47934e-06
1.69156e-06
5.33277e-06
2.96339e-05
5.83187e-05
7.72069e-05
9.20719e-05
0.000105334
0.000118488
0.000132967
0.000147542
0.000153083
0.000157669
0.00016183
0.000165913
0.000170076
0.00017429
0.00017837
0.000182031
0.000185031
0.000187132
0.00018812
0.000187871
0.000186266
0.000183138
0.000178216
0.000171101
0.000161266
0.000148121
0.000131154
0.000110167
7.75289e-05
4.61997e-05
2.52796e-05
6.53991e-06
2.65856e-06
1.83138e-06
6.13865e-06
3.31027e-05
6.27991e-05
8.21365e-05
9.74373e-05
0.000110978
0.000124166
0.000138644
0.000155298
0.000168075
0.000173694
0.000178217
0.000182096
0.000185727
0.000189161
0.000192307
0.000195027
0.000197135
0.00019838
0.000198495
0.000197261
0.000194499
0.000190027
0.000183613
0.000174947
0.000163643
0.000149276
0.000131483
0.000110168
7.40591e-05
4.57794e-05
2.60618e-05
6.73055e-06
2.83092e-06
1.78718e-06
6.11789e-06
3.40139e-05
6.84888e-05
9.28461e-05
0.000110444
0.000125146
0.000139203
0.000154796
0.000172943
0.000186786
0.00019301
0.000197843
0.000201639
0.000204745
0.000207348
0.000209462
0.000211016
0.00021188
0.000211824
0.000210575
0.000207876
0.000203511
0.000197294
0.000189037
0.000178529
0.000165522
0.000149752
0.000131002
0.000104467
7.07172e-05
4.538e-05
2.66525e-05
6.74962e-06
3.00063e-06
1.91195e-06
7.08555e-06
3.80727e-05
7.52149e-05
0.000101948
0.000121125
0.000136656
0.000150716
0.000165583
0.000183736
0.000204341
0.000212612
0.000218434
0.000222804
0.000226008
0.000228316
0.0002298
0.000230423
0.000230122
0.000228715
0.000225955
0.000221591
0.000215409
0.000207244
0.000196969
0.000184468
0.00016962
0.00015229
0.000132381
0.000100641
6.91104e-05
4.57506e-05
2.75635e-05
6.87317e-06
3.15069e-06
1.87847e-06
7.26185e-06
3.97239e-05
8.01001e-05
0.000114387
0.000137599
0.000155181
0.000170227
0.000185414
0.000203432
0.000224112
0.000235136
0.000241852
0.00024686
0.000250375
0.000252576
0.000253556
0.00025332
0.000251827
0.000248923
0.000244394
0.000238022
0.000229629
0.000219107
0.000206413
0.000191547
0.000174513
0.000155288
0.000132867
9.75103e-05
6.80376e-05
4.62413e-05
2.8472e-05
6.92715e-06
3.29112e-06
1.96525e-06
8.22726e-06
4.36799e-05
8.68145e-05
0.000124373
0.000150552
0.000170715
0.000187463
0.000203168
0.000220671
0.000241421
0.000258036
0.000266012
0.000272033
0.000276262
0.000278815
0.00027975
0.000279061
0.000276695
0.000272512
0.000266323
0.000257951
0.000247268
0.000234233
0.000218905
0.000201416
0.000181919
0.000160534
0.000132403
9.66698e-05
6.8364e-05
4.73259e-05
2.96681e-05
7.08081e-06
3.4222e-06
1.95447e-06
8.54975e-06
4.57487e-05
9.19919e-05
0.000133457
0.000166601
0.000190697
0.000209629
0.000226293
0.000243925
0.000264723
0.000283091
0.000292134
0.000299043
0.000303935
0.000306871
0.00030786
0.000306849
0.000303743
0.000298388
0.000290601
0.000280223
0.000267169
0.000251466
0.000233275
0.000212869
0.00019057
0.000166686
0.000133005
9.68913e-05
6.93815e-05
4.87499e-05
3.10397e-05
7.23531e-06
3.54729e-06
2.02549e-06
9.38178e-06
4.90687e-05
9.78755e-05
0.000142156
0.000179151
0.000206885
0.000229003
0.000247874
0.00026643
0.000287447
0.000308436
0.000318768
0.00032675
0.000332492
0.000336029
0.000337324
0.000336277
0.000332741
0.000326521
0.000317412
0.000305247
0.000289953
0.000271602
0.000250442
0.000226878
0.000201418
0.000174598
0.000135116
9.81851e-05
7.09931e-05
5.04896e-05
3.26163e-05
7.44498e-06
3.66934e-06
2.03574e-06
9.79305e-06
5.12596e-05
0.000102855
0.000150479
0.000191923
0.000225758
0.000251792
0.000273391
0.00029366
0.000315214
0.000334756
0.000346325
0.000355325
0.000361874
0.000365996
0.000367629
0.000366632
0.000362808
0.000355915
0.000345701
0.000331965
0.000314614
0.000293734
0.000269629
0.000242818
0.000213983
0.00018391
0.000138562
0.000100393
7.30573e-05
5.24629e-05
3.43876e-05
7.66583e-06
3.78678e-06
2.08955e-06
1.05221e-05
5.41806e-05
0.000108245
0.000158633
0.000203108
0.000241464
0.000272109
0.000297459
0.000320614
0.000343337
0.000360975
0.000373962
0.000384109
0.000391552
0.000396322
0.000398354
0.000397491
0.000393505
0.00038611
0.00037501
0.000359955
0.000340815
0.000317654
0.000290795
0.000260842
0.000228631
0.00019361
0.000143889
0.000104001
7.58383e-05
5.47862e-05
3.63408e-05
7.94406e-06
3.89682e-06
2.12012e-06
1.10236e-05
5.64969e-05
0.000113061
0.000166311
0.000213812
0.000255291
0.000291032
0.000321506
0.000347258
0.000368822
0.000386659
0.000401125
0.000412472
0.000420841
0.000426275
0.000428713
0.000427995
0.00042388
0.000416061
0.000404207
0.000388025
0.000367339
0.000342174
0.000312841
0.000279981
0.00024456
0.000203638
0.000150598
0.000108717
7.9375e-05
5.7497e-05
3.75461e-05
8.21483e-06
3.99864e-06
2.18648e-06
1.17866e-05
5.9465e-05
0.000118485
0.000174368
0.00022458
0.000268778
0.000307192
0.00034023
0.000368359
0.000392039
0.000411692
0.000427667
0.000440224
0.000449521
0.000455612
0.000458444
0.000457862
0.000453623
0.000445412
0.000432882
0.000415711
0.000393682
0.000366776
0.000335267
0.0002998
0.000261416
0.000214906
0.000158609
0.000114496
8.36383e-05
6.05914e-05
3.88302e-05
8.49236e-06
4.08923e-06
2.26339e-06
1.25328e-05
6.23535e-05
0.000123871
0.000182422
0.000235345
0.000282216
0.000323209
0.000358685
0.000389064
0.000414763
0.000436165
0.000453599
0.000467318
0.000477486
0.000484169
0.000487327
0.00048682
0.000482412
0.000473794
0.000460615
0.000442538
0.000419318
0.000390894
0.000357498
0.00031975
0.000278723
0.000227255
0.000167909
0.000121389
8.86651e-05
6.40844e-05
4.0176e-05
8.76202e-06
4.1648e-06
2.36499e-06
1.34535e-05
6.56579e-05
0.000129736
0.000190929
0.000246517
0.000296012
0.000339524
0.000377364
0.000409907
0.00043753
0.00046059
0.000479393
0.000494184
0.000505128
0.0005123
0.000515679
0.000515142
0.000510474
0.000501383
0.000487528
0.000468575
0.000444262
0.000414498
0.000379472
0.000339766
0.000296444
0.000240412
0.000178385
0.000129434
9.45536e-05
6.80891e-05
4.16836e-05
9.04307e-06
4.22512e-06
2.47213e-06
1.43369e-05
6.88288e-05
0.000135526
0.000199379
0.000257612
0.000309699
0.000355704
0.000395887
0.000430574
0.000460102
0.000484794
0.000504933
0.000520754
0.000532419
0.000540013
0.000543532
0.000542876
0.00053786
0.000528217
0.000513636
0.000493797
0.000468443
0.000437465
0.000401017
0.000359635
0.000314349
0.000253935
0.000189696
0.000138504
0.00010135
7.27284e-05
4.34128e-05
9.35135e-06
4.27444e-06
2.57662e-06
1.5203e-05
7.19293e-05
0.000141306
0.000207882
0.000268773
0.000323424
0.000371877
0.000414358
0.000451154
0.000482562
0.000508868
0.000530329
0.00054716
0.000559517
0.000567489
0.000571089
0.000570242
0.000564794
0.000554519
0.00053914
0.000518371
0.000491975
0.000459844
0.000422109
0.000379259
0.000332275
0.000267685
0.000201656
0.000148474
0.000109031
7.80443e-05
4.53995e-05
9.69871e-06
4.31421e-06
2.67468e-06
1.60063e-05
7.48906e-05
0.000146996
0.000216347
0.000279905
0.00033708
0.000387907
0.000432602
0.000471431
0.000504663
0.000532552
0.000555325
0.000573171
0.000586234
0.000594598
0.000598283
0.000597237
0.000591337
0.000580395
0.00056418
0.000542449
0.000515
0.000481745
0.000442805
0.000398629
0.00035014
0.000281583
0.00021417
0.000159282
0.000117612
8.41046e-05
4.76629e-05
1.00911e-05
4.34545e-06
2.7674e-06
1.68011e-05
7.78567e-05
0.000152791
0.000225037
0.000291341
0.000351059
0.00040422
0.000451043
0.000491796
0.00052674
0.000556113
0.000580122
0.000598935
0.000612678
0.000621426
0.0006252
0.00062396
0.000617608
0.000605992
0.000588922
0.000566205
0.000537681
0.000503296
0.000463184
0.000417782
0.000365454
0.000295268
0.000227166
0.000170841
0.00012709
9.09983e-05
5.02282e-05
1.05378e-05
4.36956e-06
2.86318e-06
1.75994e-05
8.07644e-05
0.000158471
0.000233624
0.000302728
0.000365038
0.00042055
0.00046948
0.000512101
0.00054868
0.000579453
0.000604622
0.000624347
0.000638741
0.000647872
0.000651759
0.000650367
0.000643616
0.00063138
0.000613509
0.000589846
0.000560277
0.000524783
0.000483522
0.000436932
0.000379758
0.000308952
0.000240597
0.000183072
0.000137372
9.86357e-05
5.30405e-05
1.10314e-05
4.38895e-06
2.95296e-06
1.83415e-05
8.34214e-05
0.000163692
0.000241634
0.000313514
0.000378456
0.000436381
0.000487474
0.000531993
0.000570206
0.000602356
0.000628649
0.000649249
0.000664273
0.00067379
0.000677821
0.00067634
0.000669277
0.000656529
0.00063797
0.000613479
0.000582971
0.000546455
0.000504108
0.000456372
0.00039374
0.000322497
0.000254336
0.000195996
0.000148589
0.000107175
5.61131e-05
1.15798e-05
4.40221e-06
3.04201e-06
1.90942e-05
8.59908e-05
0.000168581
0.000249025
0.000323439
0.000390847
0.000451099
0.000504324
0.000550747
0.000590614
0.00062416
0.000651591
0.000673077
0.000688743
0.00069867
0.000702891
0.000701393
0.000694123
0.000680995
0.000661903
0.000636748
0.00060547
0.000568099
0.000524821
0.000472476
0.000406655
0.000336097
0.000268722
0.000209883
0.000160912
0.000116724
5.94928e-05
1.2204e-05
4.41032e-06
3.12227e-06
1.986e-05
8.85943e-05
0.000173458
0.000256261
0.000332996
0.000402639
0.000465005
0.00052019
0.000568386
0.000609816
0.000644697
0.000673222
0.000695559
0.000711837
0.000722145
0.000726533
0.000725007
0.000717538
0.000704063
0.000684502
0.000658778
0.000626849
0.000588758
0.000542226
0.000484493
0.000418783
0.0003498
0.00028338
0.000224486
0.000174423
0.000126632
6.31023e-05
1.28843e-05
4.41007e-06
3.20041e-06
2.06472e-05
9.12843e-05
0.000178496
0.000263667
0.000342637
0.000414349
0.000478616
0.000535536
0.0005853
0.00062812
0.000664199
0.000693719
0.000716836
0.000733676
0.000744332
0.00074886
0.000747283
0.000739591
0.000725745
0.000704705
0.000677688
0.000644412
0.000603644
0.000554281
0.000496266
0.00043143
0.000363778
0.000298634
0.000240407
0.000188881
0.000133704
6.63901e-05
1.35316e-05
4.39977e-06
3.26999e-06
2.14035e-05
9.39297e-05
0.000183575
0.000271246
0.000352545
0.00042634
0.000492437
0.000550952
0.000602099
0.000646107
0.000683189
0.000713532
0.000737291
0.000754589
0.000765519
0.00077014
0.000768485
0.000760557
0.00074383
0.000720792
0.000692298
0.000657724
0.00061587
0.000565849
0.000507905
0.000443982
0.000377879
0.000314465
0.000257328
0.000204257
0.000140702
6.9503e-05
1.41562e-05
4.37978e-06
3.33782e-06
2.21446e-05
9.64636e-05
0.000188389
0.000278477
0.000362102
0.000438012
0.000505964
0.000566067
0.000618546
0.000663654
0.000701625
0.000732667
0.000756948
0.000774602
0.000785727
0.000790392
0.000788636
0.000779441
0.000760793
0.000736031
0.000706015
0.000670222
0.000627585
0.000577304
0.000519711
0.000456831
0.000392454
0.000331182
0.000275327
0.000219232
0.000147759
7.25888e-05
1.47603e-05
4.35139e-06
3.40168e-06
2.2841e-05
9.88135e-05
0.000192792
0.00028509
0.0003709
0.000448854
0.000518641
0.000580332
0.000634146
0.000680342
0.000719174
0.000750868
0.000775614
0.000793566
0.000804839
0.000809516
0.00080765
0.000797866
0.00077756
0.000751056
0.000719618
0.000682769
0.000639477
0.000589047
0.000531962
0.000470539
0.000408733
0.000350346
0.0002946
0.000229532
0.000154484
7.56414e-05
1.53788e-05
4.31658e-06
3.4671e-06
2.35524e-05
0.000101128
0.000197005
0.000291309
0.000379103
0.000458933
0.000530426
0.000593617
0.000648706
0.000695947
0.000735603
0.000767914
0.000793092
0.00081131
0.000822705
0.000827376
0.000825397
0.000815418
0.000793616
0.00076544
0.000732686
0.000694978
0.000651222
0.000600832
0.000544573
0.000485139
0.000426569
0.000371128
0.000313231
0.000239637
0.00016099
7.85929e-05
1.59877e-05
4.27725e-06
3.53242e-06
2.43106e-05
0.000103512
0.000201176
0.000297313
0.000386906
0.000468437
0.000541487
0.000606055
0.000662321
0.000710529
0.000750943
0.000783816
0.000809375
0.000827815
0.000839294
0.000843938
0.000841838
0.000832007
0.000808876
0.000779077
0.000744981
0.000706421
0.000662348
0.000612343
0.00055771
0.000501604
0.000447227
0.000392893
0.000325221
0.000248993
0.000167101
8.14213e-05
1.65926e-05
4.23556e-06
3.6024e-06
2.50824e-05
0.000105901
0.000205239
0.000303023
0.000394206
0.000477243
0.000551687
0.000617509
0.000674864
0.000723982
0.000765118
0.000798528
0.00082445
0.000843094
0.000854642
0.000859242
0.000857011
0.000847743
0.000823484
0.000792112
0.000756631
0.000717163
0.000672931
0.000623941
0.000572043
0.000520244
0.000468966
0.000409381
0.000336413
0.000257652
0.000172727
8.40141e-05
1.71566e-05
4.19187e-06
3.6716e-06
2.58822e-05
0.0001084
0.000209468
0.000308858
0.000401499
0.000485855
0.000561484
0.000628362
0.000686637
0.000736533
0.000778299
0.000812187
0.000838437
0.000857269
0.000868878
0.000873432
0.000871072
0.000861913
0.000837283
0.000804526
0.000767744
0.000727485
0.000683447
0.000636324
0.000588351
0.000541273
0.000490329
0.000421427
0.000346645
0.000265535
0.000177829
8.63709e-05
1.76805e-05
4.14594e-06
3.73983e-06
2.66551e-05
0.000110865
0.000213714
0.000314756
0.000408854
0.000494467
0.000571171
0.000638961
0.000698003
0.000748532
0.000790803
0.000825072
0.000851583
0.00087056
0.000882208
0.000886706
0.000884213
0.000874862
0.000849055
0.000815392
0.000777878
0.0007375
0.000694735
0.000650998
0.000607847
0.000562739
0.000502376
0.000432365
0.000355947
0.000272686
0.000182443
8.84956e-05
1.81556e-05
4.09773e-06
3.80692e-06
2.73853e-05
0.000113212
0.000217809
0.000320494
0.000416046
0.000502901
0.00058064
0.000649278
0.000709003
0.000760071
0.000802754
0.000837322
0.000864026
0.000883102
0.00089476
0.00089919
0.000896559
0.000884729
0.000857846
0.000823993
0.000786744
0.000747518
0.000707575
0.000668329
0.000628544
0.000578309
0.000513597
0.000442409
0.000364394
0.000279114
0.000186543
9.03602e-05
1.85736e-05
4.04677e-06
3.87168e-06
2.80922e-05
0.000115469
0.000221746
0.000326014
0.000422967
0.000511015
0.000589741
0.000659174
0.000719523
0.000771067
0.000814098
0.000848904
0.000875754
0.000894891
0.000906539
0.000910894
0.000908131
0.000891628
0.000863665
0.000830478
0.00079489
0.000758521
0.000722924
0.000688331
0.000648565
0.000589482
0.000523913
0.000451564
0.000372037
0.00028489
0.0001902
9.20112e-05
1.89406e-05
3.99312e-06
3.93156e-06
2.87045e-05
0.000117455
0.000225307
0.000331099
0.000429415
0.000518625
0.000598304
0.000668494
0.000729422
0.000781392
0.00082472
0.000859715
0.000886665
0.000905829
0.00091744
0.000921704
0.000915341
0.000894413
0.000866517
0.000835374
0.000803075
0.000771329
0.000740864
0.000708055
0.00065941
0.000599775
0.000533383
0.000459913
0.000378946
0.000290056
0.000193421
9.34332e-05
1.92553e-05
3.9384e-06
3.98721e-06
2.92934e-05
0.000119298
0.000228585
0.000335792
0.000435397
0.000525719
0.000606315
0.000677225
0.000738693
0.000791041
0.000834611
0.000869737
0.000896728
0.000915865
0.000927398
0.000930909
0.000916755
0.000894197
0.000867747
0.000839683
0.000811739
0.000785242
0.000758795
0.000723214
0.000669668
0.000609389
0.000542133
0.000467552
0.000385205
0.000294679
0.000196257
9.46546e-05
1.95211e-05
3.88282e-06
4.03989e-06
2.98114e-05
0.000120862
0.000231341
0.00033976
0.000440518
0.000531879
0.000613366
0.000685004
0.000747031
0.000799778
0.000843603
0.000878859
0.000905879
0.000924967
0.000936389
0.000932785
0.000915948
0.000893484
0.000869015
0.000844508
0.000821395
0.000799765
0.000775062
0.00073313
0.000679192
0.000618302
0.000550205
0.000474546
0.000390881
0.00029882
0.00019875
9.56996e-05
1.97439e-05
3.82639e-06
4.09323e-06
3.0319e-05
0.000122322
0.000233806
0.000343219
0.000444928
0.00053717
0.000619446
0.000691758
0.000754335
0.000807498
0.000851611
0.000887036
0.000914124
0.000933196
0.000944542
0.000934831
0.000915746
0.000893538
0.000871063
0.000849904
0.000830988
0.000813189
0.00078953
0.000742467
0.000688131
0.000626636
0.000557712
0.000480995
0.000396048
0.000302514
0.000200891
9.65281e-05
1.99066e-05
3.76679e-06
4.14711e-06
3.08222e-05
0.000123751
0.000236139
0.000346398
0.000448895
0.000541866
0.000624805
0.000697706
0.000760784
0.000814354
0.000858773
0.000894405
0.000921608
0.000940715
0.000949703
0.000937907
0.000917795
0.000895817
0.000874989
0.000856839
0.000841607
0.000826003
0.000798689
0.000751185
0.000696517
0.000634474
0.000564771
0.000487039
0.00040085
0.000305893
0.000202791
9.71997e-05
2.00121e-05
3.70269e-06
4.20173e-06
3.12592e-05
0.000125025
0.000238236
0.000349246
0.000452425
0.000546019
0.000629526
0.000702941
0.000766474
0.000820437
0.000865178
0.000901059
0.000928438
0.000947652
0.000954533
0.000941393
0.000920867
0.000899588
0.000880684
0.000865495
0.00085332
0.000838691
0.000807002
0.000759355
0.000704393
0.000641868
0.000571467
0.000492804
0.000405454
0.00030915
0.000204633
9.78555e-05
2.01046e-05
3.638e-06
4.25587e-06
3.16588e-05
0.000126209
0.000240205
0.000351917
0.000455712
0.000549848
0.000633838
0.000707685
0.000771605
0.00082591
0.000870947
0.000907076
0.000934651
0.00095401
0.00095815
0.000944025
0.00092383
0.000903932
0.000887329
0.000875074
0.000865566
0.000851376
0.000814876
0.000767056
0.000711809
0.000648845
0.000577815
0.000498306
0.000409887
0.000312319
0.000206456
9.85278e-05
2.02032e-05
3.57619e-06
4.31153e-06
3.20125e-05
0.000127269
0.000241979
0.000354335
0.000458698
0.00055333
0.000637756
0.000711987
0.000776249
0.000830858
0.000876163
0.000912525
0.000940295
0.000959808
0.00095995
0.000944999
0.00092584
0.000908015
0.000894145
0.000884957
0.000877956
0.000863109
0.000822343
0.000774325
0.00071879
0.000655415
0.000583813
0.000503539
0.000414148
0.00031542
0.000208299
9.92631e-05
2.03252e-05
3.52008e-06
4.37062e-06
3.23352e-05
0.000128243
0.000243618
0.000356559
0.000461425
0.000556491
0.000641292
0.000715853
0.000780406
0.000835276
0.000880817
0.000917388
0.000945341
0.00096501
0.000959445
0.000943697
0.000926261
0.000911306
0.000900892
0.000895071
0.000889393
0.000870164
0.000829314
0.000781116
0.000725302
0.00066153
0.000589388
0.000508404
0.000418118
0.000318324
0.000210045
9.99876e-05
2.04605e-05
3.47018e-06
4.4312e-06
3.26846e-05
0.000129276
0.000245352
0.000358886
0.00046423
0.000559676
0.000644779
0.000719582
0.000784337
0.000839374
0.000885057
0.000921747
0.000949792
0.000963193
0.000955843
0.000941124
0.000926061
0.000914144
0.000907047
0.00090416
0.000899512
0.000876863
0.000835911
0.00078752
0.000731413
0.000667239
0.000594565
0.000512903
0.000421776
0.000320991
0.000211645
0.000100654
2.05918e-05
3.42633e-06
4.49258e-06
3.3027e-05
0.000130284
0.000247073
0.000361218
0.000467051
0.000562873
0.00064826
0.000723273
0.00078818
0.000843328
0.00088909
0.000925833
0.000953907
0.000959594
0.00095041
0.00093704
0.000924693
0.000915957
0.000912049
0.000911819
0.000908224
0.000883295
0.000842248
0.000793655
0.000737239
0.000672644
0.000599432
0.0005171
0.000425166
0.000323449
0.000213113
0.000101263
2.07156e-05
3.38871e-06
4.55265e-06
3.33588e-05
0.000131255
0.000248758
0.000363524
0.000469852
0.000566049
0.000651705
0.0007269
0.000791919
0.000847124
0.000892898
0.000929617
0.000954703
0.000954315
0.000944261
0.000932564
0.000922875
0.000917055
0.000915966
0.00091808
0.000915647
0.000889543
0.000848424
0.000799635
0.000742902
0.000677871
0.000604106
0.000521103
0.00042838
0.000325773
0.000214505
0.000101851
2.08402e-05
3.35727e-06
4.60649e-06
3.36327e-05
0.000132081
0.00025027
0.00036567
0.00047252
0.00056912
0.000655066
0.000730453
0.000795578
0.000850817
0.000896562
0.000933199
0.000951257
0.000948332
0.000938505
0.00092845
0.000920995
0.000917578
0.000918838
0.000923014
0.000921907
0.000895624
0.00085447
0.000805502
0.000748453
0.000682975
0.000608638
0.000524947
0.000431431
0.00032795
0.00021579
0.000102381
2.095e-05
3.32946e-06
4.65274e-06
3.3815e-05
0.000132673
0.000251465
0.000367467
0.000474847
0.000571878
0.000658154
0.000733774
0.000799046
0.000854354
0.0009001
0.000936674
0.000948447
0.000943145
0.000933429
0.00092473
0.000919105
0.000917621
0.00092078
0.000926737
0.000927101
0.000901561
0.000860419
0.000811308
0.000753962
0.000688039
0.000613119
0.000528721
0.000434395
0.000330038
0.000217003
0.000102867
2.10472e-05
3.30316e-06
4.68921e-06
3.3919e-05
0.000133067
0.000252379
0.000368939
0.00047683
0.000574294
0.000660915
0.000736794
0.000802244
0.000857657
0.000903445
0.000940006
0.000946905
0.000939587
0.000929815
0.00092205
0.000917709
0.000917575
0.000922102
0.000929495
0.000931395
0.000907339
0.000866258
0.000817048
0.000759438
0.000693086
0.000617581
0.000532458
0.000437296
0.000332035
0.000218113
0.00010327
2.11138e-05
3.2762e-06
4.7156e-06
3.39494e-05
0.000133273
0.00025302
0.000370087
0.000478465
0.000576357
0.000663332
0.000739488
0.000805143
0.000860697
0.000906573
0.000943182
0.00094695
0.00093824
0.000928242
0.000920841
0.000917139
0.000917778
0.00092321
0.000931745
0.000935164
0.000912965
0.000871992
0.000822735
0.000764909
0.000698168
0.000622103
0.000536263
0.000440253
0.000334065
0.000219228
0.000103658
2.11689e-05
3.24857e-06
4.73637e-06
3.39801e-05
0.000133473
0.000253599
0.000371114
0.000479931
0.000578218
0.000665529
0.00074196
0.000807831
0.00086355
0.000909549
0.000946248
0.000948849
0.000938958
0.000928309
0.00092079
0.000917313
0.00091837
0.000924392
0.000933821
0.000938635
0.0009184
0.000877571
0.000828311
0.000770318
0.000703237
0.000626651
0.000540118
0.000443267
0.000336139
0.000220361
0.000104039
2.1215e-05
3.22018e-06
4.75751e-06
3.40469e-05
0.000133785
0.000254317
0.000372269
0.000481498
0.000580145
0.000667755
0.000744426
0.000810486
0.000866354
0.000912471
0.000949263
0.000951948
0.000941085
0.000929576
0.000921653
0.000918141
0.000919399
0.000925833
0.000935988
0.000942029
0.000923611
0.000882947
0.000833721
0.000775611
0.000708242
0.00063119
0.000544011
0.000446352
0.000338298
0.000221571
0.00010447
2.12721e-05
3.1914e-06
4.7852e-06
3.4137e-05
0.000134154
0.000255114
0.000373525
0.00048318
0.00058219
0.000670091
0.000746986
0.000813214
0.000869205
0.000915413
0.000952276
0.00095506
0.000943603
0.000931362
0.000922957
0.000919295
0.000920673
0.000927464
0.000938272
0.000945397
0.000928547
0.000888055
0.000838886
0.000780696
0.000713089
0.000635627
0.000547858
0.000449442
0.000340502
0.000222845
0.000104956
2.13462e-05
3.16232e-06
4.82275e-06
3.42557e-05
0.000134571
0.000255952
0.00037482
0.000484911
0.000584299
0.000672506
0.000749631
0.000816021
0.00087212
0.000918396
0.000955299
0.000957283
0.000945472
0.000932894
0.000924197
0.000920401
0.000921856
0.000928949
0.000940344
0.000948474
0.000933167
0.000892843
0.000843742
0.000785496
0.000717689
0.000639864
0.000551562
0.000452445
0.000342669
0.000224123
0.000105467
2.1432e-05
3.13262e-06
4.86894e-06
3.43691e-05
0.000134936
0.000256697
0.000376
0.000486525
0.000586306
0.000674843
0.000752224
0.000818799
0.000875017
0.000921357
0.000957889
0.000958459
0.000946474
0.000933901
0.000925139
0.000921285
0.000922791
0.00093011
0.000941994
0.000951079
0.000937465
0.000897298
0.000848265
0.000789976
0.000721995
0.000643844
0.000555056
0.000455293
0.00034474
0.000225361
0.00010598
2.1523e-05
3.10152e-06
4.91717e-06
3.4455e-05
0.000135188
0.000257237
0.000376903
0.00048782
0.000587985
0.000676866
0.000754536
0.000821331
0.000877702
0.000924127
0.000958786
0.000959059
0.000947231
0.000934747
0.000925948
0.000922036
0.000923547
0.000930992
0.000943243
0.000953228
0.000941464
0.000901444
0.000852476
0.000794152
0.000726014
0.000647568
0.000558333
0.000457976
0.000346703
0.000226549
0.000106489
2.1616e-05
3.06886e-06
4.95719e-06
3.44955e-05
0.000135287
0.000257504
0.000377425
0.000488654
0.000589157
0.000678372
0.000756348
0.000823407
0.000879989
0.000926569
0.000960536
0.000960515
0.000948629
0.000936119
0.000927248
0.000923247
0.00092472
0.000932243
0.000944806
0.000955558
0.000945206
0.000905322
0.000856419
0.00079807
0.000729797
0.000651087
0.000561448
0.000460546
0.000348609
0.000227736
0.000107028
2.17183e-05
3.03522e-06
4.9825e-06
3.44846e-05
0.000135232
0.000257494
0.000377552
0.000488996
0.000589767
0.000679281
0.000757561
0.000824913
0.000881762
0.00092858
0.000963881
0.000963771
0.000951468
0.000938617
0.000929534
0.00092543
0.000926913
0.0009346
0.000947519
0.000958766
0.000948697
0.000908927
0.000860086
0.000801723
0.000733336
0.000654397
0.000564397
0.000463001
0.000350456
0.000228915
0.000107586
2.18239e-05
3.0011e-06
4.99536e-06
3.44246e-05
0.000135038
0.000257238
0.000377331
0.0004889
0.000589871
0.000679638
0.000758205
0.000825858
0.000883011
0.000930127
0.000967673
0.0009686
0.000955737
0.000942228
0.000932763
0.000928575
0.000930232
0.000938304
0.000951694
0.000963083
0.000951931
0.00091225
0.000863463
0.000805095
0.000736622
0.000657492
0.000567182
0.000465351
0.00035226
0.000230105
0.00010818
2.19396e-05
2.96809e-06
5.00586e-06
3.43535e-05
0.000134803
0.000256865
0.000376905
0.000488516
0.000589614
0.000679575
0.000758385
0.000826314
0.000883759
0.000931175
0.00096902
0.000973495
0.000960934
0.000946694
0.000936635
0.000932332
0.00093435
0.000943097
0.000957105
0.000968286
0.000954869
0.000915244
0.000866498
0.00080813
0.000739593
0.000660311
0.000569745
0.000467543
0.000353975
0.00023127
0.000108788
2.20642e-05
2.93661e-06
5.02223e-06
3.43192e-05
0.00013465
0.000256546
0.000376463
0.000488033
0.000589178
0.000679262
0.000758257
0.000826415
0.000884121
0.000931817
0.000969959
0.000977348
0.000965469
0.000950984
0.000940634
0.000936412
0.000938993
0.000948655
0.000963425
0.000974148
0.000957476
0.000917874
0.000869151
0.000810782
0.000742195
0.000662794
0.000572017
0.000469505
0.00035553
0.000232348
0.000109369
2.2187e-05
2.90654e-06
5.04754e-06
3.4317e-05
0.000134567
0.000256284
0.00037603
0.000487494
0.000588616
0.00067876
0.000757883
0.000826221
0.000884147
0.000932089
0.000970495
0.000979346
0.000968264
0.000954134
0.000944069
0.000940364
0.000943839
0.000954666
0.000970333
0.000980435
0.000959731
0.000920121
0.0008714
0.000813024
0.000744399
0.000664904
0.00057396
0.000471192
0.000356873
0.000233278
0.000109871
2.22923e-05
2.8775e-06
5.08175e-06
3.43283e-05
0.000134517
0.000256051
0.000375588
0.000486892
0.000587929
0.000678069
0.000757261
0.000825728
0.000883825
0.000931967
0.000970588
0.000978759
0.000968406
0.000955311
0.000946249
0.000943598
0.000948331
0.000960564
0.000977243
0.000986662
0.000961615
0.000921971
0.000873233
0.00081484
0.000746179
0.000666607
0.000575529
0.000472555
0.000357955
0.000234022
0.000110267
2.23711e-05
2.84864e-06
5.12225e-06
3.4319e-05
0.000134414
0.000255758
0.000375066
0.000486169
0.000587069
0.000677147
0.000756349
0.000824887
0.000883099
0.000931387
0.000970168
0.00097536
0.000965539
0.000954089
0.000946722
0.000945636
0.000951936
0.000965736
0.000983513
0.000992335
0.000963132
0.000923444
0.000874677
0.000816259
0.000747562
0.000667928
0.000576744
0.000473609
0.000358791
0.000234597
0.00011058
2.24351e-05
2.82027e-06
5.16412e-06
3.42643e-05
0.000134198
0.000255333
0.000374393
0.00048526
0.000585972
0.000675927
0.000755071
0.000823607
0.000881859
0.000930209
0.000966167
0.000969297
0.000960582
0.000951109
0.000945657
0.000946292
0.000954261
0.000969707
0.000988476
0.000995403
0.000964263
0.000924545
0.00087575
0.000817303
0.000748568
0.000668877
0.000577603
0.00047434
0.000359352
0.000234963
0.000110768
2.24708e-05
2.79213e-06
5.20232e-06
3.41811e-05
0.000133901
0.000254816
0.000373617
0.00048422
0.000584699
0.000674471
0.000753489
0.000821949
0.000880163
0.000928495
0.000959435
0.000961995
0.000954679
0.00094706
0.000943349
0.000945596
0.000955195
0.000972152
0.000991401
0.000996054
0.000964952
0.000925246
0.000876447
0.000817983
0.000749216
0.000669471
0.00057812
0.000474748
0.000359626
0.0002351
0.000110815
2.24712e-05
2.76339e-06
5.23366e-06
3.41205e-05
0.000133634
0.000254328
0.00037286
0.000483179
0.000583392
0.000672936
0.000751777
0.000820108
0.000878232
0.000926501
0.000953796
0.000955639
0.000949088
0.000942716
0.000940293
0.00094379
0.000954623
0.00097267
0.000992403
0.000996198
0.00096519
0.000925544
0.000876778
0.000818324
0.000749544
0.000669765
0.000578355
0.000474903
0.000359685
0.000235075
0.000110766
2.24478e-05
2.73295e-06
5.25644e-06
3.41042e-05
0.000133442
0.000253902
0.000372148
0.000482163
0.000582088
0.000671384
0.000750024
0.000818206
0.000876226
0.000924427
0.000950618
0.000951906
0.000945348
0.000939326
0.000937441
0.000941568
0.000953077
0.000971761
0.000991937
0.000995769
0.00096491
0.000925382
0.0008767
0.0008183
0.000749544
0.000669762
0.000578323
0.000474823
0.00035955
0.000234903
0.000110627
2.23992e-05
2.70025e-06
5.27221e-06
3.41688e-05
0.00013341
0.000253613
0.000371524
0.000481187
0.000580788
0.000669814
0.000748247
0.000816288
0.000874227
0.000922403
0.000950485
0.000951666
0.000944456
0.00093792
0.000935817
0.000939976
0.000951685
0.000970646
0.000991032
0.000994732
0.000964046
0.000924676
0.000876131
0.000817839
0.000749161
0.000669425
0.000578002
0.000474494
0.000359207
0.000234571
0.000110382
2.23144e-05
2.66416e-06
5.28604e-06
3.43097e-05
0.000133563
0.000253517
0.000371052
0.000480312
0.00057954
0.000668257
0.000746465
0.000814365
0.000872247
0.000920441
0.000952302
0.000953969
0.000945972
0.000938539
0.000935841
0.00093977
0.000951551
0.000970707
0.000990934
0.00099315
0.000962607
0.000923399
0.000875023
0.000816897
0.000748369
0.000668761
0.00057744
0.00047401
0.000358787
0.000234224
0.000110154
2.22333e-05
2.62759e-06
5.30227e-06
3.44595e-05
0.000133776
0.000253534
0.000370726
0.000479583
0.000578417
0.000666794
0.000744742
0.000812476
0.000870287
0.000918499
0.00095367
0.000956233
0.000947939
0.000939917
0.00093678
0.000940582
0.000952532
0.000971892
0.00099161
0.000991179
0.000960691
0.000921591
0.000873363
0.000815411
0.000747074
0.000667657
0.000576518
0.000473254
0.000358182
0.000233767
0.000109869
2.21369e-05
2.59335e-06
5.32072e-06
3.46184e-05
0.000134052
0.000253702
0.00037062
0.000479109
0.000577546
0.000665551
0.00074319
0.000810701
0.000868384
0.000916562
0.000953557
0.000956985
0.000948947
0.000940936
0.000937815
0.00094178
0.00095404
0.000973582
0.000992566
0.000989048
0.000958523
0.000919451
0.000871314
0.000813509
0.000745363
0.00066617
0.000575272
0.000472251
0.000357412
0.000233217
0.000109544
2.2035e-05
2.56312e-06
5.34064e-06
3.47699e-05
0.000134345
0.000253945
0.00037066
0.00047884
0.000576912
0.000664545
0.000741849
0.000809091
0.00086659
0.000914673
0.000952163
0.000956212
0.000948757
0.000941251
0.000938592
0.000943017
0.000955697
0.000975356
0.000993467
0.000986924
0.000956283
0.000917157
0.000869036
0.000811318
0.000743328
0.00066435
0.000573711
0.000470976
0.00035643
0.000232523
0.000109143
2.19194e-05
2.53773e-06
5.36513e-06
3.48701e-05
0.000134534
0.000254092
0.000370652
0.000478584
0.000576347
0.000663646
0.000740626
0.000807587
0.000864871
0.000912817
0.000949491
0.000953894
0.000947317
0.000940812
0.000939106
0.000944367
0.000957671
0.00097746
0.000994585
0.000985001
0.000954177
0.000914919
0.000866732
0.000809026
0.000741131
0.000662329
0.000571938
0.000469505
0.000355294
0.000231731
0.000108697
2.17956e-05
2.51668e-06
5.39425e-06
3.48922e-05
0.000134551
0.000254033
0.00037045
0.000478178
0.000575685
0.000662695
0.00073938
0.000806065
0.000863116
0.000910888
0.000945366
0.00094977
0.000944295
0.00093925
0.000938987
0.000945486
0.000959643
0.000979593
0.000995699
0.000983387
0.000952348
0.000912906
0.000864589
0.000806828
0.00073897
0.000660306
0.000570151
0.000468035
0.000354194
0.000231015
0.000108338
2.17121e-05
2.50155e-06
5.4277e-06
3.48558e-05
0.000134411
0.000253746
0.000369995
0.000477536
0.000574828
0.000661597
0.000738025
0.000804456
0.000861275
0.000908856
0.000940411
0.00094454
0.000940203
0.000936843
0.00093834
0.000946395
0.00096162
0.000981786
0.000996852
0.000982093
0.000950834
0.000911172
0.000862664
0.000804769
0.000736859
0.000658247
0.000568256
0.000466413
0.000352933
0.000230162
0.000107887
2.16001e-05
2.48818e-06
5.46651e-06
3.47298e-05
0.000134033
0.000253087
0.00036909
0.000476427
0.000573539
0.000660129
0.000736369
0.000802604
0.000859228
0.000906629
0.000934847
0.000938541
0.000935335
0.000933777
0.00093728
0.000947252
0.000963976
0.000984723
0.000998801
0.000981056
0.000949608
0.00090974
0.000861033
0.000802979
0.000734981
0.000656378
0.000566518
0.000464933
0.000351823
0.000229481
0.000107596
2.15436e-05
2.47418e-06
5.51183e-06
3.45298e-05
0.000133428
0.000252051
0.000367688
0.000474762
0.00057169
0.000658143
0.000734263
0.000800378
0.000856877
0.000904149
0.000929149
0.000932377
0.000930167
0.000930259
0.000935668
0.000947554
0.000965877
0.000987372
0.00100064
0.000979992
0.000948402
0.000908355
0.000859454
0.000801218
0.000733083
0.000654421
0.00056461
0.000463205
0.000350407
0.000228484
0.000107062
2.14081e-05
2.45298e-06
5.5646e-06
3.43729e-05
0.000132878
0.000250971
0.000366106
0.000472798
0.000569471
0.000655768
0.000731792
0.00079784
0.000854279
0.000901492
0.000924274
0.000927256
0.000925848
0.000927257
0.000934263
0.000947879
0.000967799
0.000990188
0.00100231
0.000978802
0.000947117
0.000906932
0.000857863
0.000799449
0.000731155
0.00065239
0.000562568
0.000461279
0.000348745
0.000227235
0.000106334
2.12006e-05
2.42304e-06
5.62326e-06
3.42569e-05
0.000132408
0.000249932
0.000364466
0.000470661
0.000566988
0.000653075
0.000728995
0.000795005
0.000851439
0.000898656
0.000919862
0.000922865
0.000922225
0.000924731
0.000933086
0.00094834
0.000969908
0.000992604
0.00100084
0.000977359
0.000945647
0.000905388
0.000856201
0.000797641
0.000729197
0.000650312
0.000560445
0.000459227
0.000346923
0.000225819
0.000105485
2.09528e-05
2.38633e-06
5.68675e-06
3.4313e-05
0.00013235
0.000249415
0.000363319
0.000468903
0.000564736
0.00065048
0.000726198
0.000792119
0.000848542
0.000895795
0.000916086
0.000919404
0.00091957
0.000923027
0.000932425
0.000948822
0.000971366
0.000993934
0.000999184
0.000975753
0.000944066
0.000903793
0.000854549
0.000795889
0.000727318
0.000648301
0.000558334
0.000457099
0.000344915
0.000224132
0.000104377
2.06136e-05
2.34423e-06
5.74761e-06
3.45594e-05
0.000132819
0.000249669
0.000363033
0.000467961
0.00056317
0.000648404
0.000723758
0.000789457
0.000845781
0.000893026
0.000912642
0.000916511
0.00091767
0.000922141
0.000932451
0.000949639
0.000972677
0.000994822
0.00099754
0.000974163
0.000942523
0.000902277
0.000853031
0.000794334
0.00072569
0.000646578
0.000556514
0.000455221
0.000343074
0.000222504
0.000103247
2.02558e-05
2.30467e-06
5.79705e-06
3.49533e-05
0.000133732
0.000250694
0.000363745
0.000468098
0.000562635
0.000647224
0.000722033
0.000787325
0.000843383
0.000890493
0.000909028
0.000913462
0.000915854
0.000921587
0.000932915
0.00095078
0.000974006
0.000995471
0.000996008
0.000972681
0.000941096
0.000900903
0.000851698
0.000793023
0.000724378
0.00064524
0.000555136
0.000453808
0.00034167
0.000221221
0.000102314
1.99528e-05
2.27361e-06
5.82579e-06
3.54429e-05
0.00013497
0.000252365
0.000365392
0.000469347
0.000563263
0.000647148
0.000721279
0.000785988
0.000841598
0.000888408
0.000905595
0.000910505
0.000914195
0.000921303
0.000933747
0.000952282
0.000975496
0.000996006
0.000994551
0.000971259
0.000939721
0.000899581
0.000850433
0.000791812
0.000723212
0.000644108
0.000554026
0.000452714
0.000340607
0.000220246
0.000101585
1.9716e-05
2.25217e-06
5.82629e-06
3.58939e-05
0.000136198
0.00025423
0.000367516
0.000471323
0.000564783
0.00064803
0.000721459
0.000785495
0.000840526
0.0008869
0.000903177
0.000908354
0.000913017
0.000921383
0.000935043
0.00095438
0.000977545
0.000996808
0.000993068
0.000969784
0.000938268
0.000898167
0.00084907
0.000790511
0.00072198
0.000642948
0.000552939
0.000451701
0.000339676
0.000219428
0.000100985
1.95265e-05
2.23352e-06
5.79839e-06
3.6207e-05
0.000137137
0.000255852
0.000369596
0.000473508
0.00056674
0.000649517
0.00072234
0.000785731
0.00084016
0.000886025
0.000903091
0.000908079
0.000913052
0.000922369
0.00093725
0.000957543
0.00098074
0.000998463
0.000991414
0.00096809
0.000936559
0.000896464
0.000847393
0.000788879
0.000720411
0.000641462
0.000551556
0.000450444
0.000338576
0.000218531
0.000100381
1.9346e-05
2.21084e-06
5.74951e-06
3.63733e-05
0.000137731
0.000257043
0.000371318
0.000475511
0.000568729
0.000651237
0.000723611
0.000786465
0.000840347
0.000885728
0.000906009
0.000910855
0.000915309
0.00092489
0.000940723
0.000962002
0.000985322
0.00100125
0.000989515
0.000966101
0.000934516
0.000894398
0.000845329
0.00078684
0.000718421
0.000639548
0.000549752
0.000448795
0.00033714
0.000217388
9.96514e-05
1.91351e-05
2.17872e-06
5.6909e-06
3.64329e-05
0.00013806
0.000257838
0.000372626
0.000477184
0.000570535
0.000652944
0.000725034
0.000787485
0.000840926
0.000885902
0.000911659
0.000916791
0.000920202
0.000929318
0.000945653
0.000967844
0.000991046
0.00100304
0.000987287
0.000963735
0.000932062
0.000891893
0.000842805
0.000784325
0.000715941
0.000637135
0.000547448
0.000446662
0.000335265
0.000215896
9.87176e-05
1.8871e-05
2.13797e-06
5.63374e-06
3.64667e-05
0.000138311
0.000258457
0.000373704
0.000478642
0.000572202
0.000654624
0.000726553
0.000788722
0.000841823
0.00088647
0.000919149
0.000925145
0.000927527
0.000936016
0.000952682
0.000975246
0.000996479
0.00100056
0.000984576
0.000960866
0.000929093
0.000888871
0.000839768
0.000781305
0.000712968
0.000634242
0.000544681
0.000444087
0.000332983
0.000214065
9.75682e-05
1.85467e-05
2.089e-06
5.58491e-06
3.65322e-05
0.00013862
0.000259077
0.000374725
0.000480022
0.000573813
0.000656302
0.000728145
0.000790107
0.00084293
0.000887285
0.000923747
0.000934688
0.000936701
0.000944258
0.000960696
0.000982987
0.00100171
0.000997676
0.000981387
0.000957463
0.000925553
0.00088526
0.000836139
0.000777702
0.000709434
0.000630819
0.000541423
0.00044107
0.000330323
0.000211941
9.62472e-05
1.81799e-05
2.03583e-06
5.54585e-06
3.66463e-05
0.000139025
0.00025976
0.000375756
0.000481376
0.000575384
0.000657948
0.000729723
0.000791495
0.000844044
0.000888078
0.000924217
0.000943311
0.000946962
0.000953778
0.000969404
0.000990373
0.00100384
0.000994377
0.000977706
0.000953509
0.000921423
0.000881037
0.000831894
0.0007735
0.00070533
0.000626871
0.000537694
0.000437645
0.000327326
0.000209561
9.47753e-05
1.77755e-05
1.97881e-06
5.51221e-06
3.67441e-05
0.000139366
0.000260302
0.000376576
0.000482469
0.000576672
0.000659312
0.000731035
0.000792642
0.000844938
0.000888667
0.000924488
0.000950348
0.000956509
0.000963662
0.000978378
0.000996007
0.0010005
0.000990507
0.000973413
0.000948903
0.000916609
0.000876112
0.000826948
0.000768614
0.000700582
0.000622336
0.000533456
0.000433805
0.000324021
0.000206988
9.32209e-05
1.73603e-05
1.92192e-06
5.47603e-06
3.67342e-05
0.000139402
0.000260382
0.00037682
0.000482916
0.000577282
0.000659999
0.000731692
0.000793166
0.000845245
0.000888697
0.000924208
0.000952363
0.000964367
0.000972504
0.000986074
0.00100016
0.000996615
0.000986045
0.000968493
0.00094364
0.000911118
0.000870504
0.000821331
0.00076309
0.000695249
0.000617291
0.000528797
0.000429643
0.000320495
0.000204288
9.16134e-05
1.69371e-05
1.86441e-06
5.42954e-06
3.65462e-05
0.00013895
0.000259725
0.000376154
0.000482346
0.000576818
0.000659591
0.000731262
0.000792628
0.000844519
0.00088772
0.00092293
0.000950755
0.000970364
0.000980826
0.000992102
0.000996459
0.000991957
0.000980825
0.000962814
0.000937614
0.000904862
0.000864139
0.000814978
0.000756872
0.000689288
0.00061171
0.000523722
0.000425207
0.000316844
0.000201594
9.00767e-05
1.6549e-05
1.81043e-06
5.369e-06
3.61373e-05
0.000137899
0.000258156
0.000374351
0.000480488
0.000574976
0.000657762
0.000729398
0.000790665
0.000842392
0.000885371
0.000920313
0.000947828
0.00096841
0.000982418
0.000990056
0.000991372
0.000986291
0.000974654
0.000956228
0.000930719
0.000897772
0.000856979
0.000807878
0.000749965
0.000682713
0.000605608
0.000518236
0.000420483
0.00031303
0.000198842
8.85396e-05
1.61632e-05
1.75605e-06
5.2955e-06
3.54877e-05
0.00013619
0.000255573
0.000371276
0.000477187
0.000571581
0.000654313
0.000725879
0.000787031
0.000838588
0.000881342
0.000916009
0.000943198
0.000963394
0.000976953
0.000984092
0.000984894
0.00097933
0.00096727
0.000948502
0.000922748
0.000889667
0.000848862
0.000799883
0.000742236
0.000675401
0.000598873
0.000512244
0.000415399
0.000309012
0.000196024
8.70084e-05
1.57862e-05
1.70386e-06
5.21447e-06
3.46188e-05
0.000133851
0.000251985
0.000366917
0.000472412
0.000566591
0.000649192
0.000720641
0.000781648
0.000833019
0.00087554
0.000909927
0.000936792
0.000956625
0.000969785
0.000976503
0.000976886
0.00097093
0.000958532
0.000939505
0.000913587
0.000880454
0.000839721
0.000790951
0.00073366
0.000667339
0.000591491
0.000505711
0.000409884
0.000304672
0.000192986
8.53536e-05
1.5373e-05
1.64778e-06
5.13315e-06
3.35858e-05
0.000130997
0.000247519
0.000361401
0.00046629
0.000560138
0.000642543
0.000713841
0.000774689
0.000825864
0.000868145
0.000902248
0.00092879
0.000948267
0.000961052
0.000967389
0.000967403
0.000961113
0.000948436
0.000929205
0.00090318
0.000870052
0.000829451
0.000780955
0.000724094
0.000658373
0.000583304
0.000498493
0.000403823
0.000299942
0.00018972
8.36072e-05
1.49434e-05
1.59238e-06
5.05884e-06
3.24321e-05
0.000127718
0.000242289
0.000354855
0.000458968
0.000552392
0.000634565
0.000705708
0.000766407
0.000817404
0.00085946
0.00089329
0.000919517
0.000938652
0.00095108
0.000957063
0.000956747
0.000950165
0.000937258
0.000917876
0.000891797
0.000858728
0.000818317
0.000770154
0.000713788
0.000648735
0.000574521
0.000490759
0.00039733
0.000294865
0.000186195
8.17065e-05
1.44709e-05
1.53447e-06
4.99943e-06
3.12048e-05
0.000124119
0.000236427
0.000347428
0.000450608
0.000543533
0.000625458
0.000696467
0.000757058
0.000807918
0.000849787
0.000883375
0.000909311
0.000928122
0.000940211
0.00094586
0.000945234
0.000938388
0.00092528
0.00090578
0.000879679
0.000846703
0.000806512
0.000758716
0.000702877
0.00063853
0.000565217
0.000482562
0.00039045
0.000289499
0.000182493
7.97354e-05
1.39939e-05
1.48223e-06
4.96347e-06
2.99219e-05
0.000120231
0.000229963
0.00033914
0.000441227
0.000533586
0.000615267
0.000686193
0.000746751
0.000797558
0.00083932
0.000872736
0.000898442
0.000916977
0.000928767
0.000934119
0.00093322
0.000926148
0.000912881
0.000893307
0.000867234
0.000834401
0.000794483
0.0007471
0.00069183
0.00062822
0.000555824
0.000474277
0.000383468
0.000284003
0.00017864
7.76416e-05
1.34837e-05
1.43024e-06
4.96145e-06
2.86599e-05
0.000116218
0.000223071
0.000330136
0.000430928
0.000522616
0.000604032
0.000674915
0.000735518
0.000786372
0.000828133
0.000861478
0.000887042
0.000905379
0.000916934
0.000922039
0.000920909
0.000913647
0.000900255
0.000880641
0.00085463
0.000821974
0.000782363
0.000735427
0.000680754
0.000617902
0.000546437
0.000466003
0.000376494
0.000278514
0.000174796
7.55642e-05
1.29927e-05
1.3862e-06
5.00217e-06
2.74084e-05
0.000112042
0.000215703
0.000320357
0.000419641
0.000510541
0.000591659
0.000662532
0.00072326
0.000774272
0.000816157
0.000849561
0.000875111
0.000893365
0.000904789
0.00090974
0.000908461
0.000901082
0.000887634
0.000868046
0.000842166
0.000809759
0.000770527
0.000724109
0.000670097
0.000608053
0.000537541
0.000458205
0.000369934
0.000273324
0.000171106
7.35243e-05
1.25057e-05
1.34255e-06
5.09094e-06
2.61608e-05
0.00010765
0.000207738
0.000309647
0.000407197
0.00049719
0.000577974
0.000648864
0.00070979
0.000761061
0.000803193
0.000836788
0.000862457
0.000880759
0.000892173
0.000897079
0.000895747
0.000888338
0.000874908
0.000855415
0.000829728
0.000797633
0.000758843
0.000713006
0.000659718
0.000598541
0.000529037
0.000450839
0.000363827
0.000268576
0.000167798
7.1737e-05
1.20965e-05
1.3083e-06
5.23029e-06
2.48862e-05
0.00010292
0.000198902
0.000297615
0.000393163
0.000482133
0.000562567
0.000633516
0.000694718
0.000746351
0.000788848
0.000822766
0.000848692
0.000867187
0.000878738
0.000883743
0.000882498
0.000875191
0.000861906
0.00084263
0.000817254
0.000785587
0.000747356
0.000702217
0.000649769
0.000589567
0.000521156
0.000444148
0.000358388
0.000264416
0.000164918
7.01644e-05
1.17308e-05
1.27188e-06
5.41896e-06
2.35843e-05
9.77798e-05
0.000188887
0.000283702
0.000374379
0.000461652
0.000543093
0.000616073
0.000677618
0.000729698
0.000772652
0.000806988
0.000833277
0.000852074
0.000863879
0.000869107
0.000868075
0.000860994
0.000847975
0.000829029
0.000804072
0.000772931
0.000735354
0.000691012
0.000639508
0.000580398
0.000513217
0.000437548
0.000353196
0.000260637
0.000162477
6.89298e-05
1.14636e-05
1.24045e-06
5.64242e-06
2.23596e-05
9.22838e-05
0.000175654
0.000256484
0.000341655
0.000429372
0.000514383
0.000591888
0.000658578
0.00071099
0.000754348
0.000789108
0.000815794
0.000834953
0.000847092
0.000852641
0.000851937
0.000845213
0.000832602
0.000814134
0.000789745
0.000759282
0.000722506
0.000679097
0.000628668
0.000570768
0.000504923
0.000430692
0.000347836
0.000256767
0.000159998
6.76784e-05
1.11757e-05
1.19764e-06
5.8753e-06
2.14884e-05
8.72233e-05
0.000158217
0.000230809
0.000312659
0.000401715
0.000491087
0.00057273
0.000638497
0.000690925
0.000734459
0.000769442
0.000796369
0.000815779
0.000828182
0.000834022
0.00083365
0.000827317
0.000815169
0.000797254
0.000773522
0.000743833
0.000707961
0.000665599
0.000616364
0.000559812
0.000495459
0.000422847
0.000341697
0.000252357
0.000157244
6.6378e-05
1.08987e-05
1.15519e-06
6.08271e-06
2.15346e-05
8.52279e-05
0.000147676
0.000213404
0.000291746
0.000381296
0.00047397
0.000558017
0.000619304
0.000671233
0.000714438
0.000749203
0.000775995
0.000795347
0.000807774
0.000813727
0.000813569
0.00080756
0.000795855
0.000778511
0.000755487
0.00072665
0.000691782
0.000650581
0.00060267
0.000547602
0.000484887
0.000414048
0.000334767
0.000247326
0.000154039
6.48031e-05
1.05269e-05
1.0957e-06
6.2156e-06
2.26698e-05
8.69607e-05
0.000145434
0.000206112
0.000280455
0.000368123
0.00046053
0.000544328
0.000603593
0.00065412
0.00069619
0.000730032
0.000756086
0.000774871
0.000786897
0.000792615
0.000792387
0.000786474
0.000775034
0.000758124
0.000735703
0.000707643
0.000673727
0.000633661
0.00058707
0.000533516
0.000472509
0.000403567
0.000326355
0.000241102
0.000150026
6.2849e-05
1.00793e-05
1.03461e-06
6.23491e-06
2.39924e-05
8.98807e-05
0.000147589
0.000205364
0.000276168
0.000360561
0.000450272
0.000532099
0.000591844
0.000640246
0.000680502
0.000712808
0.000737583
0.000755331
0.000766556
0.000771702
0.000771129
0.000765092
0.000753744
0.000737135
0.000715221
0.000687869
0.00065486
0.000615894
0.0005706
0.000518533
0.000459202
0.000392114
0.000316915
0.000233813
0.000145
6.01992e-05
9.45267e-06
9.5939e-07
6.15067e-06
2.45259e-05
9.10676e-05
0.000148811
0.000205591
0.000274487
0.000356354
0.00044326
0.00052269
0.000582246
0.000628373
0.000666571
0.000697061
0.000720271
0.000736707
0.000746873
0.00075121
0.000750073
0.000743712
0.000732275
0.000715805
0.000694253
0.000667478
0.000635257
0.000597292
0.000553208
0.000502567
0.000444882
0.000379663
0.000306559
0.000225767
0.00013946
5.7319e-05
8.80587e-06
8.91328e-07
6.025e-06
2.40185e-05
8.94646e-05
0.000145885
0.000202596
0.000271389
0.000352687
0.000438545
0.000516259
0.000571869
0.000616152
0.000652563
0.000681402
0.000703145
0.000718327
0.000727463
0.000731003
0.000729303
0.000722613
0.000711078
0.000694737
0.000673536
0.000647329
0.000615889
0.000578911
0.000536016
0.000486762
0.00043066
0.000367222
0.000296096
0.000217489
0.000133606
5.41935e-05
8.10125e-06
8.16428e-07
5.91828e-06
2.2997e-05
8.6188e-05
0.00013944
0.000195804
0.000265466
0.000347974
0.000434035
0.000508151
0.000559091
0.000602047
0.000637092
0.000664612
0.000685147
0.000699277
0.000707544
0.00071041
0.000708238
0.000701281
0.000689684
0.000673485
0.000652629
0.00062697
0.00059628
0.000560255
0.000518519
0.000470636
0.000416127
0.000354516
0.000285467
0.0002092
0.000127912
5.12845e-05
7.48594e-06
7.55294e-07
5.8486e-06
2.20305e-05
8.27681e-05
0.000131781
0.000187021
0.000257284
0.000341246
0.00042721
0.000494229
0.000544075
0.000585924
0.000619876
0.000646361
0.00066596
0.000679289
0.000686915
0.000689318
0.000686869
0.000679821
0.00066832
0.000652405
0.000632018
0.000607013
0.000577162
0.000542158
0.000501626
0.00045513
0.00040219
0.000342335
0.000275238
0.000201139
0.00012227
4.83552e-05
6.86961e-06
6.91656e-07
5.79732e-06
2.11444e-05
7.87294e-05
0.000124249
0.000177876
0.000247483
0.000331502
0.000416835
0.000479297
0.000527887
0.000568564
0.000601435
0.000626948
0.000645711
0.000658355
0.000665463
0.000667521
0.000664903
0.000657862
0.000646541
0.000630975
0.000611105
0.000586785
0.000557789
0.000523817
0.000484498
0.000439407
0.000388076
0.000330048
0.000265016
0.000193231
0.000116921
4.57183e-05
6.35684e-06
6.42974e-07
5.76917e-06
2.00223e-05
7.30475e-05
0.000115948
0.000167439
0.000235245
0.000318185
0.000402869
0.000463515
0.000510816
0.000550311
0.000582121
0.000606719
0.000624732
0.000636809
0.000643539
0.00064541
0.000642787
0.000635919
0.000624939
0.000609877
0.000590671
0.000567171
0.00053915
0.000506309
0.00046828
0.00042464
0.000374924
0.000318679
0.000255603
0.000185954
0.000111967
4.32608e-05
5.87629e-06
5.9348e-07
5.79066e-06
1.87005e-05
6.6734e-05
0.000106494
0.000155413
0.000221099
0.000302979
0.000387523
0.000446585
0.000492717
0.000531109
0.000561916
0.000585647
0.000602963
0.000614531
0.00062095
0.000622707
0.000620164
0.000613556
0.000603008
0.000588539
0.000570078
0.000547472
0.000520493
0.000488846
0.000452171
0.000410053
0.000362041
0.00030769
0.0002467
0.00017931
0.000107692
4.12934e-05
5.52617e-06
5.59375e-07
5.87653e-06
1.74402e-05
6.05263e-05
9.65146e-05
0.000142096
0.000205141
0.000286113
0.000371209
0.000428085
0.000473306
0.000510805
0.000540774
0.000563773
0.000580505
0.00059167
0.00059788
0.000599627
0.000597268
0.000591031
0.00058103
0.000567273
0.00054968
0.000528092
0.000502273
0.000471923
0.00043668
0.000396125
0.000349806
0.000297276
0.000238229
0.000172895
0.000103428
3.92366e-05
5.14157e-06
5.18365e-07
6.01672e-06
1.65765e-05
5.55169e-05
8.73967e-05
0.0001288
0.000188363
0.000268176
0.000354249
0.000408372
0.000452845
0.000489585
0.000518814
0.000541149
0.000557346
0.000568141
0.000574168
0.000575926
0.000573767
0.000567914
0.000558468
0.000545433
0.00052872
0.000508167
0.000483538
0.000454534
0.000420796
0.000381907
0.000337416
0.000286875
0.000229964
0.000166874
9.96656e-05
3.75586e-05
4.84843e-06
4.85696e-07
6.17901e-06
1.63019e-05
5.25506e-05
8.04083e-05
0.000116886
0.000171593
0.000248805
0.000335385
0.000387937
0.000431713
0.000467787
0.000496378
0.000518146
0.000533895
0.000544402
0.000550322
0.000552159
0.000550265
0.000544848
0.000536002
0.000523719
0.000507906
0.000488395
0.000464953
0.00043728
0.000405019
0.000367756
0.000325035
0.000276396
0.000221503
0.000160517
9.54697e-05
3.5556e-05
4.47682e-06
4.41901e-07
6.30442e-06
1.65924e-05
5.19188e-05
7.63817e-05
0.000107733
0.000156308
0.000228708
0.000314262
0.00036789
0.000410733
0.000446026
0.00047392
0.000495087
0.00051037
0.000520579
0.00052639
0.000528311
0.000526686
0.000521712
0.000513465
0.000501927
0.000486997
0.000468505
0.000446218
0.000419849
0.000389051
0.000353424
0.000312522
0.000265891
0.000213179
0.000154499
9.17663e-05
3.39592e-05
4.20859e-06
4.08407e-07
6.36258e-06
1.69569e-05
5.27049e-05
7.46581e-05
0.000101188
0.00014279
0.000207922
0.000290182
0.000348424
0.000390105
0.000424529
0.000451716
0.000472304
0.000487153
0.0004971
0.000502842
0.00050489
0.000503581
0.000499097
0.000491495
0.000480738
0.000466712
0.000449238
0.000428081
0.000402955
0.000373522
0.000339393
0.000300135
0.000255301
0.000204538
0.000147943
8.74075e-05
3.18924e-05
3.84085e-06
3.65344e-07
6.36144e-06
1.70126e-05
5.37354e-05
7.42631e-05
9.691e-05
0.00013175
0.000188288
0.000265263
0.000329635
0.000370016
0.000403495
0.000429939
0.000449926
0.000464316
0.000473972
0.000479612
0.00048176
0.000480752
0.000476756
0.000469813
0.000459869
0.000446789
0.000430384
0.00041041
0.000386581
0.000358563
0.000325981
0.000288418
0.000245446
0.000196719
0.000142308
8.39976e-05
3.04816e-05
3.62398e-06
3.37713e-07
6.34449e-06
1.65144e-05
5.38801e-05
7.40018e-05
9.40262e-05
0.000122971
0.000170674
0.00024094
0.00031052
0.000349719
0.000382439
0.000408339
0.000427895
0.000441948
0.000451381
0.000456942
0.000459178
0.00045844
0.000454892
0.000448568
0.000439398
0.000427237
0.000411877
0.000393064
0.000370501
0.00034385
0.000312732
0.000276731
0.000235416
0.000188442
0.000135888
7.95795e-05
2.83256e-05
3.24627e-06
2.94582e-07
6.33014e-06
1.56761e-05
5.29075e-05
7.35344e-05
9.24339e-05
0.000117023
0.000156801
0.000219471
0.000291776
0.000329672
0.000361674
0.000387153
0.000406413
0.000420234
0.000429504
0.000435003
0.000437308
0.000436792
0.000433631
0.000427855
0.000419395
0.000408096
0.000393741
0.000376068
0.000354774
0.00032952
0.000299933
0.000265606
0.000226123
0.000181139
0.0001307
7.65145e-05
2.71036e-05
3.06423e-06
2.69587e-07
6.3152e-06
1.45587e-05
5.07108e-05
7.23865e-05
9.14564e-05
0.000113216
0.000146164
0.000200395
0.000272503
0.000309595
0.000340834
0.000366046
0.000385241
0.000399056
0.00040834
0.00041389
0.000416317
0.000416023
0.000413201
0.000407894
0.000400038
0.000389479
0.000375995
0.000359315
0.000339124
0.000315072
0.000286773
0.000253816
0.000215783
0.000172346
0.000123605
7.14208e-05
2.45893e-05
2.64536e-06
2.23973e-07
6.24658e-06
1.33431e-05
4.75905e-05
7.06672e-05
9.10417e-05
0.000111566
0.000139267
0.000184402
0.000248692
0.000291037
0.000320943
0.000345651
0.000364769
0.000378669
0.000388087
0.000393795
0.000396425
0.000396405
0.000393949
0.00038911
0.000381838
0.000371988
0.000359346
0.000343645
0.000324577
0.000301796
0.00027492
0.000243542
0.000207249
0.000165708
0.000118981
6.87973e-05
2.36336e-05
2.52376e-06
2.06042e-07
6.10175e-06
1.186e-05
4.32897e-05
6.76214e-05
9.00622e-05
0.000110613
0.000134142
0.000169686
0.000223266
0.000273038
0.000301132
0.000325108
0.000344166
0.000358314
0.000368068
0.000374122
0.0003771
0.000377459
0.000375433
0.000371085
0.000364377
0.00035517
0.000343251
0.000328356
0.000310173
0.000288351
0.000262501
0.000232206
0.000197053
0.00015674
0.000111442
6.31901e-05
2.09075e-05
2.11046e-06
1.64486e-07
5.86199e-06
1.04553e-05
3.85181e-05
6.35173e-05
8.83229e-05
0.000109937
0.000130553
0.000157516
0.000199812
0.000256403
0.000282046
0.000304819
0.000323621
0.000338036
0.000348258
0.000354814
0.000358288
0.000359155
0.000357679
0.000353943
0.000347926
0.0003395
0.000328457
0.000314539
0.000297448
0.000276851
0.000252383
0.000223647
0.000190233
0.000151804
0.000108417
6.18423e-05
2.05973e-05
2.10065e-06
1.5989e-07
5.5728e-06
9.16595e-06
3.3828e-05
5.8307e-05
8.49114e-05
0.000108274
0.000127619
0.000148031
0.00017771
0.000221962
0.000262355
0.000283417
0.00030176
0.000316547
0.000327512
0.000334877
0.000339099
0.000340654
0.000339849
0.000336808
0.000331545
0.000323944
0.000313793
0.000300816
0.00028469
0.000265054
0.000241516
0.000213664
0.000181101
0.000143551
0.000101261
5.6432e-05
1.80646e-05
1.74854e-06
1.25084e-07
5.23757e-06
8.43176e-06
3.09516e-05
5.42907e-05
8.17173e-05
0.000106882
0.000126327
0.000142556
0.000162044
0.000192665
0.000236283
0.000263026
0.00028006
0.000294665
0.00030616
0.000314334
0.000319374
0.000321667
0.000321542
0.000319178
0.00031465
0.000307886
0.0002987
0.000286829
0.000271962
0.000253753
0.00023183
0.0002058
0.000175259
0.00013987
9.96574e-05
5.63255e-05
1.83117e-05
1.80978e-06
1.2841e-07
4.91031e-06
7.89857e-06
2.91963e-05
5.14783e-05
7.90559e-05
0.000106009
0.000126811
0.000141406
0.000153948
0.000171065
0.000199967
0.000240658
0.000258489
0.000272311
0.000284084
0.000293185
0.000299373
0.000302765
0.000303633
0.000302196
0.000298601
0.000292842
0.000284766
0.000274102
0.0002605
0.000243554
0.000222823
0.000197843
0.000168168
0.000133475
9.39783e-05
5.1912e-05
1.62794e-05
1.53063e-06
9.71801e-08
4.55555e-06
7.90725e-06
2.87299e-05
5.15859e-05
8.07291e-05
0.000110659
0.000133566
0.000147505
0.000155838
0.000163627
0.000176905
0.000201958
0.000238353
0.000252729
0.000263378
0.000272251
0.00027878
0.000282707
0.000284099
0.000283106
0.000279902
0.00027458
0.000267077
0.000257188
0.000244596
0.000228919
0.000209739
0.00018663
0.00015918
0.000127054
9.02649e-05
5.04383e-05
1.58999e-05
1.50252e-06
9.66004e-08
4.23678e-06
7.32007e-06
2.64049e-05
4.84703e-05
7.7945e-05
0.000111469
0.00014164
0.000161412
0.000169826
0.000171905
0.000173931
0.000181674
0.000200627
0.000230832
0.000244463
0.000252396
0.000258898
0.000263471
0.00026592
0.00026615
0.00026414
0.000259983
0.000253701
0.000245171
0.000234108
0.0002201
0.000202635
0.000181136
0.00015501
0.00012377
8.74588e-05
4.81918e-05
1.49056e-05
1.36414e-06
7.4249e-08
3.90035e-06
7.58465e-06
2.59294e-05
4.69823e-05
7.53885e-05
0.000108192
0.000139271
0.000163265
0.0001778
0.000183878
0.000185121
0.00018654
0.000193764
0.000211847
0.000236206
0.000242544
0.000247656
0.000251162
0.000252889
0.000252664
0.000250282
0.000245754
0.000239137
0.000230389
0.000219313
0.000205547
0.000188615
0.000167983
0.000143151
0.000113774
7.99729e-05
4.36123e-05
1.31301e-05
1.17e-06
6.23744e-08
3.65359e-06
7.21611e-06
2.48362e-05
4.19202e-05
6.50629e-05
9.38521e-05
0.000122488
0.000144971
0.000159139
0.000166396
0.000169731
0.000172132
0.000176932
0.00018869
0.000210311
0.000227457
0.000231705
0.000234279
0.000235185
0.000234381
0.000231549
0.000226607
0.000219661
0.00021087
0.00020033
0.000187989
0.00017359
0.000156617
0.000136241
0.000111323
8.07914e-05
4.55321e-05
1.4135e-05
1.24719e-06
5.45829e-08
3.33108e-06
8.76962e-06
3.10764e-05
4.75115e-05
6.62265e-05
8.97154e-05
0.00011188
0.000130326
0.000147375
0.000152953
0.00015433
0.000155697
0.000159062
0.000166564
0.000182076
0.00020859
0.00023262
0.000236392
0.00023911
0.000240989
0.000241554
0.000240242
0.00023649
0.000229735
0.000219401
0.000204911
0.000185766
0.000161702
0.000132913
0.000100271
6.55656e-05
3.24483e-05
8.94939e-06
7.42338e-07
2.43644e-08
3.07645e-06
1.01334e-05
3.57535e-05
4.7746e-05
5.75996e-05
7.18547e-05
8.39867e-05
9.68033e-05
0.000113785
0.000133247
0.000145096
0.000145089
0.000146945
0.000152153
0.00016062
0.000173939
0.000194667
0.000220609
0.000223043
0.000216073
0.000206027
0.000193439
0.000179024
0.000163653
0.000148254
0.000133671
0.000120508
0.000108939
9.82914e-05
8.60683e-05
6.6823e-05
3.66468e-05
9.36257e-06
6.23224e-07
1.84423e-08
2.68307e-06
1.52334e-05
4.75855e-05
5.17557e-05
5.21362e-05
5.79859e-05
7.20032e-05
7.88188e-05
9.06918e-05
0.000107521
0.000128319
0.00015172
0.000176274
0.000200694
0.000223959
0.000245405
0.000264688
0.000281631
0.00029601
0.000307443
0.000315358
0.000318857
0.000316719
0.000307464
0.000289483
0.000261303
0.000222114
0.000172903
0.000118041
6.6384e-05
2.85265e-05
8.97176e-06
1.77953e-06
9.5406e-08
2.86117e-08
2.48612e-06
2.74413e-05
4.07574e-05
3.47539e-05
3.17906e-05
3.272e-05
3.70486e-05
4.75566e-05
5.91479e-05
6.51982e-05
7.27251e-05
8.12055e-05
9.00763e-05
9.8781e-05
0.000106761
0.000113462
0.000118381
0.000121103
0.000121313
0.000118853
0.000113812
0.0001064
9.68581e-05
8.55408e-05
7.28704e-05
5.93442e-05
4.56748e-05
3.27232e-05
2.13897e-05
1.23226e-05
5.9593e-06
2.33072e-06
8.32841e-07
3.2417e-07
1.29271e-07
5.02867e-06
2.38876e-05
4.31476e-05
3.37288e-05
2.32047e-05
1.56632e-05
1.11122e-05
9.28672e-06
1.04486e-05
1.3568e-05
1.62234e-05
1.86479e-05
2.11517e-05
2.35583e-05
2.58562e-05
2.79246e-05
2.96406e-05
3.04177e-05
3.0713e-05
3.07154e-05
3.04505e-05
2.99527e-05
2.92104e-05
2.82525e-05
2.66051e-05
2.48588e-05
2.31458e-05
2.16206e-05
2.04618e-05
1.99432e-05
2.0993e-05
2.40249e-05
2.49305e-05
1.81114e-05
3.3442e-07
1.06709e-05
6.18442e-05
7.22168e-05
7.26224e-05
7.37754e-05
7.58994e-05
7.86066e-05
8.16526e-05
8.45102e-05
8.61018e-05
8.48238e-05
8.02126e-05
7.2203e-05
6.11663e-05
4.93776e-05
3.78703e-05
2.87968e-05
2.25199e-05
1.73713e-05
1.25946e-05
8.65714e-06
6.36295e-06
5.07212e-06
4.5641e-06
4.40155e-06
4.46622e-06
6.20191e-06
7.5781e-06
7.15595e-06
1.13501e-05
5.98263e-06
2.1745e-06
5.44451e-07
3.32096e-08
2.67545e-08
2.84278e-06
2.82307e-06
2.34876e-06
3.92393e-06
7.93376e-06
1.37439e-05
2.08129e-05
2.76793e-05
3.15148e-05
3.02872e-05
2.47759e-05
1.82798e-05
1.41884e-05
1.38311e-05
1.62633e-05
1.90813e-05
2.02369e-05
1.92111e-05
1.66288e-05
1.30336e-05
1.01145e-05
5.89685e-06
1.71155e-06
8.65666e-07
3.27096e-07
4.71424e-07
1.44355e-06
3.82114e-07
7.32623e-06
8.55221e-06
1.1257e-05
1.092e-05
1.39375e-05
6.22719e-06
9.98747e-07
3.92466e-06
6.07772e-06
1.06837e-05
2.19136e-05
3.95229e-05
6.08068e-05
8.26733e-05
9.25172e-05
9.15546e-05
9.08259e-05
7.46255e-05
5.41365e-05
4.2177e-05
3.69585e-05
3.40863e-05
3.23223e-05
3.12688e-05
3.05499e-05
2.98613e-05
2.91135e-05
2.80585e-05
2.52356e-05
2.41725e-05
2.45621e-05
2.46784e-05
2.3159e-05
2.07421e-05
1.89818e-05
2.04258e-05
2.87463e-05
3.25308e-05
3.53874e-05
2.7935e-05
4.46916e-06
1.66516e-06
1.32092e-06
2.90575e-06
1.26572e-05
2.66305e-05
1.99394e-05
2.73701e-05
2.08052e-05
2.99942e-05
4.52914e-05
5.91574e-05
5.73474e-05
4.57794e-05
3.94557e-05
3.81258e-05
3.93478e-05
4.15635e-05
4.4158e-05
4.70735e-05
4.74965e-05
4.80923e-05
4.88846e-05
4.97089e-05
5.04824e-05
5.11873e-05
5.19754e-05
5.30889e-05
5.44134e-05
5.55163e-05
5.62374e-05
5.60821e-05
5.25723e-05
4.21092e-05
1.98246e-05
3.91421e-06
2.10988e-06
2.06524e-06
5.77395e-06
2.12105e-05
3.22407e-05
3.84849e-05
4.30445e-05
4.74413e-05
5.01888e-05
5.19147e-05
5.25337e-05
5.26676e-05
5.40594e-05
5.65304e-05
6.00727e-05
6.49301e-05
7.11485e-05
7.8612e-05
8.71506e-05
9.55358e-05
0.000103633
0.000102497
9.8553e-05
9.46288e-05
9.09688e-05
8.76621e-05
8.46068e-05
8.1482e-05
7.77523e-05
7.26011e-05
6.48285e-05
5.32838e-05
3.08289e-05
1.41132e-05
4.00952e-06
2.32751e-06
1.02677e-06
4.07147e-06
2.90342e-05
5.53245e-05
7.58193e-05
8.81085e-05
9.52113e-05
9.89594e-05
0.000100666
0.000101556
0.000103025
9.70924e-05
8.93933e-05
8.56229e-05
8.78e-05
9.66693e-05
0.000113115
0.000134001
0.000132743
0.00013
0.00012642
0.000122541
0.000118696
0.000114998
0.000111345
0.00010741
0.000102619
9.6105e-05
8.66883e-05
7.31362e-05
5.52954e-05
2.70699e-05
1.27202e-05
4.10806e-06
2.55391e-06
1.56762e-06
4.05381e-06
2.2958e-05
4.18296e-05
5.61281e-05
6.7645e-05
7.72058e-05
8.54783e-05
9.27979e-05
9.9058e-05
0.000104144
0.000107726
0.00010888
0.000107671
0.000106368
0.000109148
0.000120918
0.000142327
0.000147388
0.000147903
0.000146682
0.000144238
0.000141065
0.000137468
0.000133482
0.000128846
0.000122971
0.000114843
0.000102974
8.57568e-05
6.31251e-05
2.82641e-05
1.3751e-05
4.67203e-06
2.68636e-06
1.36313e-06
4.62714e-06
2.82152e-05
5.81012e-05
7.81153e-05
9.10915e-05
0.000101696
0.000112531
0.000121988
0.000123967
0.000124265
0.000123535
0.000122606
0.000122562
0.000124173
0.000127826
0.000133104
0.000138887
0.000144384
0.000148734
0.000151247
0.000151862
0.000150802
0.000148329
0.000144577
0.000139415
0.000132335
0.000122335
0.000107895
8.74991e-05
6.30837e-05
2.84934e-05
1.48712e-05
5.03789e-06
2.83142e-06
1.57652e-06
4.79676e-06
2.82552e-05
5.59721e-05
7.55892e-05
9.10534e-05
0.000103799
0.000115365
0.00012743
0.00013884
0.000140073
0.000139099
0.000136183
0.000132462
0.000129152
0.000127079
0.000126671
0.000127907
0.000131338
0.000136397
0.000141222
0.000144905
0.000146986
0.000147226
0.000145446
0.000141359
0.000134387
0.000123505
0.000107273
8.45111e-05
5.90223e-05
2.87322e-05
1.61163e-05
5.4921e-06
2.94101e-06
1.54643e-06
5.03394e-06
2.98622e-05
6.28061e-05
8.75311e-05
0.000105199
0.00011931
0.000132389
0.00014594
0.000154867
0.000156908
0.000156647
0.000154132
0.000149627
0.000144209
0.000138972
0.000134708
0.000131838
0.000130928
0.000132667
0.000136099
0.000139585
0.000142337
0.000143691
0.000142985
0.000139471
0.000132187
0.000119876
0.000101199
7.78012e-05
5.18699e-05
2.84596e-05
1.69823e-05
5.65831e-06
3.0565e-06
1.71977e-06
5.76779e-06
3.30012e-05
6.76031e-05
9.16138e-05
0.000110757
0.000126851
0.000141528
0.000156933
0.000171921
0.000175708
0.000176916
0.000175817
0.000172153
0.000166512
0.000160004
0.000153589
0.000147937
0.000143816
0.000141837
0.000142265
0.000143889
0.00014538
0.000145953
0.000144651
0.00014032
0.000131621
0.000117164
9.60623e-05
7.28361e-05
4.80501e-05
2.87167e-05
1.79221e-05
5.86713e-06
3.14278e-06
1.69917e-06
5.80858e-06
3.36485e-05
7.04333e-05
0.000100549
0.00012301
0.000141097
0.000157357
0.00017411
0.000189283
0.00019469
0.000197382
0.000197745
0.000195853
0.000191506
0.000185316
0.000178303
0.000171275
0.000165284
0.000160999
0.000158883
0.000158076
0.00015724
0.000155458
0.000151663
0.000144557
0.000132751
0.000115145
9.20477e-05
6.96439e-05
4.52563e-05
2.89443e-05
1.86381e-05
5.9072e-06
3.22371e-06
1.84512e-06
6.70042e-06
3.72616e-05
7.59711e-05
0.000106732
0.000130532
0.000150441
0.000168443
0.000186722
0.000205286
0.000214311
0.00021883
0.000220888
0.000220826
0.000218488
0.000213783
0.00020742
0.000200192
0.000193414
0.00018786
0.000183928
0.000180868
0.00017745
0.000172747
0.000165694
0.00015503
0.000139561
0.00011869
9.34311e-05
7.03943e-05
4.46665e-05
2.96863e-05
1.95212e-05
6.02168e-06
3.29273e-06
1.84275e-06
6.80865e-06
3.8267e-05
7.91278e-05
0.000115076
0.000142178
0.000164475
0.000184524
0.000204655
0.000224646
0.000234567
0.000240883
0.000244596
0.000246077
0.000245621
0.000243121
0.000238531
0.000232244
0.000225792
0.000220042
0.000214968
0.000209746
0.000203513
0.000195465
0.000184583
0.000169765
0.000150182
0.000125867
9.84129e-05
7.40385e-05
4.51345e-05
3.05793e-05
2.03104e-05
6.04468e-06
3.36373e-06
1.96029e-06
7.68939e-06
4.17311e-05
8.46828e-05
0.00012244
0.000151283
0.000175508
0.000197421
0.000219174
0.000240968
0.000254815
0.000263101
0.000268642
0.000271815
0.000272948
0.000272308
0.000269866
0.000265389
0.00026015
0.000254837
0.000248977
0.00024204
0.000233474
0.000222534
0.000208301
0.000189871
0.000166748
0.000139411
0.000109843
7.81285e-05
4.73686e-05
3.22056e-05
2.14099e-05
6.18377e-06
3.4315e-06
1.97848e-06
7.94289e-06
4.3258e-05
8.84595e-05
0.000130058
0.000162912
0.000190105
0.000214511
0.000238357
0.000261625
0.000276141
0.000286375
0.000293694
0.000298472
0.000301042
0.000301693
0.000300646
0.000297968
0.000294009
0.000288897
0.000282429
0.000274289
0.000263964
0.000250742
0.000233803
0.000212427
0.00018638
0.000156429
0.000124718
8.33885e-05
5.06891e-05
3.42214e-05
2.26076e-05
6.3042e-06
3.50263e-06
2.07184e-06
8.7472e-06
4.64024e-05
9.37938e-05
0.000137535
0.000173215
0.000202709
0.000229225
0.000254924
0.000279923
0.000297165
0.000309504
0.000318778
0.000325331
0.000329481
0.000331508
0.000331638
0.000330025
0.000326782
0.000321891
0.00031517
0.000306274
0.000294671
0.00027966
0.000260468
0.000236463
0.000207513
0.000174444
0.000139372
9.11018e-05
5.53261e-05
3.69165e-05
2.41796e-05
6.54149e-06
3.57546e-06
2.10056e-06
9.1025e-06
4.82219e-05
9.78775e-05
0.000144355
0.000184948
0.000217909
0.000247431
0.000275571
0.000300872
0.000318825
0.000333223
0.000344399
0.000352671
0.000358333
0.000361645
0.000362812
0.000361966
0.000359161
0.000354326
0.000347237
0.000337508
0.000324579
0.000307754
0.000286294
0.000259634
0.000227718
0.000191429
0.000152923
9.93252e-05
6.05815e-05
4.00335e-05
2.59861e-05
6.79665e-06
3.65149e-06
2.18135e-06
9.89323e-06
5.12749e-05
0.000103191
0.000151947
0.000195474
0.000231438
0.000263679
0.000294017
0.000319893
0.000340051
0.00035655
0.000369686
0.000379739
0.000386967
0.000391594
0.000393793
0.000393664
0.000391222
0.000386357
0.000378813
0.000368178
0.000353887
0.000335261
0.000311612
0.000282444
0.000247771
0.000208514
0.000166857
0.000108638
6.67829e-05
4.38328e-05
2.82388e-05
7.13231e-06
3.72596e-06
2.22311e-06
1.03683e-05
5.34318e-05
0.00010765
0.000159001
0.00020525
0.000246131
0.000281852
0.00031274
0.000339144
0.000361426
0.000379904
0.000394864
0.000406565
0.000415233
0.000421056
0.000424167
0.000424627
0.000422407
0.000417366
0.000409222
0.00039755
0.000381797
0.00036132
0.000335503
0.000303941
0.000266729
0.000224833
0.000180433
0.000118229
7.35484e-05
4.81275e-05
3.08271e-05
7.47966e-06
3.79827e-06
2.30831e-06
1.1216e-05
5.66085e-05
0.000113182
0.000166855
0.000215406
0.00025858
0.000296568
0.000329679
0.00035824
0.000382569
0.000402958
0.000419671
0.00043294
0.000442961
0.000449886
0.000453811
0.000454757
0.000452662
0.00044735
0.000438525
0.000425766
0.000408541
0.000386265
0.000358401
0.000324643
0.000285164
0.000240954
0.000194151
0.000128298
8.09706e-05
5.30476e-05
3.38975e-05
7.89632e-06
3.86602e-06
2.3744e-06
1.18662e-05
5.92626e-05
0.00011831
0.000174578
0.000225688
0.000271324
0.000311654
0.000346973
0.000377601
0.000403846
0.000425992
0.000444288
0.000458949
0.000470146
0.000478003
0.000482579
0.000483865
0.000481762
0.000476073
0.00046649
0.0004526
0.000433907
0.000409889
0.000380097
0.000344322
0.00030282
0.000256597
0.00020717
0.0001385
8.88866e-05
5.84825e-05
3.73459e-05
8.33051e-06
3.92437e-06
2.47115e-06
1.27759e-05
6.25855e-05
0.000124201
0.000183004
0.000236574
0.000284577
0.000327167
0.000364623
0.000397246
0.000425329
0.000449136
0.000468902
0.000484823
0.000497051
0.000505683
0.000510757
0.000512235
0.000509996
0.000503829
0.000493424
0.000478385
0.000458258
0.000432587
0.000401012
0.000363416
0.000320133
0.000272189
0.000218418
0.000148931
9.73367e-05
6.45873e-05
4.13707e-05
8.86894e-06
3.97502e-06
2.55427e-06
1.35215e-05
6.54951e-05
0.000129784
0.000191317
0.000247515
0.000297997
0.000342901
0.0003825
0.000417087
0.000446944
0.000472327
0.000493457
0.000510515
0.000523636
0.000532902
0.00053833
0.000539865
0.000537373
0.000530637
0.000519353
0.00050315
0.000481618
0.000454365
0.000421113
0.000381832
0.000336918
0.00028741
0.000229389
0.000159492
0.000106459
7.12702e-05
4.41913e-05
9.38216e-06
4.01614e-06
2.64788e-06
1.43747e-05
6.86397e-05
0.000135645
0.000199928
0.000258768
0.000311738
0.000358959
0.000400691
0.00043722
0.000468815
0.000495718
0.000518139
0.000536244
0.000550155
0.000559938
0.0005656
0.000567076
0.000564229
0.000556845
0.000544637
0.000527262
0.000504355
0.000475587
0.000440751
0.000399886
0.000353439
0.000302452
0.000240405
0.000170343
0.000116176
7.84862e-05
4.69933e-05
9.88302e-06
4.04664e-06
2.73065e-06
1.51076e-05
7.14659e-05
0.000141184
0.000208288
0.000269845
0.000325356
0.000374917
0.000418785
0.000457239
0.000490544
0.000518933
0.000542601
0.000561705
0.00057635
0.000586592
0.000592428
0.000593791
0.000590543
0.000582482
0.000569342
0.000550815
0.000526582
0.000496373
0.000460041
0.000417683
0.000369785
0.000317384
0.000251483
0.000181481
0.000126444
8.62148e-05
4.97893e-05
1.03668e-05
4.06785e-06
2.81352e-06
1.58859e-05
7.43632e-05
0.000146781
0.000216714
0.000281011
0.000339084
0.000390994
0.000436983
0.000477329
0.000512294
0.000542107
0.000566957
0.00058699
0.000602303
0.000612943
0.000618901
0.000620107
0.000616431
0.000607684
0.000593626
0.000573988
0.000548498
0.00051694
0.000479222
0.000435485
0.000386231
0.00033248
0.000262967
0.000193165
0.00013744
9.46405e-05
5.27409e-05
1.08786e-05
4.08314e-06
2.89336e-06
1.66222e-05
7.71171e-05
0.000152151
0.000224857
0.000291867
0.000352489
0.000406737
0.000454832
0.000497045
0.000533636
0.000564833
0.000590822
0.000611745
0.000627693
0.000638708
0.000644776
0.00064583
0.000641748
0.000632355
0.000617437
0.00059676
0.000570097
0.000537283
0.000498275
0.000453244
0.000402692
0.000347604
0.000274699
0.000205255
0.000149047
0.000103678
5.5764e-05
1.13979e-05
4.09403e-06
2.97062e-06
1.73666e-05
7.98405e-05
0.000157415
0.000232835
0.000302521
0.000365671
0.000422239
0.000472417
0.000516463
0.000554634
0.000587158
0.000614224
0.000635975
0.000652505
0.000663856
0.000670017
0.000670925
0.000666469
0.00065649
0.000640798
0.000619189
0.000591475
0.00055753
0.000517353
0.000471143
0.000419408
0.000359536
0.000286457
0.000217983
0.000161432
0.000113465
5.89144e-05
1.19497e-05
4.09941e-06
3.05083e-06
1.81301e-05
8.25587e-05
0.000162565
0.000240553
0.000312773
0.000378332
0.00043713
0.000489323
0.000535149
0.000574855
0.000608666
0.000636773
0.00065932
0.000676408
0.000688084
0.000694347
0.000695144
0.000690376
0.000679904
0.00066356
0.000641166
0.000612565
0.000577662
0.000536478
0.000489228
0.000436414
0.000371463
0.000298698
0.000231415
0.000174855
0.00012429
6.23674e-05
1.25585e-05
4.10156e-06
3.12515e-06
1.88751e-05
8.52079e-05
0.000167607
0.000248112
0.000322794
0.000390672
0.000451599
0.000505706
0.000553214
0.000594363
0.000629373
0.000658438
0.000681709
0.000699293
0.000711248
0.000717586
0.000718269
0.000713215
0.000702303
0.000685388
0.000662315
0.000632949
0.000597213
0.000555142
0.000506943
0.00045195
0.000382732
0.000311382
0.000246345
0.000189288
0.000131374
6.55872e-05
1.31692e-05
4.09998e-06
3.20267e-06
1.96465e-05
8.78845e-05
0.000172622
0.000255558
0.000332594
0.000402673
0.000465608
0.000521509
0.000570586
0.000613071
0.000649186
0.000679123
0.00070304
0.000721051
0.000733228
0.000739597
0.000740137
0.000734786
0.000723447
0.000705994
0.000682295
0.000652232
0.000615743
0.000572869
0.000523825
0.000462064
0.000393124
0.000324897
0.000262631
0.000204817
0.000138337
6.86065e-05
1.37542e-05
4.09117e-06
3.27232e-06
2.03736e-05
9.04402e-05
0.00017748
0.000262832
0.000342202
0.000414441
0.000479319
0.000536928
0.000587472
0.000631185
0.000668293
0.000698995
0.000723456
0.000741803
0.00075412
0.000760448
0.000760785
0.000755091
0.000743292
0.000725286
0.000700965
0.000670233
0.000633045
0.000588389
0.000533249
0.000470588
0.000404628
0.00034044
0.000279987
0.000216323
0.000144884
7.14363e-05
1.43017e-05
4.07587e-06
3.34559e-06
2.11056e-05
9.29417e-05
0.000182153
0.000269788
0.000351383
0.000425695
0.000492444
0.000551695
0.000603641
0.000648515
0.000686548
0.000717946
0.000742886
0.000761507
0.000773907
0.000780144
0.000780238
0.000774168
0.000761884
0.00074331
0.000717061
0.000683796
0.000643843
0.000596402
0.000541358
0.000480622
0.000418306
0.000358068
0.000297391
0.000225729
0.00015095
7.40349e-05
1.48123e-05
4.05456e-06
3.41379e-06
2.18031e-05
9.5329e-05
0.00018662
0.000276446
0.000360178
0.000436482
0.000505025
0.000565845
0.000619122
0.000665087
0.000703974
0.000736001
0.000761356
0.000780192
0.000792625
0.000798731
0.000798551
0.000792087
0.000778379
0.000755777
0.000727182
0.000692941
0.000652229
0.000604417
0.000550317
0.000492662
0.000434879
0.000376735
0.000308436
0.000234459
0.000156597
7.64517e-05
1.52886e-05
4.02861e-06
3.48628e-06
2.25175e-05
9.76936e-05
0.000190932
0.000282784
0.000368497
0.000446659
0.000516888
0.000579189
0.000633728
0.000680726
0.00072042
0.000753033
0.000778766
0.000797787
0.000810229
0.000816188
0.000815724
0.000808867
0.000791223
0.000766501
0.000736636
0.000701444
0.000660137
0.000612662
0.000560735
0.000507262
0.000452971
0.000390769
0.000319074
0.000242789
0.000161966
7.87653e-05
1.57568e-05
3.99966e-06
3.55544e-06
2.32299e-05
0.000100034
0.000195156
0.000288936
0.000376508
0.000456399
0.00052819
0.000591861
0.000647562
0.000695509
0.000735939
0.000769081
0.000795146
0.000814315
0.000826739
0.000832535
0.000831784
0.000822859
0.00080287
0.000776551
0.000745488
0.000709502
0.000668128
0.000622007
0.000573407
0.00052422
0.000470351
0.000402342
0.000329085
0.000250585
0.00016698
8.09341e-05
1.61999e-05
3.96758e-06
3.62751e-06
2.39597e-05
0.00010238
0.000199305
0.000294887
0.000384177
0.000465657
0.000538879
0.000603806
0.000660574
0.000709395
0.000750502
0.000784128
0.000810493
0.000829791
0.000842189
0.000847822
0.000846794
0.00083547
0.000813556
0.000785793
0.000753713
0.000717315
0.000676738
0.000633347
0.000588983
0.000542165
0.000482163
0.000413222
0.000338465
0.000257858
0.000171644
8.29561e-05
1.66194e-05
3.93199e-06
3.69587e-06
2.46981e-05
0.000104751
0.000203467
0.000300796
0.000391708
0.000474655
0.000549175
0.000615225
0.000672941
0.00072253
0.00076423
0.000798278
0.000824899
0.000844299
0.000856659
0.000862131
0.000860838
0.000846958
0.000823269
0.000794323
0.000761588
0.000725396
0.000686578
0.000646784
0.000606061
0.000557233
0.000493482
0.000423501
0.000347232
0.000264603
0.000175943
8.48121e-05
1.70035e-05
3.89232e-06
3.76342e-06
2.54274e-05
0.000107077
0.000207532
0.000306543
0.000398999
0.000483322
0.000559041
0.000626115
0.000684681
0.000734953
0.000777174
0.000811588
0.000838428
0.000857909
0.000870225
0.000875542
0.000874002
0.000857002
0.00083186
0.000802203
0.000769424
0.000734399
0.000698491
0.000662686
0.000623754
0.000568567
0.000504155
0.000433153
0.00035543
0.000270889
0.000179945
8.65512e-05
1.73667e-05
3.84999e-06
3.82745e-06
2.61323e-05
0.000109323
0.000211464
0.0003121
0.000406034
0.000491659
0.000568496
0.000636508
0.00069584
0.000746718
0.000789392
0.000824119
0.00085114
0.000870683
0.00088295
0.00088812
0.000884011
0.000865377
0.000839386
0.00080953
0.000777475
0.000744622
0.000712373
0.00067972
0.000637812
0.000579397
0.00051425
0.000442202
0.000363058
0.000276699
0.000183619
8.81369e-05
1.76957e-05
3.8053e-06
3.88982e-06
2.6818e-05
0.000111487
0.000215227
0.000317397
0.000412725
0.000499572
0.000577454
0.000646335
0.00070637
0.000757795
0.000800873
0.000835872
0.000863048
0.000882637
0.000894856
0.000899895
0.00089232
0.000872086
0.000845708
0.000816453
0.000786209
0.000756586
0.000728156
0.000696863
0.000648546
0.000589632
0.000523761
0.000450702
0.000370209
0.000282138
0.000187058
8.963e-05
1.80085e-05
3.75946e-06
3.94862e-06
2.74528e-05
0.000113486
0.000218725
0.000322341
0.000418983
0.000506981
0.000585843
0.000655534
0.000716218
0.000768143
0.000811585
0.000846826
0.000874134
0.00089376
0.000905932
0.000910853
0.000898745
0.000877017
0.000850957
0.000823223
0.000795686
0.000769826
0.00074463
0.000711392
0.000658821
0.000599342
0.000532717
0.000458665
0.000376889
0.000287219
0.00019028
9.1045e-05
1.83096e-05
3.71342e-06
4.00519e-06
2.80606e-05
0.000115368
0.000221994
0.000326947
0.000424808
0.000513878
0.000593651
0.000664095
0.000725379
0.000777761
0.000821532
0.000856985
0.000884403
0.000904049
0.000916162
0.00091757
0.000903027
0.000880937
0.000855841
0.000830363
0.000806385
0.000784469
0.000760672
0.000721399
0.000668443
0.000608413
0.000541044
0.000466025
0.000383026
0.000291863
0.000193214
9.23317e-05
1.85837e-05
3.66644e-06
4.05918e-06
2.86273e-05
0.000117099
0.000224986
0.000331157
0.000430132
0.000520187
0.000600805
0.000671951
0.000733799
0.000786614
0.000830696
0.000866352
0.000893876
0.000913546
0.000925613
0.000922474
0.000906086
0.000884073
0.000860524
0.000837864
0.000817624
0.000799219
0.000776138
0.000730952
0.000677552
0.000616939
0.000548818
0.000472847
0.000388672
0.000296103
0.00019588
9.35025e-05
1.88345e-05
3.61882e-06
4.11135e-06
2.91778e-05
0.000118756
0.000227807
0.00033508
0.000435054
0.000525989
0.000607364
0.000679144
0.000741506
0.000794719
0.000839093
0.000874942
0.000902574
0.000922278
0.000934319
0.000926511
0.000908507
0.000886975
0.000865397
0.000845929
0.000829516
0.000813496
0.000786695
0.000739991
0.000686169
0.000624979
0.000556112
0.000479207
0.000393896
0.000299992
0.000198302
9.45643e-05
1.90626e-05
3.57027e-06
4.16075e-06
2.96962e-05
0.000120316
0.000230454
0.000338743
0.000439626
0.000531354
0.000613407
0.000685754
0.000748577
0.000802151
0.000846791
0.00088282
0.000910555
0.000930292
0.000939741
0.000929633
0.000911121
0.000890442
0.000871015
0.000854787
0.000841728
0.000826842
0.000795425
0.000748465
0.000694248
0.000632509
0.000562924
0.000485116
0.000398705
0.000303522
0.000200451
9.54765e-05
1.92577e-05
3.52054e-06
4.20771e-06
3.01602e-05
0.000121726
0.000232864
0.000342092
0.000443813
0.000536269
0.000618942
0.000691807
0.000755053
0.000808963
0.000853858
0.000890067
0.000917913
0.000937701
0.000943907
0.000932257
0.000913658
0.000894168
0.000877062
0.000863926
0.000853748
0.000839538
0.000803675
0.000756445
0.000701837
0.000639564
0.00056928
0.000490594
0.000403121
0.000306711
0.000202333
9.62263e-05
1.94079e-05
3.47011e-06
4.25294e-06
3.05806e-05
0.000123009
0.000235064
0.00034515
0.000447637
0.000540757
0.000623995
0.000697332
0.000760965
0.000815185
0.000860321
0.000896709
0.000924676
0.000944534
0.000947294
0.000934295
0.000915973
0.000897982
0.000883302
0.000873112
0.000865511
0.00085173
0.000811483
0.000763976
0.000708981
0.000646184
0.00057522
0.00049568
0.000407176
0.000309582
0.000203964
9.68144e-05
1.95092e-05
3.42001e-06
4.29725e-06
3.09723e-05
0.000124199
0.000237097
0.000347968
0.000451152
0.000544873
0.000628621
0.000702383
0.000766366
0.000820869
0.000866228
0.000902786
0.000930878
0.000950818
0.000949823
0.000935627
0.000917902
0.000901735
0.000889774
0.000882647
0.000876717
0.000859253
0.00081885
0.000771102
0.000715744
0.000652449
0.000580834
0.000500475
0.000410984
0.000312261
0.000205466
9.73416e-05
1.95935e-05
3.37197e-06
4.34104e-06
3.13453e-05
0.000125326
0.000239015
0.000350614
0.000454436
0.000548701
0.000632904
0.000707042
0.00077133
0.000826077
0.000871629
0.000908336
0.000936538
0.000956112
0.000951097
0.000936144
0.000919502
0.000905503
0.000896363
0.00089198
0.000887091
0.000866345
0.000825825
0.000777857
0.000722164
0.000658402
0.000586173
0.00050504
0.000414611
0.000314814
0.000206901
9.78494e-05
1.9675e-05
3.32709e-06
4.38353e-06
3.1702e-05
0.000126398
0.000240845
0.000353139
0.000457562
0.000552331
0.000636948
0.000711418
0.000775969
0.00083092
0.000876626
0.000913443
0.000941719
0.000957591
0.000951106
0.000936328
0.000921025
0.000909194
0.000902705
0.000900773
0.000896744
0.000873103
0.000832475
0.000784303
0.000728294
0.000664093
0.000591286
0.000509422
0.000418108
0.000317295
0.000208317
9.83726e-05
1.97647e-05
3.28644e-06
4.42434e-06
3.2043e-05
0.000127419
0.000242591
0.000355548
0.000460544
0.00055579
0.000640793
0.000715568
0.000780354
0.000835482
0.000881315
0.000918218
0.000946544
0.000958315
0.000950332
0.000935892
0.000922092
0.000912473
0.000908514
0.000908826
0.000905601
0.000879545
0.000838821
0.000790458
0.00073415
0.00066953
0.000596172
0.000513615
0.000421462
0.000319687
0.000209697
9.88963e-05
1.98593e-05
3.25038e-06
4.46282e-06
3.23623e-05
0.000128375
0.000244236
0.000357831
0.000463377
0.000559081
0.000644451
0.000719513
0.000784515
0.000839799
0.000885739
0.000922708
0.000951066
0.0009585
0.000949022
0.00093502
0.00092278
0.000915309
0.000913706
0.000916069
0.000913649
0.000885682
0.00084488
0.000796338
0.000739744
0.000674723
0.000600836
0.000517616
0.000424666
0.000321978
0.00021103
9.94124e-05
1.99566e-05
3.21861e-06
4.49897e-06
3.2654e-05
0.000129251
0.000245758
0.000359956
0.00046603
0.000562176
0.000647903
0.000723242
0.000788451
0.000843881
0.000889917
0.000926942
0.00095532
0.000958378
0.00094747
0.000933948
0.000923214
0.000917735
0.000918261
0.000922478
0.000920882
0.000891519
0.000850651
0.000801942
0.000745073
0.00067966
0.000605259
0.000521399
0.000427684
0.000324127
0.000212274
9.98911e-05
2.00473e-05
3.1901e-06
4.53389e-06
3.29285e-05
0.000130072
0.000247181
0.000361945
0.000468516
0.00056508
0.000651147
0.000726752
0.000792159
0.000847727
0.000893849
0.000930919
0.000958976
0.000957901
0.000946002
0.000933085
0.000923679
0.000919854
0.000922138
0.000927935
0.000927195
0.000897072
0.000856155
0.000807294
0.00075016
0.000684364
0.000609459
0.000524972
0.000430515
0.000326125
0.000213414
0.000100316
2.01265e-05
3.16385e-06
4.56869e-06
3.31824e-05
0.000130829
0.000248495
0.000363785
0.000470823
0.000567784
0.000654177
0.00073004
0.000795641
0.000851345
0.000897552
0.00093466
0.00095992
0.000957394
0.000945152
0.000932698
0.000924281
0.000921759
0.000925494
0.000932666
0.000932811
0.000902375
0.000861427
0.000812428
0.000755044
0.00068888
0.000613484
0.000528387
0.00043321
0.000328018
0.000214488
0.000100715
2.01998e-05
3.13922e-06
4.60486e-06
3.34331e-05
0.000131568
0.000249757
0.000365536
0.000473008
0.000570341
0.000657042
0.000733152
0.000798942
0.000854783
0.000901078
0.000938231
0.0009608
0.000957002
0.00094452
0.000932486
0.000924888
0.000923423
0.000928342
0.00093669
0.000937734
0.000907449
0.000866483
0.000817361
0.00075974
0.000693219
0.000617344
0.000531648
0.000435766
0.000329793
0.000215477
0.000101065
2.02607e-05
3.11533e-06
4.64287e-06
3.36394e-05
0.000132202
0.000250877
0.000367117
0.000475002
0.000572692
0.000659692
0.000736046
0.000802027
0.000858011
0.000904405
0.000941616
0.000961678
0.000956788
0.00094415
0.000932499
0.000925582
0.00092497
0.000930845
0.00094018
0.000942112
0.000912339
0.000871375
0.000822151
0.000764315
0.000697458
0.000621124
0.000534847
0.000438277
0.000331541
0.000216456
0.000101419
2.03227e-05
3.09171e-06
4.68314e-06
3.38167e-05
0.000132745
0.000251857
0.00036853
0.00047681
0.000574846
0.000662139
0.000738733
0.000804906
0.000861035
0.000907534
0.000944812
0.00096242
0.000956609
0.000943935
0.000932687
0.000926385
0.00092651
0.000933207
0.000943421
0.000946208
0.000917061
0.000876113
0.000826807
0.000768779
0.000701613
0.000624846
0.000538016
0.000440783
0.000333305
0.000217467
0.000101806
2.03934e-05
3.06824e-06
4.72563e-06
3.39651e-05
0.000133202
0.0002527
0.00036976
0.000478407
0.000576775
0.000664355
0.00074119
0.000807556
0.000863837
0.000910447
0.000947798
0.000962873
0.000956257
0.00094368
0.000932902
0.000927206
0.000928
0.000935428
0.000946442
0.000950064
0.000921614
0.000880698
0.000831329
0.000773133
0.000705683
0.000628512
0.000541155
0.000443283
0.000335084
0.000218505
0.000102219
2.0472e-05
3.04462e-06
4.77073e-06
3.41018e-05
0.000133608
0.000253446
0.000370859
0.000479842
0.000578515
0.000666365
0.000743429
0.000809986
0.000866418
0.000913142
0.000950571
0.000963098
0.00095576
0.000943371
0.000933119
0.000928037
0.000929466
0.000937563
0.000949308
0.000953721
0.000925986
0.000885113
0.000835699
0.000777357
0.00070965
0.000632101
0.000544246
0.000445762
0.000336863
0.000219558
0.000102651
2.05554e-05
3.02002e-06
4.81725e-06
3.42347e-05
0.000133992
0.000254133
0.000371854
0.000481136
0.00058009
0.000668191
0.000745474
0.000812213
0.000868793
0.000915629
0.000953138
0.000963104
0.000955101
0.000942978
0.000933314
0.000928876
0.00093094
0.000939679
0.00095211
0.000957257
0.000930177
0.000889356
0.000839912
0.000781446
0.000713509
0.000635616
0.000547298
0.000448239
0.000338673
0.000220665
0.000103136
2.06542e-05
2.9947e-06
4.86324e-06
3.43444e-05
0.000134303
0.000254703
0.000372689
0.000482234
0.00058144
0.000669777
0.00074727
0.000814192
0.000870922
0.000917878
0.000955473
0.000963088
0.000954466
0.000942633
0.000933585
0.000929814
0.000932528
0.000941919
0.000955033
0.000960845
0.000934177
0.000893414
0.000843951
0.000785379
0.000717237
0.000639029
0.000550281
0.00045068
0.000340481
0.000221797
0.000103653
2.07619e-05
2.96904e-06
4.90709e-06
3.44331e-05
0.000134546
0.00025515
0.000373353
0.000483121
0.000582549
0.000671102
0.000748795
0.000815897
0.000872782
0.000919865
0.00095756
0.000963118
0.000953953
0.000942401
0.00093396
0.000930865
0.000934248
0.000944318
0.000958126
0.000964524
0.000937967
0.000897264
0.000847792
0.00078913
0.000720802
0.000642306
0.000553158
0.000453049
0.000342251
0.000222921
0.000104181
2.08725e-05
2.9434e-06
4.948e-06
3.44907e-05
0.000134695
0.000255439
0.000373803
0.000483749
0.00058337
0.000672118
0.000750003
0.000817283
0.00087433
0.000921553
0.000959366
0.000963234
0.000953671
0.000942405
0.000934514
0.000932055
0.000936105
0.000946871
0.000961366
0.000968251
0.000941535
0.000900893
0.000851421
0.000792681
0.000724189
0.000645426
0.000555906
0.000455319
0.000343952
0.000224006
0.000104694
2.09794e-05
2.91791e-06
4.9866e-06
3.4529e-05
0.000134784
0.000255614
0.000374081
0.000484153
0.000583922
0.000672834
0.000750889
0.000818337
0.000875541
0.000922905
0.000959974
0.000963237
0.000953737
0.000942814
0.000935386
0.000933456
0.000938115
0.000949573
0.000964747
0.000972016
0.000944864
0.000904284
0.000854818
0.000796016
0.000727378
0.000648376
0.000558513
0.000457481
0.000345579
0.000225049
0.00010519
2.10819e-05
2.89272e-06
5.0239e-06
3.45596e-05
0.000134845
0.000255726
0.000374252
0.000484404
0.000584279
0.00067332
0.000751521
0.000819121
0.000876475
0.000923981
0.000960217
0.000963218
0.000953854
0.000943301
0.000936359
0.000934988
0.000940281
0.000952452
0.000968313
0.000975871
0.000947939
0.00090742
0.000857965
0.000799112
0.000730346
0.000651129
0.000560954
0.000459512
0.000347116
0.00022604
0.000105667
2.11793e-05
2.86795e-06
5.06043e-06
3.4584e-05
0.000134885
0.000255791
0.000374338
0.000484527
0.000584465
0.000673598
0.000751915
0.000819646
0.000877137
0.000924778
0.000960068
0.000962911
0.0009538
0.000943682
0.000937261
0.000936479
0.000942451
0.000955368
0.000971901
0.000979661
0.000950749
0.00091029
0.000860853
0.00080196
0.000733085
0.000653675
0.000563217
0.000461398
0.000348541
0.000226958
0.000106107
2.12677e-05
2.84358e-06
5.09599e-06
3.46154e-05
0.000134938
0.00025586
0.000374401
0.000484588
0.000584546
0.000673729
0.000752122
0.000819953
0.000877557
0.000925316
0.000959499
0.000962244
0.000953503
0.000943899
0.000938032
0.000937859
0.000944532
0.000958232
0.00097545
0.000983348
0.000953285
0.000912889
0.000863477
0.000804559
0.000735595
0.000656019
0.000565308
0.000463147
0.000349868
0.000227814
0.000106518
2.13503e-05
2.81958e-06
5.12955e-06
3.46429e-05
0.000134981
0.000255908
0.000374423
0.000484578
0.00058452
0.000673713
0.000752148
0.000820046
0.000877738
0.000925596
0.000958569
0.000961222
0.000952928
0.000943927
0.000938673
0.000939135
0.000946531
0.000961041
0.000978974
0.000986975
0.000955534
0.0009152
0.000865821
0.000806892
0.00073786
0.000658147
0.000567219
0.000464758
0.000351102
0.000228622
0.000106914
2.14306e-05
2.79592e-06
5.16016e-06
3.46681e-05
0.000135017
0.000255942
0.000374414
0.00048451
0.000584402
0.000673568
0.000752007
0.000819939
0.00087769
0.000925623
0.000957309
0.000959849
0.000952027
0.000943679
0.00093909
0.000940221
0.000948363
0.000963727
0.000982289
0.000989118
0.000957478
0.000917211
0.000867871
0.000808943
0.000739861
0.000660037
0.000568925
0.000466201
0.00035221
0.000229348
0.00010727
2.15037e-05
2.7728e-06
5.18748e-06
3.46929e-05
0.000135043
0.000255954
0.000374368
0.000484381
0.00058419
0.000673296
0.000751703
0.000819637
0.000877419
0.000925406
0.000955962
0.000958369
0.000950958
0.000943223
0.000939291
0.000941122
0.000950075
0.000966311
0.000985235
0.000990642
0.000959098
0.000918907
0.000869615
0.000810702
0.000741591
0.00066168
0.000570417
0.000467469
0.000353187
0.000229987
0.000107584
2.15683e-05
2.7496e-06
5.21136e-06
3.47341e-05
0.000135104
0.000255998
0.000374336
0.000484241
0.000583936
0.000672943
0.000751282
0.000819181
0.000876963
0.000924982
0.000954788
0.000957064
0.000949947
0.000942713
0.00093938
0.000941911
0.000951703
0.000968767
0.000987912
0.000991839
0.000960388
0.000920274
0.000871039
0.000812156
0.000743036
0.000663069
0.000571691
0.000468564
0.000354039
0.000230553
0.000107869
2.1629e-05
2.72661e-06
5.23198e-06
3.47969e-05
0.000135207
0.000256087
0.000374344
0.000484124
0.000583681
0.00067256
0.000750795
0.000818627
0.000876378
0.000924403
0.000953872
0.000956041
0.000949088
0.000942221
0.000939404
0.000942603
0.000953203
0.000971021
0.000990286
0.000992697
0.000961333
0.000921295
0.000872122
0.000813278
0.000744168
0.000664171
0.000572714
0.000469453
0.000354738
0.00023102
0.000108106
2.16804e-05
2.70344e-06
5.25005e-06
3.48756e-05
0.000135341
0.000256203
0.000374368
0.00048401
0.000583411
0.000672139
0.000750249
0.000817989
0.000875688
0.000923701
0.00095334
0.000955457
0.000948529
0.000941868
0.000939452
0.000943248
0.000954587
0.000973058
0.000992335
0.000993214
0.000961929
0.000921965
0.000872856
0.00081406
0.000744975
0.000664973
0.000573471
0.00047012
0.000355267
0.000231376
0.00010829
2.17209e-05
2.6801e-06
5.2664e-06
3.49752e-05
0.000135523
0.000256371
0.000374443
0.000483938
0.000583169
0.000671729
0.00074969
0.000817315
0.00087494
0.000922924
0.000953141
0.000955286
0.000948305
0.000941736
0.000939633
0.000943971
0.000956004
0.000975058
0.000994225
0.000993392
0.000962171
0.000922274
0.000873228
0.000814488
0.000745445
0.000665463
0.000573952
0.000470556
0.000355621
0.000231618
0.000108421
2.17516e-05
2.65698e-06
5.28181e-06
3.5066e-05
0.000135684
0.000256512
0.000374491
0.000483841
0.000582902
0.000671289
0.000749095
0.000816595
0.000874135
0.000922077
0.000953008
0.000955254
0.000948233
0.000941739
0.000939927
0.000944783
0.000957472
0.000977041
0.00099598
0.000993242
0.000962062
0.000922214
0.000873222
0.000814534
0.000745539
0.000665592
0.000574098
0.000470695
0.000355726
0.000231675
0.000108441
2.17532e-05
2.63377e-06
5.29807e-06
3.51501e-05
0.00013583
0.000256634
0.000374519
0.000483727
0.000582617
0.00067083
0.000748473
0.000815839
0.000873282
0.000921172
0.000952764
0.000955158
0.000948161
0.000941798
0.000940314
0.000945701
0.000959025
0.000979039
0.000997627
0.000992817
0.000961648
0.000921824
0.000872867
0.000814223
0.000745275
0.000665374
0.00057392
0.000470544
0.000355591
0.000231552
0.000108355
2.17251e-05
2.61005e-06
5.31599e-06
3.52153e-05
0.000135933
0.000256699
0.000374492
0.000483566
0.000582298
0.000670343
0.000747827
0.000815055
0.000872394
0.000920217
0.000952091
0.000954624
0.000947785
0.000941697
0.000940653
0.000946632
0.000960596
0.000981006
0.000999152
0.000992187
0.000960996
0.000921168
0.000872225
0.000813611
0.000744708
0.000664863
0.000573471
0.000470159
0.000355272
0.000231303
0.000108204
2.16816e-05
2.5868e-06
5.33622e-06
3.52291e-05
0.000135905
0.000256584
0.000374266
0.000483216
0.000581812
0.000669715
0.000747063
0.000814171
0.000871414
0.000919174
0.000950903
0.00095354
0.000946995
0.000941355
0.00094089
0.000947546
0.000962172
0.000982944
0.00100058
0.00099142
0.000960174
0.00092031
0.00087135
0.000812744
0.000743872
0.000664081
0.000572764
0.000469544
0.000354763
0.00023092
0.000107976
2.1617e-05
2.56367e-06
5.3604e-06
3.51812e-05
0.000135712
0.000256219
0.000373747
0.000482563
0.00058104
0.000668834
0.000746082
0.000813103
0.000870276
0.00091799
0.000949096
0.000951796
0.000945696
0.000940693
0.000940967
0.000948404
0.000963733
0.000984847
0.00100193
0.000990586
0.000959258
0.000919324
0.000870317
0.000811689
0.000742825
0.000663076
0.000571835
0.000468724
0.000354084
0.000230413
0.000107679
2.15335e-05
2.54105e-06
5.39013e-06
3.50617e-05
0.000135316
0.000255535
0.000372832
0.000481484
0.000579847
0.000667562
0.000744753
0.000811732
0.000868879
0.00091658
0.000946608
0.000949341
0.000943836
0.000939655
0.000940828
0.000949149
0.000965221
0.00098667
0.00100319
0.000989754
0.000958327
0.000918303
0.000869221
0.000810545
0.000741667
0.000661943
0.000570771
0.000467774
0.000353292
0.00022982
0.00010733
2.14354e-05
2.51909e-06
5.42686e-06
3.48844e-05
0.000134741
0.000254538
0.000371495
0.000479919
0.000578151
0.000665803
0.000742974
0.000809962
0.000867133
0.000914869
0.000943513
0.00094629
0.000941513
0.000938306
0.0009405
0.000949783
0.000966625
0.000988396
0.00100435
0.000988958
0.000957426
0.000917295
0.000868116
0.000809362
0.00074044
0.000660716
0.000569594
0.000466705
0.000352386
0.000229133
0.000106916
2.13172e-05
2.49761e-06
5.47201e-06
3.46601e-05
0.000134005
0.000253239
0.000369729
0.000477836
0.000575893
0.000663479
0.000740659
0.000807702
0.000864953
0.000912779
0.00093975
0.000942633
0.000938749
0.000936669
0.000939994
0.000950306
0.000967947
0.000990042
0.00100545
0.000988237
0.000956615
0.000916381
0.000867098
0.000808254
0.000739268
0.000659524
0.000568438
0.000465648
0.000351496
0.00022847
0.000106527
2.12068e-05
2.4769e-06
5.52727e-06
3.4436e-05
0.000133225
0.000251788
0.000367673
0.000475342
0.000573138
0.000660614
0.000737799
0.000804922
0.000862298
0.000910269
0.000935481
0.000938598
0.000935756
0.00093491
0.000939431
0.000950813
0.000969274
0.000991693
0.00100655
0.000987575
0.000955885
0.000915561
0.000866176
0.000807232
0.000738164
0.000658372
0.000567288
0.000464565
0.000350552
0.000227738
0.000106077
2.10741e-05
2.45609e-06
5.5929e-06
3.42739e-05
0.000132569
0.000250428
0.000365604
0.000472706
0.000570121
0.000657399
0.000734535
0.000801718
0.000859226
0.00090737
0.000930804
0.00093431
0.000932682
0.000933197
0.000938996
0.000951504
0.000970834
0.000993602
0.00100786
0.000986952
0.000955223
0.000914835
0.000865365
0.000806328
0.000737173
0.000657318
0.000566214
0.00046353
0.00034963
0.000227007
0.000105615
2.09344e-05
2.43434e-06
5.66831e-06
3.42153e-05
0.000132162
0.000249372
0.000363791
0.000470215
0.000567119
0.000654074
0.000731061
0.000798237
0.000855843
0.000904151
0.000925678
0.000929737
0.000929545
0.000931598
0.000938789
0.000952503
0.000972769
0.000995931
0.00100953
0.000986329
0.00095459
0.000914163
0.000864631
0.000805515
0.000736277
0.000656351
0.000565208
0.000462538
0.000348722
0.000226268
0.000105137
2.07866e-05
2.4106e-06
5.75104e-06
3.43216e-05
0.000132189
0.00024892
0.000362621
0.000468299
0.000564561
0.000651039
0.000727726
0.000794765
0.000852369
0.000900774
0.00091995
0.00092468
0.000926208
0.000930043
0.000938805
0.000953892
0.000975252
0.000998493
0.00100902
0.000985669
0.000953952
0.000913518
0.000863951
0.000804777
0.000735468
0.00065547
0.000564273
0.000461589
0.000347822
0.000225504
0.000104622
2.06225e-05
2.38357e-06
5.83605e-06
3.4575e-05
0.000132628
0.000249121
0.000362233
0.000467178
0.000562719
0.00064858
0.0007248
0.000791529
0.000848965
0.000895502
0.000913372
0.000919274
0.000922774
0.000928608
0.000939197
0.000955905
0.000978348
0.00100115
0.00100822
0.00098494
0.000953273
0.000912864
0.000863297
0.000804098
0.000734744
0.000654691
0.000563444
0.000460735
0.000346994
0.000224783
0.000104125
2.04606e-05
2.3548e-06
5.91717e-06
3.49385e-05
0.000133403
0.000249905
0.000362615
0.000466915
0.000561724
0.00064688
0.000722489
0.000788736
0.000845821
0.000888295
0.000905981
0.000913585
0.000919331
0.000927367
0.000939962
0.000958373
0.000981801
0.00100392
0.00100732
0.000984115
0.00095251
0.000912146
0.000862603
0.000803408
0.000734038
0.000653952
0.000562668
0.000459933
0.000346201
0.00022407
0.000103619
2.02927e-05
2.32414e-06
5.98684e-06
3.53062e-05
0.000134246
0.000250929
0.000363437
0.000467249
0.000561412
0.000645873
0.00072082
0.000786486
0.000843093
0.000881358
0.000898472
0.000907571
0.000915596
0.000926001
0.000940775
0.000960973
0.000985346
0.00100666
0.00100628
0.000983144
0.000951602
0.00091129
0.000861786
0.000802612
0.000733246
0.000653149
0.000561845
0.000459095
0.000345376
0.000223325
0.000103087
2.01184e-05
2.29284e-06
6.04001e-06
3.55722e-05
0.000134866
0.000251756
0.000364193
0.000467679
0.000561338
0.000645203
0.000719533
0.000784617
0.000840716
0.000875533
0.000891827
0.000902012
0.00091207
0.000924775
0.000941741
0.000963744
0.000989048
0.00100947
0.00100507
0.000981994
0.00095051
0.000910251
0.000860793
0.000801656
0.000732312
0.000652227
0.000560924
0.000458178
0.000344487
0.000222529
0.000102523
1.99368e-05
2.26042e-06
6.07484e-06
3.56937e-05
0.000135134
0.000252134
0.000364527
0.000467795
0.00056109
0.000644493
0.00071832
0.000782907
0.00083856
0.000871658
0.000887155
0.00089787
0.000909431
0.000924099
0.000943081
0.000966794
0.000992956
0.00101238
0.00100364
0.000980606
0.000949164
0.00090895
0.000859535
0.000800435
0.000731123
0.000651062
0.000559783
0.000457068
0.000343438
0.000221612
0.000101892
1.97413e-05
2.22776e-06
6.09358e-06
3.57356e-05
0.000135197
0.000252196
0.00036451
0.000467592
0.000560601
0.000643647
0.000717081
0.000781282
0.000836597
0.000870297
0.000885317
0.000896045
0.000908454
0.000924568
0.000945218
0.000970411
0.000997254
0.00101548
0.00100198
0.000978953
0.000947539
0.00090736
0.000857984
0.000798924
0.000729651
0.000649629
0.000558392
0.000455734
0.000342199
0.000220552
0.000101175
1.95253e-05
2.19362e-06
6.09944e-06
3.58319e-05
0.000135405
0.000252407
0.000364613
0.000467485
0.00056021
0.000642926
0.000716019
0.000779905
0.000834969
0.000871763
0.000886815
0.000897074
0.000909604
0.000926608
0.000948704
0.000975314
0.00100198
0.00101495
0.00099998
0.000976954
0.000945554
0.000905402
0.000856063
0.000797047
0.000727824
0.000647859
0.000556693
0.000454131
0.000340741
0.000219335
0.000100374
1.92931e-05
2.159e-06
6.09447e-06
3.61449e-05
0.000136197
0.000253403
0.000365571
0.000468218
0.000560602
0.000642927
0.00071563
0.000779172
0.000833983
0.000875713
0.000891344
0.000900896
0.000913093
0.000930674
0.000954033
0.000981574
0.00100673
0.00101259
0.000997549
0.000974491
0.00094309
0.000902962
0.000853666
0.000794709
0.000725559
0.00064568
0.00055462
0.000452196
0.000339005
0.000217903
9.94434e-05
1.90287e-05
2.12142e-06
6.07662e-06
3.67179e-05
0.00013772
0.000255477
0.000367809
0.000470304
0.000562327
0.000644183
0.000716395
0.00077949
0.000833951
0.000880208
0.000897928
0.000906898
0.000918555
0.000936384
0.000960567
0.000988458
0.00101147
0.00100984
0.000994634
0.000971479
0.000940033
0.000899906
0.000850648
0.000791761
0.00072271
0.00064296
0.000552062
0.000449849
0.00033694
0.000216242
9.83933e-05
1.8741e-05
2.08169e-06
6.04061e-06
3.74311e-05
0.000139692
0.000258345
0.000371133
0.000473664
0.000565405
0.000646783
0.000718425
0.000780944
0.000834877
0.00088068
0.000905088
0.000914847
0.000925725
0.000943296
0.000967818
0.000995426
0.00101459
0.00100667
0.000991196
0.000967858
0.000936309
0.000896147
0.000846915
0.000788108
0.000719186
0.000639613
0.000548944
0.000447022
0.000334492
0.000214307
9.71913e-05
1.84175e-05
2.03723e-06
5.98006e-06
3.80775e-05
0.000141567
0.000261279
0.000374784
0.000477603
0.000569252
0.000650257
0.000721358
0.000783263
0.000836588
0.000881849
0.000912021
0.000923305
0.00093411
0.000951646
0.000976048
0.00100114
0.00101136
0.00100296
0.000987117
0.000963512
0.000931795
0.000891556
0.000842332
0.000783611
0.00071485
0.000635513
0.000545156
0.000443635
0.000331616
0.000212092
9.58599e-05
1.80705e-05
1.98997e-06
5.89246e-06
3.84951e-05
0.000142872
0.000263511
0.000377807
0.000481103
0.000572877
0.000653706
0.000724412
0.000785793
0.000838544
0.000883253
0.000918851
0.00093197
0.0009431
0.000960462
0.000983912
0.00100568
0.00100763
0.000998651
0.00098234
0.000958389
0.000926443
0.000886087
0.000836855
0.00077823
0.000709667
0.000630628
0.000540674
0.000439667
0.000328291
0.000209577
9.43769e-05
1.76899e-05
1.93782e-06
5.78056e-06
3.8575e-05
0.000143316
0.000264532
0.000379501
0.000483328
0.000575383
0.000656228
0.000726724
0.000787733
0.000840018
0.000884224
0.000920885
0.00094067
0.000952856
0.000969712
0.000991134
0.00100591
0.00100324
0.000993608
0.000976763
0.000952406
0.00092018
0.000879672
0.000830415
0.000771894
0.000703564
0.00062489
0.000535437
0.000435076
0.000324503
0.000206772
9.27655e-05
1.72831e-05
1.88324e-06
5.65062e-06
3.82595e-05
0.000142726
0.000264024
0.000379392
0.000483671
0.000576062
0.000657056
0.000727505
0.000788301
0.000840252
0.000884055
0.00092029
0.000949328
0.000964071
0.000980004
0.000997125
0.00100135
0.000997919
0.000987631
0.000970246
0.000945472
0.00091296
0.000872302
0.000823035
0.00076465
0.000696604
0.000618367
0.00052951
0.000429911
0.000320275
0.00020367
9.10008e-05
1.6838e-05
1.82481e-06
5.51303e-06
3.76154e-05
0.000141228
0.000262062
0.00037744
0.000481957
0.000574614
0.000655788
0.000726282
0.000786982
0.000838719
0.000882216
0.00091808
0.000946799
0.000968744
0.000984146
0.000993091
0.000995548
0.000991409
0.000980504
0.000962609
0.000937442
0.000904664
0.000863879
0.000814634
0.000756429
0.00068873
0.000611017
0.000522869
0.000424173
0.000315641
0.000200342
8.91587e-05
1.63828e-05
1.76667e-06
5.38009e-06
3.67505e-05
0.000139063
0.000258936
0.000373909
0.00047837
0.000571117
0.000652387
0.000722906
0.000783525
0.000835068
0.000878269
0.000913745
0.000941987
0.000963366
0.000978126
0.000986394
0.000988193
0.000983452
0.000972027
0.000953707
0.000928225
0.000895254
0.000854411
0.000805256
0.000747303
0.000680033
0.000602937
0.000515606
0.000417934
0.000310636
0.000196768
8.71847e-05
1.58905e-05
1.70573e-06
5.26179e-06
3.57457e-05
0.000136407
0.000254888
0.000369068
0.00047317
0.000565793
0.000647025
0.000717497
0.000778008
0.000829361
0.000872282
0.000907392
0.000935194
0.00095607
0.000970285
0.000977992
0.000979243
0.000973999
0.000962141
0.00094348
0.000917763
0.00088468
0.00084386
0.000794879
0.000737266
0.000670519
0.000594147
0.000507756
0.000411248
0.000305335
0.000193045
8.51673e-05
1.53952e-05
1.64697e-06
5.16242e-06
3.4603e-05
0.000133259
0.000249936
0.000362966
0.000466444
0.000558766
0.000639855
0.000710232
0.000770627
0.000821803
0.000864472
0.000899255
0.000926662
0.000947092
0.00096083
0.000968055
0.000968843
0.000963182
0.000950977
0.00093206
0.000906195
0.000873088
0.000832381
0.000783667
0.000726489
0.000660362
0.000584812
0.000499456
0.000404204
0.00029976
0.000189125
8.30318e-05
1.48677e-05
1.58659e-06
5.08448e-06
3.33406e-05
0.000129642
0.000244106
0.000355647
0.000458262
0.000550135
0.000631008
0.000701266
0.000761554
0.000812583
0.000855041
0.000889541
0.000916603
0.000936641
0.000949963
0.000956769
0.000957163
0.000951157
0.000938676
0.000919575
0.000893635
0.000860577
0.000820059
0.000771689
0.000715027
0.000649606
0.000574966
0.000490742
0.000396852
0.000293988
0.000185112
8.08781e-05
1.43467e-05
1.531e-06
5.03045e-06
3.19564e-05
0.000125537
0.000237353
0.000347056
0.000448575
0.000539873
0.000620481
0.000690628
0.000750848
0.000801786
0.000844096
0.000878383
0.000905172
0.000924892
0.000937873
0.000944339
0.000944418
0.000938147
0.000925475
0.000906275
0.000880348
0.000847429
0.000807192
0.000759257
0.000703199
0.000638563
0.000564906
0.000481871
0.000389379
0.000288113
0.000181001
7.86482e-05
1.38032e-05
1.47524e-06
5.00522e-06
3.04933e-05
0.000121026
0.000229757
0.000337255
0.000437437
0.000528031
0.000608331
0.000678378
0.000738577
0.000789492
0.000831734
0.000865892
0.000892493
0.000911979
0.000924699
0.000930903
0.000930745
0.000924285
0.000911496
0.000892273
0.000866433
0.000833729
0.000793848
0.000746423
0.000691042
0.000627265
0.00055466
0.000472879
0.000381847
0.000282235
0.000176931
7.64739e-05
1.32877e-05
1.42704e-06
5.01487e-06
2.90102e-05
0.000116242
0.000221453
0.000326354
0.000424929
0.000514669
0.000594605
0.000664561
0.00072479
0.00077576
0.000818028
0.000852158
0.000878672
0.000898025
0.000910582
0.00091662
0.000916317
0.000909759
0.000896946
0.000877792
0.000852135
0.000819741
0.000780313
0.000733494
0.000678879
0.000616038
0.000544541
0.000464044
0.000374467
0.000276465
0.000172899
7.42852e-05
1.2764e-05
1.37956e-06
5.06603e-06
2.76215e-05
0.000111472
0.000212795
0.000314692
0.000411341
0.000500025
0.000579494
0.000649332
0.000709618
0.000760704
0.000803077
0.000837267
0.000863787
0.000883097
0.000895583
0.00090154
0.000901176
0.000894601
0.00088184
0.00086283
0.000837429
0.000805421
0.00076652
0.000720381
0.00066661
0.000604779
0.000534463
0.000455318
0.000367251
0.000270897
0.000169077
7.22582e-05
1.22983e-05
1.34167e-06
5.1622e-06
2.64464e-05
0.000107056
0.000204248
0.000302748
0.000397106
0.000484461
0.000563292
0.000632927
0.000693246
0.000744465
0.000786989
0.000821303
0.000847904
0.000867254
0.000879754
0.000885721
0.000885385
0.000878885
0.00086627
0.000847499
0.000822451
0.000790925
0.000752651
0.000707291
0.000654455
0.000593716
0.000524645
0.000446884
0.000360323
0.000265563
0.000165393
7.02768e-05
1.18391e-05
1.30314e-06
5.29729e-06
2.55923e-05
0.000103315
0.000196312
0.000291099
0.000382796
0.0004685
0.000546451
0.000615716
0.000675964
0.00072726
0.000769912
0.000804351
0.000831054
0.00085048
0.000863039
0.000869068
0.000868819
0.000862455
0.000850048
0.000831582
0.000806953
0.00077598
0.000738403
0.000693895
0.00064207
0.000582501
0.000514752
0.000438454
0.000353471
0.000260371
0.000161887
6.84423e-05
1.14351e-05
1.27231e-06
5.45187e-06
2.50435e-05
0.000100321
0.000189244
0.000280164
0.000368951
0.000452714
0.000529492
0.000598132
0.000658106
0.000709325
0.000751995
0.000786488
0.000813252
0.00083274
0.000845369
0.00085149
0.000851376
0.00084521
0.000833085
0.000815005
0.000790887
0.000760562
0.000723786
0.000680239
0.000629537
0.000571247
0.000504917
0.00043015
0.000346771
0.000255295
0.00015842
6.65878e-05
1.10164e-05
1.23498e-06
5.59688e-06
2.47345e-05
9.79311e-05
0.000182804
0.000263737
0.00034752
0.000433703
0.000513689
0.000581178
0.000640458
0.000691257
0.000733665
0.000767988
0.000794639
0.00081406
0.000826669
0.000832826
0.000832817
0.00082684
0.000815005
0.000797331
0.00077375
0.000744111
0.000708179
0.000665647
0.000616135
0.00055921
0.000494413
0.000421327
0.00033974
0.000250106
0.00015503
6.48762e-05
1.06515e-05
1.1996e-06
5.70754e-06
2.4542e-05
9.57665e-05
0.000173674
0.000247216
0.000327413
0.000414213
0.000498979
0.000566162
0.000624152
0.000673978
0.000715646
0.000749404
0.000775629
0.000794742
0.000807153
0.000813223
0.00081324
0.000807411
0.000795852
0.000778594
0.000755578
0.000726663
0.000691626
0.000650162
0.000601898
0.000546398
0.000483189
0.000411831
0.000332073
0.000244317
0.000151116
6.28291e-05
1.0194e-05
1.14864e-06
5.76916e-06
2.45793e-05
9.46237e-05
0.000166783
0.000236062
0.000314026
0.000400423
0.000485706
0.000553664
0.000609951
0.000658308
0.000698724
0.000731435
0.000756806
0.00077525
0.000787172
0.000792923
0.000792789
0.000786972
0.000775589
0.00075867
0.000736162
0.000707927
0.00067375
0.000633336
0.000586318
0.000532265
0.000470707
0.000401192
0.000323447
0.000237824
0.0001468
6.06498e-05
9.72912e-06
1.0969e-06
5.77241e-06
2.46366e-05
9.3894e-05
0.000162393
0.000228758
0.000304725
0.000390073
0.000474922
0.000542861
0.000597321
0.00064398
0.000682858
0.000714213
0.000738431
0.000755935
0.000767131
0.000772372
0.000771935
0.000766019
0.000754732
0.000738102
0.000716069
0.000688498
0.000655173
0.000615804
0.000570028
0.000517418
0.000457504
0.000389827
0.000314095
0.000230635
0.000141886
5.81012e-05
9.16348e-06
1.02872e-06
5.72409e-06
2.42608e-05
9.21472e-05
0.000157252
0.000221908
0.000297052
0.000381964
0.00046612
0.000531973
0.000584778
0.000629815
0.000667156
0.000697108
0.000720092
0.000736557
0.000746923
0.00075155
0.000750717
0.000744615
0.000733349
0.000716938
0.000695319
0.000668352
0.000635822
0.000597446
0.000552867
0.000501672
0.000443405
0.00037762
0.000304029
0.000222943
0.000136742
5.5543e-05
8.622e-06
9.65043e-07
5.65361e-06
2.35431e-05
8.94338e-05
0.000150668
0.000214116
0.000289459
0.000374976
0.000458587
0.000519556
0.000570971
0.000614614
0.000650603
0.000679299
0.000701167
0.000716688
0.000726306
0.00073039
0.000729225
0.000723001
0.000711817
0.000695687
0.000674541
0.000648235
0.000616551
0.000579203
0.000535839
0.000486049
0.000429385
0.000365411
0.000293847
0.000215007
0.000131275
5.27381e-05
8.00781e-06
8.9071e-07
5.57325e-06
2.28629e-05
8.67188e-05
0.000144079
0.000206457
0.000282276
0.000368068
0.000448426
0.000505971
0.000556019
0.00059832
0.000633035
0.000660562
0.0006814
0.00069606
0.000705004
0.000708614
0.000707179
0.000700887
0.000689833
0.000674025
0.000653387
0.00062777
0.000596954
0.000560654
0.000518524
0.000470167
0.00041515
0.000353057
0.000283626
0.000207174
0.000126045
5.01775e-05
7.47762e-06
8.29258e-07
5.48266e-06
2.22561e-05
8.42461e-05
0.000137984
0.000199338
0.000275469
0.000360918
0.00043591
0.000491886
0.000540438
0.000581329
0.000614746
0.000641117
0.00066097
0.000674835
0.000683189
0.000686422
0.000684821
0.000678572
0.000667764
0.000652396
0.000632384
0.000607571
0.00057773
0.000542571
0.000501746
0.000454855
0.000401467
0.000341173
0.00027372
0.000199442
0.000120705
4.74567e-05
6.89551e-06
7.60073e-07
5.37633e-06
2.16671e-05
8.1153e-05
0.00013264
0.000193326
0.000269409
0.000354024
0.000423842
0.000478046
0.000524907
0.000564215
0.000596193
0.0006213
0.000640093
0.000653121
0.000660867
0.000663722
0.000661967
0.000655781
0.000645243
0.00063034
0.000610981
0.000587
0.000558166
0.000524188
0.000484718
0.000439362
0.000387702
0.000329336
0.000264024
0.000192093
0.000115861
4.51346e-05
6.43354e-06
7.07268e-07
5.25978e-06
2.09754e-05
7.72287e-05
0.000127281
0.000187203
0.000262946
0.000346648
0.000411765
0.00046415
0.000509252
0.000546911
0.000577394
0.000601205
0.000618926
0.000631125
0.000638293
0.000640818
0.000638975
0.000632929
0.000622746
0.0006084
0.000589788
0.000566732
0.000538993
0.00050627
0.000468209
0.000424413
0.000374455
0.000317932
0.0002546
0.000184791
0.000110846
4.26099e-05
5.91406e-06
6.45342e-07
5.14358e-06
2.01942e-05
7.30973e-05
0.000121696
0.000180957
0.000256514
0.000339502
0.000399731
0.000450287
0.000493571
0.000529496
0.000558402
0.000580842
0.000597435
0.000608764
0.000615323
0.000617495
0.000615543
0.00060962
0.000599776
0.000585972
0.000568092
0.000545951
0.000519301
0.00048784
0.000451214
0.000409028
0.000360863
0.000306323
0.000245168
0.00017771
0.000106234
4.04421e-05
5.50695e-06
5.99435e-07
5.03754e-06
1.92968e-05
6.86034e-05
0.000115466
0.000173969
0.000249329
0.000331763
0.000387197
0.00043599
0.000477487
0.000511704
0.000539063
0.000560174
0.000575691
0.000586212
0.000592232
0.000594125
0.000592142
0.000586418
0.000576987
0.000563796
0.000546716
0.000525549
0.000500038
0.000469871
0.000434687
0.000394082
0.000347632
0.000294933
0.00023574
0.000170372
0.000101156
3.78912e-05
5.00431e-06
5.41833e-07
4.94928e-06
1.84573e-05
6.4092e-05
0.000108897
0.000166553
0.000241661
0.000320634
0.000374359
0.000421365
0.000461067
0.000493568
0.000519373
0.000539152
0.000553594
0.000563311
0.000568797
0.000570415
0.000568398
0.000562864
0.00055383
0.000541229
0.000524918
0.000504693
0.000480291
0.0004514
0.000417661
0.000378678
0.000334034
0.000283337
0.000226345
0.000163365
9.66611e-05
3.58626e-05
4.65586e-06
5.04549e-07
4.87814e-06
1.76976e-05
5.97917e-05
0.000102091
0.000158282
0.000232862
0.000308718
0.000360732
0.000405996
0.00044397
0.00047484
0.000499185
0.000517736
0.000531212
0.000540239
0.000545306
0.000546761
0.00054482
0.000539581
0.000531043
0.000519123
0.000503666
0.000484456
0.000461222
0.000433643
0.000401352
0.000363944
0.000320994
0.000272102
0.000217027
0.000156091
9.1628e-05
3.3391e-05
4.20114e-06
4.53739e-07
4.81527e-06
1.71374e-05
5.60931e-05
9.57551e-05
0.00014997
0.000223607
0.000296905
0.00034707
0.00039048
0.000426641
0.000455817
0.000478665
0.000495969
0.000508478
0.000516822
0.00052148
0.000522782
0.000520921
0.000515973
0.000507918
0.00049666
0.000482034
0.000463819
0.000441743
0.000415486
0.000384687
0.000348949
0.000307854
0.000261006
0.000208157
0.000149599
8.75779e-05
3.16453e-05
3.92588e-06
4.24216e-07
4.76187e-06
1.65813e-05
5.2715e-05
8.95249e-05
0.000140893
0.000212632
0.000284528
0.000332769
0.000374316
0.000408702
0.000436259
0.000457707
0.000473877
0.00048554
0.000493323
0.000497693
0.000498955
0.000497282
0.000492723
0.000485239
0.000474717
0.000460983
0.000443805
0.000422904
0.000397957
0.000368596
0.000334418
0.000294998
0.000249935
0.000198979
0.000142438
8.2637e-05
2.92684e-05
3.51354e-06
3.78004e-07
4.71185e-06
1.608e-05
4.97299e-05
8.38322e-05
0.000132045
0.000201293
0.000272501
0.000318696
0.000358254
0.000390756
0.000416608
0.000436598
0.000451599
0.000462393
0.000469605
0.000473678
0.000474895
0.0004734
0.000469219
0.000462291
0.000452492
0.000439639
0.0004235
0.000403797
0.000380213
0.000352389
0.000319932
0.000282426
0.000239466
0.000190782
0.000136623
7.91726e-05
2.78703e-05
3.31422e-06
3.55381e-07
4.68106e-06
1.54313e-05
4.66893e-05
7.79758e-05
0.000122443
0.000188304
0.00025948
0.000303718
0.000341422
0.000372197
0.000396508
0.0004152
0.000429179
0.000439237
0.00044599
0.000449862
0.00045111
0.000449856
0.000446102
0.000439764
0.000430708
0.00041874
0.00040362
0.000385067
0.000362759
0.000336336
0.000305401
0.000269536
0.000228335
0.000181532
0.0001294
7.4208e-05
2.55383e-05
2.93179e-06
3.11556e-07
4.65732e-06
1.49201e-05
4.40284e-05
7.27873e-05
0.000113811
0.000176351
0.000246811
0.000289066
0.000324872
0.000353877
0.000376613
0.00039398
0.000406917
0.000416222
0.000422496
0.000426139
0.000427382
0.000426325
0.000422947
0.000417147
0.000408785
0.000397664
0.000383549
0.000366165
0.000345204
0.000320319
0.00029113
0.000257229
0.000218207
0.000173764
0.000124076
7.12077e-05
2.44143e-05
2.78335e-06
2.92526e-07
4.6469e-06
1.45021e-05
4.1708e-05
6.79461e-05
0.00010533
0.000164021
0.000233114
0.000273513
0.000307644
0.000335137
0.000356551
0.000372826
0.00038492
0.000393637
0.000399561
0.000403073
0.000404379
0.000403561
0.000400574
0.0003953
0.000387589
0.000377243
0.000364019
0.000347642
0.000327801
0.000304151
0.000276316
0.000243894
0.000206495
0.000163851
0.000116202
6.57574e-05
2.19196e-05
2.39873e-06
2.48904e-07
4.6082e-06
1.45971e-05
4.04581e-05
6.46524e-05
9.91405e-05
0.000154648
0.000220831
0.000259155
0.000291424
0.000317265
0.00033726
0.000352375
0.000363584
0.00037168
0.000377227
0.000380577
0.000381909
0.000381288
0.000378645
0.000373842
0.000366731
0.000357118
0.000344772
0.000329431
0.000310804
0.000288569
0.000262373
0.000231835
0.000196569
0.000156272
0.000111075
6.29406e-05
2.09086e-05
2.27242e-06
2.33022e-07
4.55724e-06
1.49337e-05
4.00036e-05
6.22265e-05
9.35827e-05
0.000145215
0.000208025
0.000244288
0.000274879
0.000299338
0.000318208
0.000332443
0.000343012
0.0003507
0.000356051
0.000359393
0.00036088
0.000360558
0.000358333
0.000354044
0.000347538
0.000338615
0.000327039
0.000312544
0.000294834
0.000273587
0.000248454
0.000219068
0.000185076
0.000146244
0.000102848
5.71243e-05
1.83124e-05
1.90177e-06
1.93066e-07
4.46654e-06
1.57897e-05
4.07529e-05
6.13739e-05
9.01975e-05
0.000138859
0.000197281
0.000231151
0.000259729
0.000282534
0.000300069
0.000313267
0.000323088
0.000330292
0.000335392
0.000338682
0.000340286
0.000340233
0.000338396
0.000334589
0.000328662
0.000320424
0.000309654
0.000296103
0.000279499
0.000259546
0.000235922
0.000208284
0.000176284
0.000139649
9.85172e-05
5.48487e-05
1.75456e-05
1.81582e-06
1.82266e-07
4.40192e-06
1.64183e-05
4.19702e-05
6.06155e-05
8.55355e-05
0.000129127
0.000184643
0.000216358
0.000243364
0.000265031
0.000281749
0.000294397
0.000303892
0.00031097
0.000316123
0.000319625
0.000321586
0.000322019
0.000320775
0.000317637
0.000312441
0.000304985
0.000295034
0.000282324
0.000266575
0.00024748
0.000224712
0.000197927
0.000166806
0.000131165
9.13431e-05
4.96804e-05
1.52979e-05
1.51503e-06
1.4901e-07
4.30764e-06
1.73678e-05
4.45663e-05
6.1251e-05
8.13084e-05
0.000118739
0.000173934
0.000203155
0.000228149
0.000248205
0.000263669
0.000275386
0.00028424
0.000290935
0.000295931
0.000299475
0.000301655
0.000302476
0.00030175
0.000299221
0.000294727
0.000288074
0.000279035
0.000267364
0.000252796
0.000235048
0.000213823
0.000188804
0.000159662
0.00012613
8.83436e-05
4.83006e-05
1.48908e-05
1.47375e-06
1.40421e-07
4.23098e-06
1.69084e-05
4.74092e-05
6.28364e-05
7.53722e-05
9.87432e-05
0.000145933
0.000182721
0.000207187
0.000227096
0.000242602
0.000254476
0.00026358
0.000270607
0.000276019
0.000280073
0.000282872
0.000284433
0.000284558
0.000282956
0.000279451
0.00027383
0.000265843
0.000255216
0.000241652
0.000224841
0.000204458
0.000180174
0.00015169
0.000118855
8.20614e-05
4.37484e-05
1.29685e-05
1.22841e-06
1.10982e-07
4.01421e-06
1.53339e-05
4.83566e-05
6.91183e-05
7.74102e-05
8.49022e-05
0.000104636
0.000150247
0.000186827
0.000208303
0.000224105
0.000235209
0.000243246
0.00024937
0.000254184
0.000257949
0.000260762
0.000262639
0.000263323
0.000262454
0.00025985
0.000255294
0.000248527
0.000239263
0.000227198
0.000212023
0.000193428
0.000171108
0.000144761
0.000114152
7.94261e-05
4.26216e-05
1.26613e-05
1.19268e-06
9.93384e-08
3.79423e-06
1.01481e-05
3.71962e-05
6.73522e-05
8.58199e-05
8.96937e-05
8.99772e-05
9.42789e-05
0.000110446
0.00014799
0.000190737
0.000207691
0.000218725
0.000225324
0.000229808
0.000233421
0.000236475
0.00023892
0.000240383
0.000240427
0.000238879
0.000235555
0.000230223
0.00022259
0.000212304
0.000198965
0.00018214
0.000161395
0.000136333
0.00010674
7.3044e-05
3.79676e-05
1.07349e-05
9.53551e-07
7.04754e-08
3.43908e-06
6.71583e-06
2.59444e-05
4.96463e-05
7.52217e-05
9.30823e-05
9.92724e-05
9.91847e-05
9.84037e-05
9.98172e-05
0.000106027
0.000121317
0.000149564
0.000188494
0.000220316
0.00022401
0.000224406
0.000223679
0.000222641
0.000221107
0.000218738
0.000215066
0.00020967
0.00020219
0.000192292
0.000179633
0.000163846
0.000144554
0.000121424
9.43189e-05
6.37194e-05
3.23056e-05
8.89802e-06
7.8397e-07
5.13128e-08
3.27525e-06
4.90735e-06
1.90302e-05
3.6774e-05
5.52599e-05
7.18427e-05
8.58656e-05
9.52921e-05
9.99562e-05
0.000101909
0.000103214
0.000105376
0.000109753
0.000118045
0.000132149
0.000152087
0.000173731
0.000191925
0.000205932
0.000210961
0.000206754
0.000200556
0.000193009
0.00018442
0.000174781
0.000163766
0.00015084
0.000135389
0.000116688
9.38369e-05
6.60595e-05
3.47669e-05
9.48106e-06
7.70938e-07
4.2762e-08
2.97832e-06
5.81674e-06
2.1243e-05
3.85492e-05
5.19278e-05
6.30691e-05
7.52088e-05
8.96473e-05
9.9015e-05
9.94108e-05
9.99353e-05
0.000101223
0.000103427
0.000106703
0.000111597
0.000119691
0.000133741
0.000155548
0.000179699
0.000197561
0.000203005
0.000204097
0.000201538
0.000195012
0.00018439
0.000169551
0.000150447
0.000127268
0.00010059
7.16459e-05
4.28732e-05
1.86571e-05
4.57031e-06
3.6446e-07
1.47389e-08
2.81576e-06
6.58961e-06
2.41113e-05
4.06534e-05
5.03827e-05
5.53859e-05
5.91737e-05
6.48727e-05
7.43692e-05
8.77995e-05
0.00010387
0.000104757
0.000104041
0.000106478
0.000110669
0.000116008
0.000123464
0.000135512
0.000153732
0.000178435
0.000175726
0.000169076
0.000160233
0.000149356
0.000136754
0.00012292
0.000108544
9.44316e-05
8.11764e-05
6.83501e-05
5.27656e-05
2.93135e-05
7.2998e-06
5.19573e-07
3.90693e-08
2.38071e-06
8.34317e-06
2.96423e-05
4.21429e-05
5.24496e-05
5.52968e-05
5.78285e-05
6.30079e-05
7.2151e-05
8.53844e-05
0.000102776
0.000123568
0.000143726
0.000146644
0.000154142
0.000168843
0.000190328
0.00021843
0.000249942
0.000270649
0.000278624
0.000284416
0.00028698
0.000284825
0.000276063
0.00025846
0.000229579
0.000187659
0.000134063
7.73829e-05
3.31311e-05
1.04164e-05
2.25873e-06
1.7277e-07
2.46506e-08
1.99619e-06
1.29861e-05
2.40643e-05
2.78092e-05
4.1303e-05
4.24217e-05
4.41776e-05
5.02238e-05
5.53397e-05
5.60933e-05
6.70103e-05
7.98211e-05
9.18103e-05
0.000101787
0.000109719
0.000116906
0.00012261
0.000126165
0.000127032
0.000125374
0.000121076
0.000114217
0.000105003
9.37528e-05
8.08513e-05
6.6721e-05
5.20516e-05
3.775e-05
2.49589e-05
1.45778e-05
7.17465e-06
2.77482e-06
7.31254e-07
2.02082e-07
1.19741e-07
3.46029e-06
2.28731e-05
9.82707e-06
7.06483e-06
6.79741e-06
6.55142e-06
5.82212e-06
1.5095e-06
2.29335e-06
5.81739e-06
9.15566e-06
1.57259e-05
2.13007e-05
2.5685e-05
2.98104e-05
3.26204e-05
3.36041e-05
3.42288e-05
3.44803e-05
3.44744e-05
3.4158e-05
3.35359e-05
3.25941e-05
3.05371e-05
2.79743e-05
2.5412e-05
2.28806e-05
2.03896e-05
1.78788e-05
1.54209e-05
1.288e-05
1.06606e-05
1.11406e-05
1.13078e-05
2.04588e-07
4.65356e-06
4.03484e-05
5.38468e-05
5.38084e-05
5.23943e-05
5.05904e-05
4.78629e-05
4.43042e-05
4.01208e-05
3.43256e-05
2.86033e-05
2.28645e-05
1.62929e-05
1.247e-05
8.67306e-06
4.31148e-06
1.83324e-06
9.96582e-07
3.54421e-06
4.24609e-06
3.82569e-06
5.81508e-06
7.65105e-06
8.34874e-06
9.9919e-06
1.25226e-05
1.27056e-05
1.25248e-05
1.23551e-05
1.16774e-05
1.16898e-05
1.16365e-05
1.11549e-05
2.26501e-06
9.67585e-08
2.05327e-07
5.08208e-07
7.30981e-07
1.96665e-06
4.09006e-06
6.38222e-06
8.21765e-06
9.75612e-06
1.14154e-05
1.3804e-05
1.71992e-05
2.05847e-05
2.23204e-05
2.18707e-05
2.0504e-05
1.77221e-05
1.33289e-05
1.33683e-05
1.36997e-05
1.66925e-05
1.6703e-05
1.60798e-05
1.6428e-05
1.65598e-05
1.48002e-05
1.2056e-05
9.17434e-06
9.13883e-06
8.60827e-06
9.60503e-06
1.38352e-05
2.19503e-05
2.26791e-05
8.74525e-06
8.46471e-07
4.56304e-07
1.28655e-06
4.50791e-06
1.50005e-05
3.06185e-05
4.5389e-05
5.60766e-05
5.97908e-05
5.42976e-05
4.12815e-05
2.50518e-05
1.29323e-05
9.47814e-06
1.03884e-05
1.15615e-05
1.16943e-05
1.16108e-05
1.22005e-05
1.27832e-05
1.29765e-05
1.29977e-05
1.30725e-05
1.34916e-05
1.49191e-05
1.79228e-05
1.82005e-05
1.80664e-05
1.97657e-05
2.40968e-05
3.22487e-05
3.93716e-05
4.0421e-05
1.94651e-05
5.70259e-06
1.26247e-06
5.04208e-07
9.01185e-07
6.77554e-06
1.76798e-05
2.77772e-05
3.90382e-05
5.15742e-05
5.58906e-05
5.52589e-05
5.07243e-05
4.37832e-05
3.6257e-05
2.94454e-05
2.42529e-05
2.18468e-05
2.28545e-05
2.63861e-05
3.04565e-05
3.07481e-05
3.19218e-05
3.37675e-05
3.58708e-05
3.78899e-05
3.98167e-05
4.21681e-05
4.61469e-05
5.29758e-05
5.45006e-05
5.41584e-05
5.30712e-05
4.91542e-05
3.87205e-05
1.40026e-05
4.09825e-06
1.72521e-06
9.98543e-07
2.098e-06
1.3048e-05
2.89812e-05
3.95787e-05
4.81669e-05
5.61146e-05
6.39933e-05
6.91406e-05
6.75512e-05
6.45869e-05
6.13631e-05
5.88767e-05
5.78347e-05
5.27677e-05
4.86288e-05
4.89241e-05
5.41079e-05
6.16335e-05
7.3211e-05
8.54375e-05
8.74869e-05
8.85154e-05
8.87337e-05
8.83601e-05
8.75328e-05
8.62159e-05
8.4116e-05
8.05171e-05
7.41033e-05
6.28898e-05
3.53923e-05
1.4082e-05
4.3546e-06
2.04275e-06
1.05711e-06
3.46998e-06
2.22478e-05
4.28353e-05
5.815e-05
7.06492e-05
8.18029e-05
9.13017e-05
9.27063e-05
9.1579e-05
8.87867e-05
8.53275e-05
8.22082e-05
8.02197e-05
7.78803e-05
6.89878e-05
6.33107e-05
6.27437e-05
6.68652e-05
8.02403e-05
0.000101084
0.000109859
0.000112198
0.000113137
0.00011299
0.000111825
0.000109412
0.0001052
9.82694e-05
8.7281e-05
7.06969e-05
3.48746e-05
1.56485e-05
4.9004e-06
2.34684e-06
1.22267e-06
3.0098e-06
1.84517e-05
3.96066e-05
5.53969e-05
6.89459e-05
8.13614e-05
9.3547e-05
0.000104728
0.000107056
0.000106948
0.000105109
0.000102323
9.93809e-05
9.69584e-05
9.5522e-05
9.52994e-05
9.62459e-05
9.57199e-05
9.63068e-05
0.0001036
0.000108907
0.000113015
0.000116361
0.00011854
0.000119239
0.000118002
0.000114104
0.000106519
9.39826e-05
7.04652e-05
3.54496e-05
1.77813e-05
5.65737e-06
2.5492e-06
1.34671e-06
4.19973e-06
2.53327e-05
5.27302e-05
7.17839e-05
8.71755e-05
0.000101105
0.000114501
0.000123961
0.000126844
0.000127184
0.000125515
0.000122401
0.000118438
0.000114224
0.000110291
0.000107035
0.000104641
0.000103196
0.000102787
0.000103454
0.000105232
0.000107979
0.000111223
0.000114303
0.000116387
0.000116316
0.000112547
0.000103351
8.76746e-05
6.23778e-05
3.4461e-05
1.91519e-05
6.04592e-06
2.72041e-06
1.49565e-06
4.4533e-06
2.62831e-05
5.37416e-05
7.35491e-05
9.0221e-05
0.000105514
0.000120854
0.000135828
0.000142041
0.000144464
0.000144461
0.000142471
0.000138959
0.000134426
0.000129385
0.000124306
0.000119544
0.00011544
0.00011227
0.000110202
0.000109374
0.000109799
0.000111237
0.000113147
0.000114542
0.000113711
0.000108178
9.53584e-05
7.73946e-05
5.6061e-05
3.35289e-05
2.01565e-05
6.4102e-06
2.8316e-06
1.52408e-06
4.88225e-06
2.86646e-05
6.01844e-05
8.48198e-05
0.000103939
0.00012081
0.000137477
0.000152794
0.000159398
0.000163002
0.000164015
0.000162826
0.000159813
0.000155369
0.000149916
0.000143894
0.000137709
0.000131893
0.000126865
0.000122891
0.000120135
0.000118578
0.000117971
0.000117708
0.000116576
0.000112513
0.000102812
8.60275e-05
6.80049e-05
4.91103e-05
3.19521e-05
2.04794e-05
6.44146e-06
2.94789e-06
1.68217e-06
5.60835e-06
3.20007e-05
6.5624e-05
8.96778e-05
0.000109438
0.000127345
0.000145122
0.000163086
0.000174654
0.000180177
0.000182982
0.0001834
0.000181755
0.00017836
0.000173539
0.000167647
0.000161061
0.00015448
0.000148408
0.000143071
0.000138593
0.000134968
0.000131967
0.000128939
0.000124563
0.000116702
0.000102829
8.26538e-05
6.38322e-05
4.51337e-05
3.10369e-05
2.08637e-05
6.57294e-06
3.04376e-06
1.66522e-06
5.68266e-06
3.2767e-05
6.85062e-05
9.88756e-05
0.000122137
0.000142107
0.000161416
0.000180378
0.00019159
0.000198611
0.000202821
0.000204558
0.000204137
0.000201854
0.000197985
0.0001928
0.000186546
0.000179984
0.000173579
0.000167436
0.000161642
0.000156179
0.000150759
0.000144633
0.000136406
0.000124063
0.000105642
8.20152e-05
6.19189e-05
4.21446e-05
3.02033e-05
2.09696e-05
6.52079e-06
3.1521e-06
1.815e-06
6.59817e-06
3.66211e-05
7.45054e-05
0.000105278
0.000129316
0.000150384
0.000170813
0.000191537
0.000207573
0.00021641
0.000222378
0.000225794
0.000226955
0.000226147
0.000223638
0.00021968
0.000214285
0.000208246
0.000202077
0.000195746
0.000189239
0.000182462
0.000175047
0.000166181
0.0001545
0.00013822
0.000115912
8.83679e-05
6.48657e-05
4.19752e-05
3.03276e-05
2.13757e-05
6.6097e-06
3.25259e-06
1.79716e-06
6.65341e-06
3.74699e-05
7.7616e-05
0.000114131
0.000142054
0.000165936
0.000188553
0.000210492
0.00022554
0.00023605
0.000243572
0.00024844
0.000250964
0.000251435
0.000250121
0.000247268
0.000243024
0.000237875
0.000232096
0.000225676
0.000218583
0.000210615
0.000201271
0.000189647
0.000174408
0.000154054
0.000127773
9.70687e-05
7.08983e-05
4.32897e-05
3.10314e-05
2.18598e-05
6.61828e-06
3.35843e-06
1.9281e-06
7.58707e-06
4.11683e-05
8.34401e-05
0.000121271
0.000150384
0.000175725
0.000199884
0.000223746
0.000242533
0.00025496
0.000264326
0.000270944
0.000275109
0.000277102
0.000277186
0.000275594
0.000272529
0.000268281
0.000263004
0.00025669
0.00024923
0.000240316
0.000229354
0.000215406
0.000197247
0.000173708
0.000144518
0.000111639
7.81235e-05
4.6348e-05
3.26339e-05
2.27881e-05
6.78039e-06
3.45929e-06
1.92552e-06
7.73664e-06
4.24085e-05
8.70284e-05
0.000128315
0.000163278
0.000192346
0.000219129
0.000243572
0.000261402
0.000275687
0.000286776
0.000294992
0.000300637
0.000303994
0.00030532
0.000304842
0.000302743
0.00029922
0.000294358
0.000288105
0.00028028
0.000270498
0.000258126
0.000242267
0.000221881
0.000196149
0.000165191
0.00013103
8.58569e-05
5.08118e-05
3.48743e-05
2.39011e-05
6.91603e-06
3.55964e-06
2.03549e-06
8.6441e-06
4.59047e-05
9.27255e-05
0.000135959
0.000172784
0.000203756
0.000232602
0.000259479
0.000279423
0.000295751
0.000308789
0.000318839
0.000326185
0.000331096
0.000333817
0.000334558
0.000333484
0.000330727
0.000326324
0.000320176
0.00031204
0.000301479
0.00028783
0.00027023
0.000247752
0.000219739
0.000186401
0.000149538
9.60797e-05
5.68556e-05
3.80543e-05
2.55371e-05
7.19122e-06
3.6545e-06
2.04834e-06
8.89621e-06
4.74578e-05
9.66291e-05
0.000142755
0.000183768
0.000219511
0.000250283
0.000276503
0.000298586
0.000316909
0.000331807
0.000343588
0.000352531
0.000358892
0.000362898
0.000364737
0.000364544
0.000362398
0.000358282
0.000352042
0.000343377
0.000331796
0.000316614
0.000296993
0.000272093
0.000241389
0.000205194
0.000165268
0.00010619
6.34578e-05
4.18037e-05
2.75314e-05
7.47554e-06
3.7429e-06
2.14353e-06
9.76896e-06
5.07683e-05
0.000102229
0.00015053
0.000193697
0.000231624
0.000264605
0.000293016
0.000317229
0.000337593
0.000354424
0.000368011
0.000378616
0.000386473
0.000391785
0.000394711
0.000395352
0.000393739
0.000389803
0.000383343
0.000374007
0.000361271
0.000344445
0.000322735
0.000295395
0.00026203
0.000223061
0.000180276
0.000116881
7.08672e-05
4.62828e-05
3.0038e-05
7.85803e-06
3.8229e-06
2.17574e-06
1.01677e-05
5.27188e-05
0.000106533
0.000157531
0.00020343
0.000243989
0.000279446
0.000310162
0.000336513
0.000358854
0.000377508
0.000392765
0.00040488
0.000414073
0.000420521
0.000424353
0.000425631
0.000424341
0.000420365
0.000413456
0.000403226
0.000389135
0.000370511
0.000346624
0.000316844
0.000280918
0.000239389
0.000194089
0.000127139
7.85569e-05
5.12584e-05
3.29656e-05
8.26744e-06
3.89206e-06
2.26421e-06
1.10159e-05
5.58936e-05
0.00011209
0.000165452
0.000213693
0.00025656
0.00029427
0.00032716
0.00035558
0.000379866
0.000400322
0.000417222
0.000430804
0.000441265
0.000448759
0.000453383
0.000455165
0.000454053
0.00044989
0.000442398
0.000431169
0.000415667
0.00039526
0.000369299
0.000337272
0.000299056
0.000255285
0.000207791
0.000137735
8.67821e-05
5.68029e-05
3.63454e-05
8.74379e-06
3.95194e-06
2.31611e-06
1.15579e-05
5.82603e-05
0.00011694
0.000173002
0.000223927
0.000269363
0.000309486
0.000344617
0.0003751
0.000401269
0.000423425
0.000441837
0.000456732
0.000468292
0.000476649
0.000481873
0.000483963
0.000482832
0.000478297
0.000470058
0.000457703
0.000440715
0.000418513
0.000390539
0.000356399
0.0003161
0.000270355
0.000219722
0.000147901
9.52125e-05
6.28382e-05
4.02256e-05
9.25344e-06
3.99913e-06
2.40531e-06
1.24271e-05
6.14637e-05
0.00012265
0.000181222
0.00023461
0.000282434
0.000324843
0.000362132
0.000394623
0.000422631
0.000446441
0.000466307
0.000482441
0.000495007
0.000504117
0.000509818
0.000512086
0.000510811
0.000505791
0.00049672
0.000483195
0.000464731
0.000440808
0.000410959
0.000374905
0.000332761
0.000285312
0.000230365
0.000158383
0.000104111
6.93766e-05
4.45852e-05
9.81904e-06
4.03564e-06
2.47237e-06
1.31165e-05
6.42137e-05
0.000127991
0.000189273
0.00024531
0.000295651
0.000340415
0.00037988
0.00041436
0.000444157
0.000469548
0.000490773
0.000508033
0.000521477
0.000531202
0.000537239
0.000539544
0.000537994
0.000532378
0.000522394
0.000507658
0.000487725
0.000462143
0.000430531
0.000392711
0.000348892
0.000299899
0.000240856
0.000168789
0.000113369
7.64495e-05
4.83223e-05
1.03999e-05
4.0619e-06
2.56011e-06
1.39979e-05
6.74244e-05
0.000133826
0.000197749
0.000256341
0.000309109
0.000356151
0.000397729
0.00043414
0.000465673
0.000492587
0.00051511
0.000533425
0.000547668
0.000557919
0.000564196
0.000566446
0.000564538
0.000558262
0.000547326
0.000531374
0.000510006
0.000482833
0.000449554
0.000410079
0.000364687
0.000314233
0.000251391
0.00017949
0.000123262
8.39882e-05
5.11913e-05
1.09249e-05
4.07693e-06
2.63395e-06
1.4759e-05
7.03344e-05
0.000139401
0.000206078
0.000267332
0.000322599
0.00037195
0.000415635
0.000453944
0.000487158
0.000515529
0.000539273
0.000558562
0.000573519
0.000584213
0.00059065
0.000592773
0.000590449
0.000583474
0.000571576
0.000554427
0.000531676
0.000502991
0.000468145
0.000427118
0.000380247
0.0003284
0.000262202
0.000190683
0.000133838
9.20671e-05
5.39674e-05
1.14031e-05
4.08005e-06
2.71875e-06
1.56268e-05
7.34664e-05
0.000145187
0.000214571
0.000278435
0.000336155
0.000387772
0.000433518
0.000473676
0.000508516
0.000538284
0.000563185
0.000583381
0.000598986
0.00061006
0.000616603
0.000618554
0.000615784
0.000608103
0.000595259
0.000576958
0.000552895
0.000522795
0.000486489
0.000444015
0.000395747
0.000342553
0.000273512
0.000202434
0.000145019
0.000100626
5.67124e-05
1.18519e-05
4.07518e-06
2.79595e-06
1.64197e-05
7.63949e-05
0.000150746
0.000222853
0.000289351
0.000349536
0.000403413
0.0004512
0.000493168
0.000529584
0.00056069
0.000586686
0.000607728
0.000623924
0.000635328
0.000641939
0.000643697
0.00064048
0.000632113
0.000618369
0.000598989
0.000573711
0.000542313
0.000504675
0.000460876
0.000411305
0.000356809
0.000285229
0.00021478
0.000157009
0.000109942
5.95361e-05
1.23069e-05
4.06278e-06
2.87867e-06
1.72792e-05
7.94406e-05
0.000156386
0.00023115
0.000300214
0.000362803
0.000418882
0.000468651
0.000512369
0.0005503
0.000582679
0.000609704
0.00063153
0.000648262
0.000659954
0.000666606
0.000668162
0.000664514
0.000655502
0.000640926
0.00062056
0.000594185
0.000561623
0.000522799
0.000477818
0.000427067
0.000370463
0.000297611
0.000227978
0.000169882
0.000120036
6.24808e-05
1.27788e-05
4.04606e-06
2.95735e-06
1.81082e-05
8.2385e-05
0.000161877
0.000239254
0.000310836
0.000375772
0.000433994
0.000485682
0.000531087
0.000570466
0.000604053
0.000632047
0.000654602
0.000671824
0.000683772
0.00069045
0.000691812
0.000687762
0.00067816
0.00066283
0.000641579
0.000614221
0.000580617
0.000540723
0.000494666
0.000442824
0.000382183
0.000310035
0.000242
0.000183792
0.000129343
6.55438e-05
1.32917e-05
4.02638e-06
3.03771e-06
1.89729e-05
8.53774e-05
0.00016738
0.000247312
0.000321339
0.000388544
0.000448824
0.000502343
0.000549346
0.000590086
0.000624799
0.000653685
0.0006769
0.000694559
0.000706723
0.000713409
0.000714582
0.000710161
0.000700026
0.000684024
0.000661988
0.000633762
0.000599229
0.000558368
0.000511309
0.000458411
0.00039411
0.000323497
0.000257784
0.00019878
0.000135996
6.83544e-05
1.37929e-05
4.00213e-06
3.11611e-06
1.98205e-05
8.82959e-05
0.000172753
0.000255182
0.000331588
0.000400987
0.000463245
0.000518512
0.000567025
0.000609042
0.000644798
0.000674498
0.000698307
0.000716345
0.000728686
0.000735356
0.000736337
0.000731566
0.000720941
0.000704333
0.0006816
0.000652609
0.000617263
0.000575549
0.000527584
0.000472908
0.000406026
0.000338207
0.000275074
0.00021257
0.000142673
7.11432e-05
1.42997e-05
3.97454e-06
3.1937e-06
2.06525e-05
9.1131e-05
0.00017797
0.000262826
0.000341548
0.000413073
0.000477236
0.00053417
0.000584112
0.000627319
0.000664033
0.000694466
0.000718792
0.000737143
0.000749606
0.00075622
0.000756986
0.000751857
0.000740756
0.000723573
0.00070019
0.000670491
0.000634397
0.000591898
0.000543105
0.00048348
0.000418736
0.000355474
0.000292918
0.000222198
0.000148884
7.37514e-05
1.4785e-05
3.94447e-06
3.27092e-06
2.14663e-05
9.38731e-05
0.000182997
0.000270185
0.000351133
0.000424704
0.000490693
0.00054922
0.000600514
0.000644835
0.000682431
0.000713525
0.000738301
0.000756903
0.000769433
0.000775949
0.000776466
0.000770962
0.000759378
0.00074163
0.000717618
0.000687246
0.000650446
0.000607158
0.000553169
0.000494309
0.000434808
0.000373756
0.000304199
0.000231138
0.000154657
7.61827e-05
1.52463e-05
3.91179e-06
3.34673e-06
2.2252e-05
9.64994e-05
0.000187802
0.000277219
0.000360298
0.000435831
0.000503571
0.000563618
0.000616195
0.000661562
0.000699974
0.000731664
0.000756827
0.000775623
0.000788169
0.000794543
0.00079478
0.000788877
0.0007768
0.000758487
0.00073386
0.000702842
0.000662238
0.000614678
0.000562864
0.000509213
0.000452214
0.000385758
0.000314777
0.000239476
0.000160023
7.84381e-05
1.56791e-05
3.87705e-06
3.42326e-06
2.30298e-05
9.90568e-05
0.000192428
0.000283947
0.000369034
0.000446415
0.000515806
0.000577288
0.000631073
0.000677421
0.000716592
0.000748824
0.000774328
0.000793275
0.000805802
0.000812002
0.000811933
0.000805615
0.000793036
0.000774159
0.00074604
0.000710274
0.000669019
0.000623971
0.000576816
0.000526369
0.000464383
0.000397089
0.000324659
0.0002472
0.000164969
8.05134e-05
1.60829e-05
3.84109e-06
3.49803e-06
2.37882e-05
0.000101532
0.000196888
0.000290406
0.000377393
0.000456513
0.000527452
0.000590273
0.000645182
0.000692437
0.000732301
0.000765023
0.000790823
0.000809887
0.000822368
0.000828378
0.000827996
0.000821262
0.000808188
0.000784187
0.000753034
0.000716974
0.000677612
0.000636485
0.000592723
0.00053846
0.000475995
0.000407769
0.000333861
0.000254326
0.000169502
8.24041e-05
1.64523e-05
3.80393e-06
3.5732e-06
2.45556e-05
0.000103996
0.000201261
0.000296676
0.000385445
0.000466186
0.00053856
0.000602617
0.000658558
0.000706642
0.000747135
0.000780294
0.000806349
0.000825501
0.000837918
0.000843731
0.000843038
0.000835904
0.000818214
0.000791478
0.000759551
0.000724576
0.000688301
0.000650997
0.000607132
0.000550171
0.000487062
0.00041782
0.000342433
0.000260907
0.000173655
8.41228e-05
1.67883e-05
3.76552e-06
3.64536e-06
2.52988e-05
0.000106379
0.00020549
0.000302724
0.000393185
0.00047545
0.00054916
0.000614357
0.000671244
0.000720079
0.000761136
0.000794681
0.000820954
0.000840169
0.00085251
0.000858126
0.000857132
0.000847739
0.00082611
0.00079799
0.000766535
0.000733916
0.00070134
0.000666458
0.000618753
0.000561377
0.000497581
0.000427304
0.000350465
0.000267038
0.000177509
8.57208e-05
1.71039e-05
3.7267e-06
3.71631e-06
2.60265e-05
0.000108692
0.000209574
0.000308539
0.000400601
0.000484294
0.000559247
0.000625497
0.000683248
0.000732764
0.000774329
0.000808215
0.000834675
0.000853937
0.000866199
0.000871627
0.000870355
0.000856444
0.000832642
0.00080423
0.000774217
0.000744621
0.000715617
0.000681346
0.000629979
0.000572085
0.000507542
0.000436212
0.000357955
0.000272716
0.000181054
8.71796e-05
1.73925e-05
3.68753e-06
3.784e-06
2.67194e-05
0.000110894
0.000213461
0.000314071
0.000407646
0.000492684
0.000568798
0.000636023
0.000694567
0.000744703
0.000786723
0.00082091
0.000847531
0.000866826
0.000879007
0.000884256
0.000881181
0.000863356
0.000838415
0.000810724
0.000783084
0.000756969
0.00073021
0.00069236
0.00064068
0.000582273
0.000516974
0.000444601
0.000364968
0.000278004
0.000184336
8.8524e-05
1.76597e-05
3.64792e-06
3.84955e-06
2.73785e-05
0.000112973
0.000217122
0.000319275
0.000414271
0.000500568
0.000577767
0.0006459
0.000705179
0.000755885
0.00079832
0.00083278
0.000859544
0.000878866
0.000890973
0.000896059
0.000888669
0.000868884
0.000843821
0.000817626
0.000792853
0.00077006
0.000744786
0.000702933
0.000650878
0.000591932
0.000525884
0.000452499
0.000371551
0.000282954
0.000187405
8.97881e-05
1.79152e-05
3.60851e-06
3.91206e-06
2.79931e-05
0.000114908
0.000220531
0.000324126
0.000420449
0.000507925
0.000586137
0.000655116
0.000715078
0.000766312
0.000809129
0.00084384
0.000870734
0.000890081
0.000902121
0.000907066
0.000894675
0.000873269
0.000848837
0.000824778
0.000803108
0.000783391
0.000758688
0.000713011
0.000660536
0.000601023
0.000534217
0.00045984
0.000377626
0.000287481
0.000190178
9.09084e-05
1.81381e-05
3.56847e-06
3.97249e-06
2.85654e-05
0.000116691
0.000223674
0.000328603
0.000426157
0.000514727
0.000593884
0.000663653
0.000724253
0.00077598
0.000819155
0.0008541
0.000881117
0.000900487
0.000912463
0.000913891
0.000899092
0.000877392
0.00085416
0.000832615
0.00081422
0.000796533
0.000768507
0.000722591
0.000669717
0.000609645
0.000542093
0.00046675
0.000383321
0.000291705
0.000192754
9.19523e-05
1.83489e-05
3.5289e-06
4.03081e-06
2.91179e-05
0.000118393
0.000226642
0.000332797
0.000431479
0.000521052
0.000601075
0.00067157
0.000732758
0.000784941
0.000828451
0.000863616
0.000890753
0.000910153
0.000922083
0.000919171
0.000902613
0.000881092
0.000859559
0.000840842
0.000825525
0.000809211
0.000777865
0.000731681
0.00067841
0.000617789
0.000549511
0.000473236
0.000388643
0.000295628
0.000195118
9.2891e-05
1.85373e-05
3.48936e-06
4.0863e-06
2.96391e-05
0.000119988
0.000229415
0.000336709
0.000436432
0.000526927
0.000607744
0.000678905
0.000740635
0.000793242
0.000837063
0.000872438
0.000899694
0.000919134
0.000931035
0.000923603
0.000905505
0.000884569
0.00086505
0.000849181
0.000836631
0.000821323
0.000786787
0.000740326
0.000686659
0.000625498
0.000556511
0.000479333
0.000393618
0.00029927
0.000197283
9.37143e-05
1.86929e-05
3.44987e-06
4.13854e-06
3.01206e-05
0.00012146
0.000231977
0.000340324
0.00044101
0.000532356
0.000613907
0.000685684
0.000747916
0.000800916
0.000845028
0.000880602
0.000907971
0.000927451
0.000937404
0.000927034
0.000908433
0.000888486
0.000870983
0.000857739
0.000847623
0.00083304
0.000795319
0.000748584
0.00069453
0.000632848
0.000563182
0.000485144
0.000398373
0.000302775
0.000199412
9.45778e-05
1.88629e-05
3.41188e-06
4.18761e-06
3.05471e-05
0.00012277
0.000234275
0.000343585
0.000445159
0.000537294
0.000619529
0.000691885
0.000754592
0.000807971
0.00085237
0.000888147
0.000915642
0.000935178
0.000941832
0.000929956
0.000911328
0.000892533
0.000877084
0.000866417
0.000858518
0.000843331
0.00080348
0.000756477
0.000702046
0.000639861
0.000569544
0.000490687
0.000402917
0.000306147
0.000201499
9.54708e-05
1.90489e-05
3.37517e-06
4.23449e-06
3.09435e-05
0.000123984
0.000236389
0.000346572
0.000448949
0.000541802
0.000624662
0.00069755
0.0007607
0.000814437
0.000859116
0.000895099
0.000922734
0.00094235
0.000945721
0.000932483
0.000914038
0.000896614
0.000883449
0.000875425
0.000868971
0.00085122
0.000811241
0.000764
0.000709214
0.000646545
0.000575601
0.000495955
0.000407226
0.000309336
0.000203468
9.63154e-05
1.92276e-05
3.33938e-06
4.2791e-06
3.13085e-05
0.000125102
0.000238336
0.000349322
0.000452436
0.000545945
0.000629376
0.000702752
0.00076631
0.00082038
0.000865324
0.000901509
0.00092929
0.000948999
0.000948926
0.000934477
0.000916491
0.000900692
0.000889893
0.000884289
0.000878916
0.000858767
0.000818662
0.000771195
0.000716073
0.000652943
0.000581397
0.000500994
0.000411345
0.000312382
0.000205348
9.71264e-05
1.94022e-05
3.30521e-06
4.32248e-06
3.16431e-05
0.000126126
0.000240126
0.000351854
0.000455649
0.000549762
0.000633718
0.000707541
0.000771473
0.000825848
0.000871038
0.000907415
0.00093534
0.000955152
0.000951413
0.000935949
0.000918733
0.000904775
0.000896355
0.00089299
0.000888492
0.000865996
0.000825771
0.00077809
0.000722648
0.000659078
0.000586958
0.000505832
0.000415302
0.000315312
0.000207163
9.79197e-05
1.95767e-05
3.27347e-06
4.36506e-06
3.19679e-05
0.000127116
0.000241846
0.000354269
0.000458692
0.000553358
0.000637788
0.00071201
0.000776273
0.000830918
0.000876321
0.000912861
0.000940905
0.000959236
0.000952737
0.000937065
0.00092095
0.000908817
0.000902596
0.000901255
0.000897529
0.000872898
0.000832562
0.000784678
0.000728929
0.000664936
0.000592262
0.000510439
0.000419064
0.000318091
0.00020888
9.86696e-05
1.97436e-05
3.24402e-06
4.40671e-06
3.22786e-05
0.00012806
0.000243488
0.000356574
0.000461591
0.000556771
0.000641638
0.000716223
0.000780783
0.000835665
0.000881252
0.000917931
0.000946072
0.000961092
0.000953317
0.000937834
0.000922885
0.000912543
0.000908411
0.000908949
0.000905953
0.000879486
0.000839054
0.000790981
0.000734939
0.000670538
0.00059733
0.000514837
0.000422649
0.000320735
0.00021051
9.93835e-05
1.9905e-05
3.21668e-06
4.4468e-06
3.25757e-05
0.000128965
0.000245061
0.000358779
0.000464359
0.000560025
0.000645299
0.000720219
0.000785046
0.000840139
0.000885886
0.000922681
0.000950899
0.000962373
0.000953353
0.000938189
0.000924505
0.000915966
0.000913851
0.000916163
0.000913865
0.000885749
0.00084523
0.000796979
0.000740659
0.000675868
0.000602147
0.000519011
0.000426047
0.000323238
0.000212055
0.000100064
2.00606e-05
3.19107e-06
4.48478e-06
3.28369e-05
0.000129767
0.000246485
0.000360803
0.000466925
0.000563059
0.000648725
0.000723966
0.000789049
0.000844338
0.000890231
0.000927128
0.00095541
0.000963147
0.000952894
0.000938133
0.000925761
0.00091899
0.000918793
0.000922776
0.000921189
0.000891678
0.000851083
0.000802664
0.000746074
0.000680904
0.000606685
0.000522926
0.000429216
0.000325553
0.000213464
0.000100672
2.01986e-05
3.16637e-06
4.52083e-06
3.30685e-05
0.000130484
0.000247768
0.00036264
0.000469267
0.000565842
0.000651882
0.00072743
0.000792758
0.000848237
0.000894271
0.000931266
0.000959609
0.000963635
0.000952217
0.000937892
0.000926797
0.00092169
0.000923261
0.000928793
0.000927916
0.000897292
0.000856633
0.000808057
0.00075121
0.000685672
0.000610971
0.00052661
0.000432181
0.000327702
0.000214758
0.00010122
2.03211e-05
3.14201e-06
4.55488e-06
3.32753e-05
0.000131127
0.000248927
0.00036431
0.000471405
0.000568393
0.000654784
0.000730622
0.000796184
0.000851845
0.000898015
0.000935105
0.000963509
0.000963894
0.000951429
0.000937599
0.000927733
0.00092415
0.000927307
0.000934233
0.000934057
0.000902601
0.00086189
0.000813171
0.000756079
0.000690188
0.00061502
0.000530076
0.000434953
0.000329694
0.00021594
0.000101708
2.04271e-05
3.11757e-06
4.58692e-06
3.34439e-05
0.000131659
0.000249914
0.000365759
0.000473287
0.000570662
0.000657386
0.000733504
0.000799291
0.000855127
0.000901427
0.000938608
0.000965999
0.00096379
0.000950927
0.000937688
0.000928839
0.000926489
0.000930982
0.000939145
0.000939672
0.000907639
0.000866892
0.000818047
0.000760729
0.000694505
0.000618889
0.000533383
0.000437591
0.000331579
0.000217049
0.000102158
2.05225e-05
3.09317e-06
4.61788e-06
3.35866e-05
0.000132113
0.000250769
0.00036703
0.000474955
0.000572689
0.000659729
0.000736114
0.000802121
0.000858131
0.000904561
0.000941831
0.000966879
0.000963655
0.000950706
0.000937965
0.000929967
0.000928685
0.000934361
0.000943648
0.000944863
0.000912419
0.000871651
0.000822698
0.000765175
0.000698641
0.000622603
0.000536561
0.000440128
0.000333393
0.000218118
0.000102594
2.06126e-05
3.0689e-06
4.64849e-06
3.37104e-05
0.000132498
0.000251501
0.000368132
0.000476417
0.000574484
0.00066182
0.000738461
0.000804683
0.000860868
0.000907433
0.000944802
0.000967697
0.000963592
0.000950627
0.00093837
0.00093114
0.000930805
0.000937538
0.000947855
0.000949732
0.000916957
0.000876182
0.000827138
0.000769431
0.000702609
0.000626173
0.000539622
0.000442574
0.000335142
0.000219148
0.000103012
2.06977e-05
3.04495e-06
4.68015e-06
3.38409e-05
0.000132886
0.000252194
0.000369144
0.000477742
0.000576103
0.000663707
0.000740584
0.000807008
0.00086336
0.000910061
0.000947531
0.000968393
0.000963526
0.0009506
0.000938817
0.000932293
0.000932812
0.00094049
0.000951731
0.000954027
0.000921251
0.000880481
0.000831362
0.000773491
0.000706405
0.000629598
0.000542564
0.000444928
0.000336825
0.000220134
0.000103409
2.07767e-05
3.02084e-06
4.71321e-06
3.39712e-05
0.000133261
0.000252855
0.00037009
0.000478964
0.000577586
0.000665428
0.000742518
0.000809128
0.000865638
0.000912468
0.000950038
0.000968891
0.000963353
0.000950538
0.000939249
0.000933408
0.000934721
0.000943261
0.000955332
0.000958002
0.000925307
0.00088455
0.000835372
0.000777357
0.000710033
0.000632884
0.000545401
0.000447213
0.000338474
0.000221118
0.000103819
2.08603e-05
2.99673e-06
4.74751e-06
3.40944e-05
0.000133614
0.000253464
0.000370955
0.000480074
0.000578926
0.000666982
0.000744266
0.000811048
0.000867706
0.000914659
0.000952329
0.000969227
0.000963096
0.000950449
0.000939681
0.000934518
0.000936599
0.000945966
0.000958806
0.000961738
0.000929121
0.00088838
0.000839149
0.000781005
0.000713462
0.000635998
0.000548098
0.000449393
0.000340058
0.000222073
0.000104225
2.09438e-05
2.97268e-06
4.78171e-06
3.41993e-05
0.000133913
0.000253984
0.000371693
0.000481027
0.000580087
0.000668339
0.000745804
0.000812749
0.000869551
0.000916627
0.000954396
0.000969381
0.000962711
0.000950286
0.000940074
0.000935599
0.000938439
0.000948614
0.00096217
0.000965239
0.000932696
0.000891973
0.000842697
0.000784433
0.00071669
0.000638933
0.000550644
0.000451457
0.000341562
0.000222988
0.000104623
2.10253e-05
2.94865e-06
4.81509e-06
3.42842e-05
0.000134147
0.000254397
0.000372288
0.000481804
0.000581044
0.000669473
0.000747107
0.000814209
0.000871154
0.000918354
0.000956228
0.00096945
0.000962291
0.000950104
0.000940455
0.000936671
0.000940272
0.000951246
0.000965449
0.000968511
0.000936038
0.000895332
0.000846015
0.000787642
0.000719712
0.000641683
0.000553031
0.000453391
0.000342972
0.000223843
0.000104994
2.11003e-05
2.92455e-06
4.8471e-06
3.43556e-05
0.000134335
0.000254724
0.000372758
0.00048242
0.000581812
0.000670394
0.00074818
0.00081543
0.000872513
0.000919839
0.000957823
0.000969492
0.000961901
0.000949955
0.000940867
0.000937787
0.000942176
0.000953963
0.000968737
0.00097156
0.000939152
0.000898461
0.000849105
0.00079063
0.000722526
0.000644244
0.000555254
0.000455195
0.000344288
0.000224644
0.000105343
2.11688e-05
2.90014e-06
4.87804e-06
3.44088e-05
0.000134467
0.000254953
0.000373089
0.000482863
0.000582378
0.000671092
0.000749016
0.000816405
0.000873623
0.000921077
0.000959177
0.000969496
0.00096154
0.00094985
0.000941337
0.000938993
0.000944232
0.000956885
0.000972161
0.000974399
0.000942048
0.000901372
0.000851979
0.000793409
0.000725144
0.000646627
0.000557325
0.000456877
0.000345519
0.000225399
0.000105677
2.12336e-05
2.87586e-06
4.9088e-06
3.44568e-05
0.000134576
0.000255125
0.000373322
0.000483169
0.000582772
0.000671591
0.000749632
0.000817146
0.000874491
0.00092207
0.000960287
0.000969269
0.000961018
0.000949633
0.00094173
0.000940172
0.000946317
0.000959847
0.000975544
0.00097702
0.000944724
0.000904061
0.000854633
0.000795974
0.000727556
0.000648818
0.000559221
0.000458408
0.000346628
0.000226066
0.000105962
2.12855e-05
2.85155e-06
4.9402e-06
3.45017e-05
0.000134666
0.000255251
0.000373475
0.000483358
0.000583017
0.000671912
0.000750048
0.000817669
0.000875129
0.000922824
0.000961155
0.000968731
0.000960243
0.000949254
0.000942042
0.000941332
0.000948422
0.00096282
0.00097886
0.000979428
0.000947185
0.000906537
0.000857079
0.000798339
0.000729781
0.000650837
0.000560966
0.000459813
0.000347641
0.000226671
0.000106217
2.13293e-05
2.82708e-06
4.97263e-06
3.45524e-05
0.000134764
0.000255366
0.000373585
0.000483467
0.000583144
0.000672081
0.000750282
0.000817988
0.000875546
0.000923346
0.000961783
0.000967805
0.000959122
0.000948652
0.000942249
0.000942473
0.000950554
0.000965825
0.000982151
0.000981623
0.000949433
0.000908803
0.000859322
0.000800511
0.000731827
0.000652696
0.000562574
0.000461108
0.000348575
0.00022723
0.000106455
2.13698e-05
2.80308e-06
5.00597e-06
3.46085e-05
0.00013487
0.000255481
0.000373673
0.000483523
0.000583182
0.000672126
0.000750359
0.00081812
0.000875751
0.000923636
0.000962167
0.000966317
0.000957548
0.000947744
0.000942247
0.000943452
0.000952526
0.000968643
0.000985229
0.000983594
0.00095146
0.000910853
0.000861357
0.000802484
0.000733686
0.000654383
0.000564026
0.000462268
0.000349398
0.000227705
0.000106644
2.13979e-05
2.77922e-06
5.03998e-06
3.46671e-05
0.000134978
0.000255595
0.000373745
0.000483537
0.000583145
0.000672058
0.000750286
0.000818065
0.000875733
0.000923666
0.000960338
0.000964095
0.000955774
0.000946719
0.000942072
0.000944181
0.000954183
0.000971089
0.000987927
0.000985341
0.000953271
0.000912697
0.000863197
0.000804276
0.00073538
0.000655923
0.000565354
0.000463327
0.000350147
0.000228134
0.000106811
2.14218e-05
2.75568e-06
5.07397e-06
3.47383e-05
0.000135118
0.000255753
0.000373857
0.00048357
0.000583096
0.000671943
0.000750128
0.00081789
0.000875562
0.000923515
0.000958208
0.000961598
0.000953753
0.000945484
0.000941699
0.000944695
0.000955589
0.000973262
0.000990358
0.000986849
0.000954851
0.00091432
0.00086483
0.000805879
0.000736906
0.000657321
0.000566568
0.000464302
0.00035084
0.000228534
0.00010697
2.1446e-05
2.73292e-06
5.10701e-06
3.48149e-05
0.000135273
0.000255942
0.000374006
0.000483634
0.000583058
0.00067181
0.000749919
0.00081763
0.000875273
0.000923215
0.000955943
0.000958938
0.000951557
0.000944069
0.000941128
0.000944966
0.000956682
0.000975058
0.000992411
0.000988092
0.000956167
0.000915684
0.00086621
0.000807238
0.000738204
0.000658508
0.000567594
0.000465117
0.000351404
0.000228838
0.000107072
2.14551e-05
2.71013e-06
5.13853e-06
3.49032e-05
0.000135458
0.000256178
0.000374211
0.000483749
0.000583056
0.000671688
0.000749691
0.000817317
0.000874901
0.000922806
0.00095377
0.000956357
0.000949346
0.000942547
0.000940373
0.000944974
0.000957419
0.0009764
0.000993985
0.000989075
0.000957226
0.000916795
0.000867344
0.000808364
0.000739282
0.000659497
0.000568448
0.00046579
0.000351861
0.000229072
0.000107137
2.14556e-05
2.68724e-06
5.16817e-06
3.50046e-05
0.000135676
0.000256466
0.000374484
0.000483938
0.000583122
0.000671616
0.000749489
0.000817003
0.000874499
0.00092234
0.000951896
0.000954098
0.000947338
0.000941092
0.000939576
0.000944854
0.000957951
0.000977471
0.000995251
0.000989794
0.000958021
0.000917643
0.000868221
0.000809241
0.000740128
0.000660276
0.00056912
0.000466318
0.000352214
0.000229244
0.000107175
2.14505e-05
2.6644e-06
5.19602e-06
3.51067e-05
0.000135896
0.000256762
0.000374777
0.000484157
0.000583222
0.000671576
0.000749307
0.000816694
0.000874085
0.000921846
0.000950342
0.000952194
0.000945592
0.000939778
0.000938806
0.000944661
0.00095832
0.000978297
0.000996225
0.000990255
0.000958548
0.000918218
0.000868824
0.000809848
0.000740712
0.000660807
0.000569567
0.00046665
0.000352408
0.0002293
0.000107145
2.14266e-05
2.64089e-06
5.2229e-06
3.52108e-05
0.000136117
0.00025706
0.000375077
0.000484393
0.000583346
0.000671563
0.000749151
0.000816403
0.000873679
0.00092135
0.000949145
0.000950708
0.000944187
0.000938692
0.000938164
0.000944511
0.000958653
0.000979007
0.000997013
0.000990489
0.000958836
0.000918548
0.000869178
0.000810209
0.000741061
0.00066112
0.00056982
0.00046682
0.000352478
0.000229275
0.000107075
2.13933e-05
2.61708e-06
5.24964e-06
3.52921e-05
0.000136279
0.000257272
0.000375286
0.000484547
0.000583405
0.000671503
0.000748963
0.000816091
0.000873257
0.00092084
0.000948122
0.000949466
0.00094301
0.000937785
0.000937649
0.000944444
0.000959019
0.000979689
0.000997691
0.000990529
0.000958912
0.000918651
0.000869299
0.000810336
0.000741181
0.000661219
0.000569882
0.000466831
0.000352429
0.000229173
0.000106967
2.13503e-05
2.59285e-06
5.27747e-06
3.53365e-05
0.000136338
0.000257326
0.000375311
0.000484518
0.000583299
0.000671302
0.000748659
0.000815687
0.000872763
0.000920273
0.000947096
0.000948284
0.000941933
0.000936992
0.000937245
0.000944469
0.000959446
0.000980377
0.000998297
0.000990416
0.000958814
0.000918563
0.000869214
0.00081025
0.000741087
0.000661113
0.000569758
0.000466684
0.000352258
0.000228991
0.00010682
2.12974e-05
2.56843e-06
5.30795e-06
3.53297e-05
0.00013625
0.000257147
0.000375051
0.000484186
0.000582899
0.000670836
0.000748128
0.000815094
0.000872117
0.000919585
0.000945935
0.000947039
0.000940868
0.00093626
0.000936927
0.000944589
0.000959954
0.000981102
0.000998869
0.000990197
0.000958591
0.00091833
0.00086897
0.000809993
0.000740819
0.000660835
0.000569475
0.0004664
0.000351983
0.000228742
0.00010664
2.12364e-05
2.54386e-06
5.34295e-06
3.52678e-05
0.000135996
0.000256686
0.000374423
0.000483444
0.000582085
0.000669978
0.000747244
0.000814196
0.000871214
0.000918688
0.000944561
0.000945683
0.000939798
0.000935605
0.000936746
0.000944887
0.000960662
0.000982018
0.000999555
0.000989915
0.000958286
0.000917997
0.000868607
0.000809603
0.000740407
0.000660412
0.000569052
0.000465993
0.00035161
0.000228429
0.000106429
2.11664e-05
2.51932e-06
5.38389e-06
3.51494e-05
0.000135565
0.000255912
0.000373372
0.000482213
0.000580759
0.00066862
0.000745896
0.000812884
0.000869953
0.000917487
0.000942705
0.000943949
0.000938529
0.000934911
0.000936635
0.000945326
0.000961555
0.000983126
0.00100038
0.00098961
0.000957948
0.000917618
0.000868183
0.000809137
0.000739906
0.00065989
0.000568529
0.000465492
0.00035116
0.000228061
0.000106188
2.1088e-05
2.49459e-06
5.43209e-06
3.49688e-05
0.000134934
0.00025478
0.000371825
0.000480392
0.000578799
0.000666627
0.000743944
0.00081102
0.000868205
0.000915866
0.000940283
0.000941775
0.000937008
0.000934136
0.000936584
0.000945924
0.00096266
0.000984449
0.00100135
0.000989317
0.000957622
0.000917247
0.000867761
0.00080866
0.000739383
0.000659332
0.000567959
0.00046494
0.000350662
0.00022766
0.000105929
2.10035e-05
2.46977e-06
5.48926e-06
3.4766e-05
0.000134205
0.000253412
0.00036989
0.000478057
0.000576242
0.000663999
0.000741358
0.000808554
0.000865904
0.000913753
0.000937241
0.000939132
0.000935237
0.000933302
0.000936634
0.000946766
0.000964132
0.000986196
0.00100267
0.000989053
0.000957336
0.000916926
0.000867394
0.000808243
0.000738917
0.00065883
0.000567439
0.000464432
0.0003502
0.000227284
0.000105686
2.09213e-05
2.44498e-06
5.55582e-06
3.45655e-05
0.000133444
0.000251917
0.000367692
0.000475325
0.00057318
0.000660796
0.000738166
0.000805482
0.000863024
0.000911107
0.000933437
0.000935876
0.000933121
0.000932377
0.000936785
0.000947868
0.000966013
0.000988465
0.00100444
0.00098879
0.000957067
0.000916635
0.000867068
0.000807875
0.000738505
0.000658382
0.000566974
0.000463974
0.000349786
0.000226951
0.000105471
2.08449e-05
2.42057e-06
5.63196e-06
3.44267e-05
0.000132819
0.000250541
0.000365516
0.000472479
0.000569866
0.000657223
0.000734521
0.000801911
0.000859632
0.000907957
0.000928883
0.000932015
0.00093067
0.000931381
0.000937091
0.000949315
0.000968405
0.000991353
0.00100675
0.00098851
0.000956797
0.000916358
0.000866769
0.000807541
0.000738132
0.000657972
0.000566539
0.000463538
0.00034938
0.000226614
0.000105245
2.07613e-05
2.39538e-06
5.71621e-06
3.44127e-05
0.000132514
0.000249588
0.000363744
0.000469932
0.000566705
0.000653652
0.000730739
0.000798092
0.000855911
0.000904432
0.000923262
0.000927172
0.000927586
0.000930099
0.000937381
0.000950948
0.000971116
0.000994594
0.0010093
0.000988187
0.000956501
0.000916071
0.000866473
0.000807221
0.000737778
0.000657581
0.000566118
0.000463104
0.000348962
0.000226252
0.000104993
2.06687e-05
2.36977e-06
5.80589e-06
3.45438e-05
0.0001326
0.000249215
0.000362624
0.000467998
0.000564039
0.000650413
0.000727114
0.000794262
0.000852027
0.000898782
0.000916319
0.000921505
0.000924002
0.000928564
0.000937623
0.000952701
0.00097409
0.000998087
0.00101104
0.000987807
0.000956171
0.000915771
0.000866184
0.000806925
0.000737461
0.000657233
0.000565738
0.000462701
0.000348559
0.000225887
0.000104728
2.057e-05
2.34362e-06
5.8976e-06
3.48161e-05
0.000133084
0.000249482
0.000362295
0.000466898
0.000562151
0.000647826
0.000723969
0.000790714
0.000848222
0.00089023
0.000907702
0.000914904
0.000919871
0.0009267
0.000937746
0.000954615
0.000977365
0.00100118
0.00101042
0.000987297
0.00095574
0.000915394
0.000865839
0.000806592
0.000737118
0.000656868
0.000565342
0.000462279
0.000348127
0.000225484
0.000104428
2.04604e-05
2.31772e-06
5.9885e-06
3.51257e-05
0.000133687
0.000250025
0.000362416
0.000466376
0.000560901
0.000645861
0.000721368
0.000787587
0.000844685
0.000880751
0.000897739
0.000907031
0.000914755
0.000924194
0.000937514
0.000956271
0.000980189
0.0010036
0.00100968
0.000986673
0.00095521
0.000914936
0.000865431
0.000806212
0.000736748
0.000656489
0.000564941
0.000461853
0.000347686
0.000225067
0.00010412
2.03528e-05
2.29225e-06
6.07878e-06
3.53194e-05
0.000133981
0.000250201
0.000362243
0.000465698
0.000559634
0.000643982
0.000718903
0.000784595
0.00084124
0.000870768
0.000887012
0.0008984
0.000909039
0.000921269
0.000936973
0.000957598
0.00098257
0.00100554
0.0010088
0.000985916
0.000954554
0.00091436
0.000864914
0.000805735
0.000736292
0.000656038
0.000564482
0.00046138
0.000347209
0.000224619
0.000103786
2.02375e-05
2.26698e-06
6.17263e-06
3.5275e-05
0.0001336
0.000249389
0.00036097
0.000463971
0.000557459
0.00064136
0.000715834
0.00078108
0.000832939
0.000860188
0.000876956
0.000890341
0.00090353
0.00091831
0.000936275
0.00095868
0.000984633
0.00100718
0.00100777
0.00098501
0.000953752
0.000913641
0.00086426
0.000805127
0.000735712
0.000655469
0.000563915
0.000460809
0.000346644
0.000224099
0.000103406
2.01114e-05
2.24057e-06
6.27748e-06
3.49428e-05
0.000132384
0.000247245
0.000358054
0.000460504
0.000553616
0.00063725
0.000711508
0.00077655
0.000823684
0.000849879
0.000867822
0.000883408
0.000899048
0.000916135
0.000936112
0.000960126
0.000986985
0.00100903
0.00100655
0.000983919
0.000952766
0.000912742
0.000863428
0.000804344
0.000734962
0.00065474
0.000563197
0.000460103
0.000345966
0.000223496
0.000102982
1.99765e-05
2.21356e-06
6.40104e-06
3.44852e-05
0.000130747
0.000244275
0.00035392
0.000455548
0.000548179
0.000631594
0.000705801
0.000770881
0.000815011
0.000840978
0.000860352
0.000878104
0.000896049
0.000915292
0.000937191
0.000962807
0.000990582
0.00101185
0.00100511
0.000982593
0.000951547
0.000911613
0.000862373
0.000803347
0.000734008
0.000653818
0.0005623
0.000459236
0.00034515
0.000222785
0.000102491
1.98235e-05
2.18502e-06
6.54416e-06
3.42143e-05
0.000129541
0.000241691
0.000349882
0.000450322
0.00054215
0.000625136
0.000699217
0.00076439
0.000806898
0.000833566
0.000854847
0.000874897
0.000895082
0.000916367
0.000940123
0.000967349
0.000995995
0.00101602
0.00100336
0.000980944
0.000949993
0.000910146
0.00086098
0.000802018
0.000732733
0.00065259
0.000561119
0.000458113
0.000344116
0.000221906
0.000101898
1.96458e-05
2.15582e-06
6.69587e-06
3.44321e-05
0.000129653
0.000240905
0.000347693
0.000446685
0.000537306
0.000619446
0.00069306
0.000758108
0.000799457
0.000827524
0.00085124
0.000873766
0.000896134
0.000919428
0.000945254
0.00097432
0.00100263
0.00101529
0.00100119
0.000978853
0.000947985
0.000908219
0.000859132
0.000800245
0.000731031
0.000650958
0.000559562
0.000456648
0.000342781
0.000220783
0.000101147
1.94274e-05
2.12425e-06
6.83646e-06
3.53217e-05
0.00013165
0.000242946
0.000348815
0.000446401
0.000535537
0.000616379
0.000689023
0.000753392
0.00079316
0.000822857
0.00084908
0.000874017
0.000898609
0.000924154
0.000952239
0.000982677
0.00100904
0.00101256
0.00099846
0.000976153
0.00094533
0.000905627
0.000856616
0.000797815
0.000728698
0.000648732
0.00055746
0.000454699
0.000341039
0.000219345
0.000100209
1.91662e-05
2.09049e-06
6.94302e-06
3.67643e-05
0.000135255
0.000247609
0.000353331
0.000449916
0.000537618
0.000616941
0.000688206
0.000749448
0.000788595
0.000819551
0.000847882
0.000875075
0.000901847
0.000929512
0.000959454
0.000990552
0.00101438
0.00100943
0.000995195
0.000972805
0.000941947
0.000902252
0.000853288
0.000794567
0.000725561
0.00064574
0.00055465
0.000452117
0.000338759
0.000217493
9.90222e-05
1.88451e-05
2.05155e-06
7.00035e-06
3.83943e-05
0.000139489
0.000253576
0.000359929
0.000456168
0.000542862
0.000620832
0.000690658
0.000748841
0.00078647
0.000817749
0.000847521
0.000876568
0.000905296
0.00093491
0.000966217
0.000996177
0.00101258
0.00100588
0.000991358
0.000968754
0.000937756
0.00089799
0.00084902
0.000790356
0.000721469
0.000641827
0.000550984
0.000448779
0.000335856
0.000215189
9.75907e-05
1.84706e-05
2.00764e-06
7.00413e-06
3.96931e-05
0.000142998
0.000258876
0.000366342
0.000462911
0.000549258
0.000626402
0.000695133
0.000751215
0.000786982
0.000817792
0.000848274
0.000878664
0.000908935
0.000939843
0.000971353
0.000999019
0.00100914
0.00100191
0.000986944
0.000963992
0.000932743
0.000892823
0.000843793
0.000785163
0.0007164
0.000636976
0.000546448
0.000444673
0.000332322
0.000212428
9.5912e-05
1.8038e-05
1.95622e-06
6.96098e-06
4.0239e-05
0.000144649
0.000261696
0.000370259
0.000467587
0.000554244
0.00063127
0.000699547
0.000755369
0.000789774
0.000819808
0.000850407
0.0008815
0.000912614
0.000944005
0.000974978
0.00100026
0.00100539
0.000997476
0.00098193
0.000958511
0.00092691
0.000886757
0.000837616
0.000778995
0.000710366
0.000631203
0.000541074
0.00043985
0.000328234
0.00020931
9.4074e-05
1.75744e-05
1.89989e-06
6.89036e-06
3.99308e-05
0.000144091
0.000261225
0.00037034
0.00046841
0.00055575
0.000633253
0.000701759
0.000759287
0.000793539
0.000823142
0.000853694
0.000885122
0.000916648
0.000948093
0.000978222
0.00100104
0.00100106
0.000992401
0.000976212
0.000952263
0.000920258
0.000879833
0.000830559
0.000771951
0.000703483
0.000624638
0.000534994
0.00043444
0.000323704
0.000205914
9.21117e-05
1.70798e-05
1.83738e-06
6.8181e-06
3.89662e-05
0.000141707
0.00025775
0.000366547
0.000464921
0.000552905
0.000631156
0.000700357
0.000760612
0.000796212
0.000826376
0.000857309
0.000889206
0.000921274
0.00095293
0.000981584
0.00099785
0.000995764
0.000986387
0.000969569
0.000945099
0.000912695
0.000872007
0.000822618
0.000764054
0.000695801
0.000617352
0.000528301
0.000428552
0.000318859
0.000202367
9.01171e-05
1.65821e-05
1.77342e-06
6.76566e-06
3.76904e-05
0.000138267
0.00025225
0.000359816
0.000457812
0.000546058
0.000624954
0.000694973
0.000756563
0.000795715
0.000827907
0.000860277
0.000893392
0.000926508
0.000958376
0.000984464
0.000991827
0.000989093
0.000979117
0.000961773
0.000936868
0.000904143
0.000863267
0.000813838
0.000755398
0.000687449
0.000609498
0.000521153
0.000422336
0.00031381
0.000198726
8.80949e-05
1.60747e-05
1.70744e-06
6.74063e-06
3.63739e-05
0.000134453
0.000245742
0.00035134
0.000448281
0.000536258
0.000615454
0.000686123
0.000748539
0.000790629
0.000826462
0.00086173
0.00089712
0.000931854
0.000962828
0.000980041
0.000983984
0.000980763
0.000970336
0.000952599
0.000927384
0.000894451
0.000853491
0.000804126
0.000745916
0.000678382
0.000601052
0.000513549
0.000415807
0.000308595
0.000195042
8.60922e-05
1.55772e-05
1.64427e-06
6.73991e-06
3.50568e-05
0.000130431
0.000238608
0.000341706
0.000437048
0.000524277
0.000603401
0.000674461
0.000734898
0.000780791
0.000821987
0.000861824
0.00090056
0.000935979
0.000959726
0.000970557
0.000974188
0.000970656
0.000959944
0.000941974
0.000916599
0.000883604
0.000842702
0.000793537
0.000735691
0.000668706
0.000592128
0.000505596
0.000409053
0.00030326
0.000191312
8.40736e-05
1.50709e-05
1.58162e-06
6.75766e-06
3.37005e-05
0.000126151
0.000230845
0.000331005
0.000424312
0.000510411
0.000589179
0.00065985
0.000716952
0.00076829
0.000816562
0.00086204
0.000902637
0.000930255
0.000948286
0.00095898
0.00096245
0.000958758
0.000947912
0.000929855
0.000904466
0.000871551
0.000830846
0.000782015
0.000724667
0.000658365
0.000582675
0.000497253
0.000402046
0.000297799
0.000187557
8.20782e-05
1.45789e-05
1.52402e-06
6.79184e-06
3.23346e-05
0.000121701
0.00022258
0.000319369
0.000410205
0.000494793
0.000569292
0.000635678
0.000698578
0.000758309
0.000813167
0.000857882
0.000891163
0.000916744
0.000934792
0.000945468
0.000948905
0.000945188
0.000934347
0.000916348
0.00089109
0.0008584
0.000818034
0.000769681
0.000712968
0.000647479
0.000572799
0.000488594
0.000394812
0.00029218
0.000183686
8.00061e-05
1.40652e-05
1.46664e-06
6.83769e-06
3.10304e-05
0.000117271
0.000214086
0.00030709
0.000394973
0.000469706
0.000541826
0.000614518
0.000685763
0.000750798
0.000801068
0.000842323
0.000875722
0.000901398
0.000919518
0.000930252
0.000933745
0.000930103
0.000919375
0.000901548
0.00087654
0.000844198
0.000804298
0.000756548
0.000700594
0.000636042
0.000562492
0.000479621
0.000387377
0.000286459
0.000179794
7.79541e-05
1.35691e-05
1.41448e-06
6.88726e-06
2.97729e-05
0.000112844
0.000205364
0.000294164
0.000369205
0.000442431
0.000519534
0.000598682
0.000673829
0.000734874
0.000784002
0.000825307
0.000858794
0.000884569
0.00090279
0.00091363
0.000917247
0.000913762
0.000903242
0.000885692
0.000861048
0.000829175
0.000789865
0.000742843
0.000687772
0.000624271
0.000551952
0.000470496
0.000379843
0.000280662
0.000175828
7.58427e-05
1.3057e-05
1.36154e-06
6.93132e-06
2.85086e-05
0.000108308
0.000196269
0.000274873
0.000345082
0.000419755
0.000500601
0.000583349
0.000659731
0.00071689
0.0007659
0.000807185
0.000840709
0.000866555
0.000884873
0.000895839
0.000899618
0.000896343
0.000886097
0.0008689
0.000844704
0.000813388
0.000774763
0.000728566
0.000674475
0.000612123
0.000541129
0.00046118
0.000372203
0.000274835
0.000171889
7.37811e-05
1.25708e-05
1.31349e-06
6.96653e-06
2.71915e-05
0.000103585
0.00018703
0.000255068
0.000323096
0.000399365
0.000482929
0.000567464
0.000641971
0.000698138
0.000746956
0.000788158
0.000821675
0.000847569
0.000865985
0.000877096
0.000881075
0.000878065
0.000868161
0.000851395
0.000827734
0.000797071
0.000759227
0.000713954
0.00066094
0.000599823
0.000530227
0.000451833
0.000364552
0.000268989
0.000167901
7.16639e-05
1.20665e-05
1.26305e-06
6.99237e-06
2.58275e-05
9.85012e-05
0.000174788
0.000236821
0.000303902
0.000381236
0.000466399
0.000551485
0.000622965
0.000678732
0.000727301
0.000768363
0.000801823
0.000827732
0.000846227
0.000857485
0.000861683
0.000858971
0.000849453
0.000833174
0.000810111
0.000780167
0.000743176
0.000698899
0.000647034
0.000587228
0.000519107
0.000442348
0.000356845
0.000263166
0.000164005
6.96548e-05
1.16035e-05
1.21705e-06
7.01167e-06
2.45748e-05
9.35702e-05
0.00016145
0.000220308
0.000286609
0.000364386
0.000450611
0.000535873
0.000603608
0.000658906
0.000707148
0.000747992
0.000781326
0.000807196
0.000825738
0.000837131
0.000841559
0.000839177
0.000830095
0.000814366
0.000791973
0.000762829
0.000726775
0.000683578
0.000632941
0.000574515
0.000507923
0.000432833
0.00034912
0.000257314
0.000160061
6.76014e-05
1.11259e-05
1.16669e-06
7.02312e-06
2.3495e-05
8.91595e-05
0.000149753
0.0002055
0.000270731
0.000348727
0.000435873
0.000521084
0.000584421
0.000639131
0.000686909
0.000727396
0.000760474
0.000786189
0.000804684
0.000816145
0.000820758
0.000818685
0.000810039
0.000794876
0.000773185
0.000744881
0.00070981
0.000667744
0.00061839
0.0005614
0.000496399
0.000423048
0.000341201
0.000251357
0.000156099
6.55865e-05
1.06724e-05
1.11935e-06
7.02311e-06
2.25618e-05
8.51939e-05
0.00013953
0.000192378
0.000256384
0.000334253
0.00042164
0.000505577
0.000565674
0.000619668
0.000666839
0.000706819
0.000739497
0.000764929
0.000783271
0.000794716
0.000799458
0.000797663
0.000789447
0.000774865
0.000753907
0.000726488
0.000692453
0.000651574
0.000603558
0.000548053
0.000484679
0.000413083
0.000333104
0.000245208
0.00015194
6.34307e-05
1.01798e-05
1.06576e-06
7.00702e-06
2.17408e-05
8.16383e-05
0.000130555
0.000180789
0.00024363
0.000321341
0.000408417
0.000488695
0.000547793
0.000600901
0.000647282
0.000686571
0.000718672
0.000743658
0.000761701
0.000773006
0.000777776
0.000776178
0.000768332
0.00075429
0.00073404
0.000707494
0.000674496
0.000634816
0.000588158
0.000534169
0.000472465
0.000402687
0.000324657
0.000238814
0.00014766
6.12578e-05
9.69989e-06
1.01461e-06
6.96788e-06
2.09602e-05
7.83098e-05
0.000122617
0.000170525
0.000232186
0.000309612
0.000396213
0.000472543
0.00053059
0.000582729
0.000628215
0.000666696
0.000698098
0.00072252
0.000740153
0.000751221
0.000755937
0.000754474
0.000746951
0.00073342
0.000713863
0.000688188
0.000656233
0.000617762
0.000572474
0.00052001
0.000459977
0.000392008
0.000315909
0.000232101
0.00014307
5.88741e-05
9.16663e-06
9.56582e-07
6.89756e-06
2.0195e-05
7.51398e-05
0.000115556
0.000161474
0.000222065
0.000299236
0.000385267
0.000456968
0.000513954
0.000565084
0.000609609
0.000647197
0.000677804
0.000701558
0.000718681
0.000729414
0.000733986
0.000732576
0.000725305
0.000712222
0.000693305
0.000668458
0.000637512
0.000600225
0.000556294
0.000505356
0.000447015
0.000380898
0.000306806
0.000225143
0.000138366
5.6485e-05
8.65246e-06
9.02443e-07
6.79739e-06
1.94562e-05
7.21228e-05
0.000109262
0.000153476
0.000213065
0.000289997
0.00037541
0.000441603
0.000497535
0.000547651
0.000591198
0.000627863
0.000657636
0.000680682
0.000697252
0.000707613
0.000712008
0.000710625
0.000703587
0.000690942
0.000672661
0.000648642
0.000618706
0.000582607
0.000540031
0.000490611
0.000433942
0.000369647
0.000297518
0.000217954
0.000133414
5.39217e-05
8.09734e-06
8.43168e-07
6.66616e-06
1.87891e-05
6.86186e-05
0.000103871
0.00014672
0.000205286
0.00028196
0.000366687
0.000426585
0.000481412
0.000530458
0.000572964
0.000608642
0.000637518
0.000659796
0.000675759
0.000685699
0.000689873
0.000688479
0.00068164
0.000669401
0.000651729
0.000628513
0.000599571
0.000564647
0.000523424
0.000475531
0.000420564
0.000358142
0.000288054
0.000210694
0.000128501
5.14508e-05
7.58646e-06
7.90587e-07
6.50799e-06
1.82228e-05
6.51282e-05
9.91619e-05
0.000140825
0.000198516
0.000274302
0.000354094
0.000411989
0.00046557
0.000513425
0.000554794
0.000589414
0.000617342
0.000638819
0.000654158
0.000663673
0.000667633
0.000666241
0.000659621
0.000647812
0.000630774
0.000608389
0.000580464
0.000546735
0.000506879
0.000460514
0.000407232
0.000346646
0.000278543
0.000203316
0.000123419
4.88514e-05
7.04839e-06
7.34535e-07
6.32206e-06
1.77521e-05
6.20971e-05
9.51148e-05
0.000135767
0.000192793
0.000267741
0.000341492
0.000397901
0.000450087
0.000496612
0.000536724
0.000570185
0.000597086
0.000617703
0.000632373
0.000641428
0.000645151
0.000643744
0.000637328
0.000625939
0.000609528
0.000587966
0.000561055
0.000528525
0.000490046
0.000445236
0.000393684
0.000335005
0.000268985
0.000196008
0.000118509
4.64329e-05
6.57525e-06
6.86747e-07
6.10975e-06
1.73103e-05
5.93513e-05
9.15092e-05
0.000131294
0.000187785
0.000261944
0.000329184
0.000384004
0.000434689
0.00047979
0.000518567
0.000550811
0.000576651
0.000596392
0.000610396
0.00061901
0.000622521
0.000621133
0.000614962
0.000604033
0.000588289
0.000567591
0.000541729
0.000510424
0.000473337
0.00043008
0.000380235
0.000323414
0.000259401
0.000188583
0.000113417
4.38775e-05
6.0735e-06
6.35462e-07
5.87231e-06
1.69212e-05
5.68837e-05
8.83655e-05
0.00012752
0.000183776
0.000257313
0.000317316
0.000370434
0.000419489
0.000463038
0.000500366
0.000531301
0.000556009
0.000574825
0.000588133
0.00059629
0.000599584
0.000598216
0.000592292
0.000581829
0.000566757
0.00054693
0.000522127
0.000492062
0.000456393
0.000414728
0.000366652
0.000311776
0.000249884
0.00018136
0.000108633
4.15994e-05
5.65712e-06
5.93715e-07
5.61524e-06
1.65336e-05
5.45513e-05
8.54538e-05
0.000124138
0.000180287
0.000252309
0.000305366
0.000356694
0.000404039
0.000445971
0.000481805
0.000511407
0.000534981
0.00055289
0.000565536
0.000573283
0.000576418
0.000575133
0.000569524
0.000559595
0.000545263
0.000526369
0.000502681
0.000473905
0.000439689
0.000399635
0.000353321
0.000300352
0.00024051
0.000174176
0.00010379
3.92515e-05
5.2227e-06
5.48042e-07
5.33848e-06
1.62267e-05
5.25061e-05
8.3084e-05
0.000121696
0.000177439
0.000243057
0.000293965
0.000343256
0.000388692
0.000428844
0.000463055
0.000491226
0.000513596
0.000530552
0.000542508
0.000549833
0.000552806
0.00055161
0.000546325
0.000536944
0.000523371
0.000505435
0.000482895
0.000455449
0.000422742
0.000384371
0.000339911
0.000288966
0.000231307
0.000167295
9.93264e-05
3.71982e-05
4.86766e-06
5.1045e-07
5.04973e-06
1.59202e-05
5.05365e-05
8.08377e-05
0.000119458
0.000174734
0.00023369
0.000282394
0.000329553
0.000372982
0.00041128
0.000443823
0.000470551
0.000491727
0.000507758
0.000519066
0.000526012
0.000528871
0.000527808
0.000522891
0.000514097
0.000501316
0.000484366
0.000462995
0.000436895
0.000405699
0.000369
0.000326366
0.000277391
0.00022184
0.000160067
9.44794e-05
3.4889e-05
4.45769e-06
4.65915e-07
4.74679e-06
1.57381e-05
4.89161e-05
7.9214e-05
0.000118332
0.000173602
0.000225177
0.000271483
0.00031627
0.000357471
0.00039373
0.000424464
0.000449642
0.000469553
0.000484614
0.000495244
0.000501797
0.000504529
0.000503592
0.000499034
0.000490817
0.00047882
0.000462852
0.000442655
0.000417915
0.000388266
0.000353301
0.000312586
0.000265714
0.000212438
0.000153086
9.00114e-05
3.28992e-05
4.13219e-06
4.29894e-07
4.4386e-06
1.55369e-05
4.72995e-05
7.76121e-05
0.000117444
0.000172859
0.000216569
0.000260312
0.000302555
0.000341417
0.000375595
0.000404528
0.000428201
0.000446909
0.000461066
0.000471083
0.0004773
0.000479955
0.00047918
0.000475005
0.000467376
0.000456163
0.000441163
0.000422113
0.000398694
0.000370538
0.000337237
0.000298356
0.00025349
0.00020239
0.000145388
8.48562e-05
3.04928e-05
3.72647e-06
3.85761e-07
4.12043e-06
1.54736e-05
4.60654e-05
7.68418e-05
0.000117948
0.000168653
0.000209299
0.000250155
0.000289497
0.0003257
0.000357564
0.00038455
0.000406634
0.000424097
0.000437336
0.000446739
0.000452623
0.000455207
0.000454597
0.000450804
0.000443763
0.000433334
0.000419306
0.000401416
0.000379346
0.000352732
0.00032117
0.000284232
0.000241512
0.000192755
0.000138262
8.03435e-05
2.85395e-05
3.42274e-06
3.51247e-07
3.80899e-06
1.53519e-05
4.47039e-05
7.57584e-05
0.000117903
0.00016372
0.000201811
0.000239641
0.000275897
0.00030931
0.000338839
0.000363936
0.000384534
0.000400871
0.000413304
0.000422189
0.000427815
0.000430378
0.000429962
0.000426557
0.000420089
0.000410407
0.000397299
0.000380497
0.000359683
0.000334497
0.000304539
0.000269392
0.000228659
0.000182098
0.000130035
7.48257e-05
2.6022e-05
3.02263e-06
3.07601e-07
3.49864e-06
1.54347e-05
4.38672e-05
7.56959e-05
0.000119639
0.000160618
0.000196173
0.000230731
0.000263486
0.000293677
0.000320545
0.000343562
0.000362591
0.000377783
0.000389424
0.000397818
0.000403215
0.000405783
0.000405579
0.000402572
0.000396681
0.000387754
0.000375577
0.000359887
0.000340372
0.000316683
0.000288431
0.000255208
0.000216623
0.000172425
0.000122908
7.0354e-05
2.41403e-05
2.74417e-06
2.74624e-07
3.21994e-06
1.54006e-05
4.27151e-05
7.46993e-05
0.000119758
0.000156727
0.000189904
0.000221349
0.000250667
0.000277608
0.000301793
0.000322783
0.000340362
0.000354558
0.000365557
0.000373588
0.000378852
0.00038149
0.000381531
0.000378922
0.000373579
0.000365348
0.000354015
0.000339318
0.000320953
0.000298575
0.000271809
0.000240262
0.000203564
0.000161497
0.000114404
6.46502e-05
2.16212e-05
2.37092e-06
2.331e-07
2.97061e-06
1.5584e-05
4.23004e-05
7.51766e-05
0.000121843
0.000155125
0.000185929
0.000214168
0.000239813
0.000263172
0.000284315
0.000303011
0.000318983
0.000332126
0.000342482
0.000350175
0.000355339
0.000358077
0.000358384
0.000356181
0.000351385
0.000343846
0.000333358
0.000319671
0.000302492
0.000281493
0.000256315
0.000226582
0.000191938
0.000152161
0.000107559
6.04138e-05
1.99013e-05
2.13007e-06
2.02936e-07
2.81746e-06
1.52128e-05
4.08792e-05
7.31027e-05
0.000119013
0.000151264
0.000180056
0.000205725
0.000228416
0.00024867
0.000267025
0.000283583
0.000298097
0.000310351
0.000320241
0.000327764
0.000332969
0.000335915
0.000336559
0.000334791
0.000330531
0.000323636
0.000313909
0.000301106
0.000284944
0.000265103
0.000241236
0.000212984
0.000180012
0.000142144
9.9754e-05
5.52367e-05
1.77227e-05
1.83039e-06
1.67437e-07
2.7912e-06
1.46208e-05
3.94451e-05
7.13498e-05
0.000116463
0.000148991
0.000175966
0.000199169
0.000219113
0.000236484
0.000252014
0.000266176
0.000279025
0.000290253
0.000299617
0.000306963
0.000312226
0.000315404
0.000316399
0.000315062
0.000311313
0.000305023
0.000296007
0.000284039
0.000268858
0.000250173
0.000227663
0.000200995
0.000169853
0.000134056
9.39322e-05
5.17489e-05
1.63807e-05
1.65175e-06
1.42568e-07
3.05825e-06
1.29328e-05
3.5329e-05
6.30659e-05
0.000102765
0.000140869
0.000167063
0.000189036
0.000207482
0.000223262
0.0002371
0.000249575
0.000261003
0.000271346
0.000280349
0.000287732
0.000293287
0.000296927
0.000298484
0.000297758
0.000294668
0.000289086
0.000280837
0.000269702
0.000255424
0.000237717
0.000216269
0.000190761
0.000160902
0.000126545
8.80855e-05
4.79078e-05
1.48269e-05
1.44667e-06
1.15648e-07
3.61937e-06
1.13452e-05
3.05878e-05
5.29228e-05
8.59318e-05
0.000129501
0.000157553
0.000179086
0.00019617
0.000210245
0.000222424
0.000233357
0.000243396
0.000252666
0.000261058
0.0002683
0.000274111
0.000278276
0.000280505
0.000280504
0.000278166
0.000273357
0.000265907
0.000255611
0.000242233
0.000225516
0.000205189
0.000180973
0.000152612
0.000119976
8.3415e-05
4.51665e-05
1.38082e-05
1.31159e-06
9.49596e-08
4.37552e-06
9.62806e-06
2.6508e-05
4.32243e-05
6.36164e-05
9.05497e-05
0.000121756
0.000149037
0.000170816
0.000189053
0.000200384
0.000210587
0.000220143
0.000229146
0.000237509
0.00024505
0.000251534
0.000256734
0.000260239
0.000261641
0.000260783
0.000257504
0.000251599
0.000242822
0.00023089
0.000215504
0.000196363
0.000173185
0.000145747
0.000113999
7.84605e-05
4.16559e-05
1.23101e-05
1.11659e-06
7.16271e-08
4.72075e-06
7.98773e-06
2.33912e-05
3.93138e-05
5.67944e-05
7.56822e-05
9.35814e-05
0.000106332
0.000113318
0.000120051
0.000133226
0.000157362
0.000192593
0.000202642
0.000209414
0.00021596
0.000222131
0.000227634
0.000231912
0.00023438
0.000234802
0.000233007
0.000228814
0.00022198
0.000212199
0.000199118
0.000182364
0.000161582
0.000136479
0.000106942
7.34517e-05
3.86139e-05
1.12186e-05
9.76184e-07
4.90761e-08
4.59134e-06
5.55811e-06
1.67162e-05
3.14111e-05
4.90239e-05
6.90904e-05
9.06647e-05
0.000111047
0.000125276
0.000128559
0.000121703
0.000111362
0.000104614
0.000106264
0.000119524
0.000146453
0.000184275
0.000198073
0.000202576
0.00020527
0.000206047
0.000204782
0.000201343
0.000195562
0.000187188
0.000175855
0.000161107
0.000142478
0.000119616
9.25006e-05
6.19265e-05
3.09518e-05
8.23008e-06
6.59222e-07
2.53413e-08
4.11482e-06
4.4588e-06
1.18261e-05
2.10474e-05
3.34034e-05
4.84031e-05
6.62957e-05
8.75437e-05
0.000111955
0.000136599
0.000152179
0.000163388
0.000166977
0.000152208
0.000132222
0.000115663
0.000106034
0.000104589
0.000111657
0.000130372
0.00016037
0.000190976
0.000187648
0.000180673
0.000170966
0.000159342
0.000146019
0.000130624
0.000112434
9.05557e-05
6.4355e-05
3.51115e-05
1.05596e-05
8.92206e-07
1.80149e-08
3.8313e-06
4.99596e-06
1.46434e-05
2.30906e-05
2.93316e-05
3.60567e-05
4.43152e-05
5.42982e-05
6.6314e-05
8.11541e-05
9.90606e-05
0.000113052
0.000120687
0.000127367
0.000133183
0.000138258
0.00014285
0.000147283
0.000151672
0.000133968
0.000118158
0.000106939
0.00010137
0.000105027
0.000122436
0.000152089
0.000139193
0.000119226
9.49424e-05
6.93707e-05
4.41833e-05
2.08559e-05
4.90379e-06
3.30613e-07
4.56191e-09
3.4814e-06
5.65816e-06
1.79618e-05
3.15541e-05
4.17342e-05
4.89258e-05
5.49213e-05
6.04323e-05
6.54601e-05
7.03257e-05
7.50461e-05
7.94928e-05
8.35551e-05
8.71643e-05
9.02861e-05
9.29333e-05
9.51746e-05
9.71259e-05
9.89298e-05
0.0001008
0.000103032
0.000105992
0.000110093
0.000115603
0.000109803
0.000101561
0.00010032
0.000107691
0.000121771
0.000109991
8.08592e-05
4.41289e-05
1.3082e-05
1.12259e-06
2.96313e-08
3.09515e-06
6.62151e-06
2.14755e-05
3.55925e-05
4.54377e-05
5.2023e-05
5.67094e-05
6.00375e-05
6.22722e-05
6.40715e-05
6.58051e-05
6.76051e-05
6.94592e-05
7.12755e-05
7.29498e-05
7.44116e-05
7.56309e-05
7.66076e-05
7.73383e-05
7.78754e-05
7.82324e-05
7.84029e-05
7.8312e-05
7.77953e-05
7.66285e-05
7.46389e-05
7.12174e-05
6.52338e-05
5.5481e-05
4.11469e-05
1.91862e-05
2.54084e-06
1.33902e-07
3.96469e-07
1.13572e-08
2.44462e-06
8.59032e-06
2.62353e-05
4.05054e-05
5.1121e-05
5.90873e-05
6.35093e-05
6.10619e-05
6.39622e-05
7.25112e-05
7.3142e-05
7.39091e-05
7.55453e-05
7.77158e-05
8.02086e-05
8.2931e-05
8.57592e-05
8.86057e-05
9.1504e-05
9.47044e-05
9.88463e-05
0.000105144
0.000115737
0.000133854
0.000163079
0.000206274
0.000217399
0.000200193
0.000182801
0.000169546
0.000167376
0.000164593
7.16192e-05
5.77181e-06
1.42578e-07
1.6622e-06
1.39925e-05
3.52954e-05
5.12317e-05
5.77582e-05
4.80801e-05
4.38424e-05
4.03049e-05
3.99956e-05
4.17949e-05
3.34923e-05
3.41423e-05
4.79139e-05
6.37072e-05
6.84182e-05
7.41223e-05
8.00408e-05
8.56422e-05
9.05001e-05
9.42511e-05
9.65826e-05
9.74408e-05
9.6904e-05
9.48877e-05
9.11848e-05
8.53905e-05
7.72081e-05
6.6651e-05
5.36286e-05
3.90934e-05
2.48984e-05
1.28637e-05
4.37444e-06
4.35166e-07
4.47369e-08
1.23851e-06
6.23822e-06
1.13846e-05
1.47675e-05
1.22712e-05
7.3425e-06
1.72252e-06
8.62124e-08
4.23534e-07
2.58074e-06
8.56382e-06
9.20337e-06
1.39253e-05
1.79048e-05
2.16238e-05
2.54905e-05
2.92571e-05
3.16128e-05
3.27851e-05
3.36983e-05
3.43197e-05
3.46886e-05
3.48266e-05
3.4519e-05
3.25297e-05
3.04947e-05
2.84201e-05
2.62742e-05
2.39987e-05
2.13734e-05
1.80221e-05
1.40965e-05
1.15545e-05
1.00612e-05
2.40577e-07
2.9597e-07
8.44668e-06
9.99016e-06
1.08965e-05
1.13921e-05
1.13172e-05
1.04082e-05
8.55732e-06
6.50093e-06
3.73131e-06
1.09196e-06
4.16188e-07
5.97785e-08
1.93362e-06
6.27437e-06
1.16274e-05
1.16655e-05
1.09759e-05
1.05748e-05
1.14016e-05
1.22207e-05
1.18835e-05
1.15576e-05
1.12828e-05
1.10755e-05
1.09275e-05
1.08096e-05
1.068e-05
1.05084e-05
1.02775e-05
9.97486e-06
9.59817e-06
9.24546e-06
2.66367e-06
2.16519e-09
1.38418e-07
3.68048e-07
2.67069e-06
6.26666e-06
9.77431e-06
1.26228e-05
1.4783e-05
1.63328e-05
1.76699e-05
1.91925e-05
2.06709e-05
1.99759e-05
1.90237e-05
1.88733e-05
1.91678e-05
1.95968e-05
1.97083e-05
1.93114e-05
1.87798e-05
1.8463e-05
1.84606e-05
1.87993e-05
1.94746e-05
2.0456e-05
2.16903e-05
2.29934e-05
2.40164e-05
2.33957e-05
2.20865e-05
2.12147e-05
2.1607e-05
2.35416e-05
1.33744e-05
3.95148e-06
7.81698e-07
5.51896e-07
3.10969e-06
2.46053e-05
4.25121e-05
6.2241e-05
7.25524e-05
6.39481e-05
4.5924e-05
2.47453e-05
8.3952e-06
6.46312e-06
1.21371e-05
1.67815e-05
1.89331e-05
1.94184e-05
1.90288e-05
1.81038e-05
1.6993e-05
1.60391e-05
1.53893e-05
1.50603e-05
1.505e-05
1.53683e-05
1.60258e-05
1.69873e-05
1.81194e-05
1.79947e-05
1.89583e-05
2.22336e-05
2.44082e-05
2.53252e-05
2.36489e-05
9.1945e-06
3.75198e-06
1.0632e-06
4.18744e-07
3.91862e-07
2.62102e-06
1.43694e-05
2.65483e-05
3.81989e-05
4.93394e-05
5.43696e-05
5.377e-05
4.98361e-05
4.42679e-05
3.81815e-05
3.19403e-05
2.51236e-05
1.73826e-05
9.17313e-06
2.67736e-06
1.16363e-06
4.2598e-06
9.24325e-06
1.45718e-05
1.96835e-05
2.42663e-05
2.6995e-05
3.10676e-05
3.32706e-05
3.50112e-05
3.63778e-05
3.71018e-05
3.62094e-05
3.12726e-05
2.01766e-05
8.28691e-06
3.1351e-06
1.65523e-06
8.65325e-07
2.29034e-06
1.54699e-05
3.46237e-05
4.73681e-05
5.72334e-05
6.6317e-05
6.92639e-05
6.93086e-05
6.69698e-05
6.28808e-05
5.77052e-05
5.20189e-05
4.62375e-05
4.07214e-05
3.59759e-05
3.2684e-05
3.1477e-05
3.25602e-05
3.4038e-05
3.87938e-05
4.33053e-05
4.68738e-05
4.99736e-05
5.25772e-05
5.46676e-05
5.61696e-05
5.67284e-05
5.55517e-05
5.10129e-05
4.06592e-05
2.18435e-05
1.00928e-05
4.06891e-06
1.93585e-06
9.95977e-07
3.11254e-06
2.06008e-05
4.12198e-05
5.69239e-05
6.99474e-05
8.16261e-05
9.15899e-05
9.34006e-05
9.23065e-05
8.89341e-05
8.39951e-05
7.82554e-05
7.24437e-05
6.71509e-05
6.27578e-05
5.9402e-05
5.39141e-05
4.59118e-05
4.25479e-05
4.55027e-05
5.48165e-05
6.41324e-05
6.76163e-05
7.02476e-05
7.18229e-05
7.2087e-05
7.03358e-05
6.50394e-05
5.39701e-05
3.88785e-05
1.98714e-05
1.09541e-05
4.18305e-06
2.29756e-06
1.14969e-06
3.01136e-06
1.91622e-05
4.21328e-05
5.85401e-05
7.23116e-05
8.50025e-05
9.727e-05
0.000105646
0.000107795
0.000107435
0.000105104
0.000101411
9.70024e-05
9.24819e-05
8.8329e-05
8.48307e-05
8.20496e-05
7.99246e-05
7.34962e-05
6.8015e-05
6.65845e-05
6.8613e-05
7.31618e-05
7.98031e-05
8.53375e-05
8.51031e-05
8.18333e-05
7.34015e-05
5.73965e-05
3.89009e-05
2.00619e-05
1.1947e-05
4.67895e-06
2.51386e-06
1.27832e-06
3.96949e-06
2.45858e-05
5.22775e-05
7.13912e-05
8.68029e-05
0.000100815
0.000114309
0.000123325
0.000126385
0.000126914
0.000125381
0.000122281
0.000118145
0.000113511
0.000108859
0.000104555
0.000100791
9.76319e-05
9.51072e-05
9.32336e-05
9.08627e-05
8.55493e-05
8.25085e-05
8.35646e-05
8.93582e-05
9.25949e-05
8.79165e-05
7.67006e-05
5.70519e-05
3.74503e-05
1.99913e-05
1.27238e-05
4.82403e-06
2.72907e-06
1.42526e-06
4.26537e-06
2.58958e-05
5.42483e-05
7.45586e-05
9.14762e-05
0.00010693
0.000122397
0.000136435
0.00014146
0.000143728
0.000143654
0.000141654
0.000138176
0.000133704
0.000128718
0.00012364
0.000118772
0.000114357
0.000110563
0.000107464
0.000105139
0.000103657
0.000102959
0.000102694
0.000102144
0.000100035
9.4156e-05
8.11947e-05
5.89837e-05
3.76218e-05
2.02112e-05
1.34343e-05
5.07348e-06
2.87794e-06
1.46757e-06
4.67021e-06
2.79944e-05
5.95356e-05
8.42317e-05
0.00010335
0.000120165
0.000136768
0.000151909
0.000158347
0.000161832
0.000162775
0.000161556
0.000158549
0.000154154
0.000148803
0.000142928
0.0001369
0.000131142
0.000125951
0.000121481
0.00011784
0.000115047
0.000112958
0.000111184
0.000108949
0.000104798
9.61891e-05
7.96641e-05
5.60627e-05
3.68715e-05
2.04816e-05
1.40515e-05
5.15508e-06
3.03449e-06
1.62644e-06
5.33235e-06
3.10847e-05
6.47202e-05
8.93997e-05
0.00010944
0.000127469
0.000145288
0.000163041
0.000173483
0.000178718
0.000181269
0.000181468
0.000179627
0.000176059
0.000171099
0.000165115
0.000158478
0.000151806
0.000145523
0.000139815
0.000134786
0.000130444
0.000126657
0.000123035
0.000118718
0.00011205
0.00010024
7.99613e-05
5.48877e-05
3.54272e-05
2.09992e-05
1.48278e-05
5.32995e-06
3.16303e-06
1.62554e-06
5.45866e-06
3.19697e-05
6.75721e-05
9.78484e-05
0.000121127
0.000141138
0.00016041
0.000179243
0.000190455
0.000197195
0.000201106
0.000202538
0.000201802
0.000199177
0.000194934
0.000189353
0.000182747
0.000175809
0.000168971
0.000162351
0.00015604
0.000150074
0.000144326
0.000138343
0.000131109
0.000120756
0.000104481
7.9822e-05
5.36906e-05
3.37709e-05
2.15956e-05
1.55116e-05
5.40541e-06
3.29274e-06
1.78346e-06
6.29071e-06
3.54988e-05
7.31721e-05
0.000104049
0.000128175
0.000149353
0.000169873
0.000190512
0.000206085
0.000214658
0.000220329
0.000223425
0.000224245
0.00022306
0.000220116
0.000215649
0.000209758
0.000203204
0.000196468
0.00018956
0.000182525
0.00017537
0.000167903
0.00015956
0.000149184
0.00013483
0.000113974
8.52036e-05
5.69898e-05
3.45379e-05
2.2821e-05
1.64613e-05
5.59324e-06
3.39909e-06
1.77761e-06
6.39628e-06
3.64743e-05
7.63563e-05
0.000112773
0.000140605
0.000164485
0.000187111
0.000209008
0.000224168
0.000234424
0.000241639
0.000246162
0.000248314
0.000248384
0.00024663
0.000243282
0.000238452
0.00023269
0.000226353
0.000219442
0.000211957
0.000203795
0.000194609
0.000183648
0.000169606
0.000150615
0.000124791
9.21929e-05
6.21083e-05
3.62168e-05
2.43742e-05
1.73882e-05
5.68163e-06
3.50591e-06
1.92693e-06
7.30005e-06
4.00592e-05
8.20168e-05
0.000119589
0.000148532
0.000173798
0.00019796
0.000221846
0.000240786
0.000253008
0.000262118
0.000268437
0.000272273
0.00027391
0.000273609
0.000271599
0.000268078
0.000263377
0.000257685
0.000251015
0.000243311
0.000234342
0.0002236
0.000210194
0.000192797
0.000169815
0.000140153
0.000104992
7.19961e-05
3.98986e-05
2.661e-05
1.86948e-05
5.91139e-06
3.5983e-06
1.93199e-06
7.46974e-06
4.13357e-05
8.56535e-05
0.000126882
0.000161631
0.00019058
0.00021727
0.000242269
0.000259984
0.00027407
0.000284897
0.000292803
0.000298103
0.000301089
0.000302026
0.000301145
0.000298635
0.000294717
0.000289501
0.000282952
0.000274922
0.000265066
0.00025277
0.000237101
0.000216853
0.000190834
0.000158641
0.000122016
8.31833e-05
4.44155e-05
2.91989e-05
2.00819e-05
6.09664e-06
3.68731e-06
2.06837e-06
8.40958e-06
4.49237e-05
9.14104e-05
0.000134442
0.000170524
0.00020111
0.000229705
0.000256938
0.000277788
0.000293974
0.000306816
0.000316622
0.000323684
0.000328281
0.000330667
0.000331062
0.000329638
0.00032655
0.000321855
0.000315471
0.000307179
0.000296561
0.000282952
0.000265435
0.000242938
0.000214555
0.000180225
0.000141753
9.23856e-05
5.07393e-05
3.27035e-05
2.19202e-05
6.4359e-06
3.76623e-06
2.08708e-06
8.66286e-06
4.6472e-05
9.53677e-05
0.000141423
0.000182468
0.00021814
0.000249158
0.0002754
0.000297437
0.000315646
0.000330366
0.000341911
0.000350572
0.000356616
0.000360285
0.000361777
0.00036124
0.000358773
0.000354373
0.000347904
0.000339075
0.000327402
0.000312179
0.000292508
0.000267432
0.000236259
0.000199164
0.000157987
0.000101487
5.74237e-05
3.65838e-05
2.39305e-05
6.78768e-06
3.8406e-06
2.20943e-06
9.6152e-06
5.00119e-05
0.000101182
0.000149266
0.0001923
0.000229926
0.000263198
0.000291682
0.000315915
0.000336261
0.000353021
0.000366479
0.0003769
0.000384529
0.000389581
0.000392227
0.000392584
0.0003907
0.000386522
0.000379861
0.000370369
0.000357515
0.000340578
0.000318701
0.000291043
0.000257103
0.00021725
0.000173387
0.000111823
6.50006e-05
4.12279e-05
2.65137e-05
7.25612e-06
3.90743e-06
2.24266e-06
9.98546e-06
5.19017e-05
0.000105517
0.000156412
0.00020228
0.000242866
0.000278384
0.000309168
0.000335569
0.000357924
0.000376543
0.000391713
0.000403688
0.000412696
0.000418923
0.00042251
0.000423531
0.000421988
0.000417775
0.000410651
0.000400227
0.000385946
0.0003671
0.000342898
0.000312635
0.000275998
0.000233542
0.000187257
0.000121639
7.26611e-05
4.62308e-05
2.94384e-05
7.69964e-06
3.96563e-06
2.35343e-06
1.09335e-05
5.53758e-05
0.00011141
0.000164586
0.000212674
0.00025546
0.000293162
0.000326095
0.000354582
0.000378931
0.000399425
0.000416323
0.000429857
0.000440224
0.000447581
0.000452035
0.000453624
0.000452306
0.000447933
0.000440232
0.000428788
0.000413047
0.000392342
0.000365968
0.000333357
0.000294354
0.000249642
0.000201234
0.000132069
8.09699e-05
5.189e-05
3.28981e-05
8.22487e-06
4.01585e-06
2.3994e-06
1.1421e-05
5.75977e-05
0.000116155
0.000172123
0.000222979
0.000268391
0.00030854
0.000343736
0.000374307
0.000400565
0.000422793
0.000441244
0.000456138
0.000467653
0.000475922
0.00048102
0.000482951
0.000481636
0.000476894
0.000468428
0.000455816
0.000438523
0.000415936
0.000387453
0.000352639
0.000311485
0.000264766
0.00021448
0.000142119
8.93833e-05
5.79207e-05
3.67427e-05
8.74989e-06
4.05837e-06
2.4983e-06
1.23103e-05
6.084e-05
0.000121866
0.000180283
0.000233537
0.000281283
0.000323683
0.000361028
0.000393623
0.000421761
0.000445705
0.000465689
0.000481908
0.000494518
0.000503624
0.000509275
0.000511447
0.000510036
0.000504838
0.000495548
0.000481751
0.000462945
0.000438585
0.000408168
0.000371388
0.000328363
0.000279945
0.000225507
0.000152488
9.83574e-05
6.45315e-05
4.10715e-05
9.33206e-06
4.09128e-06
2.55391e-06
1.28651e-05
6.31954e-05
0.000126728
0.000187878
0.000243836
0.000294151
0.000338947
0.000378499
0.00041311
0.000443069
0.000468634
0.000490029
0.000507437
0.000520996
0.00053079
0.000536844
0.000539112
0.00053747
0.000531704
0.000521505
0.000506479
0.000486168
0.000460098
0.000427866
0.000389286
0.000344586
0.000294676
0.00023571
0.000162796
0.000107494
7.15914e-05
4.60461e-05
9.97287e-06
4.11666e-06
2.64415e-06
1.37152e-05
6.62768e-05
0.000132308
0.000195998
0.000254441
0.00030714
0.000354187
0.000395841
0.000432386
0.000464098
0.000491221
0.000513962
0.000532487
0.000546917
0.000557317
0.000563694
0.000565985
0.000564052
0.000557678
0.000546564
0.000530343
0.000508601
0.000480938
0.000447042
0.000406827
0.000360609
0.000309329
0.000246276
0.00017355
0.000117421
7.92686e-05
4.93513e-05
1.05928e-05
4.13393e-06
2.70775e-06
1.43627e-05
6.88674e-05
0.000137445
0.000203845
0.000264942
0.000320144
0.000369508
0.000413271
0.000451716
0.000485113
0.000513701
0.00053768
0.000557208
0.00057239
0.000583279
0.000589869
0.000592087
0.000589788
0.000582757
0.00057071
0.000553309
0.000530189
0.000501012
0.000465548
0.000423794
0.000376135
0.000323534
0.000256875
0.00018452
0.000127811
8.73001e-05
5.23349e-05
1.11255e-05
4.14123e-06
2.79221e-06
1.52071e-05
7.19052e-05
0.00014301
0.000212001
0.000275622
0.000333217
0.000384806
0.000430606
0.000470884
0.000505899
0.000535882
0.000561027
0.000581479
0.000597337
0.000608643
0.000615383
0.000617477
0.000614783
0.000607094
0.000594144
0.000575629
0.000551229
0.000520667
0.000483778
0.000440626
0.000391642
0.000337794
0.000268002
0.000196148
0.000138955
9.59403e-05
5.53153e-05
1.16415e-05
4.13825e-06
2.86175e-06
1.59392e-05
7.4679e-05
0.000148334
0.000219993
0.000286208
0.000346238
0.00040006
0.000447874
0.000489937
0.000526504
0.000557803
0.000584022
0.000605307
0.000621748
0.000633386
0.000640201
0.000642116
0.000638994
0.00063064
0.000616812
0.000597239
0.00057165
0.000539819
0.00050164
0.000457223
0.000407021
0.000351987
0.000279654
0.000208372
0.000150749
0.000105116
5.82546e-05
1.21266e-05
4.12939e-06
2.94341e-06
1.67874e-05
7.76899e-05
0.000153857
0.000228092
0.000296806
0.000359184
0.000415166
0.000464928
0.000508713
0.000546768
0.000579317
0.000606545
0.000628594
0.000645555
0.000657468
0.000664317
0.00066603
0.000662478
0.000653484
0.000638832
0.000618284
0.000591611
0.000558638
0.000519306
0.000473758
0.000422448
0.00036589
0.000291654
0.00022126
0.000163429
0.000115128
6.13122e-05
1.26396e-05
4.11515e-06
3.01745e-06
1.7585e-05
8.0579e-05
0.000159265
0.000236092
0.000307301
0.000372003
0.000430101
0.000481751
0.000527188
0.000566655
0.000600375
0.000628532
0.00065127
0.000668684
0.000680816
0.000687659
0.000689149
0.000685175
0.000675578
0.000660168
0.00063874
0.000611104
0.000577127
0.000536788
0.000490256
0.000437982
0.000377675
0.000304081
0.00023488
0.000177021
0.000126145
6.4555e-05
1.31772e-05
4.09861e-06
3.09739e-06
1.84378e-05
8.35535e-05
0.000164712
0.000244058
0.000317688
0.000384641
0.000444782
0.00049825
0.000545268
0.000586076
0.000620895
0.000649913
0.000673277
0.000691086
0.000703394
0.000710201
0.000711458
0.000707072
0.000696906
0.000680797
0.000658571
0.00063007
0.000595192
0.000553944
0.000506507
0.000453311
0.000389345
0.000317043
0.000249965
0.000191651
0.000133602
6.76281e-05
1.37341e-05
4.08017e-06
3.17335e-06
1.92515e-05
8.64078e-05
0.000169991
0.000251818
0.000327823
0.000396974
0.000459098
0.000514315
0.000562844
0.000604922
0.00064077
0.000670582
0.000694511
0.000712666
0.00072511
0.000731856
0.000732875
0.000728089
0.000717387
0.000700632
0.000677676
0.000648391
0.000612699
0.000570619
0.00052233
0.000468241
0.000401016
0.000330665
0.000266297
0.00020729
0.000140421
7.05118e-05
1.42734e-05
4.05876e-06
3.25155e-06
2.00728e-05
8.92263e-05
0.000175159
0.000259383
0.000337686
0.000408959
0.000472993
0.000529889
0.000579856
0.000623132
0.000659941
0.000690483
0.000714919
0.000733369
0.000745909
0.00075257
0.000753338
0.00074816
0.000736946
0.000719585
0.000695955
0.000665954
0.000629522
0.000586692
0.00053763
0.000480077
0.00041277
0.000346206
0.00028384
0.0002183
0.000146872
7.32626e-05
1.47986e-05
4.03487e-06
3.32854e-06
2.08688e-05
9.19431e-05
0.000180146
0.000266689
0.000347212
0.00042053
0.000486398
0.000544897
0.000596231
0.000640634
0.000678336
0.000709544
0.00073443
0.000753125
0.000765722
0.000772268
0.00077277
0.000767196
0.00075548
0.000737537
0.000713271
0.000682599
0.000645479
0.000601942
0.000551576
0.000489966
0.000425787
0.000363494
0.000299088
0.000227536
0.000152847
7.57835e-05
1.52856e-05
4.00851e-06
3.40614e-06
2.16604e-05
9.46067e-05
0.000184998
0.000273769
0.000356419
0.000431696
0.000499315
0.00055934
0.000611965
0.000657425
0.000695955
0.000727767
0.000753046
0.000771938
0.000784549
0.000790946
0.000791156
0.000785171
0.00077295
0.00075443
0.000729541
0.00069822
0.00066044
0.000614868
0.000559629
0.000500734
0.00044176
0.000379836
0.000309799
0.000235992
0.000158289
7.80651e-05
1.57313e-05
3.97935e-06
3.48395e-06
2.2444e-05
9.72115e-05
0.000189717
0.000280623
0.000365303
0.000442439
0.000511715
0.000573177
0.000627013
0.000673457
0.000712749
0.000745111
0.000770736
0.000789785
0.00080238
0.000808606
0.000808512
0.000802111
0.000789386
0.0007703
0.000744802
0.000712795
0.000670332
0.000621329
0.000568934
0.000515369
0.000458053
0.00039116
0.000319706
0.000243739
0.000163229
8.01076e-05
1.61307e-05
3.94737e-06
3.56076e-06
2.32315e-05
9.9801e-05
0.000194365
0.000287331
0.000373951
0.000452851
0.000523687
0.000586492
0.000641449
0.000688796
0.000728777
0.000761623
0.00078754
0.000806701
0.000819246
0.000825279
0.000824868
0.000818049
0.000804827
0.00078519
0.000755858
0.000718627
0.000675961
0.00062986
0.000582241
0.000531891
0.00046963
0.000401877
0.000328971
0.000250897
0.00016774
8.1947e-05
1.64897e-05
3.91221e-06
3.63709e-06
2.40037e-05
0.000102314
0.00019886
0.000293797
0.000382264
0.000462836
0.000535141
0.000599204
0.000655206
0.000703386
0.000743995
0.000777274
0.000803441
0.000822683
0.000835158
0.000840987
0.000840258
0.000833027
0.000818807
0.000793547
0.000761351
0.000724211
0.000683781
0.000641747
0.000597584
0.000543879
0.000480882
0.000412171
0.000337776
0.000257651
0.000171982
8.36875e-05
1.68341e-05
3.87538e-06
3.71089e-06
2.47612e-05
0.000104766
0.000203226
0.000300054
0.000390279
0.00047243
0.000546114
0.000611347
0.000668311
0.000717251
0.000758425
0.000792086
0.000818463
0.000837758
0.000850145
0.000855763
0.000854718
0.000847003
0.000826738
0.000799121
0.00076665
0.000730952
0.000693749
0.000655851
0.000612947
0.000555376
0.000491728
0.000421992
0.00034611
0.000264006
0.000175958
8.53201e-05
1.71593e-05
3.83732e-06
3.78343e-06
2.54936e-05
0.000107114
0.000207391
0.000306007
0.000397894
0.000481531
0.000556508
0.000622835
0.000680694
0.000730336
0.000772028
0.000806033
0.000832594
0.000851928
0.000864223
0.000869637
0.000868294
0.000855461
0.000832623
0.000804215
0.000772543
0.00073939
0.000706063
0.000670865
0.000624396
0.000566455
0.000502129
0.000431347
0.000354001
0.000269992
0.00017969
8.68545e-05
1.74661e-05
3.79795e-06
3.8526e-06
2.61917e-05
0.000109344
0.000211343
0.000311651
0.000405102
0.000490135
0.00056632
0.000633664
0.00069235
0.000742636
0.000784799
0.000819114
0.000845836
0.000865197
0.0008774
0.000882618
0.000879161
0.000862053
0.000837721
0.00080952
0.000779528
0.000749456
0.000719766
0.000686281
0.000635541
0.000577124
0.000512075
0.000440251
0.000361486
0.000275663
0.000183233
8.83284e-05
1.77652e-05
3.75794e-06
3.92005e-06
2.68667e-05
0.000111477
0.000215093
0.000316982
0.000411892
0.000498223
0.000575533
0.000643819
0.000703271
0.000754151
0.000796747
0.000831345
0.000858213
0.000877598
0.000889717
0.000894758
0.000886637
0.000867261
0.000842412
0.000815149
0.000787516
0.000760919
0.000734101
0.000698449
0.000646234
0.0005873
0.000521495
0.000448629
0.000368487
0.000280937
0.000186506
8.96792e-05
1.8037e-05
3.71664e-06
3.98408e-06
2.74999e-05
0.000113469
0.000218606
0.000321979
0.000418253
0.000505795
0.000584146
0.000653304
0.00071346
0.000764886
0.000807879
0.000842735
0.000869737
0.000889144
0.000901187
0.000905304
0.000892621
0.000871682
0.000847091
0.000821492
0.000796782
0.000773613
0.000748469
0.000708994
0.000656447
0.000596994
0.000530443
0.000456561
0.000375098
0.000285904
0.000189587
9.09631e-05
1.82984e-05
3.67479e-06
4.04604e-06
2.81201e-05
0.000115397
0.000221972
0.000326734
0.000424277
0.000512936
0.000592245
0.000662201
0.000722999
0.000774919
0.000818269
0.000853356
0.000880475
0.000899898
0.000911868
0.000912052
0.000897328
0.000875864
0.000852073
0.000828524
0.000806856
0.000786795
0.000762736
0.00071912
0.000666197
0.000606206
0.000538912
0.000464044
0.000381315
0.00029057
0.000192478
9.2168e-05
1.85444e-05
3.63242e-06
4.10387e-06
2.87047e-05
0.000117215
0.000225143
0.000331208
0.000429935
0.000519634
0.000599829
0.000670519
0.000731906
0.000784278
0.000827953
0.000863252
0.00089048
0.000909922
0.000921833
0.000917782
0.000901188
0.000879634
0.000857113
0.000835941
0.000817383
0.000800028
0.000775128
0.000728804
0.000675485
0.000614945
0.000546915
0.000471087
0.000387144
0.000294929
0.000195184
9.33047e-05
1.87769e-05
3.58974e-06
4.1578e-06
2.92478e-05
0.000118899
0.000228088
0.00033537
0.000435203
0.00052587
0.000606889
0.00067826
0.000740191
0.000792979
0.000836955
0.000872447
0.000899777
0.00091924
0.000931108
0.000922502
0.00090443
0.000883311
0.000862529
0.000844142
0.000828755
0.000812944
0.000784514
0.000737964
0.000684275
0.000623203
0.000554459
0.000477707
0.000392609
0.00029901
0.000197726
9.44082e-05
1.90131e-05
3.54699e-06
4.20769e-06
2.97362e-05
0.000120417
0.000230758
0.000339162
0.00044002
0.000531589
0.000613378
0.000685386
0.000747829
0.00080101
0.00084527
0.000880949
0.000908377
0.000927861
0.000936613
0.000926109
0.000907608
0.000887275
0.000868404
0.000852802
0.000840246
0.000825454
0.000793438
0.000746631
0.000692558
0.000630956
0.000561509
0.000483857
0.000397645
0.000302725
0.000199988
9.5348e-05
1.92079e-05
3.50336e-06
4.25458e-06
3.01889e-05
0.000121818
0.000233205
0.000342627
0.000444418
0.000536813
0.00061931
0.00069191
0.000754831
0.000808385
0.000852921
0.000888787
0.000916324
0.000935847
0.000941271
0.000929134
0.000910465
0.000891183
0.00087437
0.000861478
0.000851464
0.000837414
0.000801925
0.000754847
0.000700385
0.00063825
0.000568105
0.000489567
0.000402269
0.000306075
0.00020196
9.61059e-05
1.93552e-05
3.45957e-06
4.29878e-06
3.061e-05
0.000123115
0.000235464
0.000345818
0.000448463
0.000541612
0.000624756
0.000697898
0.00076126
0.000815161
0.000859958
0.000896009
0.000923661
0.000943241
0.000945269
0.000931661
0.000913084
0.00089507
0.000880382
0.000870077
0.000862351
0.000848847
0.000810021
0.000762673
0.000707823
0.000645164
0.000574334
0.000494934
0.000406586
0.000309173
0.000203756
9.67781e-05
1.94798e-05
3.41644e-06
4.34079e-06
3.10001e-05
0.00012431
0.000237547
0.00034876
0.000452191
0.000546033
0.000629773
0.000703413
0.000767181
0.000821403
0.000866444
0.000902672
0.000930443
0.00095009
0.000948633
0.000933757
0.000915539
0.000898981
0.000886498
0.000878775
0.000872999
0.000858005
0.000817754
0.000770153
0.000714933
0.000651769
0.000580281
0.000500053
0.000410701
0.000312129
0.000205481
9.74386e-05
1.96044e-05
3.37521e-06
4.38175e-06
3.1369e-05
0.000125433
0.000239492
0.000351496
0.000455646
0.000550121
0.000634403
0.000708497
0.000772635
0.000827151
0.000872416
0.000908809
0.000936695
0.000956417
0.000951165
0.000935323
0.000917816
0.000902939
0.000892803
0.000887587
0.000883033
0.000865441
0.000825084
0.000777264
0.000721703
0.000658061
0.000585944
0.000504923
0.00041461
0.000314932
0.000207115
9.80678e-05
1.97226e-05
3.33598e-06
4.42155e-06
3.17249e-05
0.000126508
0.000241342
0.000354084
0.000458901
0.000553956
0.000638732
0.000713235
0.000777704
0.000832481
0.000877943
0.000914477
0.000942454
0.000959764
0.000952791
0.000936814
0.000920157
0.000906912
0.000898973
0.000895957
0.000892347
0.000872504
0.00083205
0.000784031
0.000728153
0.000664062
0.000591349
0.000509573
0.000418343
0.00031761
0.000208679
9.86758e-05
1.9839e-05
3.29903e-06
4.46018e-06
3.20563e-05
0.000127509
0.000243064
0.000356495
0.000461934
0.000557533
0.000642769
0.000717652
0.000782428
0.000837444
0.000883086
0.000919747
0.000947806
0.000962125
0.000953907
0.000937991
0.000922329
0.000910764
0.000904928
0.000903898
0.00090108
0.000879196
0.000838655
0.000790452
0.00073428
0.000669769
0.000596497
0.000514009
0.000421914
0.000320182
0.000210196
9.92795e-05
1.99573e-05
3.26425e-06
4.49748e-06
3.23497e-05
0.0001284
0.000244611
0.000358677
0.000464695
0.000560805
0.000646478
0.000721725
0.000786795
0.00084204
0.000887855
0.000924638
0.000952775
0.000963923
0.000954524
0.000938821
0.000924271
0.000914404
0.000910582
0.000911399
0.000909305
0.000885512
0.00084489
0.000796515
0.000740064
0.000675155
0.000601352
0.00051819
0.000425278
0.000322605
0.000211625
9.98499e-05
2.00695e-05
3.23162e-06
4.53424e-06
3.26151e-05
0.000129204
0.000246006
0.000360643
0.000467188
0.000563768
0.000649848
0.000725438
0.00079079
0.000846259
0.000892245
0.000929151
0.000957367
0.000965259
0.000954723
0.000939313
0.000925913
0.000917701
0.000915768
0.000918287
0.000916887
0.000891465
0.000850768
0.000802229
0.000745511
0.000680221
0.000605909
0.000522103
0.000428412
0.000324848
0.000212934
0.000100362
2.01686e-05
3.20043e-06
4.5703e-06
3.28613e-05
0.000129945
0.000247282
0.000362433
0.000469452
0.000566455
0.000652906
0.000728814
0.00079443
0.000850113
0.000896267
0.000933297
0.000961598
0.000966195
0.000954591
0.000939548
0.000927312
0.000920682
0.000920485
0.000924541
0.000923799
0.00089708
0.000856318
0.000807624
0.000750652
0.000684995
0.000610195
0.000525773
0.00043134
0.000326931
0.000214137
0.000100824
2.02561e-05
3.17011e-06
4.60567e-06
3.30892e-05
0.000130621
0.000248438
0.000364047
0.000471488
0.000568872
0.00065566
0.000731859
0.000797721
0.000853609
0.000899925
0.000937081
0.000965473
0.000966764
0.00095422
0.000939651
0.000928601
0.000923477
0.000924881
0.000930343
0.000930233
0.000902398
0.000861582
0.000812748
0.000755539
0.000689538
0.000614276
0.00052927
0.000434134
0.000328926
0.000215303
0.000101285
2.03457e-05
3.14116e-06
4.64035e-06
3.32897e-05
0.000131213
0.00024945
0.000365463
0.000473279
0.000571006
0.000658099
0.000734565
0.000800656
0.000856735
0.000903206
0.000940483
0.000968595
0.000966675
0.000953621
0.000939745
0.000929845
0.000926062
0.000928878
0.000935613
0.000936137
0.000907434
0.000866578
0.000817619
0.00076019
0.000693863
0.000618162
0.0005326
0.000436795
0.000330828
0.000216416
0.000101727
2.04316e-05
3.11339e-06
4.67514e-06
3.34767e-05
0.000131753
0.000250363
0.00036673
0.000474874
0.0005729
0.000660263
0.000736969
0.000803269
0.000859524
0.000906137
0.000943523
0.000969029
0.000966144
0.000953165
0.000939949
0.000931029
0.000928408
0.000932473
0.000940358
0.000941516
0.000912217
0.000871339
0.000822275
0.000764647
0.000698018
0.000621902
0.000535809
0.000439364
0.000332667
0.000217498
0.000102164
2.05178e-05
3.0868e-06
4.71012e-06
3.36528e-05
0.000132251
0.000251192
0.000367868
0.000476297
0.000574583
0.000662185
0.000739106
0.000805595
0.000862013
0.000908763
0.000946256
0.000969238
0.000965487
0.000952662
0.000940127
0.000932146
0.000930603
0.000935808
0.000944743
0.000946508
0.000916746
0.000875866
0.000826719
0.000768917
0.000702012
0.000625512
0.000538921
0.000441867
0.000334473
0.000218574
0.000102611
2.06083e-05
3.06103e-06
4.74557e-06
3.38106e-05
0.000132692
0.000251923
0.000368867
0.000477543
0.000576059
0.000663872
0.000740985
0.000807647
0.000864217
0.000911096
0.000948693
0.000969178
0.000964648
0.000952047
0.000940215
0.000933147
0.000932622
0.000938885
0.000948788
0.000951129
0.000921011
0.000880142
0.000830931
0.000772979
0.000705828
0.000628975
0.00054192
0.000444293
0.000336237
0.000219638
0.000103065
2.07025e-05
3.03602e-06
4.78137e-06
3.39391e-05
0.00013306
0.000252543
0.000369719
0.000478611
0.000577328
0.000665328
0.000742616
0.000809437
0.000866149
0.000913151
0.00095085
0.000968951
0.000963711
0.000951364
0.000940235
0.000934057
0.000934505
0.000941766
0.000952578
0.000955455
0.000924994
0.000884148
0.000834887
0.000776804
0.000709431
0.000632256
0.000544772
0.000446612
0.000337935
0.000220676
0.000103519
2.07982e-05
3.01139e-06
4.81718e-06
3.40448e-05
0.000133352
0.000253042
0.000370411
0.000479484
0.000578375
0.000666542
0.000743988
0.000810957
0.000867805
0.000914928
0.000952729
0.000968602
0.000962723
0.000950652
0.000940221
0.00093491
0.000936297
0.000944516
0.000956194
0.000959559
0.000928696
0.000887876
0.000838575
0.000780376
0.000712801
0.00063533
0.00054745
0.000448796
0.000339541
0.000221667
0.000103961
2.08916e-05
2.98689e-06
4.85302e-06
3.41476e-05
0.000133622
0.000253479
0.000371
0.000480217
0.000579248
0.000667553
0.000745135
0.000812237
0.000869209
0.000916446
0.000954347
0.000968084
0.00096163
0.000949865
0.000940136
0.000935679
0.000937976
0.000947111
0.000959597
0.000963394
0.000932122
0.000891331
0.000841998
0.000783696
0.000715937
0.000638194
0.000549949
0.000450836
0.000341045
0.000222597
0.000104379
2.09799e-05
2.96256e-06
4.8885e-06
3.42282e-05
0.000133831
0.000253819
0.000371458
0.000480788
0.000579932
0.000668354
0.000746054
0.000813275
0.000870363
0.00091771
0.000955711
0.000967459
0.000960506
0.00094908
0.000940063
0.000936455
0.000939649
0.000949682
0.000962949
0.000967115
0.000935279
0.000894517
0.000845158
0.000786764
0.000718839
0.000640848
0.000552267
0.000452733
0.000342446
0.000223469
0.000104774
2.10616e-05
2.93808e-06
4.92371e-06
3.43003e-05
0.000134012
0.000254106
0.000371831
0.000481241
0.00058047
0.000668984
0.000746782
0.000814106
0.000871299
0.000918747
0.000956843
0.000966667
0.000959281
0.000948239
0.000939961
0.000937213
0.000941305
0.000952227
0.000966249
0.000970654
0.000938179
0.000897443
0.000848058
0.000789579
0.000721502
0.000643282
0.000554392
0.000454468
0.000343725
0.000224261
0.00010513
2.11329e-05
2.91366e-06
4.9586e-06
3.43577e-05
0.000134147
0.000254316
0.000372098
0.000481561
0.000580849
0.000669432
0.000747311
0.000814724
0.000872011
0.000919556
0.000957745
0.000965671
0.000957907
0.000947306
0.000939802
0.000937928
0.000942916
0.000954722
0.000969416
0.000973236
0.00094084
0.000900131
0.000850723
0.000792166
0.000723947
0.000645516
0.000556339
0.000456055
0.00034489
0.000224975
0.000105444
2.11932e-05
2.88907e-06
4.99372e-06
3.44198e-05
0.000134283
0.000254509
0.000372319
0.000481801
0.000581114
0.000669736
0.000747669
0.00081515
0.000872517
0.000920148
0.000958426
0.000964524
0.000956464
0.000946364
0.000939669
0.000938691
0.000944619
0.000957353
0.000972577
0.000975596
0.000943273
0.000902591
0.000853163
0.000794533
0.000726183
0.000647556
0.000558117
0.000457503
0.000345952
0.000225626
0.000105731
2.12455e-05
2.86446e-06
5.02833e-06
3.44903e-05
0.000134439
0.000254716
0.000372534
0.000482008
0.000581315
0.000669942
0.000747897
0.000815416
0.000872834
0.000920526
0.000958271
0.000962907
0.000954906
0.000945457
0.000939581
0.000939485
0.000946364
0.000960024
0.00097568
0.000977751
0.000945495
0.00090484
0.000855394
0.000796697
0.000728226
0.000649418
0.000559736
0.000458818
0.000346914
0.000226214
0.000105988
2.12906e-05
2.84023e-06
5.06211e-06
3.45515e-05
0.000134569
0.000254886
0.000372701
0.00048215
0.00058143
0.00067004
0.000747994
0.000815528
0.000872976
0.000920707
0.000956713
0.00096095
0.000953298
0.000944525
0.00093945
0.000940235
0.000948071
0.000962627
0.000978641
0.00097971
0.000947523
0.000906897
0.000857438
0.00079868
0.000730094
0.000651115
0.000561202
0.000459999
0.000347764
0.000226719
0.000106196
2.13231e-05
2.81609e-06
5.09526e-06
3.46279e-05
0.000134737
0.000255102
0.000372906
0.000482312
0.000581538
0.000670103
0.000748027
0.000815548
0.000872999
0.000920746
0.000954913
0.000958735
0.000951468
0.000943415
0.000939177
0.000940867
0.000949661
0.000965069
0.000981382
0.000981481
0.000949365
0.000908776
0.000859312
0.000800502
0.000731814
0.000652679
0.000562553
0.000461084
0.000348542
0.000227178
0.000106385
2.13515e-05
2.79231e-06
5.12694e-06
3.46997e-05
0.000134898
0.000255317
0.000373114
0.00048247
0.000581632
0.000670132
0.000748002
0.000815487
0.000872918
0.000920659
0.000952991
0.000956381
0.000949502
0.000942189
0.00093881
0.000941424
0.000951181
0.000967431
0.00098402
0.00098306
0.000951021
0.000910475
0.000861016
0.000802169
0.000733394
0.00065412
0.000563802
0.000462089
0.000349265
0.000227607
0.000106565
2.13798e-05
2.76928e-06
5.15746e-06
3.47751e-05
0.000135071
0.000255556
0.000373349
0.000482652
0.000581736
0.000670154
0.00074795
0.000815375
0.000872763
0.000920477
0.000951072
0.000954015
0.000947473
0.000940858
0.000938317
0.000941838
0.000952534
0.000969597
0.000986447
0.000984431
0.00095247
0.000911972
0.000862525
0.000803648
0.000734798
0.000655398
0.000564902
0.000462962
0.000349874
0.000227945
0.000106687
2.13932e-05
2.74638e-06
5.18663e-06
3.4869e-05
0.000135297
0.000255873
0.000373675
0.000482925
0.000581919
0.000670232
0.000747927
0.000815264
0.000872582
0.000920243
0.0009492
0.000951686
0.00094542
0.00093944
0.000937686
0.000942061
0.000953629
0.000971439
0.000988534
0.0009856
0.00095372
0.000913274
0.000863847
0.000804953
0.000736042
0.000656533
0.000565879
0.000463734
0.000350406
0.000228231
0.000106781
2.14013e-05
2.72377e-06
5.21387e-06
3.49645e-05
0.000135533
0.000256223
0.000374059
0.000483271
0.000582178
0.00067038
0.000747957
0.000815184
0.000872406
0.000919989
0.000947416
0.000949442
0.000943405
0.000937996
0.000936962
0.000942127
0.000954503
0.000973002
0.000990328
0.000986565
0.000954764
0.000914374
0.000864973
0.00080607
0.000737112
0.000657515
0.000566727
0.000464406
0.000350868
0.000228476
0.00010686
2.14066e-05
2.70143e-06
5.23941e-06
3.50644e-05
0.000135785
0.000256609
0.000374502
0.000483693
0.000582521
0.00067061
0.00074806
0.00081516
0.000872266
0.00091975
0.00094581
0.000947374
0.000941498
0.000936576
0.000936173
0.000942036
0.000955125
0.000974237
0.000991781
0.000987326
0.0009556
0.000915262
0.000865887
0.00080698
0.000737985
0.000658312
0.000567409
0.000464936
0.000351218
0.000228643
0.000106895
2.14009e-05
2.67941e-06
5.26329e-06
3.51599e-05
0.000136028
0.000256993
0.000374961
0.000484153
0.000582921
0.000670906
0.00074823
0.000815197
0.000872177
0.000919549
0.000944512
0.000945634
0.000939826
0.000935277
0.000935402
0.000941863
0.000955565
0.0009752
0.000992933
0.000987896
0.000956237
0.000915947
0.000866597
0.000807689
0.000738663
0.000658926
0.000567927
0.000465324
0.000351454
0.000228728
0.000106883
2.13834e-05
2.65738e-06
5.28595e-06
3.52316e-05
0.000136207
0.000257292
0.000375339
0.000484551
0.000583283
0.00067119
0.000748407
0.000815254
0.000872113
0.000919372
0.000943425
0.000944145
0.000938355
0.000934094
0.000934652
0.000941615
0.000955832
0.000975903
0.000993793
0.000988287
0.000956683
0.000916432
0.000867102
0.000808191
0.000739138
0.000659347
0.000568267
0.000465558
0.000351566
0.000228725
0.000106821
2.13528e-05
2.63529e-06
5.30879e-06
3.52743e-05
0.0001363
0.000257454
0.000375558
0.000484795
0.000583513
0.00067137
0.00074851
0.000815264
0.000872024
0.000919188
0.000942555
0.000942931
0.000937124
0.000933073
0.000933971
0.000941334
0.000955956
0.000976364
0.000994375
0.000988526
0.000956966
0.000916743
0.000867424
0.000808505
0.000739423
0.000659583
0.000568432
0.000465635
0.000351545
0.00022862
0.000106698
2.13049e-05
2.61248e-06
5.33309e-06
3.52722e-05
0.000136258
0.000257398
0.000375511
0.00048476
0.000583479
0.000671318
0.000748422
0.000815126
0.000871826
0.00091893
0.000941849
0.00094198
0.000936149
0.000932245
0.000933399
0.000941069
0.000955994
0.000976634
0.000994716
0.000988646
0.00095712
0.000916918
0.000867605
0.000808676
0.000739567
0.000659685
0.000568475
0.000465609
0.000351448
0.000228469
0.000106553
2.12519e-05
2.58939e-06
5.36053e-06
3.52233e-05
0.000136066
0.000257081
0.00037512
0.000484344
0.000583065
0.000670916
0.000748029
0.000814734
0.000871429
0.000918522
0.000941203
0.000941227
0.000935417
0.000931646
0.000933014
0.000940946
0.000956131
0.000976958
0.000995047
0.000988663
0.000957162
0.000916974
0.000867662
0.000808723
0.000739592
0.000659675
0.000568421
0.000465505
0.000351296
0.000228289
0.000106398
2.1196e-05
2.56611e-06
5.39263e-06
3.5117e-05
0.000135689
0.000256433
0.000374285
0.000483418
0.000582123
0.000670005
0.000747174
0.000813943
0.0008707
0.000917849
0.000940383
0.000940458
0.000934783
0.000931198
0.000932794
0.000940975
0.000956397
0.000977377
0.000995407
0.000988581
0.000957091
0.000916904
0.000867584
0.000808627
0.000739468
0.000659517
0.000568225
0.000465271
0.000351033
0.000228024
0.000106193
2.11252e-05
2.54218e-06
5.43106e-06
3.4949e-05
0.00013511
0.000255417
0.000372937
0.000481883
0.000580529
0.000668446
0.000745709
0.000812603
0.000869496
0.00091678
0.000939203
0.000939516
0.000934149
0.000930859
0.000932742
0.000941201
0.000956857
0.000977952
0.000995842
0.000988432
0.000956948
0.000916758
0.000867425
0.000808446
0.000739259
0.000659275
0.00056795
0.000464968
0.000350717
0.000227724
0.00010597
2.10488e-05
2.51743e-06
5.47764e-06
3.4746e-05
0.000134392
0.000254104
0.000371132
0.000479765
0.000578275
0.000666198
0.000743567
0.00081063
0.000867724
0.000915218
0.000937481
0.00093824
0.000933424
0.000930616
0.000932904
0.000941721
0.000957676
0.000978903
0.000996549
0.000988233
0.000956753
0.000916558
0.000867212
0.000808213
0.000739001
0.00065899
0.000567641
0.000464644
0.000350395
0.000227434
0.000105762
2.09764e-05
2.49262e-06
5.533e-06
3.45189e-05
0.000133569
0.000252549
0.000368924
0.0004771
0.000575367
0.000663236
0.000740696
0.000807949
0.000865293
0.000913063
0.000935031
0.000936432
0.000932458
0.000930401
0.000933298
0.000942624
0.000958989
0.000980406
0.000997694
0.000987986
0.00095651
0.000916312
0.000866957
0.000807943
0.000738713
0.000658683
0.000567319
0.000464317
0.000350081
0.00022716
0.00010557
2.09066e-05
2.46764e-06
5.59783e-06
3.43206e-05
0.000132787
0.000250967
0.000366559
0.000474126
0.000572013
0.000659722
0.000737207
0.000804623
0.000862223
0.000910301
0.000931661
0.00093387
0.000931058
0.000930067
0.000933851
0.000943914
0.000960855
0.00098252
0.000999302
0.000987686
0.000956216
0.00091602
0.00086666
0.000807637
0.000738395
0.000658354
0.000566985
0.000463989
0.000349776
0.000226903
0.000105394
2.08409e-05
2.44324e-06
5.67112e-06
3.42032e-05
0.000132202
0.000249615
0.000364353
0.000471179
0.000568531
0.000655933
0.000733323
0.000800818
0.000858626
0.000906996
0.000927212
0.000930333
0.000929032
0.000929476
0.000934459
0.00094552
0.000963246
0.000985255
0.00100138
0.000987329
0.000955871
0.000915681
0.000866323
0.000807296
0.00073805
0.000658005
0.000566638
0.000463653
0.000349467
0.000226643
0.000105215
2.07724e-05
2.41858e-06
5.75056e-06
3.42115e-05
0.000131958
0.000248749
0.000362655
0.000468658
0.000565329
0.000652253
0.00072938
0.000796808
0.000854709
0.000903293
0.000921673
0.000925742
0.000926285
0.000928549
0.000935071
0.000947404
0.000966131
0.000988601
0.00100395
0.0009869
0.000955461
0.000915283
0.000865932
0.00080691
0.000737666
0.000657626
0.000566268
0.000463303
0.000349151
0.000226381
0.000105038
2.07045e-05
2.39419e-06
5.83285e-06
3.43778e-05
0.000132162
0.000248576
0.000361775
0.000466953
0.000562839
0.000649117
0.000725778
0.000792927
0.000850717
0.00089663
0.000914411
0.00092008
0.000922803
0.000927119
0.000935401
0.000949225
0.000969117
0.000992099
0.00100659
0.000986386
0.000954975
0.000914818
0.000865483
0.000806473
0.000737239
0.000657211
0.000565869
0.000462927
0.000348812
0.000226097
0.000104842
2.06307e-05
2.36921e-06
5.91472e-06
3.46506e-05
0.000132687
0.000248978
0.000361666
0.000466111
0.000561202
0.000646735
0.000722771
0.000789446
0.00084691
0.000887827
0.000905452
0.00091316
0.000918423
0.000925055
0.000935284
0.000950734
0.000971886
0.000995416
0.00100875
0.000985767
0.000954391
0.000914262
0.000864948
0.000805955
0.000736738
0.000656727
0.000565407
0.000462498
0.000348428
0.00022578
0.000104629
2.05533e-05
2.34399e-06
5.9961e-06
3.49524e-05
0.000133313
0.000249639
0.00036201
0.000465885
0.000560273
0.000645072
0.00072042
0.000786499
0.000843476
0.000878184
0.000895191
0.000904929
0.000912917
0.000922116
0.000934568
0.000951937
0.000974512
0.000997995
0.00100789
0.000984995
0.000953679
0.000913589
0.000864302
0.00080533
0.000736129
0.000656135
0.000564836
0.000461958
0.000347936
0.000225362
0.000104337
2.04498e-05
2.31691e-06
6.08041e-06
3.51388e-05
0.000133617
0.000249903
0.000362035
0.000465503
0.00055936
0.000643561
0.000718292
0.000783775
0.0008392
0.000867588
0.000883809
0.000895539
0.000906354
0.00091829
0.000933113
0.000952386
0.000976106
0.000999348
0.00100688
0.000984079
0.00095283
0.000912786
0.00086353
0.000804576
0.000735388
0.000655405
0.000564122
0.000461269
0.000347296
0.000224814
0.000103965
2.03289e-05
2.28873e-06
6.17689e-06
3.50493e-05
0.000133113
0.00024896
0.000360701
0.00046382
0.000557324
0.000641135
0.000715428
0.000780418
0.00082878
0.000855355
0.000872493
0.000886318
0.000899607
0.000913973
0.000930944
0.000951907
0.000976603
0.000999729
0.00100574
0.000983049
0.000951882
0.000911893
0.000862672
0.00080374
0.000734564
0.000654589
0.000563316
0.000460486
0.000346561
0.000224181
0.000103533
2.019e-05
2.25849e-06
6.3008e-06
3.46353e-05
0.000131598
0.000246352
0.000357294
0.000459941
0.000553194
0.000636857
0.00071101
0.000775808
0.000816583
0.000841931
0.000860798
0.000877258
0.000893157
0.000909792
0.000928619
0.000950984
0.000976504
0.000999619
0.00100447
0.000981913
0.000950841
0.000910919
0.000861742
0.000802835
0.000733673
0.000653707
0.000562448
0.000459646
0.00034578
0.000223517
0.000103087
2.00478e-05
2.22776e-06
6.46796e-06
3.39743e-05
0.000129224
0.000242143
0.00035165
0.000453445
0.000546339
0.000629952
0.000704182
0.000764995
0.000802057
0.000828089
0.000849469
0.000868838
0.000887381
0.000906179
0.000926706
0.000950358
0.000976681
0.000999777
0.00100309
0.000980677
0.000949722
0.000909885
0.000860765
0.000801895
0.000732754
0.000652803
0.000561558
0.000458784
0.000344977
0.00022283
0.000102621
1.98969e-05
2.19579e-06
6.68961e-06
3.32785e-05
0.000126534
0.000237027
0.000344365
0.000444672
0.000536778
0.000620144
0.000694453
0.000746507
0.000784181
0.000813997
0.000839348
0.000861989
0.000883056
0.000903809
0.000925906
0.000950848
0.000978041
0.00100092
0.00100153
0.00097929
0.000948469
0.000908737
0.000859693
0.000800877
0.000731772
0.000651847
0.000560629
0.000457893
0.000344154
0.000222134
0.000102149
1.97435e-05
2.16411e-06
6.96708e-06
3.28414e-05
0.000124383
0.000232324
0.00033694
0.000435022
0.000525619
0.000608133
0.000673682
0.000724154
0.000765323
0.000800142
0.000830223
0.000856622
0.000880418
0.000903144
0.000926815
0.000953134
0.00098126
0.00100352
0.000999741
0.000977674
0.000947001
0.000907391
0.000858447
0.000799709
0.000730667
0.000650793
0.000559622
0.000456943
0.000343286
0.0002214
0.000101646
1.95802e-05
2.1315e-06
7.28565e-06
3.28753e-05
0.000123451
0.000229243
0.000330961
0.000426177
0.000514351
0.000587799
0.000647854
0.000700404
0.000746937
0.000787608
0.000822654
0.000852771
0.000879233
0.000903967
0.000929353
0.000957213
0.000986253
0.00100733
0.000997596
0.000975679
0.000945146
0.000905662
0.000856832
0.000798196
0.000729247
0.000649461
0.000558379
0.0004558
0.000342269
0.000220558
0.000101081
1.94039e-05
2.09854e-06
7.62043e-06
3.34065e-05
0.000123926
0.000228343
0.000327466
0.000419554
0.000500958
0.000564792
0.000623304
0.000679057
0.000730732
0.000776702
0.000816284
0.000849889
0.000878932
0.000905714
0.000932996
0.000962576
0.00099192
0.00100843
0.000994971
0.000973159
0.000942732
0.000903359
0.000854643
0.000796125
0.000727299
0.000647642
0.000556701
0.000454278
0.000340935
0.000219469
0.000100359
1.91881e-05
2.06234e-06
7.94597e-06
3.42791e-05
0.00012548
0.00022933
0.000326548
0.000415874
0.000487336
0.000546433
0.00060443
0.000662369
0.000717671
0.000767646
0.000810848
0.000847383
0.000878811
0.000907794
0.000937213
0.00096814
0.000995981
0.00100512
0.000991689
0.000969914
0.00093954
0.000900241
0.000851624
0.000793231
0.000724555
0.000645074
0.000554338
0.000452156
0.000339103
0.000218007
9.94239e-05
1.8925e-05
2.0228e-06
8.24045e-06
3.51778e-05
0.000127277
0.00023098
0.000327029
0.000414474
0.000478414
0.000533781
0.000591139
0.000650467
0.000708215
0.000760918
0.000806644
0.000845352
0.000878714
0.000909533
0.000940535
0.000972036
0.000998022
0.00100131
0.000987768
0.000965911
0.000935496
0.000896205
0.000847648
0.000789368
0.000720857
0.000641595
0.000551132
0.000449283
0.000336637
0.00021606
9.82024e-05
1.85924e-05
1.97657e-06
8.48778e-06
3.56741e-05
0.000128057
0.000231152
0.000326114
0.000412315
0.000470024
0.000524299
0.000582454
0.000643167
0.000702504
0.000756836
0.000804113
0.000844259
0.000878982
0.000911064
0.000942958
0.00097435
0.000998353
0.000996999
0.000983185
0.00096111
0.000930542
0.000891171
0.000842614
0.000784416
0.000716072
0.000637065
0.000546948
0.000445545
0.00033346
0.000213601
9.67064e-05
1.81982e-05
1.92472e-06
8.68606e-06
3.54363e-05
0.000126882
0.000228223
0.00032129
0.000399986
0.000457774
0.000514745
0.000575728
0.000638713
0.000699745
0.000755357
0.000803674
0.000844756
0.000880377
0.000913246
0.000945538
0.000976432
0.0009982
0.000992064
0.000977871
0.000955481
0.000924676
0.000885161
0.000836559
0.000778424
0.000710255
0.00063154
0.000541838
0.000440984
0.000329605
0.000210653
9.49472e-05
1.77388e-05
1.86552e-06
8.85432e-06
3.46016e-05
0.00012408
0.000222583
0.000312795
0.000382038
0.000440815
0.0005024
0.000568147
0.000634864
0.000698458
0.000755715
0.000805125
0.000847082
0.000883601
0.000917413
0.000950138
0.000979115
0.000992732
0.000986163
0.000971573
0.000948843
0.00091778
0.000878103
0.000829452
0.000771391
0.000703432
0.00062507
0.000535876
0.000435702
0.000325196
0.00020735
9.30339e-05
1.72498e-05
1.80371e-06
9.01205e-06
3.36085e-05
0.000120699
0.000215688
0.000301215
0.00036121
0.000421361
0.000487967
0.000559018
0.000630068
0.000696759
0.000756074
0.0008069
0.000850046
0.000887801
0.000922792
0.000955789
0.000981977
0.000985908
0.000978962
0.000964025
0.000941005
0.000909728
0.000869937
0.000821288
0.000763365
0.00069569
0.000617774
0.0005292
0.000429836
0.000320353
0.000203771
9.09869e-05
1.67262e-05
1.73832e-06
9.15619e-06
3.27303e-05
0.000117415
0.000208492
0.000282543
0.000340839
0.000403456
0.000473669
0.000548435
0.000622899
0.000692479
0.000754102
0.000806809
0.000851728
0.000891381
0.000927931
0.000959804
0.000976644
0.000977393
0.000970175
0.000954992
0.000931775
0.000900373
0.000860553
0.000811995
0.000754301
0.000687016
0.000609667
0.000521857
0.000423467
0.000315186
0.00020004
8.89106e-05
1.62042e-05
1.67462e-06
9.26559e-06
3.18118e-05
0.000114093
0.000201453
0.000265989
0.000322335
0.000385983
0.000458324
0.000535716
0.000612979
0.000685258
0.000749353
0.000804401
0.000851717
0.000893666
0.000930967
0.000957742
0.000966405
0.000967019
0.000959665
0.000944366
0.000921079
0.00088968
0.000849957
0.000801615
0.000744279
0.000677514
0.000600868
0.000513959
0.000416684
0.000309737
0.000196143
8.6753e-05
1.56603e-05
1.60986e-06
9.26184e-06
3.0475e-05
0.000109571
0.000193004
0.000248803
0.000304202
0.000369053
0.000442952
0.000522046
0.000601271
0.000675814
0.000742445
0.000800284
0.000850487
0.000894295
0.000928599
0.00094549
0.00095417
0.000954774
0.000947408
0.000932121
0.000908892
0.00087762
0.000838118
0.000790116
0.000733262
0.000667146
0.000591337
0.000505473
0.000409465
0.000304009
0.000192108
8.45585e-05
1.51164e-05
1.54847e-06
9.19934e-06
2.87578e-05
0.00010364
0.000179574
0.000231169
0.000286744
0.000352307
0.000426862
0.000506925
0.00058778
0.000664707
0.00073439
0.000795681
0.00084834
0.000888582
0.00091406
0.000931146
0.000939984
0.000940727
0.0009335
0.000918376
0.000895355
0.00086436
0.000825228
0.00077771
0.000721481
0.00065615
0.00058131
0.000496614
0.000401983
0.000298109
0.000187968
8.2305e-05
1.45554e-05
1.48659e-06
9.13126e-06
2.69588e-05
9.72484e-05
0.000164104
0.000213752
0.000269156
0.000334738
0.000409581
0.000490614
0.000573446
0.000653478
0.00072699
0.000790526
0.000837265
0.000871609
0.000897436
0.000914834
0.000923957
0.000924972
0.000918021
0.000903198
0.000880526
0.000849948
0.000811324
0.000764429
0.000708959
0.000644547
0.000570807
0.000487409
0.000394283
0.000292109
0.000183826
8.00941e-05
1.40167e-05
1.43001e-06
9.06474e-06
2.51869e-05
9.08444e-05
0.000149576
0.000197055
0.000251757
0.000316931
0.000391825
0.000473882
0.000559144
0.000642641
0.000717951
0.000774741
0.000817972
0.000852746
0.000878997
0.000896804
0.000906322
0.000907731
0.00090119
0.000886808
0.00086463
0.000834619
0.000796653
0.000750528
0.000695959
0.0006326
0.000560077
0.000478075
0.000386524
0.00028609
0.000179672
7.78675e-05
1.34714e-05
1.37348e-06
9.00845e-06
2.35637e-05
8.47067e-05
0.000136491
0.000181545
0.000234829
0.000298933
0.00037353
0.000456671
0.000544435
0.000630019
0.000701721
0.000753427
0.000797073
0.000832307
0.00085903
0.000877311
0.000887306
0.000889203
0.000883174
0.000869346
0.000847779
0.000818455
0.00078127
0.000736038
0.000682492
0.000620302
0.000549111
0.000468612
0.000378736
0.000280127
0.000175629
7.57483e-05
1.29667e-05
1.32372e-06
8.96404e-06
2.21016e-05
7.89806e-05
0.000124829
0.000167384
0.000218791
0.000281336
0.000355284
0.000439219
0.000528729
0.000614358
0.000679093
0.000731039
0.000775037
0.000810696
0.000837889
0.000856672
0.000867197
0.000869655
0.000864229
0.000851058
0.000830216
0.000801699
0.00076542
0.000721205
0.000668801
0.000607889
0.00053812
0.000459189
0.000371016
0.000274223
0.000171607
7.36173e-05
1.24553e-05
1.27326e-06
8.93376e-06
2.08689e-05
7.39069e-05
0.000114811
0.00015487
0.000204026
0.0002645
0.000337176
0.000421144
0.000511604
0.000596989
0.000656037
0.000708082
0.000752326
0.00078833
0.000815942
0.0008352
0.00084625
0.000849287
0.000844498
0.000832032
0.000811975
0.000784336
0.000749038
0.000705921
0.000654743
0.000595194
0.000526932
0.000449651
0.000363262
0.000268354
0.000167669
7.15748e-05
1.19811e-05
1.22873e-06
8.9125e-06
1.97781e-05
6.93373e-05
0.000106076
0.000143785
0.000190551
0.000248665
0.000319689
0.00040312
0.000493107
0.000574455
0.000633161
0.000685113
0.000729435
0.000765648
0.000793574
0.000813235
0.000824771
0.000828373
0.000824234
0.000812506
0.000793284
0.000766584
0.000732338
0.000690395
0.000640516
0.000582398
0.000515696
0.000440099
0.000355499
0.000262455
0.000163665
6.94642e-05
1.14865e-05
1.1807e-06
8.8996e-06
1.88254e-05
6.52869e-05
9.85662e-05
0.000134103
0.000178418
0.000233934
0.000302873
0.00038519
0.000474387
0.000552721
0.000610942
0.000662623
0.000706841
0.00074309
0.000771174
0.000791105
0.000803019
0.000807107
0.000803561
0.000792539
0.000774137
0.000748376
0.000715196
0.000674448
0.000625901
0.000569253
0.000504161
0.000430307
0.000347568
0.000256471
0.000159659
6.74022e-05
1.10209e-05
1.13651e-06
8.88859e-06
1.79167e-05
6.15058e-05
9.19253e-05
0.000125519
0.000167411
0.000220182
0.000286711
0.000367507
0.000455774
0.000531948
0.000589552
0.000640811
0.000684767
0.000720895
0.000748989
0.000769062
0.000781249
0.000785741
0.000782734
0.000772384
0.00075479
0.000729975
0.000697877
0.00065835
0.000611162
0.00055601
0.000492544
0.000420437
0.000339545
0.000250366
0.00015551
6.52297e-05
1.05251e-05
1.08626e-06
8.87674e-06
1.70222e-05
5.7889e-05
8.59497e-05
0.000117811
0.000157369
0.000207364
0.000271297
0.000350291
0.000437532
0.000512127
0.000569034
0.000619761
0.000663324
0.000699187
0.000727147
0.000747222
0.000759552
0.000764337
0.000761773
0.00075202
0.000735175
0.00071126
0.000680214
0.000641889
0.000596053
0.000542401
0.000480582
0.000410259
0.000331276
0.000244103
0.000151306
6.30819e-05
1.00532e-05
1.03853e-06
8.8602e-06
1.6079e-05
5.42507e-05
8.03685e-05
0.000110666
0.000147983
0.000195223
0.000256474
0.000333531
0.00041971
0.000492872
0.000549072
0.000599235
0.000642349
0.000677874
0.000705616
0.000725606
0.000738001
0.000743009
0.000740833
0.000731634
0.00071551
0.000692481
0.000662481
0.000625358
0.000580874
0.000528721
0.000468537
0.000399978
0.00032287
0.000237665
0.000146909
6.0794e-05
9.54318e-06
9.83585e-07
8.84127e-06
1.51202e-05
5.07165e-05
7.51821e-05
0.000104008
0.000139164
0.000183711
0.000242324
0.000317513
0.000402693
0.000473981
0.000529481
0.000579068
0.0006217
0.000656834
0.00068429
0.00070412
0.0007165
0.000721654
0.000719794
0.000711088
0.000695631
0.000673442
0.000644452
0.000608504
0.000565357
0.000514699
0.000456165
0.000389405
0.000314236
0.000231092
0.000142488
5.85561e-05
9.06283e-06
9.32032e-07
8.82099e-06
1.41255e-05
4.72875e-05
7.03218e-05
9.77417e-05
0.000130785
0.000172651
0.00022861
0.000301968
0.000386209
0.000455115
0.000509929
0.000558957
0.000601112
0.000635849
0.000663004
0.000682652
0.000694995
0.000700273
0.000698715
0.000690491
0.0006757
0.000654356
0.000626383
0.000591619
0.000549814
0.000500648
0.00044375
0.000378761
0.000305489
0.000224359
0.000137879
5.61789e-05
8.54499e-06
8.74452e-07
8.79765e-06
1.31076e-05
4.40651e-05
6.57805e-05
9.18732e-05
0.000122892
0.000162104
0.000215375
0.000286877
0.000370189
0.000436361
0.000490463
0.000538908
0.00058056
0.000614866
0.000641678
0.0006611
0.000673358
0.000678718
0.000677421
0.000669646
0.000655493
0.000634973
0.000608005
0.00057442
0.000533962
0.000486305
0.000431075
0.00036791
0.000296612
0.000217594
0.000133337
5.39094e-05
8.0709e-06
8.22503e-07
8.76828e-06
1.21134e-05
4.09527e-05
6.13452e-05
8.62084e-05
0.000115297
0.000151839
0.000202255
0.00027167
0.000353963
0.000417481
0.000470858
0.000518722
0.000559877
0.000593754
0.000620223
0.000639415
0.000651589
0.000657033
0.000656006
0.000648695
0.000635201
0.000615531
0.000589596
0.000557216
0.000518128
0.000471995
0.000418431
0.000357068
0.0002877
0.000210735
0.000128653
5.15217e-05
7.56607e-06
7.66046e-07
8.7323e-06
1.12308e-05
3.79893e-05
5.70139e-05
8.07548e-05
0.000108019
0.000141896
0.00018928
0.000256299
0.000337411
0.000398569
0.000451198
0.000498467
0.000539109
0.000572536
0.000598634
0.000617565
0.00062962
0.000635115
0.00063433
0.000627459
0.000614608
0.000595779
0.000570877
0.000539715
0.000502019
0.000457445
0.000405602
0.000346114
0.000278769
0.000203959
0.000124136
4.93008e-05
7.11808e-06
7.16458e-07
8.68393e-06
1.03923e-05
3.49158e-05
5.25828e-05
7.5271e-05
0.000100781
0.000131969
0.000176032
0.000240123
0.000319754
0.000379174
0.00043108
0.000477806
0.000517993
0.000551023
0.000576794
0.0005955
0.000607468
0.000613045
0.000612528
0.000606126
0.000593946
0.00057599
0.000552153
0.000522239
0.000485962
0.000442965
0.000392844
0.00033521
0.00026984
0.000197117
0.00011949
4.69656e-05
6.64127e-06
6.62816e-07
8.6243e-06
9.6292e-06
3.18761e-05
4.81597e-05
6.97718e-05
9.36016e-05
0.000122118
0.000162622
0.000223257
0.000301036
0.000359264
0.000410458
0.000456684
0.000496465
0.00052914
0.000554614
0.000573115
0.000585005
0.000590666
0.000590418
0.000584485
0.000572978
0.000555897
0.000533135
0.000504486
0.000469657
0.000428285
0.000379957
0.000324274
0.000260997
0.000190481
0.000115131
4.4872e-05
6.23536e-06
6.16609e-07
8.5519e-06
8.89735e-06
2.87109e-05
4.36219e-05
6.40727e-05
8.62524e-05
0.000112086
0.000148685
0.000205067
0.000280351
0.000338201
0.000388727
0.00043457
0.000474088
0.00050655
0.000531855
0.000550258
0.000562163
0.000567986
0.000568075
0.000562669
0.000551888
0.000535729
0.000514081
0.000486729
0.00045337
0.000413627
0.000367078
0.00031331
0.000252072
0.000183705
0.000110596
4.26494e-05
5.79898e-06
5.66489e-07
8.47252e-06
8.27077e-06
2.57634e-05
3.92715e-05
5.83827e-05
7.89314e-05
0.000102143
0.000134579
0.000185882
0.000257787
0.000316042
0.000365876
0.00041141
0.000450782
0.000483151
0.000508391
0.00052678
0.000538763
0.000544795
0.000545257
0.000540408
0.000530377
0.000515167
0.000494664
0.000468647
0.000436805
0.000398755
0.000354065
0.000302311
0.000243227
0.000177124
0.00010634
4.06696e-05
5.4344e-06
5.24067e-07
8.38558e-06
7.70501e-06
2.28964e-05
3.50144e-05
5.25752e-05
7.15164e-05
9.22116e-05
0.000120234
0.000165393
0.0002325
0.000292175
0.000341253
0.000386596
0.000426029
0.000458534
0.000483924
0.000502485
0.000514699
0.000521065
0.000521999
0.000517787
0.000508572
0.000494365
0.000475049
0.000450399
0.000420099
0.000383752
0.000340915
0.00029115
0.000234174
0.000170279
0.000101784
3.8473e-05
5.02189e-06
4.7747e-07
8.29668e-06
7.27131e-06
2.05864e-05
3.13369e-05
4.71087e-05
6.44696e-05
8.28643e-05
0.000106526
0.000144808
0.00020555
0.000267198
0.000315262
0.00036039
0.000399992
0.000432789
0.000458485
0.000477351
0.000489901
0.000496681
0.000498148
0.000494618
0.000486257
0.000473085
0.000454992
0.000431753
0.000403049
0.000368481
0.000327596
0.000279946
0.000225225
0.000163686
9.75828e-05
3.65689e-05
4.68665e-06
4.38655e-07
8.18702e-06
6.8863e-06
1.84882e-05
2.80075e-05
4.18816e-05
5.77515e-05
7.41546e-05
9.3761e-05
0.000124655
0.000177075
0.00024086
0.000287403
0.000332219
0.000372137
0.000405486
0.000431767
0.000451191
0.000464287
0.000471645
0.000473767
0.000471008
0.000463561
0.000451462
0.00043461
0.000412784
0.000385665
0.00035285
0.000313883
0.000268305
0.000215795
0.000156585
9.28995e-05
3.4358e-05
4.29011e-06
3.95026e-07
7.92594e-06
6.60715e-06
1.70705e-05
2.55901e-05
3.75028e-05
5.17501e-05
6.64711e-05
8.28089e-05
0.000106891
0.00014997
0.000214877
0.000258944
0.00030299
0.000343106
0.000377078
0.000404096
0.000424241
0.000438028
0.000446083
0.000448954
0.000447039
0.000440565
0.000429591
0.000414032
0.000393676
0.000368208
0.00033723
0.000300283
0.000256899
0.000206735
0.000149974
8.87559e-05
3.2541e-05
3.98744e-06
3.59916e-07
7.65982e-06
6.34294e-06
1.57074e-05
2.34709e-05
3.34458e-05
4.59105e-05
5.92401e-05
7.32875e-05
9.17685e-05
0.000124325
0.000180317
0.000229762
0.000272201
0.000312279
0.000346992
0.000375022
0.000396195
0.000410948
0.000419919
0.000423696
0.000422729
0.000417287
0.000407459
0.000393181
0.000374257
0.00035038
0.000321159
0.000286137
0.000244849
0.000196946
0.000142595
8.39104e-05
3.02999e-05
3.60642e-06
3.19472e-07
7.38904e-06
6.17251e-06
1.50123e-05
2.23882e-05
3.06522e-05
4.10002e-05
5.28256e-05
6.52998e-05
7.98765e-05
0.000103139
0.000146205
0.000202249
0.000241735
0.000281048
0.000316253
0.000345313
0.000367656
0.000383549
0.000393605
0.000398434
0.000398533
0.000394217
0.000385617
0.000372697
0.000355283
0.000333086
0.000305723
0.000272744
0.000233677
0.000188151
0.000136278
8.00569e-05
2.86876e-05
3.35175e-06
2.88977e-07
7.11821e-06
5.98559e-06
1.41859e-05
2.13329e-05
2.84726e-05
3.67828e-05
4.68709e-05
5.80397e-05
7.02333e-05
8.68712e-05
0.000117658
0.000171964
0.000212033
0.000249288
0.000284489
0.000314592
0.000338342
0.000355659
0.000367054
0.000373127
0.000374409
0.000371273
0.000363896
0.000352283
0.000336285
0.000315636
0.000289966
0.000258838
0.00022179
0.000178456
0.000128946
7.5249e-05
2.65086e-05
3.0004e-06
2.52836e-07
6.84346e-06
5.88453e-06
1.39601e-05
2.13766e-05
2.80299e-05
3.46243e-05
4.2391e-05
5.18072e-05
6.25116e-05
7.53866e-05
9.60702e-05
0.0001352
0.000186852
0.000220349
0.000254272
0.000284784
0.000309735
0.000328488
0.000341325
0.000348763
0.00035133
0.000349447
0.000343352
0.000333095
0.000318569
0.000299535
0.000275648
0.000246481
0.000211567
0.000170515
0.000123365
7.19693e-05
2.52165e-05
2.80622e-06
2.27847e-07
6.58099e-06
5.76052e-06
1.34599e-05
2.11977e-05
2.77775e-05
3.35652e-05
3.93013e-05
4.63748e-05
5.5308e-05
6.59588e-05
8.04667e-05
0.000106606
0.000153972
0.000194266
0.000225434
0.000255526
0.00028148
0.000301797
0.000316318
0.000325352
0.000329348
0.000328767
0.000323907
0.000314881
0.000301626
0.000283942
0.000261508
0.00023392
0.000200732
0.00016157
0.000116498
6.7402e-05
2.31628e-05
2.49188e-06
1.96979e-07
6.32e-06
5.76133e-06
1.37855e-05
2.25202e-05
2.95566e-05
3.56713e-05
4.06347e-05
4.50145e-05
5.07375e-05
5.87949e-05
6.95168e-05
8.63071e-05
0.000118734
0.000173475
0.000200724
0.000228986
0.000255069
0.00027661
0.000292812
0.000303597
0.000309192
0.000310052
0.000306537
0.000298829
0.000286931
0.000270688
0.000249817
0.00022393
0.000192585
0.000155376
0.000112286
6.50455e-05
2.22946e-05
2.36369e-06
1.77312e-07
6.07175e-06
5.77366e-06
1.40131e-05
2.38267e-05
3.11736e-05
3.76566e-05
4.34552e-05
4.75962e-05
5.04175e-05
5.45547e-05
6.16329e-05
7.24076e-05
9.09317e-05
0.000126552
0.000177565
0.000202826
0.000228052
0.000250486
0.000268593
0.000281649
0.000289342
0.000291993
0.000290003
0.000283635
0.000272967
0.000257899
0.000238186
0.00021347
0.000183335
0.000147426
0.000105819
6.04402e-05
2.015e-05
2.05346e-06
1.49142e-07
5.79493e-06
6.03201e-06
1.56627e-05
2.75887e-05
3.61173e-05
4.33222e-05
4.99805e-05
5.57824e-05
5.88924e-05
5.93158e-05
6.06674e-05
6.55563e-05
7.52434e-05
9.37033e-05
0.000129514
0.000178381
0.000201061
0.000222936
0.000242294
0.000257787
0.000268143
0.000273217
0.000273341
0.000268852
0.00025993
0.000246565
0.000228568
0.000205609
0.000177264
0.000143122
0.000103144
5.90959e-05
1.97119e-05
1.98204e-06
1.30635e-07
5.47832e-06
6.47752e-06
1.78888e-05
3.09596e-05
4.10886e-05
4.85773e-05
5.41522e-05
5.82912e-05
6.19491e-05
6.65428e-05
7.24643e-05
7.03085e-05
7.09468e-05
7.75433e-05
9.25005e-05
0.00012277
0.000170396
0.000190297
0.000209686
0.000227412
0.000241272
0.000249863
0.000252976
0.000250902
0.000243933
0.000232181
0.000215552
0.000193774
0.000166482
0.000133379
9.46897e-05
5.27073e-05
1.67037e-05
1.5838e-06
9.96148e-08
5.06185e-06
7.76917e-06
2.33733e-05
3.898e-05
5.04069e-05
5.85272e-05
6.42581e-05
6.79047e-05
6.99044e-05
7.11785e-05
7.29863e-05
7.66639e-05
8.296e-05
8.21557e-05
8.29854e-05
9.14139e-05
0.000111139
0.000146323
0.000176078
0.000193008
0.000208909
0.000221477
0.000228819
0.000230444
0.00022662
0.000217695
0.000203808
0.000184817
0.000160336
0.000129901
9.34345e-05
5.28497e-05
1.71233e-05
1.62541e-06
8.15272e-08
4.66726e-06
9.91453e-06
3.11041e-05
4.69717e-05
6.10064e-05
7.05656e-05
7.61577e-05
7.96597e-05
8.14101e-05
8.18589e-05
8.13499e-05
8.03859e-05
7.99522e-05
8.14214e-05
8.60337e-05
9.38293e-05
9.51231e-05
0.000101629
0.000111602
0.000139156
0.000164784
0.000178977
0.000191086
0.000198414
0.000199386
0.000193851
0.000182239
0.000164956
0.00014215
0.000113788
8.01602e-05
4.35858e-05
1.31055e-05
1.13828e-06
5.33e-08
4.32716e-06
1.26095e-05
4.23631e-05
6.44425e-05
7.68049e-05
8.64406e-05
9.40491e-05
9.6261e-05
9.73728e-05
9.7737e-05
9.75801e-05
9.70765e-05
9.63885e-05
9.5715e-05
9.55403e-05
9.66382e-05
9.98112e-05
0.000105421
0.000103355
0.000100772
0.000113255
0.000144341
0.000161287
0.0001717
0.000178188
0.000178333
0.00017117
0.000156846
0.000135943
0.00010907
7.70744e-05
4.24522e-05
1.3313e-05
1.21233e-06
4.0806e-08
4.0814e-06
1.42836e-05
5.09935e-05
8.35615e-05
0.000102046
0.000109788
0.0001116
0.000110701
0.000108738
0.000106465
0.00010422
0.000102157
0.000100368
9.89382e-05
9.79884e-05
9.76441e-05
9.81331e-05
9.97461e-05
0.000102721
0.000107212
0.000110076
0.00011648
0.000128129
0.000135777
0.000142646
0.000146974
0.000146693
0.000140428
0.000127628
0.000108061
8.11869e-05
4.73102e-05
1.50324e-05
1.27877e-06
3.6953e-08
3.75343e-06
1.58527e-05
5.71138e-05
8.8044e-05
0.000103701
0.000111019
0.000113277
0.000112653
0.00011056
0.000107865
0.000105155
0.000102801
0.000101051
0.000100103
0.000100142
0.000101329
0.000103671
0.000106993
0.000110925
0.000109833
0.000103029
0.000102418
0.000114231
0.000140142
0.000149483
0.000157906
0.000160837
0.000153344
0.000132781
0.000100726
6.32375e-05
2.929e-05
7.6763e-06
5.77468e-07
1.46588e-08
3.50782e-06
1.71981e-05
5.50338e-05
6.75656e-05
7.35766e-05
7.92661e-05
7.67043e-05
7.06442e-05
6.49114e-05
6.05848e-05
5.81124e-05
5.73747e-05
5.81545e-05
6.03705e-05
6.41012e-05
6.94407e-05
7.6231e-05
8.38695e-05
9.13838e-05
9.71967e-05
9.7354e-05
9.88836e-05
0.000103482
9.99121e-05
9.40435e-05
8.6748e-05
7.84883e-05
6.87216e-05
5.70099e-05
4.32624e-05
2.85652e-05
1.49184e-05
4.46362e-06
3.88955e-07
3.19392e-08
3.37072e-06
1.62169e-05
3.80191e-05
3.82337e-05
4.17283e-05
3.14206e-05
2.18788e-05
1.83294e-05
2.03986e-05
2.53587e-05
2.99636e-05
3.37105e-05
3.72815e-05
4.17439e-05
4.86835e-05
5.98966e-05
7.63058e-05
9.71884e-05
0.000120754
0.000145271
0.000160826
0.000169447
0.000180703
0.000199747
0.00023585
0.000301531
0.000361423
0.00035424
0.000305504
0.000214009
0.000110922
3.92376e-05
8.19249e-06
4.63473e-07
2.31858e-08
3.21112e-06
2.78084e-05
1.77639e-05
2.14858e-06
1.31979e-05
4.24588e-05
4.98198e-05
5.21684e-05
5.06181e-05
5.13008e-05
5.23553e-05
5.39739e-05
5.62966e-05
5.91604e-05
6.26307e-05
6.67187e-05
7.14072e-05
7.65175e-05
8.16183e-05
8.60739e-05
8.92535e-05
9.07266e-05
8.9886e-05
8.61771e-05
7.93837e-05
6.97581e-05
5.80798e-05
4.52825e-05
3.27375e-05
2.15619e-05
1.24186e-05
5.57752e-06
1.49151e-06
2.91118e-07
1.34905e-07
5.14888e-06
3.49401e-05
9.2545e-06
5.25584e-06
1.02355e-05
1.05358e-05
1.15839e-05
1.90374e-05
2.05323e-05
1.91847e-05
2.00699e-05
2.11876e-05
2.20506e-05
2.27424e-05
2.33893e-05
2.41268e-05
2.4901e-05
2.57363e-05
2.65319e-05
2.71958e-05
2.7515e-05
2.75406e-05
2.7397e-05
2.70482e-05
2.64923e-05
2.58236e-05
2.51131e-05
2.33963e-05
2.15321e-05
1.98476e-05
1.86568e-05
1.82423e-05
1.83557e-05
1.16384e-05
3.04255e-07
5.12013e-08
1.98049e-06
4.9277e-06
7.64595e-06
1.01022e-05
1.22596e-05
1.38321e-05
1.43897e-05
1.34399e-05
1.15419e-05
9.13806e-06
6.78061e-06
4.41206e-06
2.33676e-06
1.9484e-07
7.69292e-07
9.39729e-06
1.30803e-05
1.29828e-05
1.24382e-05
1.18113e-05
1.12773e-05
1.09041e-05
1.07059e-05
1.06607e-05
1.07157e-05
1.08036e-05
1.0867e-05
1.08521e-05
1.07167e-05
1.04644e-05
1.01749e-05
9.99922e-06
2.95266e-06
4.8301e-08
3.80772e-07
1.03928e-06
5.29429e-06
1.09567e-05
1.57951e-05
1.92166e-05
2.14419e-05
2.31664e-05
2.45255e-05
2.49825e-05
2.45132e-05
2.32843e-05
2.12353e-05
1.72887e-05
1.41131e-05
1.35798e-05
1.37352e-05
1.38745e-05
1.38309e-05
1.40077e-05
1.46995e-05
1.60114e-05
1.79517e-05
2.03888e-05
2.28854e-05
2.47608e-05
2.40146e-05
2.19779e-05
2.0311e-05
1.95282e-05
2.03175e-05
1.83139e-05
8.68092e-06
3.6485e-06
7.51311e-07
5.86294e-07
6.54903e-06
3.07901e-05
4.66348e-05
6.33534e-05
6.00561e-05
4.32567e-05
2.25573e-05
1.20608e-05
1.96177e-05
2.4458e-05
2.68702e-05
2.83187e-05
2.90947e-05
2.86073e-05
2.65353e-05
2.43337e-05
2.30066e-05
2.24391e-05
2.23975e-05
2.27472e-05
2.33665e-05
2.41135e-05
2.47651e-05
2.30807e-05
2.07973e-05
1.89787e-05
1.78066e-05
1.81235e-05
2.11467e-05
2.2767e-05
1.7781e-05
7.30317e-06
3.77736e-06
1.08376e-06
3.97826e-07
3.21115e-07
1.10616e-06
1.04343e-05
2.17697e-05
3.21541e-05
4.1649e-05
4.48097e-05
4.52835e-05
4.41238e-05
4.15098e-05
3.76253e-05
3.26248e-05
2.65591e-05
1.92326e-05
1.05422e-05
3.43581e-06
2.34275e-06
5.24028e-06
8.91126e-06
1.2413e-05
1.56713e-05
1.86806e-05
1.85348e-05
1.9403e-05
2.26719e-05
2.95695e-05
3.25329e-05
3.44077e-05
3.28894e-05
2.65997e-05
1.55998e-05
8.54494e-06
3.49958e-06
1.68954e-06
8.21045e-07
2.14171e-06
1.53853e-05
3.57915e-05
5.1415e-05
6.1316e-05
6.66952e-05
6.86367e-05
6.78418e-05
6.49267e-05
6.04603e-05
5.49419e-05
4.88896e-05
4.27416e-05
3.6784e-05
3.12958e-05
2.67186e-05
2.34222e-05
2.16303e-05
2.17481e-05
2.20862e-05
2.36718e-05
3.21274e-05
3.76336e-05
4.3142e-05
4.81999e-05
5.21087e-05
5.41937e-05
5.31202e-05
4.66134e-05
3.5317e-05
1.88903e-05
1.04548e-05
4.35587e-06
2.01718e-06
1.02437e-06
3.01946e-06
1.96137e-05
4.01938e-05
5.60668e-05
6.98691e-05
8.23378e-05
9.17863e-05
9.36509e-05
9.24563e-05
8.88194e-05
8.33951e-05
7.68876e-05
7.00282e-05
6.35166e-05
5.7937e-05
5.36476e-05
5.06938e-05
4.29807e-05
3.59691e-05
3.19191e-05
3.10552e-05
3.5904e-05
4.9501e-05
5.97319e-05
6.51733e-05
6.89258e-05
6.94778e-05
6.45845e-05
5.35462e-05
3.87676e-05
2.14885e-05
1.23011e-05
4.50848e-06
2.38352e-06
1.13046e-06
3.25331e-06
2.08123e-05
4.63292e-05
6.52266e-05
8.02441e-05
9.3917e-05
0.000105357
0.000109835
0.000111227
0.00011001
0.00010669
0.000101848
9.61334e-05
9.02293e-05
8.47739e-05
8.02548e-05
7.6896e-05
7.45944e-05
7.0362e-05
6.11652e-05
5.56697e-05
5.46509e-05
5.88123e-05
6.84996e-05
7.73831e-05
7.8889e-05
7.71078e-05
6.90048e-05
5.50049e-05
4.04056e-05
2.32863e-05
1.4232e-05
5.16512e-06
2.59487e-06
1.30966e-06
4.1896e-06
2.55617e-05
5.33389e-05
7.32043e-05
8.9996e-05
0.000105777
0.000120774
0.0001291
0.00013223
0.000132522
0.000130478
0.000126607
0.00012146
0.000115629
0.00010971
0.000104227
9.95522e-05
9.58399e-05
9.30717e-05
9.10835e-05
8.96991e-05
8.35433e-05
8.07123e-05
8.32387e-05
8.86359e-05
8.78012e-05
8.33861e-05
7.18037e-05
5.5062e-05
3.96648e-05
2.43244e-05
1.55705e-05
5.38975e-06
2.81062e-06
1.38836e-06
4.41904e-06
2.6953e-05
5.74224e-05
7.96298e-05
9.78658e-05
0.000114761
0.000131242
0.000142812
0.00014805
0.000150361
0.000150163
0.000147868
0.000143909
0.000138765
0.000132952
0.000126965
0.000121214
0.000116024
0.000111576
0.000107894
0.000104922
0.000102595
0.00010086
9.95742e-05
9.82499e-05
9.56771e-05
8.92933e-05
7.52076e-05
5.62674e-05
4.00345e-05
2.52281e-05
1.68598e-05
5.79645e-06
2.96444e-06
1.47965e-06
4.9366e-06
2.91753e-05
6.13024e-05
8.66848e-05
0.000107168
0.000125796
0.000143927
0.000158075
0.000165186
0.000169155
0.000170401
0.00016932
0.00016629
0.000161699
0.000155966
0.000149532
0.000142808
0.000136259
0.000130201
0.000124787
0.000120096
0.000116142
0.000112854
0.000109981
0.000106879
0.000102078
9.27429e-05
7.52797e-05
5.50568e-05
3.82504e-05
2.56626e-05
1.76689e-05
5.91459e-06
3.12762e-06
1.58543e-06
5.48391e-06
3.20094e-05
6.6553e-05
9.35783e-05
0.000115052
0.000134532
0.000153936
0.000171175
0.000179988
0.0001857
0.00018866
0.000189195
0.000187616
0.000184219
0.000179311
0.000173226
0.000166314
0.000159179
0.000152242
0.00014569
0.000139644
0.000134163
0.000129194
0.00012444
0.00011909
0.000111415
9.8495e-05
7.74374e-05
5.56306e-05
3.77073e-05
2.64236e-05
1.86625e-05
6.17266e-06
3.25681e-06
1.61742e-06
5.71123e-06
3.30864e-05
6.92304e-05
0.000100567
0.000125139
0.000146921
0.000167919
0.000185585
0.000196228
0.000203601
0.000208078
0.00021001
0.000209714
0.000207478
0.000203563
0.000198225
0.000191737
0.000184736
0.000177631
0.000170542
0.000163569
0.00015676
0.000150002
0.000142836
0.000134203
0.000122194
0.000104282
7.92931e-05
5.65506e-05
3.69784e-05
2.695e-05
1.92865e-05
6.19702e-06
3.38673e-06
1.74426e-06
6.46691e-06
3.64558e-05
7.49151e-05
0.000107697
0.000133172
0.000155896
0.000178269
0.000198978
0.000211269
0.000220317
0.000226458
0.00023001
0.000231274
0.000230525
0.000228009
0.000223954
0.000218582
0.000212444
0.000205863
0.000198898
0.000191611
0.000183965
0.000175697
0.000166141
0.000154048
0.000137545
0.000114752
8.58699e-05
6.11748e-05
3.82814e-05
2.81554e-05
2.02401e-05
6.37755e-06
3.4932e-06
1.75672e-06
6.61533e-06
3.74542e-05
7.78463e-05
0.000114865
0.000144624
0.000170527
0.000194727
0.000214435
0.00022861
0.000239356
0.000247045
0.000252023
0.000254613
0.000255112
0.000253787
0.000250872
0.000246578
0.000241302
0.000235267
0.000228496
0.000220963
0.000212482
0.000202585
0.000190404
0.000174603
0.000153585
0.000126351
9.43378e-05
6.65604e-05
4.01866e-05
2.94882e-05
2.10709e-05
6.43376e-06
3.59813e-06
1.89198e-06
7.49006e-06
4.10062e-05
8.36576e-05
0.000122399
0.00015299
0.000179896
0.000205693
0.000228765
0.000244752
0.000257311
0.00026677
0.000273446
0.000277641
0.000279644
0.000279718
0.000278098
0.000274981
0.000270652
0.00026526
0.000258782
0.000251098
0.000241886
0.000230532
0.000216069
0.000197222
0.000172754
0.000142378
0.000108236
7.14746e-05
4.36779e-05
3.16556e-05
2.23647e-05
6.69128e-06
3.68883e-06
1.9059e-06
7.65894e-06
4.22001e-05
8.70478e-05
0.00012881
0.000165465
0.000196403
0.000223434
0.000245464
0.000263473
0.000277859
0.000288984
0.000297188
0.000302787
0.000306073
0.000307311
0.000306732
0.00030452
0.000300869
0.000295861
0.000289426
0.000281358
0.000271239
0.000258387
0.000241854
0.000220559
0.000193702
0.000161563
0.000126505
7.83212e-05
4.81063e-05
3.41267e-05
2.3676e-05
6.88434e-06
3.77645e-06
2.03861e-06
8.57735e-06
4.5723e-05
9.28116e-05
0.000136429
0.000174577
0.000206643
0.000236087
0.000260876
0.000280921
0.0002973
0.00031034
0.000320351
0.000327629
0.00033245
0.000335065
0.000335686
0.000334478
0.000331574
0.000327006
0.00032066
0.00031227
0.000301368
0.000287255
0.000269032
0.000245765
0.000216859
0.000182718
0.000145513
8.78213e-05
5.39181e-05
3.74378e-05
2.55251e-05
7.25464e-06
3.8554e-06
2.05842e-06
8.78068e-06
4.70458e-05
9.64066e-05
0.000142926
0.000184396
0.000220582
0.000251729
0.00027822
0.000300457
0.000318825
0.000333683
0.00034536
0.000354155
0.000360339
0.00036415
0.000365779
0.000365365
0.000362985
0.000358616
0.000352093
0.000343092
0.000331098
0.000315396
0.000295132
0.000269477
0.000237976
0.000201092
0.000160193
9.68692e-05
6.00402e-05
4.11098e-05
2.76038e-05
7.58325e-06
3.92805e-06
2.18182e-06
9.68809e-06
5.04249e-05
0.000102056
0.000150628
0.000194108
0.000232356
0.000265636
0.000294296
0.00031869
0.000339156
0.000356015
0.000369564
0.000380075
0.000387797
0.000392941
0.000395672
0.000396097
0.000394248
0.000390052
0.000383297
0.000373614
0.000360457
0.000343112
0.000320774
0.000292717
0.000258621
0.000219056
0.000171911
0.000106978
6.71339e-05
4.55214e-05
3.02005e-05
8.01886e-06
3.99263e-06
2.21065e-06
9.96782e-06
5.19923e-05
0.000105976
0.000157384
0.000203767
0.000244805
0.000280688
0.00031175
0.000338353
0.000360847
0.000379562
0.000394799
0.000406827
0.000415877
0.000422141
0.000425754
0.000426786
0.000425223
0.000420945
0.000413693
0.000403063
0.000388493
0.000369288
0.000344713
0.000314166
0.000277486
0.000235384
0.000182662
0.000116772
7.44554e-05
5.02915e-05
3.309e-05
8.43671e-06
4.04795e-06
2.32256e-06
1.08513e-05
5.52167e-05
0.000111499
0.000165114
0.000213685
0.000256922
0.000295011
0.000328259
0.000356992
0.000381528
0.000402163
0.000419168
0.000432783
0.000443213
0.000450619
0.000455105
0.000456705
0.000455368
0.000450934
0.000443116
0.000431492
0.000415504
0.000394503
0.000367834
0.000335022
0.000296045
0.00025172
0.000194384
0.000127374
8.2519e-05
5.57143e-05
3.64656e-05
8.9423e-06
4.09533e-06
2.3601e-06
1.12224e-05
5.70391e-05
0.000115707
0.00017209
0.000223462
0.000269388
0.000309995
0.000345574
0.000376452
0.000402949
0.00042536
0.000443952
0.000458954
0.000470553
0.000478884
0.000484024
0.000485974
0.000484649
0.000479859
0.000471297
0.000458533
0.000441033
0.000418201
0.000389479
0.000354517
0.000313425
0.000267111
0.000205505
0.0001377
9.0776e-05
6.15585e-05
4.02734e-05
9.46016e-06
4.13292e-06
2.46054e-06
1.20931e-05
6.01659e-05
0.000121169
0.000179864
0.000233529
0.000281719
0.000324545
0.000362272
0.000395198
0.000423614
0.00044779
0.000467966
0.000484345
0.000497088
0.000506306
0.000512048
0.000514287
0.000512914
0.00050772
0.00049839
0.000484507
0.000465568
0.000441042
0.000410464
0.000373591
0.000330641
0.000282575
0.000217245
0.000148582
9.96024e-05
6.79426e-05
4.45114e-05
1.00311e-05
4.16043e-06
2.5078e-06
1.25949e-05
6.23806e-05
0.000125862
0.000187279
0.000243633
0.000294373
0.000339572
0.000379483
0.000414403
0.000444625
0.000470413
0.000491998
0.00050957
0.000523272
0.000533194
0.000539361
0.000541727
0.000540163
0.00053445
0.000524275
0.000509239
0.000488883
0.00046274
0.00043043
0.00039181
0.00034718
0.000297539
0.000228616
0.000159274
0.000108664
7.48238e-05
4.86574e-05
1.064e-05
4.17866e-06
2.60004e-06
1.3504e-05
6.5615e-05
0.000131549
0.000195395
0.000254116
0.000307141
0.000354519
0.000396481
0.000433303
0.000465257
0.000492591
0.000515519
0.000534214
0.000548799
0.000559344
0.000565858
0.000568279
0.000566467
0.0005602
0.000549175
0.000533021
0.000511323
0.000483679
0.000449788
0.000409585
0.000363431
0.000312344
0.000240194
0.000170486
0.000118583
8.2334e-05
5.17401e-05
1.12239e-05
4.18696e-06
2.65555e-06
1.41509e-05
6.82528e-05
0.000136769
0.000203321
0.000264656
0.000320124
0.00036975
0.000413758
0.000452425
0.000486017
0.000514778
0.000538913
0.000558586
0.000573908
0.000584937
0.000591669
0.00059403
0.000591876
0.00058499
0.000573083
0.000555813
0.000532813
0.000503742
0.00046837
0.000426698
0.000379127
0.000326675
0.00025175
0.000181995
0.000129027
9.02294e-05
5.46067e-05
1.17267e-05
4.18494e-06
2.74132e-06
1.50702e-05
7.14986e-05
0.000142534
0.000211596
0.000275352
0.000333111
0.000384872
0.00043084
0.000471277
0.000506441
0.000536564
0.00056184
0.000582422
0.00059841
0.000609854
0.000616741
0.000618993
0.000616468
0.000608958
0.000596194
0.000577867
0.000553658
0.000523285
0.000486583
0.000443612
0.000394802
0.000339316
0.000263808
0.00019434
0.000140318
9.87922e-05
5.75467e-05
1.22294e-05
4.1727e-06
2.80447e-06
1.58309e-05
7.4388e-05
0.000148014
0.000219733
0.000286032
0.00034615
0.000400061
0.00044796
0.000490106
0.000526755
0.000558138
0.000584445
0.000605825
0.000622373
0.000634133
0.00064109
0.000643167
0.000640227
0.000632076
0.000618468
0.000599128
0.000573782
0.000542201
0.000504279
0.000460124
0.000410189
0.000351302
0.000276251
0.00020724
0.000152248
0.000107899
6.04472e-05
1.27027e-05
4.15464e-06
2.88601e-06
1.67451e-05
7.7586e-05
0.000153747
0.000227999
0.000296718
0.000359093
0.000415068
0.000464826
0.000508616
0.000546687
0.000579265
0.000606538
0.000628649
0.000645694
0.000657715
0.000664697
0.00066657
0.000663209
0.000654434
0.000640028
0.000619747
0.000593359
0.000560683
0.000521659
0.000476432
0.000425463
0.000363455
0.000289036
0.000220744
0.000165046
0.000117839
6.34522e-05
1.32014e-05
4.13028e-06
2.95475e-06
1.7557e-05
8.05376e-05
0.000159243
0.000236082
0.000307267
0.000371914
0.000429939
0.000481515
0.000526886
0.000566305
0.000599996
0.00062815
0.000650911
0.000668377
0.000680593
0.00068755
0.000689189
0.000685397
0.000676018
0.000660857
0.000639709
0.000612376
0.00057872
0.000538717
0.000492535
0.000440628
0.000376044
0.00030232
0.000234819
0.000178715
0.00012877
6.66178e-05
1.372e-05
4.10339e-06
3.03533e-06
1.84496e-05
8.36151e-05
0.000164788
0.000244108
0.000317659
0.000384494
0.000444501
0.000497832
0.000544728
0.000585436
0.000620183
0.000649161
0.000672518
0.000690356
0.000702727
0.000709632
0.000711024
0.000706808
0.000696847
0.000680977
0.000659022
0.000630819
0.000596264
0.000555356
0.000508273
0.00045545
0.000388393
0.000316029
0.000250287
0.000193417
0.000136182
6.95811e-05
1.42484e-05
4.07387e-06
3.11028e-06
1.9284e-05
8.65354e-05
0.000170151
0.000251942
0.000327841
0.000396834
0.000458774
0.000513805
0.00056216
0.000604089
0.000639823
0.000669559
0.000693451
0.000711609
0.000724095
0.000730922
0.000732057
0.000727423
0.000716906
0.000700367
0.000677658
0.000648648
0.000613258
0.000571502
0.000523552
0.000469811
0.000400765
0.000330456
0.00026699
0.000208998
0.000142695
7.22676e-05
1.47343e-05
4.04048e-06
3.19285e-06
2.01585e-05
8.94889e-05
0.000175474
0.000259647
0.000337807
0.000408879
0.000472682
0.000529344
0.000579095
0.000622183
0.000658844
0.000689281
0.000713658
0.000732095
0.000744665
0.000751396
0.000752271
0.000747233
0.000736189
0.000719027
0.000695624
0.000665875
0.000629721
0.000587192
0.000538454
0.000481021
0.000413355
0.000346784
0.000284963
0.000220373
0.000148903
7.48397e-05
1.52093e-05
4.00438e-06
3.2737e-06
2.10098e-05
9.23643e-05
0.00018068
0.000267189
0.000347557
0.000420645
0.000486243
0.000544466
0.000595539
0.000639714
0.000677233
0.000708308
0.000733113
0.000751779
0.000764395
0.000771004
0.000771607
0.000766168
0.000754617
0.000736864
0.000712811
0.000682374
0.000645508
0.000602246
0.000552743
0.000492123
0.00042748
0.000364895
0.000300849
0.000229401
0.000154633
7.71878e-05
1.56425e-05
3.96595e-06
3.35819e-06
2.18762e-05
9.52256e-05
0.000185807
0.000274576
0.000357074
0.0004321
0.000499417
0.000559127
0.000611453
0.000656649
0.000694964
0.000726619
0.000751799
0.000770652
0.000783279
0.000789742
0.000790062
0.000784221
0.000772174
0.000753852
0.00072918
0.00069809
0.000660552
0.000616601
0.000563728
0.000504443
0.000444492
0.000381491
0.00031152
0.000237718
0.000159899
7.93434e-05
1.60477e-05
3.92539e-06
3.44139e-06
2.27315e-05
9.80347e-05
0.000190832
0.000281799
0.000366355
0.000443243
0.000512202
0.000573322
0.000626825
0.000672971
0.000712016
0.000744191
0.000769697
0.000788692
0.000801298
0.000807594
0.000807619
0.000801379
0.000788848
0.000769979
0.000744716
0.000713008
0.000674834
0.000627404
0.000574529
0.000519786
0.000459827
0.000392942
0.000321452
0.000245389
0.000164709
8.12828e-05
1.64087e-05
3.88212e-06
3.5241e-06
2.35663e-05
0.000100749
0.000195676
0.000288757
0.00037529
0.000453966
0.000524494
0.000586957
0.000641574
0.00068861
0.00072833
0.000760978
0.000786766
0.000805871
0.000818429
0.00082454
0.000824263
0.000817625
0.000804622
0.00078523
0.000759411
0.00072509
0.000682903
0.000636898
0.000588675
0.000534185
0.000471668
0.00040383
0.000330793
0.000252542
0.000169168
8.30725e-05
1.67436e-05
3.83698e-06
3.6048e-06
2.43728e-05
0.000103354
0.00020032
0.000295417
0.000383834
0.000464206
0.000536221
0.000599952
0.000655617
0.000703486
0.000743831
0.00077691
0.000802947
0.000822134
0.000834627
0.000840542
0.000839962
0.000832932
0.000819472
0.000798771
0.000767866
0.000731113
0.000691388
0.000650026
0.000603453
0.000546162
0.000483038
0.000414168
0.000339573
0.000259215
0.000173303
8.47264e-05
1.70536e-05
3.79055e-06
3.68321e-06
2.51427e-05
0.000105829
0.000204726
0.000301735
0.000391935
0.000473913
0.000547333
0.000612257
0.000668906
0.000717552
0.000758477
0.000791949
0.000818208
0.000837461
0.000849879
0.0008556
0.000854724
0.000847317
0.000831379
0.000805114
0.000773194
0.000738555
0.000702939
0.000664825
0.000615391
0.000557737
0.000493936
0.000423988
0.000347849
0.000265466
0.000177156
8.62619e-05
1.73412e-05
3.74355e-06
3.76009e-06
2.58788e-05
0.000108176
0.000208895
0.000307702
0.000399577
0.00048306
0.000557794
0.000623834
0.000681399
0.000730767
0.00077223
0.000806065
0.000832525
0.000851833
0.000864177
0.00086971
0.000868553
0.000859283
0.000837898
0.000810133
0.000779397
0.00074802
0.000716334
0.000678793
0.000627027
0.000568894
0.000504341
0.000433292
0.000355644
0.000271329
0.00018076
8.76956e-05
1.76092e-05
3.69664e-06
3.83506e-06
2.65888e-05
0.000110424
0.00021287
0.000313373
0.000406819
0.000491708
0.000567665
0.000634738
0.000693149
0.000743181
0.000785134
0.000819298
0.000845937
0.000865291
0.000877562
0.000882922
0.00088151
0.000866421
0.000842728
0.00081529
0.000787041
0.000759469
0.000730472
0.000690253
0.000638196
0.00057955
0.000514214
0.000442061
0.000362946
0.000276786
0.000184092
8.90087e-05
1.78521e-05
3.64976e-06
3.90897e-06
2.72691e-05
0.000112559
0.000216637
0.000318736
0.000413654
0.000499856
0.00057695
0.000644981
0.000704172
0.000754814
0.000797215
0.000831676
0.000858476
0.000877866
0.000890066
0.000895261
0.000889878
0.000871574
0.000847345
0.0008213
0.000795989
0.000771935
0.000744806
0.000701335
0.000648921
0.000589725
0.000523592
0.000450349
0.000369813
0.000281898
0.000187201
9.02339e-05
1.80792e-05
3.60275e-06
3.98081e-06
2.79218e-05
0.000114598
0.000220225
0.000323831
0.000420133
0.000507559
0.000585708
0.000654621
0.000714528
0.000765725
0.000808532
0.000843261
0.000870205
0.000889628
0.000901764
0.000906815
0.000896042
0.000875689
0.000851783
0.000827793
0.000805689
0.000784848
0.000758012
0.000711986
0.000659177
0.000599409
0.00053248
0.000458171
0.000376262
0.000286671
0.000190086
9.13609e-05
1.82867e-05
3.55592e-06
4.05014e-06
2.85479e-05
0.000116542
0.000223633
0.000328654
0.000426249
0.000514816
0.000593942
0.00066367
0.000724232
0.000775936
0.000819109
0.000854077
0.000881144
0.000900588
0.000912657
0.000914571
0.000900529
0.000879516
0.000856705
0.0008352
0.000816334
0.000797601
0.000768366
0.000722127
0.00066894
0.000608607
0.000540897
0.000465552
0.000382324
0.00029113
0.00019276
9.23972e-05
1.84759e-05
3.50945e-06
4.11494e-06
2.91178e-05
0.000118319
0.000226768
0.000333113
0.00043192
0.000521557
0.000601599
0.00067209
0.000733266
0.000785443
0.00082896
0.000864154
0.000891341
0.000910811
0.000922825
0.000920176
0.000904181
0.000883195
0.00086197
0.000843194
0.000827341
0.000810124
0.000778272
0.000731792
0.000678221
0.000617331
0.00054886
0.000472517
0.000388026
0.000295308
0.000195241
9.33464e-05
1.86472e-05
3.46303e-06
4.17508e-06
2.96295e-05
0.000119914
0.000229601
0.000337162
0.000437091
0.000527724
0.000608625
0.000679833
0.00074159
0.000794218
0.000838066
0.000873481
0.000900793
0.000920305
0.000932289
0.000924992
0.000907333
0.000886843
0.000867591
0.000851662
0.000838619
0.000822532
0.00078774
0.000741004
0.000687048
0.000625614
0.000556408
0.000479109
0.000393417
0.00029926
0.000197598
9.42486e-05
1.88106e-05
3.41757e-06
4.23021e-06
3.00828e-05
0.000121334
0.000232128
0.000340785
0.000441735
0.000533282
0.000614978
0.000686856
0.00074916
0.000802219
0.000846388
0.000882023
0.000909465
0.000929027
0.000938951
0.000928805
0.000910569
0.000890997
0.000873744
0.000860482
0.000849971
0.000834742
0.00079678
0.000749785
0.000695448
0.000633486
0.000563576
0.000485367
0.000398541
0.000303034
0.000199883
9.51678e-05
1.89813e-05
3.37275e-06
4.28049e-06
3.0494e-05
0.000122622
0.00023442
0.000344072
0.000445948
0.000538328
0.00062075
0.000693246
0.000756059
0.000809523
0.000854001
0.000889857
0.000917439
0.000937072
0.000943999
0.000932277
0.000913861
0.000895337
0.000880118
0.00086948
0.000861259
0.000845469
0.00080542
0.000758172
0.000703465
0.000640993
0.000570406
0.00049133
0.000403429
0.000306646
0.000202091
9.60832e-05
1.91576e-05
3.32883e-06
4.32647e-06
3.08703e-05
0.000123801
0.000236519
0.000347081
0.000449804
0.000542944
0.00062603
0.000699091
0.000762373
0.000816213
0.000860982
0.000897052
0.00092478
0.0009445
0.000948572
0.000935479
0.000917121
0.000899896
0.000886987
0.000879073
0.000872317
0.000853779
0.000813627
0.000766162
0.000711114
0.00064816
0.00057693
0.000497029
0.000408108
0.000310118
0.000204233
9.69943e-05
1.93396e-05
3.2869e-06
4.36902e-06
3.12214e-05
0.000124899
0.000238472
0.000349876
0.000453379
0.000547215
0.000630907
0.000704483
0.000768192
0.000822376
0.000867415
0.000903687
0.000931558
0.000951369
0.000952455
0.000938167
0.00092015
0.000904482
0.000893976
0.000888581
0.000882933
0.00086168
0.000821426
0.000773759
0.000718391
0.000654983
0.000583145
0.000502462
0.000412573
0.000313436
0.00020629
9.78825e-05
1.9523e-05
3.2481e-06
4.40925e-06
3.15579e-05
0.000125946
0.000240321
0.00035251
0.000456734
0.000551211
0.000635457
0.0007095
0.000773594
0.000828089
0.00087337
0.000909825
0.000937828
0.00095773
0.000955647
0.000940318
0.000922879
0.000908905
0.000900744
0.000897641
0.000892913
0.000869169
0.000828825
0.000780973
0.000725309
0.000661473
0.000589059
0.000507632
0.00041682
0.000316591
0.000208247
9.87326e-05
1.97035e-05
3.21283e-06
4.44721e-06
3.187e-05
0.000126922
0.000242045
0.000354968
0.000459869
0.000554945
0.000639707
0.000714183
0.000778631
0.000833407
0.000878905
0.000915523
0.000943643
0.000963627
0.000958037
0.000941919
0.000925359
0.000913159
0.000907194
0.000906131
0.00090219
0.000876235
0.000835813
0.000787793
0.000731852
0.000667614
0.000594655
0.000512522
0.000420836
0.000319574
0.000210097
9.95407e-05
1.98783e-05
3.18085e-06
4.48396e-06
3.21519e-05
0.000127802
0.000243604
0.000357201
0.000462731
0.000558371
0.000643621
0.000718507
0.000783291
0.000838334
0.000884033
0.000920796
0.000949012
0.000966931
0.000959482
0.000943375
0.000927801
0.00091722
0.00091324
0.000914035
0.00091083
0.000882885
0.000842393
0.000794216
0.000738015
0.000673399
0.000599923
0.000517124
0.000424611
0.000322374
0.000211832
0.0001003
2.00454e-05
3.15203e-06
4.52042e-06
3.24012e-05
0.000128581
0.000244988
0.000359192
0.000465295
0.000561456
0.000647164
0.000722443
0.000787552
0.000842855
0.000888754
0.000925661
0.000953971
0.000968856
0.000960292
0.000944384
0.000929853
0.000920855
0.000918746
0.000921273
0.000918787
0.00088911
0.000848552
0.000800224
0.000743773
0.000678791
0.00060482
0.000521381
0.000428081
0.000324921
0.000213384
0.000100959
2.01883e-05
3.12493e-06
4.55757e-06
3.26402e-05
0.000129315
0.000246272
0.000361021
0.000467638
0.000564269
0.000650395
0.000726036
0.000791451
0.000847002
0.000893096
0.000930146
0.000958551
0.000970114
0.000960452
0.000944857
0.000931425
0.000923957
0.000923563
0.000927645
0.000925869
0.000894943
0.000854325
0.000805853
0.000749161
0.000683825
0.000609374
0.00052532
0.000431265
0.000327229
0.000214759
0.000101518
2.03072e-05
3.09856e-06
4.59493e-06
3.28563e-05
0.000129973
0.000247419
0.000362649
0.000469725
0.00056678
0.000653289
0.000729266
0.000794969
0.000850761
0.000897048
0.000934243
0.000962748
0.000970858
0.000960153
0.000944964
0.00093268
0.000926707
0.000927919
0.000933432
0.000932348
0.000900439
0.000859772
0.000811168
0.00075425
0.000688582
0.00061368
0.000529045
0.00043428
0.000329423
0.000216077
0.000102066
2.04266e-05
3.07327e-06
4.63229e-06
3.30433e-05
0.000130539
0.000248411
0.000364065
0.000471546
0.000568981
0.000655838
0.000732128
0.000798104
0.000854128
0.000900605
0.000937948
0.000966558
0.000970914
0.000959247
0.000944622
0.000933576
0.000929085
0.000931826
0.000938695
0.000938317
0.000905615
0.000864906
0.00081618
0.000759049
0.000693065
0.000617735
0.000532551
0.000437117
0.000331485
0.000217318
0.000102587
2.05406e-05
3.04926e-06
4.6694e-06
3.32057e-05
0.000131024
0.000249263
0.000365282
0.000473114
0.000570881
0.000658047
0.000734619
0.000800847
0.000857091
0.000903754
0.000941247
0.00096997
0.000970418
0.000957861
0.00094391
0.000934138
0.000931068
0.0009352
0.000943283
0.000943485
0.0009105
0.000869764
0.000820931
0.000763603
0.000697322
0.000621584
0.000535877
0.000439801
0.000333431
0.000218483
0.000103072
2.06473e-05
3.02608e-06
4.7052e-06
3.33434e-05
0.000131434
0.000249986
0.000366312
0.00047444
0.000572487
0.000659917
0.000736734
0.000803184
0.000859624
0.000906454
0.000944083
0.000971319
0.00096928
0.000956583
0.00094346
0.000934823
0.000932958
0.00093828
0.000947426
0.000948025
0.000915107
0.000874362
0.000825441
0.000767938
0.000701387
0.000625272
0.000539074
0.000442396
0.000335327
0.000219636
0.000103569
2.07591e-05
3.00347e-06
4.73859e-06
3.34562e-05
0.000131764
0.00025058
0.00036717
0.00047555
0.000573838
0.000661495
0.000738525
0.000805171
0.000861788
0.00090877
0.000946523
0.000970861
0.000967888
0.000955418
0.000943092
0.000935484
0.000934726
0.000941159
0.000951288
0.000952268
0.000919427
0.000878685
0.000829693
0.000772035
0.000705237
0.000628774
0.000542122
0.000444881
0.000337157
0.000220764
0.000104067
2.08735e-05
2.98149e-06
4.76867e-06
3.35275e-05
0.000131979
0.000250997
0.000367801
0.000476395
0.00057489
0.000662747
0.000739969
0.000806796
0.000863578
0.000910709
0.000948588
0.000970374
0.000966564
0.000954321
0.000942749
0.000936106
0.000936383
0.000943854
0.000954884
0.0009562
0.000923444
0.000882718
0.000833667
0.000775871
0.000708846
0.000632061
0.000544985
0.000447219
0.00033888
0.000221829
0.000104542
2.09826e-05
2.95947e-06
4.79598e-06
3.35928e-05
0.000132164
0.000251344
0.000368316
0.000477075
0.000575734
0.000663753
0.000741133
0.000808115
0.000865046
0.000912315
0.00095032
0.000970095
0.000965564
0.000953483
0.000942557
0.000936789
0.00093804
0.000946506
0.000958358
0.000959821
0.000927156
0.000886455
0.000837359
0.000779441
0.000712211
0.000635131
0.000547663
0.000449412
0.000340507
0.000222847
0.000105009
2.10905e-05
2.93721e-06
4.82049e-06
3.36499e-05
0.000132316
0.000251619
0.000368719
0.000477606
0.000576393
0.000664541
0.000742052
0.000809165
0.000866227
0.000913624
0.00095175
0.000970004
0.000964888
0.000952925
0.000942552
0.000937581
0.00093977
0.000949217
0.000961799
0.000963126
0.000930557
0.00088989
0.000840763
0.000782741
0.000715327
0.000637979
0.000550154
0.000451457
0.000342031
0.000223811
0.00010546
2.11952e-05
2.91486e-06
4.84385e-06
3.37062e-05
0.000132448
0.000251839
0.000369029
0.000478009
0.000576893
0.000665143
0.00074276
0.000809985
0.000867161
0.000914674
0.000952917
0.000970041
0.000964491
0.000952642
0.000942756
0.000938527
0.000941646
0.000952075
0.000965276
0.00096611
0.000933634
0.000893007
0.000843859
0.00078575
0.000718177
0.000640587
0.000552437
0.000453333
0.000343428
0.000224694
0.000105874
2.12898e-05
2.89221e-06
4.86803e-06
3.37805e-05
0.00013261
0.000252066
0.000369313
0.000478352
0.000577301
0.000665624
0.000743323
0.000810638
0.000867911
0.000915526
0.000953875
0.000969975
0.000964106
0.000952428
0.000943038
0.000939553
0.000943607
0.000954989
0.000968678
0.000968772
0.000936381
0.000895791
0.000846628
0.000788444
0.000720727
0.000642921
0.000554476
0.000455001
0.00034466
0.00022546
0.000106223
2.1366e-05
2.86879e-06
4.89426e-06
3.38561e-05
0.000132768
0.000252269
0.000369542
0.000478609
0.000577596
0.000665969
0.000743731
0.000811121
0.00086848
0.00091619
0.000954638
0.000969727
0.00096362
0.000952188
0.000943351
0.000940651
0.000945656
0.000957938
0.000971976
0.00097115
0.000938831
0.000898273
0.000849096
0.000790845
0.000723001
0.000645
0.000556291
0.00045648
0.000345745
0.000226125
0.000106518
2.1427e-05
2.84462e-06
4.92335e-06
3.39535e-05
0.000132978
0.000252523
0.000369801
0.000478863
0.000577852
0.000666243
0.000744041
0.000811482
0.000868908
0.000916696
0.000955233
0.000969195
0.000962905
0.000951827
0.000943655
0.000941837
0.000947849
0.000961012
0.000975277
0.000973272
0.000941008
0.000900473
0.000851278
0.000792963
0.000725003
0.000646828
0.000557881
0.000457771
0.000346686
0.000226694
0.000106764
2.14736e-05
2.81999e-06
4.95424e-06
3.40473e-05
0.000133182
0.000252765
0.000370033
0.000479072
0.000578042
0.000666428
0.00074424
0.000811714
0.00086919
0.000917044
0.000955655
0.000968195
0.000961732
0.000951155
0.000943813
0.000943007
0.0009501
0.000964152
0.000978568
0.000975168
0.000942944
0.000902418
0.000853198
0.000794818
0.000726746
0.000648408
0.000559244
0.000458865
0.000347468
0.000227151
0.000106949
2.1503e-05
2.79534e-06
4.98728e-06
3.41446e-05
0.000133395
0.000253014
0.000370263
0.000479259
0.000578188
0.000666546
0.000744349
0.000811835
0.000869343
0.000917243
0.000955913
0.000966674
0.000960016
0.000950065
0.000943708
0.000944032
0.00095226
0.000967194
0.000981716
0.000976873
0.000944676
0.000904149
0.000854894
0.000796442
0.000728257
0.000649759
0.000560388
0.000459757
0.000348075
0.000227471
0.000107047
2.1508e-05
2.7705e-06
5.02214e-06
3.42452e-05
0.000133619
0.000253283
0.000370506
0.000479445
0.000578311
0.000666617
0.000744386
0.000811861
0.000869377
0.000917304
0.000956014
0.000964627
0.000957752
0.000948558
0.000943334
0.000944894
0.000954308
0.000970132
0.00098474
0.000978418
0.000946244
0.000905709
0.000856414
0.000797885
0.000729585
0.000650932
0.000561365
0.0004605
0.000348562
0.000227707
0.000107101
2.15006e-05
2.74582e-06
5.0581e-06
3.43464e-05
0.00013385
0.000253571
0.000370773
0.000479648
0.000578435
0.000666666
0.000744374
0.000811809
0.000869307
0.000917236
0.000955965
0.000962066
0.000954961
0.000946647
0.000942682
0.000945563
0.000956209
0.000972952
0.000987667
0.000979827
0.000947673
0.000907127
0.000857787
0.000799178
0.000730759
0.00065195
0.00056219
0.000461103
0.000348927
0.00022785
0.000107098
2.14783e-05
2.72161e-06
5.09453e-06
3.44475e-05
0.000134087
0.00025388
0.00037107
0.000479878
0.000578573
0.000666705
0.000744323
0.00081168
0.000869115
0.000916997
0.000953593
0.000958554
0.000951897
0.000944622
0.000941854
0.00094594
0.000957718
0.000975329
0.00099021
0.000981113
0.000948987
0.000908435
0.000859052
0.000800361
0.000731822
0.000652852
0.000562897
0.000461588
0.000349179
0.000227896
0.000107031
2.14386e-05
2.69762e-06
5.13086e-06
3.45443e-05
0.000134321
0.000254206
0.000371401
0.000480152
0.000578751
0.000666774
0.000744281
0.000811536
0.000868882
0.000916686
0.000950532
0.000954824
0.000948676
0.000942414
0.0009408
0.00094604
0.000958896
0.000977352
0.000992456
0.000982291
0.000950207
0.000909662
0.000860246
0.000801483
0.000732829
0.000653706
0.000563562
0.000462036
0.000349402
0.000227921
0.000106953
2.13965e-05
2.67415e-06
5.16623e-06
3.4652e-05
0.000134594
0.000254605
0.000371834
0.000480542
0.000579048
0.00066695
0.000744328
0.000811455
0.00086868
0.000916372
0.000947394
0.000950953
0.00094528
0.000939992
0.000939481
0.000945808
0.000959675
0.000978944
0.000994337
0.000983356
0.000951328
0.000910801
0.000861364
0.000802538
0.000733779
0.000654511
0.000564185
0.000462451
0.0003496
0.000227929
0.000106865
2.13527e-05
2.65151e-06
5.19937e-06
3.47488e-05
0.000134851
0.000255013
0.000372311
0.000481003
0.000579433
0.00066722
0.000744461
0.000811445
0.00086853
0.000916088
0.000944453
0.000947234
0.000941919
0.000937485
0.00093796
0.000945259
0.000960035
0.000980062
0.000995812
0.000984308
0.000952351
0.000911857
0.000862412
0.000803534
0.000734682
0.000655277
0.000564777
0.000462842
0.000349781
0.000227925
0.000106768
2.13067e-05
2.62959e-06
5.23031e-06
3.48542e-05
0.000135139
0.000255486
0.000372886
0.000481593
0.000579963
0.00066764
0.00074474
0.000811568
0.000868493
0.000915896
0.000942003
0.000944009
0.000938886
0.000935115
0.000936408
0.000944538
0.00096011
0.000980835
0.000996979
0.000985136
0.000953262
0.000912813
0.000863373
0.000804458
0.000735524
0.000655996
0.000565335
0.000463208
0.000349946
0.000227912
0.000106668
2.12607e-05
2.60868e-06
5.25812e-06
3.49568e-05
0.000135427
0.000255981
0.00037352
0.000482277
0.000580618
0.000668203
0.000745171
0.000811842
0.000868599
0.000915833
0.000939969
0.000941216
0.000936163
0.000932884
0.000934819
0.000943613
0.000959832
0.000981158
0.000997727
0.00098583
0.000954042
0.000913645
0.000864219
0.000805276
0.000736272
0.000656631
0.000565818
0.00046351
0.000350054
0.000227852
0.000106536
2.12062e-05
2.58805e-06
5.28352e-06
3.50352e-05
0.000135649
0.000256397
0.00037409
0.000482928
0.000581277
0.000668808
0.000745672
0.000812207
0.00086881
0.000915882
0.000938494
0.000939041
0.000933926
0.000930943
0.000933316
0.000942574
0.000959251
0.000981035
0.000998038
0.000986397
0.000954697
0.000914355
0.000864946
0.000805982
0.000736914
0.000657169
0.000566213
0.000463734
0.000350096
0.000227738
0.000106367
2.11414e-05
2.56714e-06
5.30792e-06
3.51008e-05
0.000135826
0.000256732
0.000374567
0.000483498
0.000581882
0.000669389
0.000746184
0.000812614
0.000869089
0.000916021
0.000937613
0.000937567
0.000932276
0.000929392
0.000931993
0.000941512
0.000958454
0.000980538
0.000997951
0.000986855
0.000955243
0.000914961
0.00086558
0.000806605
0.000737489
0.000657655
0.000566575
0.000463943
0.00035014
0.000227638
0.000106212
2.10819e-05
2.54619e-06
5.33167e-06
3.51286e-05
0.000135888
0.000256878
0.000374814
0.000483834
0.000582274
0.000669799
0.000746572
0.000812947
0.000869341
0.000916176
0.000937244
0.000936763
0.000931242
0.000928308
0.000930962
0.000940573
0.00095763
0.000979902
0.000997672
0.000987193
0.000955665
0.000915443
0.000866094
0.00080712
0.00073797
0.000658067
0.000566884
0.000464121
0.000350174
0.000227545
0.000106071
2.10269e-05
2.52534e-06
5.35627e-06
3.50988e-05
0.00013577
0.000256724
0.00037468
0.000483754
0.000582259
0.00066984
0.000746649
0.000813035
0.000869417
0.000916222
0.000937234
0.000936517
0.000930771
0.000927687
0.000930258
0.000939824
0.00095687
0.000979217
0.000997265
0.000987401
0.000955946
0.00091578
0.000866462
0.000807493
0.000738317
0.000658358
0.000567088
0.000464214
0.000350144
0.00022741
0.000105907
2.0965e-05
2.50385e-06
5.38372e-06
3.50205e-05
0.000135486
0.000256259
0.000374117
0.000483174
0.00058172
0.000669373
0.000746263
0.000812727
0.000869173
0.000916027
0.000937461
0.000936757
0.000930843
0.000927562
0.000929968
0.000939404
0.000956357
0.00097869
0.000996902
0.000987492
0.000956098
0.000915979
0.000866692
0.000807732
0.00073854
0.000658537
0.000567198
0.000464234
0.000350067
0.000227252
0.000105738
2.0902e-05
2.48176e-06
5.41543e-06
3.48894e-05
0.000135022
0.000255449
0.000373064
0.000482008
0.000580548
0.000668273
0.00074528
0.000811881
0.000868468
0.000915456
0.000937613
0.000937193
0.000931268
0.000927853
0.000930103
0.000939401
0.000956245
0.000978512
0.000996741
0.000987466
0.000956122
0.000916046
0.00086679
0.000807844
0.000738647
0.000658617
0.000567229
0.000464199
0.000349957
0.000227083
0.000105572
2.084e-05
2.45882e-06
5.45311e-06
3.46984e-05
0.000134353
0.000254251
0.000371455
0.000480161
0.000578627
0.000666403
0.00074355
0.000810343
0.000867147
0.000914356
0.000937361
0.000937502
0.000931818
0.00092844
0.000930641
0.000939875
0.000956655
0.000978838
0.000996911
0.00098732
0.000956014
0.000915976
0.000866752
0.000807828
0.000738639
0.000658601
0.000567189
0.000464119
0.000349832
0.000226923
0.000105425
2.07838e-05
2.43553e-06
5.49885e-06
3.4483e-05
0.000133569
0.000252777
0.000369388
0.000477702
0.000575984
0.000663754
0.000741028
0.000808039
0.000865115
0.000912621
0.000936446
0.000937418
0.000932285
0.000929209
0.000931574
0.000940924
0.000957787
0.000979937
0.000997649
0.000987045
0.000955766
0.000915759
0.000866568
0.000807675
0.00073851
0.000658487
0.000567077
0.000463999
0.000349697
0.000226779
0.000105301
2.07345e-05
2.41183e-06
5.55355e-06
3.42785e-05
0.000132772
0.000251183
0.000367045
0.000474805
0.000572765
0.000660429
0.000737775
0.000804988
0.000862355
0.000910202
0.000934621
0.000936624
0.000932398
0.00092998
0.000932825
0.000942563
0.000959729
0.000981939
0.000999063
0.000986627
0.000955358
0.000915371
0.000866208
0.000807347
0.000738216
0.000658224
0.000566842
0.000463786
0.000349504
0.000226608
0.000105174
2.06838e-05
2.38796e-06
5.61741e-06
3.41322e-05
0.000132102
0.000249694
0.0003647
0.000471754
0.000569235
0.000656657
0.00073397
0.000801319
0.000858946
0.000907134
0.000931695
0.000934865
0.000931925
0.000930591
0.00093431
0.000944786
0.000962543
0.00098495
0.00100126
0.000986074
0.0009548
0.000914823
0.000865681
0.000806853
0.000737762
0.000657817
0.000566484
0.000463479
0.000349246
0.000226402
0.000105034
2.06296e-05
2.36354e-06
5.68923e-06
3.41015e-05
0.000131734
0.000248605
0.000362731
0.000468969
0.000565813
0.000652822
0.000729945
0.0007973
0.000855089
0.000903553
0.000927362
0.000931708
0.00093046
0.000930702
0.000935759
0.000947377
0.000966032
0.000988758
0.00100404
0.000985387
0.000954096
0.000914117
0.000864988
0.000806188
0.00073714
0.00065725
0.000565984
0.000463054
0.000348902
0.000226143
0.00010487
2.05696e-05
2.33905e-06
5.76596e-06
3.4211e-05
0.000131755
0.000248106
0.000361433
0.000466817
0.000562904
0.000649334
0.000726083
0.000793267
0.000851062
0.000899671
0.000921519
0.000926918
0.000927766
0.000930136
0.000937044
0.000950218
0.000970065
0.00099323
0.00100732
0.00098458
0.000953267
0.000913279
0.000864158
0.000805383
0.000736381
0.000656556
0.000565372
0.00046254
0.000348496
0.00022585
0.000104694
2.05062e-05
2.31446e-06
5.8443e-06
3.44559e-05
0.000132168
0.000248244
0.000360928
0.000465504
0.00056078
0.0006465
0.000722702
0.000789521
0.000847127
0.000895194
0.000914096
0.000920423
0.000923678
0.000928651
0.000937955
0.000953286
0.00097478
0.000997747
0.00100662
0.0009836
0.000952279
0.000912283
0.000863166
0.000804411
0.00073545
0.000655689
0.000564594
0.000461874
0.000347961
0.000225462
0.000104463
2.04299e-05
2.29031e-06
5.921e-06
3.47543e-05
0.000132764
0.000248765
0.000360997
0.000464888
0.000559388
0.000644348
0.000719876
0.000786146
0.000843338
0.00088605
0.000904507
0.000912795
0.000918788
0.000926561
0.000938529
0.000956239
0.00097924
0.00100147
0.00100545
0.000982441
0.000951122
0.000911123
0.000862008
0.000803269
0.000734341
0.000654637
0.000563627
0.000461018
0.000347245
0.000224914
0.000104124
2.03235e-05
2.26518e-06
5.99487e-06
3.49665e-05
0.00013316
0.000249108
0.000361017
0.000464387
0.00055825
0.000642535
0.000717409
0.000783088
0.00083977
0.000876119
0.000893678
0.000903938
0.000912899
0.000923715
0.000938471
0.0009585
0.000982844
0.00100436
0.00100412
0.000981144
0.000949834
0.000909836
0.00086072
0.000801987
0.000733083
0.000653427
0.000562494
0.000459998
0.000346376
0.00022424
0.000103706
2.0198e-05
2.23977e-06
6.06967e-06
3.49726e-05
0.000132996
0.000248684
0.000360249
0.000463209
0.000556607
0.000640391
0.000714755
0.000779937
0.000836159
0.000865926
0.000882446
0.000894609
0.000906518
0.000920358
0.000937833
0.000960046
0.000985602
0.00100651
0.00100268
0.000979739
0.00094845
0.000908458
0.000859341
0.00080061
0.000731719
0.000652097
0.000561227
0.000458832
0.000345359
0.000223431
0.000103194
2.00466e-05
2.213e-06
6.15344e-06
3.47106e-05
0.000132055
0.000247059
0.000358062
0.000460593
0.000553645
0.000637115
0.000711163
0.000776012
0.00082834
0.000855384
0.000872209
0.000886255
0.000900672
0.000917101
0.000936954
0.000961114
0.00098779
0.00100819
0.00100109
0.000978217
0.000946963
0.000906984
0.000857868
0.000799134
0.000730245
0.000650643
0.000559822
0.000457519
0.000344194
0.000222493
0.000102597
1.98725e-05
2.1856e-06
6.25692e-06
3.42409e-05
0.000130456
0.000244286
0.000354356
0.000456278
0.000548987
0.000632279
0.000706228
0.000770993
0.000818999
0.000845211
0.000863195
0.000879296
0.00089601
0.00091465
0.000936496
0.000962308
0.000989954
0.00100984
0.000999369
0.000976573
0.000945374
0.000905428
0.000856326
0.000797595
0.000728709
0.00064912
0.000558338
0.000456114
0.000342929
0.000221458
0.000101927
1.96771e-05
2.157e-06
6.38857e-06
3.37856e-05
0.000128787
0.000241137
0.00034988
0.000450867
0.000543043
0.000626122
0.000700063
0.00076493
0.000809741
0.00083605
0.000855714
0.000874013
0.000892915
0.000913547
0.00093716
0.000964451
0.000992936
0.001012
0.000997436
0.000974733
0.000943606
0.00090371
0.00085464
0.000795928
0.000727055
0.000647485
0.000556741
0.000454594
0.000341549
0.000220317
0.000101182
1.9462e-05
2.12799e-06
6.54751e-06
3.36204e-05
0.000127825
0.000238776
0.000345964
0.000445648
0.000536926
0.000619514
0.000693298
0.000758243
0.000800194
0.000827471
0.000849557
0.00087043
0.000891594
0.000914203
0.000939688
0.000968545
0.000996712
0.00100962
0.000995168
0.000972565
0.000941523
0.000901697
0.000852682
0.000794012
0.000725176
0.000645645
0.000554956
0.000452898
0.000340004
0.000219028
0.00010033
1.92168e-05
2.0967e-06
6.72095e-06
3.39764e-05
0.000128267
0.000238375
0.000344124
0.00044228
0.000532252
0.000613892
0.000687104
0.000750373
0.000790135
0.000819416
0.000844657
0.000868416
0.000891933
0.000916586
0.000943946
0.000973962
0.00100079
0.00100685
0.000992461
0.000969926
0.000938956
0.000899201
0.000850257
0.000791657
0.000722892
0.00064344
0.00055285
0.000450927
0.000338234
0.000217569
9.93756e-05
1.89484e-05
2.0639e-06
6.88404e-06
3.48875e-05
0.00013029
0.000240434
0.00034525
0.000441972
0.000530415
0.000610687
0.00068281
0.000740509
0.000780244
0.000812205
0.000840721
0.000867383
0.000893282
0.000919979
0.000949042
0.000979758
0.00100463
0.0010037
0.000989277
0.000966737
0.000935787
0.000896079
0.000847201
0.000788686
0.000720026
0.000640701
0.000550266
0.000448544
0.00033612
0.000215844
9.8258e-05
1.86391e-05
2.02682e-06
7.00853e-06
3.61646e-05
0.000133406
0.000244399
0.000348983
0.000444696
0.000531734
0.000610516
0.000681267
0.000733226
0.000772054
0.000806038
0.00083752
0.000866957
0.000895131
0.000923655
0.000953991
0.000984777
0.00100694
0.00100017
0.000985574
0.000962915
0.000931901
0.000892179
0.000843337
0.000784905
0.000716373
0.000637224
0.000547018
0.00044559
0.000333551
0.000213795
9.69662e-05
1.82936e-05
1.98597e-06
7.07516e-06
3.74135e-05
0.000136581
0.000248808
0.000353762
0.000449063
0.000535144
0.000612692
0.000682169
0.000729272
0.000766908
0.00080218
0.000835797
0.000867321
0.000897331
0.000927413
0.000958533
0.00098773
0.00100333
0.000996198
0.000981299
0.000958408
0.000927237
0.000887436
0.000838589
0.000780227
0.000711837
0.000632906
0.000542998
0.00044196
0.000330428
0.000211344
9.5453e-05
1.78952e-05
1.93797e-06
7.0812e-06
3.82119e-05
0.000138698
0.000251967
0.000357579
0.000453036
0.000538806
0.0006157
0.000684357
0.000729132
0.000765613
0.00080112
0.000835789
0.000868653
0.000899944
0.000930905
0.000961879
0.000988914
0.000999358
0.000991718
0.000976387
0.000953151
0.000921731
0.000881778
0.000832881
0.000774569
0.000706334
0.000627662
0.000538127
0.000437588
0.000326708
0.000208482
9.37394e-05
1.7456e-05
1.88506e-06
7.04002e-06
3.83128e-05
0.00013906
0.000252629
0.000358689
0.00045456
0.000540572
0.000617488
0.000685954
0.000731524
0.00076737
0.000802667
0.000837762
0.000871337
0.000903292
0.000934524
0.00096484
0.000989498
0.000994874
0.000986622
0.000970769
0.000947111
0.000915378
0.00087523
0.000826261
0.000768005
0.000699956
0.000621607
0.000532536
0.000432616
0.000322532
0.00020532
9.18803e-05
1.69837e-05
1.82583e-06
6.97541e-06
3.77324e-05
0.000137611
0.000250455
0.000356334
0.000452448
0.000538909
0.000616301
0.000685158
0.000733944
0.000770467
0.000805829
0.00084118
0.000875189
0.000907525
0.000938786
0.000968271
0.000990296
0.00098957
0.000980675
0.000964269
0.00094016
0.000908091
0.000867734
0.000818692
0.000760511
0.000692692
0.000614737
0.000526237
0.00042708
0.000317967
0.000201961
8.99743e-05
1.65065e-05
1.76389e-06
6.91206e-06
3.67368e-05
0.000134919
0.000246078
0.000350952
0.000446778
0.000533486
0.000611439
0.000680991
0.000734098
0.000772849
0.000809243
0.00084529
0.000880003
0.00091307
0.000944618
0.000972084
0.000985215
0.000983066
0.000973596
0.000956694
0.000932186
0.00089983
0.000859313
0.000810254
0.00075221
0.000684697
0.000607229
0.000519411
0.000421142
0.000313139
0.00019847
8.80308e-05
1.60193e-05
1.69895e-06
6.86283e-06
3.57012e-05
0.000131902
0.000240773
0.000343919
0.000438803
0.000525277
0.000603527
0.00067372
0.00073079
0.000772986
0.00081172
0.000849399
0.000885478
0.000919694
0.00095109
0.000973078
0.000977649
0.000974991
0.000965064
0.000947776
0.00092297
0.000890422
0.000849839
0.000800857
0.000743049
0.000675949
0.000599087
0.000512083
0.000414851
0.000308112
0.000194919
8.61057e-05
1.55425e-05
1.63645e-06
6.82485e-06
3.48178e-05
0.000129109
0.000235475
0.000336461
0.000429877
0.000515608
0.000593736
0.00066427
0.000723739
0.000770046
0.000812409
0.000852936
0.000891431
0.000926676
0.000952552
0.000963971
0.000968157
0.000965139
0.000954901
0.000937369
0.000912405
0.000879804
0.000839289
0.000790515
0.000733077
0.000666523
0.000590402
0.000504347
0.00040828
0.000302918
0.000191287
8.41463e-05
1.5053e-05
1.57405e-06
6.7878e-06
3.40191e-05
0.00012647
0.000230277
0.000328915
0.000420569
0.000505214
0.000582876
0.00065345
0.000713679
0.000764598
0.000812082
0.000856867
0.000896589
0.000923165
0.000941624
0.000952765
0.000956682
0.00095343
0.00094301
0.000925365
0.000900376
0.000867853
0.00082754
0.00077911
0.000722177
0.00065631
0.000581075
0.000496119
0.00040137
0.000297532
0.000187583
8.21835e-05
1.45714e-05
1.51641e-06
6.74592e-06
3.3176e-05
0.000123683
0.000224832
0.000321012
0.000410761
0.000494142
0.00057115
0.000641616
0.000702962
0.000760051
0.000810483
0.000851437
0.000884702
0.00091039
0.000928638
0.000939581
0.000943329
0.00093995
0.000929464
0.00091183
0.000886945
0.000854636
0.000814664
0.000766718
0.00071043
0.000645387
0.000571169
0.000487433
0.000394108
0.000291881
0.000183683
8.00965e-05
1.40561e-05
1.45794e-06
6.70029e-06
3.22335e-05
0.000120601
0.000218918
0.0003125
0.000400223
0.000482251
0.000558577
0.000628233
0.000692181
0.000748148
0.00079652
0.000837214
0.000870258
0.000895751
0.000913825
0.000924622
0.000928263
0.000924832
0.000914364
0.000896833
0.000872152
0.000840162
0.000800639
0.000753291
0.000697765
0.000633665
0.000560587
0.000478201
0.000386432
0.000285949
0.000179626
7.79525e-05
1.35387e-05
1.40325e-06
6.65074e-06
3.11692e-05
0.000117123
0.000212372
0.000303183
0.000388769
0.000468325
0.000542377
0.000614825
0.000677605
0.000733083
0.000781081
0.000821484
0.000854293
0.000879593
0.000897514
0.000908202
0.000911788
0.000908369
0.000897995
0.000880654
0.000856272
0.000824706
0.000785742
0.000739103
0.00068445
0.000621401
0.000549563
0.000468613
0.000378472
0.000279787
0.000175385
7.56882e-05
1.29903e-05
1.34666e-06
6.59925e-06
2.9994e-05
0.000113254
0.000205165
0.000293003
0.000375039
0.000449975
0.000526544
0.00060007
0.000662025
0.000716948
0.000764519
0.000804585
0.000837126
0.000862214
0.000879982
0.000890577
0.00089414
0.000890778
0.000880552
0.000863465
0.000839452
0.000808384
0.00077006
0.000724214
0.000670521
0.000608612
0.000538105
0.000458684
0.000370266
0.000273476
0.000171086
7.3431e-05
1.24586e-05
1.2948e-06
6.54865e-06
2.87438e-05
0.000109105
0.000197485
0.00028226
0.000356619
0.000432291
0.000511623
0.000584601
0.000645772
0.000700074
0.000747151
0.000786822
0.000819052
0.000843907
0.000861516
0.000872032
0.000875602
0.000872342
0.000862324
0.00084556
0.000821997
0.000791514
0.000753922
0.000708964
0.000656324
0.000595638
0.000526532
0.000448688
0.000362017
0.000267119
0.000166725
7.11173e-05
1.19115e-05
1.24136e-06
6.50248e-06
2.75022e-05
0.000104827
0.000189339
0.000266607
0.000338719
0.00041655
0.000497791
0.000568721
0.000629084
0.000682728
0.000729259
0.000768479
0.000800345
0.000824922
0.000842344
0.000852768
0.000856347
0.000853206
0.000843424
0.000827022
0.000803956
0.000774113
0.000737312
0.000693305
0.000641782
0.000582389
0.000514753
0.000438558
0.000353705
0.000260766
0.000162422
6.88809e-05
1.14001e-05
1.19374e-06
6.46155e-06
2.62967e-05
0.000100576
0.000181305
0.000250527
0.000321873
0.000401784
0.000484521
0.000552664
0.000612166
0.000665092
0.000711018
0.000749729
0.00078118
0.000805442
0.000822652
0.000832974
0.00083657
0.00083357
0.00082406
0.000808068
0.000785556
0.000756418
0.000720477
0.000677492
0.000627155
0.000569114
0.000502994
0.000428471
0.00034543
0.000254418
0.00015808
6.65926e-05
1.08735e-05
1.14326e-06
6.42695e-06
2.51793e-05
9.62679e-05
0.00017061
0.000235452
0.000307101
0.000388675
0.000472083
0.000536701
0.00059529
0.000647429
0.000692669
0.000730789
0.00076175
0.000785628
0.000802572
0.000812753
0.00081634
0.000813469
0.00080423
0.000788657
0.000766715
0.000738304
0.000703252
0.000661319
0.000612205
0.000555558
0.000491003
0.000418211
0.000337051
0.000248041
0.000153778
6.43775e-05
1.03827e-05
1.09766e-06
6.39875e-06
2.42358e-05
9.23786e-05
0.000159312
0.000221701
0.000293377
0.000375704
0.00045796
0.000521099
0.000578685
0.000629938
0.00067439
0.000711822
0.000742205
0.000765628
0.00078225
0.000792254
0.000795813
0.000793069
0.000784114
0.000768984
0.000747646
0.00072
0.000685877
0.000645038
0.000597183
0.000541957
0.000478982
0.000407917
0.000328616
0.000241571
0.000149351
6.20591e-05
9.86407e-06
1.04672e-06
6.37269e-06
2.33731e-05
8.87522e-05
0.000148996
0.000209003
0.000280436
0.000363105
0.000444227
0.000506161
0.000562658
0.000612907
0.00065644
0.000693054
0.000722737
0.000745598
0.00076181
0.000771565
0.000775042
0.000772386
0.00076369
0.000748986
0.000728242
0.000701357
0.000668162
0.00062842
0.00058183
0.000528041
0.000466673
0.00039738
0.000320003
0.000235011
0.000144928
5.98025e-05
9.37945e-06
9.99716e-07
6.34497e-06
2.24611e-05
8.50915e-05
0.000139262
0.000197075
0.000268162
0.000350991
0.000431093
0.00049182
0.000547178
0.000596347
0.000638869
0.000674569
0.00070346
0.000725676
0.000741409
0.000750864
0.000754226
0.000751641
0.000743199
0.000728931
0.0007088
0.0006827
0.000650458
0.000611834
0.000566526
0.000514177
0.000454405
0.000386853
0.000311353
0.000228352
0.000140362
5.74325e-05
8.8648e-06
9.46247e-07
6.3093e-06
2.13768e-05
8.10692e-05
0.000129727
0.000185661
0.000256411
0.000339228
0.000418107
0.000477709
0.000531966
0.000580054
0.000621539
0.000656276
0.000684319
0.000705832
0.00072103
0.000730133
0.000733335
0.000730783
0.000722567
0.00070871
0.000689172
0.000663842
0.000632542
0.000595029
0.000550999
0.000500095
0.000441933
0.000376158
0.000302591
0.000221664
0.000135857
5.51619e-05
8.39201e-06
8.97267e-07
6.26743e-06
2.0003e-05
7.51545e-05
0.000119957
0.000174369
0.000244573
0.000327137
0.000404356
0.000463007
0.000516309
0.000563433
0.000603968
0.000637808
0.000665047
0.000685888
0.000700574
0.000709347
0.00071241
0.000709916
0.000701952
0.000688539
0.000669628
0.000645102
0.000614777
0.000578402
0.000535667
0.000486212
0.000429645
0.000365606
0.000293906
0.00021497
0.000131272
5.28101e-05
7.89416e-06
8.42433e-07
6.22946e-06
1.86041e-05
6.82345e-05
0.000110078
0.000162568
0.000231869
0.00031428
0.000389514
0.000447383
0.000499881
0.000546167
0.000585853
0.000618875
0.00064537
0.000665584
0.000679793
0.00068826
0.000691203
0.00068878
0.000681079
0.000668118
0.000649841
0.000626124
0.000596777
0.000561545
0.000520116
0.000472128
0.00041719
0.000354938
0.000285182
0.000208332
0.000126832
5.06108e-05
7.44875e-06
7.9398e-07
6.20265e-06
1.72451e-05
6.16563e-05
0.00010018
0.000150183
0.000218227
0.000300513
0.000373461
0.000430648
0.000482463
0.000528031
0.00056698
0.000599284
0.000625128
0.000644798
0.000658607
0.000666842
0.000669735
0.00066745
0.000660077
0.000647628
0.000630043
0.00060719
0.000578871
0.000544824
0.000504728
0.000458217
0.000404894
0.00034439
0.00027651
0.000201657
0.000122276
4.82997e-05
6.97046e-06
7.40276e-07
6.18646e-06
1.60876e-05
5.58953e-05
9.08563e-05
0.000137687
0.000203775
0.00028572
0.000356474
0.000413006
0.000464196
0.000509112
0.000547386
0.000579027
0.000604269
0.000623442
0.000636895
0.000644938
0.000647821
0.000645711
0.000638697
0.000626788
0.000609918
0.000587947
0.000560673
0.000527827
0.000489088
0.000444087
0.000392429
0.000333748
0.000267845
0.000195112
0.000117949
4.62013e-05
6.55989e-06
6.95219e-07
6.17376e-06
1.51105e-05
5.0988e-05
8.23626e-05
0.000125441
0.000188646
0.000269711
0.000338613
0.000394456
0.000445045
0.000489358
0.000527017
0.000558059
0.000582763
0.000601506
0.000614673
0.0006226
0.00062555
0.000623697
0.000617128
0.000605846
0.000589774
0.000568764
0.000542601
0.000511009
0.000473661
0.000430182
0.000380173
0.000323261
0.000259244
0.000188509
0.000113459
4.39515e-05
6.10843e-06
6.44703e-07
6.15603e-06
1.43587e-05
4.70482e-05
7.50436e-05
0.000114044
0.000173529
0.000253
0.000320407
0.000375437
0.000425359
0.000469036
0.000506062
0.000536497
0.000560663
0.000578981
0.000591872
0.000599699
0.000602738
0.000601168
0.000595073
0.00058445
0.000569212
0.000549201
0.000524192
0.0004939
0.000457991
0.000416087
0.000367791
0.000312735
0.000250719
0.000182118
0.000109292
4.19853e-05
5.74281e-06
6.046e-07
6.12699e-06
1.37495e-05
4.38915e-05
6.87983e-05
0.000103552
0.000158494
0.000235407
0.000301745
0.000355795
0.000404967
0.000447979
0.000484373
0.000514223
0.000537885
0.000555823
0.000568493
0.000576281
0.000579477
0.000578263
0.000572721
0.000562839
0.000548522
0.0005296
0.000505833
0.000476926
0.00044253
0.000402252
0.000355681
0.000302433
0.000242297
0.000175644
0.000104866
3.97822e-05
5.31768e-06
5.57103e-07
6.07872e-06
1.32933e-05
4.14829e-05
6.37186e-05
9.43502e-05
0.000144235
0.000217658
0.000283207
0.00033603
0.00038428
0.000426508
0.000462188
0.000491393
0.000514511
0.000532042
0.000544474
0.000552214
0.000555561
0.000554702
0.000549714
0.000540577
0.000527188
0.000509366
0.000486864
0.000459378
0.000426551
0.000387986
0.000343265
0.000292001
0.000233965
0.0001695
0.000100935
3.79775e-05
4.99867e-06
5.209e-07
6.01111e-06
1.28827e-05
3.95491e-05
5.94758e-05
8.61315e-05
0.000130425
0.000199155
0.000264255
0.000315605
0.000362804
0.000404202
0.000439176
0.000467774
0.000490401
0.000507586
0.000519843
0.000527597
0.000531159
0.000530716
0.000526341
0.00051801
0.000505608
0.000488947
0.000467768
0.000441755
0.00041054
0.000373711
0.000330837
0.000281508
0.000225478
0.000163071
9.66232e-05
3.58892e-05
4.60808e-06
4.74394e-07
5.91946e-06
1.25649e-05
3.81313e-05
5.61877e-05
7.92404e-05
0.000117844
0.00018095
0.000245694
0.000295247
0.000341154
0.000381561
0.000415725
0.000443652
0.00046575
0.000482566
0.000494631
0.000502387
0.00050615
0.000506105
0.000502322
0.000494771
0.000483331
0.000467808
0.000447937
0.000423398
0.000393821
0.000358793
0.00031788
0.000270668
0.000216894
0.000156842
9.2757e-05
3.42089e-05
4.33021e-06
4.40678e-07
5.81151e-06
1.22328e-05
3.69558e-05
5.34621e-05
7.31875e-05
0.000105882
0.00016211
0.000226533
0.000273996
0.000318479
0.000357885
0.000391306
0.000418668
0.000440355
0.000456917
0.000468899
0.00047675
0.000480793
0.000481213
0.000478076
0.00047135
0.000460909
0.000446551
0.000428007
0.00040495
0.000377001
0.000343738
0.000304712
0.000259496
0.000207809
0.000149921
8.8099e-05
3.19825e-05
3.93194e-06
3.94184e-07
5.68059e-06
1.20196e-05
3.62671e-05
5.16748e-05
6.86142e-05
9.58221e-05
0.000144693
0.000208246
0.000253175
0.00029589
0.000334069
0.000366621
0.000393359
0.000414617
0.000430929
0.000442837
0.000450791
0.000455116
0.000455995
0.000453487
0.000447558
0.000438083
0.000424857
0.000407614
0.000386028
0.000359725
0.000328289
0.000291277
0.000248259
0.00019894
0.000143542
8.42134e-05
3.03559e-05
3.67987e-06
3.64301e-07
5.5383e-06
1.18163e-05
3.57885e-05
5.03966e-05
6.49475e-05
8.69812e-05
0.000127898
0.00018956
0.000231486
0.000272181
0.000309088
0.000340862
0.000367144
0.000388164
0.000404413
0.000416414
0.000424613
0.000429337
0.000430765
0.000428954
0.000423872
0.000415392
0.000403311
0.00038736
0.000367212
0.000342491
0.000312775
0.000277613
0.000236568
0.000189337
0.000136146
7.91971e-05
2.79898e-05
3.27859e-06
3.19257e-07
5.36826e-06
1.18257e-05
3.59429e-05
5.02848e-05
6.31748e-05
8.11058e-05
0.000114886
0.000173269
0.000211531
0.00024955
0.000284708
0.000315416
0.000341097
0.000361828
0.000378007
0.000390115
0.000398575
0.000403707
0.000405685
0.000404557
0.000400295
0.000392779
0.00038181
0.000367128
0.000348416
0.00032531
0.000297402
0.000264254
0.000225433
0.000180619
0.000129978
7.55516e-05
2.65377e-05
3.06923e-06
2.94707e-07
5.18088e-06
1.18647e-05
3.6282e-05
5.06225e-05
6.23159e-05
7.69135e-05
0.000103852
0.000152513
0.000191572
0.000226389
0.000259556
0.000289201
0.000314437
0.000335103
0.000351449
0.000363876
0.000372774
0.000378454
0.000381088
0.000380717
0.000377324
0.000370792
0.000360932
0.000347484
0.000330134
0.000308516
0.00028222
0.000250803
0.00021383
0.000170986
0.000122467
7.04154e-05
2.41601e-05
2.68935e-06
2.52856e-07
4.94591e-06
1.22493e-05
3.74834e-05
5.24963e-05
6.38547e-05
7.64783e-05
9.84154e-05
0.00013844
0.000175793
0.000206617
0.00023697
0.000264927
0.000289304
0.000309664
0.000326044
0.000338712
0.000347991
0.000354169
0.000357402
0.00035772
0.000355115
0.000349485
0.000340653
0.000328378
0.000312362
0.000292261
0.000267687
0.000238215
0.000203421
0.000162966
0.000116958
6.73209e-05
2.30108e-05
2.53534e-06
2.34033e-07
4.68469e-06
1.26083e-05
3.87082e-05
5.45787e-05
6.59736e-05
7.73223e-05
9.53874e-05
0.000127683
0.000160485
0.000187089
0.000214406
0.000240618
0.000264269
0.000284563
0.000301259
0.000314442
0.000324336
0.000331195
0.000335164
0.000336268
0.00033451
0.000329806
0.000321989
0.000310825
0.000296018
0.00027722
0.000254036
0.000226036
0.000192792
0.000153988
0.0001098
6.23364e-05
2.07428e-05
2.19425e-06
1.96468e-07
4.36647e-06
1.34979e-05
4.097e-05
5.85437e-05
7.08885e-05
8.24395e-05
9.93855e-05
0.000127404
0.000151653
0.000173599
0.000196993
0.00022046
0.000242557
0.000262175
0.000278769
0.000292184
0.00030249
0.000309862
0.000314409
0.000316129
0.00031504
0.000311078
0.000304102
0.000293902
0.00028021
0.000262711
0.000241041
0.0002148
0.000183574
0.000147017
0.000105184
5.99004e-05
1.9909e-05
2.08918e-06
1.82062e-07
4.05382e-06
1.42232e-05
4.29217e-05
6.22397e-05
7.56965e-05
8.76745e-05
0.000103999
0.000127917
0.000143393
0.000161034
0.000180512
0.000200997
0.000221346
0.000240339
0.000257035
0.000270975
0.000282018
0.000290215
0.000295619
0.000298202
0.000297987
0.000294931
0.000288907
0.000279709
0.000267065
0.000250643
0.000230057
0.000204888
0.000174719
0.000139242
9.86544e-05
5.51206e-05
1.77255e-05
1.77962e-06
1.48543e-07
3.71263e-06
1.5926e-05
4.63288e-05
6.84391e-05
8.41782e-05
9.82295e-05
0.000115589
0.000132015
0.000144226
0.000158052
0.000173341
0.000189694
0.000206563
0.000223157
0.000238521
0.000251862
0.000262775
0.000271129
0.000276849
0.00027982
0.00028005
0.000277513
0.000272116
0.000263692
0.000252004
0.000236755
0.000217589
0.000194103
0.00016587
0.000132528
9.41357e-05
5.26316e-05
1.68527e-05
1.67306e-06
1.33116e-07
3.45146e-06
1.71899e-05
4.90798e-05
7.36907e-05
9.1253e-05
0.000106111
0.000122126
0.000132739
0.000141445
0.00015156
0.00016323
0.000176169
0.000189957
0.000204153
0.000218161
0.000231186
0.000242469
0.000251568
0.000258221
0.000262182
0.000263371
0.000261739
0.000257196
0.000249581
0.000238662
0.000224136
0.000205651
0.000182821
0.000155272
0.000122764
8.5617e-05
4.62992e-05
1.4055e-05
1.31628e-06
9.83546e-08
3.19582e-06
2.00382e-05
5.40193e-05
8.31462e-05
0.000103791
0.000120013
0.000135981
0.000143254
0.000149642
0.000156871
0.000165211
0.000174526
0.000184459
0.000194655
0.000204846
0.000214744
0.000223904
0.000231778
0.000237859
0.000241754
0.000243244
0.000242197
0.000238501
0.000232012
0.000222506
0.00020967
0.000193105
0.000172343
0.000146899
0.000116403
8.10827e-05
4.34719e-05
1.29721e-05
1.17359e-06
7.59995e-08
3.0685e-06
2.16359e-05
5.65182e-05
8.94265e-05
0.000113895
0.000131783
0.000146128
0.000150158
0.000153389
0.000156832
0.000161087
0.0001663
0.000172413
0.000179168
0.000186202
0.000193163
0.000199757
0.000205692
0.000210555
0.00021389
0.000215245
0.000214242
0.000210605
0.000204137
0.000194674
0.000182026
0.000165942
0.000146108
0.000122215
9.41626e-05
6.26814e-05
3.11458e-05
8.40995e-06
6.96054e-07
3.57311e-08
2.83383e-06
2.45227e-05
6.12447e-05
0.000100909
0.000131622
0.000147139
0.000153709
0.000158723
0.000159511
0.000159487
0.000160634
0.000163084
0.000166653
0.000170919
0.000175545
0.000180266
0.000184849
0.000189043
0.000192491
0.000194916
0.000196082
0.000195626
0.000193077
0.000187967
0.000179887
0.000168517
0.00015361
0.000134974
0.000112502
8.63067e-05
5.71942e-05
2.82398e-05
7.54799e-06
6.03884e-07
1.93234e-08
2.53078e-06
2.2649e-05
6.00818e-05
0.000104512
0.000144415
0.000169689
0.000181012
0.000183237
0.000181261
0.000177999
0.000172104
0.000166511
0.000161903
0.000158742
0.00015724
0.000157236
0.000158385
0.000160178
0.000161885
0.000162834
0.000162602
0.000160894
0.000157527
0.00015235
0.000145185
0.000135796
0.000123878
0.000109048
9.08757e-05
6.90896e-05
4.44361e-05
2.06535e-05
5.15008e-06
3.664e-07
5.07741e-09
1.8313e-06
1.20237e-05
4.05575e-05
8.47585e-05
0.000114178
0.000127425
0.000135866
0.000144307
0.000154196
0.000165708
0.000165666
0.000163077
0.000159798
0.000156263
0.000152986
0.00015046
0.000148958
0.000148494
0.000148748
0.000149398
0.000149899
0.000149458
0.00014721
0.000142403
0.000134488
0.000123147
0.000108331
9.03051e-05
6.95603e-05
4.7547e-05
2.66636e-05
1.04423e-05
2.13536e-06
1.36911e-07
7.44448e-09
1.59572e-06
1.06533e-06
2.7505e-06
1.01476e-05
3.19479e-05
4.62368e-05
5.58456e-05
6.34043e-05
7.02054e-05
7.71069e-05
8.4565e-05
9.26703e-05
0.000102241
0.000111831
0.00011495
0.000117289
0.000118877
0.00011969
0.000119633
0.00011869
0.000116767
0.000113646
0.000108929
0.000102056
9.28766e-05
8.17939e-05
6.95018e-05
5.69502e-05
4.55925e-05
3.62958e-05
2.92373e-05
2.10416e-05
8.05456e-06
7.14883e-07
1.61709e-08
1.71676e-06
1.4946e-05
6.1089e-05
8.65652e-05
8.18888e-05
7.44496e-05
7.75041e-05
8.69272e-05
9.03671e-05
9.17728e-05
9.44393e-05
9.89111e-05
0.000105558
0.000114601
0.000126108
0.000140039
0.00015647
0.000175806
0.000199019
0.000226848
0.000259068
0.00029486
0.000332987
0.000327342
0.000307748
0.000286255
0.000270328
0.000268567
0.000269678
0.00016839
7.58314e-05
2.25245e-05
3.91962e-06
2.03175e-07
9.31173e-09
1.66391e-06
3.69733e-05
8.02261e-05
6.15351e-05
4.60237e-05
4.69093e-05
5.49304e-05
6.26144e-05
7.12289e-05
8.07478e-05
8.36589e-05
8.73409e-05
9.18164e-05
9.68803e-05
0.000102245
0.000107479
0.000112404
0.000116546
0.000119382
0.000120374
0.000119004
0.000114884
0.000107858
9.80343e-05
8.58718e-05
7.19105e-05
5.70355e-05
4.23269e-05
2.90287e-05
1.78255e-05
9.3125e-06
3.6534e-06
9.70422e-07
3.20378e-07
1.1921e-07
1.26147e-06
4.94895e-06
1.10201e-05
2.13011e-05
1.52596e-05
1.94293e-05
2.38913e-05
2.5555e-05
2.88916e-05
3.23484e-05
3.54104e-05
3.84813e-05
3.93909e-05
3.95515e-05
3.97098e-05
3.98281e-05
3.99241e-05
3.99574e-05
3.98975e-05
3.97195e-05
3.9396e-05
3.8904e-05
3.8139e-05
3.66217e-05
3.5173e-05
3.38164e-05
3.25317e-05
3.12157e-05
2.95582e-05
2.74029e-05
2.55753e-05
2.69805e-05
3.17754e-05
1.63163e-05
8.55825e-07
7.63863e-08
2.01643e-06
5.26218e-06
8.29644e-06
1.10669e-05
1.36213e-05
1.56883e-05
1.68797e-05
1.64489e-05
1.453e-05
1.19065e-05
9.1988e-06
6.64656e-06
4.69766e-06
9.55602e-07
2.88599e-07
3.13919e-06
1.29736e-05
1.36254e-05
1.35023e-05
1.31132e-05
1.26614e-05
1.22116e-05
1.1793e-05
1.14339e-05
1.11586e-05
1.09825e-05
1.09024e-05
1.08873e-05
1.08832e-05
1.08391e-05
1.07496e-05
1.06198e-05
3.1209e-06
2.02111e-08
4.16061e-07
1.16619e-06
6.12771e-06
1.26512e-05
1.8151e-05
2.1935e-05
2.38466e-05
2.46146e-05
2.50271e-05
2.52247e-05
2.49778e-05
2.43891e-05
2.36389e-05
2.25991e-05
2.04273e-05
2.00685e-05
2.06014e-05
2.09937e-05
2.09774e-05
2.05659e-05
1.99884e-05
1.94392e-05
1.90456e-05
1.89133e-05
1.91783e-05
1.99399e-05
2.12796e-05
2.30537e-05
2.4706e-05
2.57051e-05
2.56847e-05
2.38829e-05
1.03429e-05
4.07967e-06
7.66275e-07
6.3023e-07
7.71527e-06
3.4697e-05
5.33453e-05
7.6462e-05
8.89382e-05
7.77901e-05
5.65793e-05
2.53644e-05
1.96021e-05
2.39709e-05
2.521e-05
2.58941e-05
2.61368e-05
2.56399e-05
2.44518e-05
2.34569e-05
2.32266e-05
2.34443e-05
2.38851e-05
2.44354e-05
2.50118e-05
2.5538e-05
2.59331e-05
2.53902e-05
2.44319e-05
2.42182e-05
2.4894e-05
2.64483e-05
2.62022e-05
2.43014e-05
1.72523e-05
6.99941e-06
3.48921e-06
1.04593e-06
4.14593e-07
9.08377e-07
3.19723e-06
1.05889e-05
2.27116e-05
3.41114e-05
4.59665e-05
5.39296e-05
5.57187e-05
5.54242e-05
5.42338e-05
5.23461e-05
4.97769e-05
4.63191e-05
4.03871e-05
3.4849e-05
2.85929e-05
2.3566e-05
2.16348e-05
2.17861e-05
2.27163e-05
2.34511e-05
2.29217e-05
2.33844e-05
2.58023e-05
3.03873e-05
3.33917e-05
3.62273e-05
3.76331e-05
3.58372e-05
2.68618e-05
1.54529e-05
8.50231e-06
3.1703e-06
1.70394e-06
8.68898e-07
2.31873e-06
1.66408e-05
3.90914e-05
5.6619e-05
6.78925e-05
7.44483e-05
7.73384e-05
7.72118e-05
7.46676e-05
7.03909e-05
6.49521e-05
5.90334e-05
5.32282e-05
4.78319e-05
4.28472e-05
3.81866e-05
3.38259e-05
2.98399e-05
2.66182e-05
2.37064e-05
2.15292e-05
2.13988e-05
2.58538e-05
3.01635e-05
3.49344e-05
3.98969e-05
4.31416e-05
4.29146e-05
3.88718e-05
3.03018e-05
1.81119e-05
1.06468e-05
4.29153e-06
2.03655e-06
1.06579e-06
3.13293e-06
2.04571e-05
4.27519e-05
5.96199e-05
7.35847e-05
8.52057e-05
9.52578e-05
0.000101745
0.000101156
9.77217e-05
9.20185e-05
8.45746e-05
7.61676e-05
6.76197e-05
5.95428e-05
5.23214e-05
4.61162e-05
4.09293e-05
3.1584e-05
2.54809e-05
2.19502e-05
1.99883e-05
2.0358e-05
2.63617e-05
3.65626e-05
4.1819e-05
4.39073e-05
4.10616e-05
3.70346e-05
2.8339e-05
1.95306e-05
1.21342e-05
4.32057e-06
2.43702e-06
1.20066e-06
3.39416e-06
2.15364e-05
4.83709e-05
6.80628e-05
8.30115e-05
9.5764e-05
0.000107549
0.000116855
0.000118876
0.000117987
0.000114586
0.00010912
0.00010214
9.4257e-05
8.61351e-05
7.84439e-05
7.16418e-05
6.59932e-05
6.15322e-05
5.2655e-05
4.26861e-05
3.7049e-05
3.53714e-05
3.83604e-05
4.77346e-05
5.60554e-05
5.60972e-05
5.0216e-05
3.97392e-05
3.0162e-05
2.05018e-05
1.37714e-05
5.05319e-06
2.64633e-06
1.35854e-06
4.28102e-06
2.62997e-05
5.6257e-05
7.73965e-05
9.44767e-05
0.000109575
0.000123858
0.000136172
0.000139565
0.000139945
0.00013777
0.000133461
0.000127468
0.000120301
0.000112528
0.000104746
9.74929e-05
9.12041e-05
8.60893e-05
8.21354e-05
7.91811e-05
6.94291e-05
6.1892e-05
5.98725e-05
6.44795e-05
7.2859e-05
6.97033e-05
5.96395e-05
4.46978e-05
3.18691e-05
2.15274e-05
1.48603e-05
5.21597e-06
2.87628e-06
1.45827e-06
4.41462e-06
2.69169e-05
5.84205e-05
8.14979e-05
9.99954e-05
0.000116439
0.000132364
0.000147486
0.000154187
0.000156867
0.000156818
0.000154426
0.000150091
0.00014426
0.000137429
0.000130127
0.000122851
0.000116095
0.000110179
0.000105225
0.000101202
9.79752e-05
9.53846e-05
9.32792e-05
9.13245e-05
8.85337e-05
8.25376e-05
6.91287e-05
5.03157e-05
3.41831e-05
2.23011e-05
1.58275e-05
5.60766e-06
3.03528e-06
1.51762e-06
4.81079e-06
2.87755e-05
6.2052e-05
8.9912e-05
0.000111166
0.000129512
0.000147164
0.000163376
0.000170819
0.000174978
0.000176281
0.000175119
0.000171856
0.000166867
0.000160566
0.000153405
0.000145837
0.00013842
0.000131542
0.000125389
0.000120034
0.000115452
0.000111529
0.000108013
0.000104327
9.91388e-05
8.9702e-05
7.21335e-05
5.10205e-05
3.34335e-05
2.26799e-05
1.64298e-05
5.70102e-06
3.20985e-06
1.64885e-06
5.33013e-06
3.13064e-05
6.6532e-05
9.46851e-05
0.00011676
0.00013637
0.000155543
0.00017412
0.000184331
0.000190361
0.000193489
0.000194048
0.000192348
0.00018869
0.000183392
0.000176814
0.000169345
0.000161659
0.000154233
0.000147265
0.00014085
0.000135003
0.000129635
0.000124441
0.00011864
0.000110565
9.72729e-05
7.55869e-05
5.23007e-05
3.30815e-05
2.30943e-05
1.70482e-05
5.87605e-06
3.34505e-06
1.65148e-06
5.43342e-06
3.19886e-05
6.88049e-05
0.000102383
0.000128012
0.000150152
0.000171127
0.000188899
0.000199827
0.000207364
0.000211893
0.000213766
0.000213298
0.000210772
0.00020645
0.000200606
0.000193548
0.000186002
0.000178446
0.000170995
0.000163717
0.000156634
0.000149624
0.000142234
0.00013342
0.000121246
0.000102954
7.68454e-05
5.22386e-05
3.20698e-05
2.33715e-05
1.74228e-05
5.85671e-06
3.48009e-06
1.80403e-06
6.19196e-06
3.52694e-05
7.40577e-05
0.000107658
0.000133859
0.000157122
0.00017974
0.000201096
0.000213694
0.000222919
0.000229119
0.000232617
0.000233709
0.000232659
0.000229706
0.000225072
0.000218993
0.00021211
0.000204853
0.000197328
0.000189592
0.000181616
0.000173165
0.000163601
0.000151661
0.000135294
0.000112109
8.16618e-05
5.48223e-05
3.26182e-05
2.41329e-05
1.81239e-05
6.01052e-06
3.58475e-06
1.8036e-06
6.25551e-06
3.59843e-05
7.66159e-05
0.000114322
0.000145397
0.000172038
0.000196431
0.000215908
0.000230244
0.000241037
0.00024867
0.000253495
0.000255832
0.000255971
0.000254164
0.000250636
0.000245598
0.000239557
0.000232813
0.000225417
0.000217386
0.000208587
0.000198608
0.000186591
0.000171078
0.000150064
0.000121823
8.73907e-05
5.85586e-05
3.35763e-05
2.48827e-05
1.86176e-05
6.01957e-06
3.68641e-06
1.9685e-06
7.18253e-06
3.96903e-05
8.24625e-05
0.000121611
0.00015235
0.000179574
0.000205654
0.000229504
0.000245581
0.000258121
0.000267464
0.000273933
0.000277833
0.00027945
0.000279039
0.000276829
0.000273024
0.000268009
0.000262002
0.000255007
0.000246963
0.000237617
0.000226398
0.000212287
0.000193749
0.000168956
0.000136785
9.91193e-05
6.67857e-05
3.66527e-05
2.65212e-05
1.95875e-05
6.2138e-06
3.76947e-06
1.98033e-06
7.31433e-06
4.0741e-05
8.56601e-05
0.000127872
0.000165059
0.000196105
0.000223801
0.000246026
0.000264026
0.000278273
0.000289159
0.000297045
0.000302257
0.000305095
0.000305825
0.000304678
0.000301848
0.000297601
0.000292082
0.000285256
0.000276975
0.000266866
0.000254238
0.000237997
0.000216681
0.000188809
0.000153917
0.000114435
7.21193e-05
4.01028e-05
2.83966e-05
2.05635e-05
6.33375e-06
3.84737e-06
2.13887e-06
8.26847e-06
4.43248e-05
9.13531e-05
0.000135211
0.000173125
0.00020512
0.000234717
0.000260999
0.000281043
0.000297275
0.000310048
0.000319697
0.000326543
0.00033088
0.000332973
0.000333052
0.000331295
0.000327897
0.000322946
0.000316372
0.000307962
0.000297281
0.000283593
0.00026583
0.000242684
0.000212986
0.000176619
0.000135965
8.19889e-05
4.56857e-05
3.12078e-05
2.1984e-05
6.64563e-06
3.91169e-06
2.15635e-06
8.40569e-06
4.53659e-05
9.4535e-05
0.000141269
0.00018313
0.000219745
0.000251257
0.000277984
0.000300295
0.00031857
0.000333186
0.0003445
0.000352845
0.000358527
0.000361814
0.000362929
0.000362041
0.000359284
0.00035469
0.000348144
0.000339367
0.00032786
0.000312847
0.00029328
0.00026796
0.000235921
0.000197216
0.000154062
9.23155e-05
5.2042e-05
3.44694e-05
2.35522e-05
6.93906e-06
3.97132e-06
2.29785e-06
9.32519e-06
4.87331e-05
0.000100028
0.000148604
0.000192278
0.000230824
0.000264416
0.000293327
0.000317862
0.000338333
0.000355056
0.000368343
0.000378497
0.000385799
0.000390502
0.000392818
0.000392896
0.000390829
0.000386606
0.000380064
0.000370873
0.000358481
0.000342087
0.000320671
0.000293131
0.000258664
0.000217449
0.000171612
0.000104504
5.98139e-05
3.87486e-05
2.57702e-05
7.38051e-06
4.02153e-06
2.32289e-06
9.56067e-06
5.01274e-05
0.000103672
0.000155001
0.000201507
0.000242789
0.000278965
0.0003103
0.000337102
0.000359687
0.000378372
0.000393462
0.000405246
0.000413991
0.000419929
0.000423249
0.000424075
0.000422455
0.00041833
0.000411493
0.000401561
0.000387948
0.00036985
0.000346293
0.000316301
0.000279246
0.000235479
0.000187147
0.000116037
6.78858e-05
4.35281e-05
2.83445e-05
7.78841e-06
4.06294e-06
2.4461e-06
1.04868e-05
5.34925e-05
0.000109285
0.00016267
0.000211177
0.000254486
0.000292739
0.00032619
0.000355116
0.000379794
0.000400496
0.000417484
0.000431009
0.000441299
0.000448553
0.000452923
0.0004545
0.000453294
0.000449203
0.000441985
0.000431233
0.000416351
0.000396563
0.000370977
0.000338748
0.000299409
0.000253427
0.000202915
0.000128403
7.6915e-05
4.91786e-05
3.1552e-05
8.30764e-06
4.09439e-06
2.47517e-06
1.08407e-05
5.52991e-05
0.000113472
0.0001696
0.000220855
0.000266779
0.000307479
0.000343208
0.000374257
0.00040091
0.000423442
0.000442105
0.000457131
0.000468726
0.000477055
0.000482238
0.000484327
0.000483291
0.000478992
0.000471158
0.000459367
0.000443034
0.000421434
0.000393777
0.000359367
0.000317906
0.000269964
0.000217373
0.000140227
8.62196e-05
5.53678e-05
3.52051e-05
8.8303e-06
4.11592e-06
2.57769e-06
1.17557e-05
5.86115e-05
0.000119114
0.000177459
0.000230869
0.000278913
0.000321701
0.000359478
0.000392515
0.000421073
0.0004454
0.00046572
0.000482233
0.00049511
0.000504483
0.000510435
0.000512981
0.000512056
0.000507493
0.000499003
0.000486164
0.000468422
0.000445117
0.000415569
0.000379228
0.000335951
0.000286401
0.000229742
0.000152524
9.62702e-05
6.23179e-05
3.94812e-05
9.45471e-06
4.12921e-06
2.6091e-06
1.22184e-05
6.07632e-05
0.00012372
0.000184778
0.000240856
0.000291411
0.00033652
0.000376429
0.000411419
0.000441763
0.000467707
0.000489472
0.000507243
0.000521169
0.000531356
0.000537855
0.00054065
0.000539648
0.000534657
0.00052538
0.000511404
0.000492213
0.000467222
0.000435859
0.000397716
0.000352788
0.000301818
0.00024148
0.00016447
0.000106521
6.97608e-05
4.4225e-05
1.00798e-05
4.13197e-06
2.69626e-06
1.31067e-05
6.39643e-05
0.000129286
0.000192679
0.000251034
0.000303787
0.000350997
0.000392893
0.000429742
0.000461802
0.000489306
0.000512457
0.00053142
0.000546322
0.000557243
0.000564208
0.000567177
0.000566035
0.000560576
0.000550504
0.000535426
0.000514872
0.000488332
0.000455343
0.000415619
0.000369266
0.000317076
0.000253746
0.000176823
0.000117271
7.7919e-05
4.97589e-05
1.08217e-05
4.12698e-06
2.73605e-06
1.36904e-05
6.64167e-05
0.000134195
0.000200231
0.000261177
0.000316363
0.000365807
0.00040973
0.000448399
0.000482077
0.000511
0.000535368
0.000555339
0.000571027
0.000582496
0.000589752
0.000592738
0.000591323
0.000585298
0.000574373
0.000558179
0.000536296
0.000508289
0.000473788
0.000432616
0.000384968
0.000331661
0.000265642
0.000189067
0.000128519
8.66059e-05
5.36604e-05
1.14977e-05
4.115e-06
2.81832e-06
1.45839e-05
6.96111e-05
0.000139802
0.000208236
0.000271507
0.000328907
0.000380429
0.00042627
0.000466684
0.00050192
0.000532203
0.000557722
0.000578626
0.000595019
0.00060695
0.000614415
0.000617345
0.000615604
0.000608984
0.00059721
0.000579943
0.000556811
0.000527447
0.000491567
0.000449083
0.000400257
0.000345916
0.00027775
0.000201859
0.000140654
9.5992e-05
5.71041e-05
1.21246e-05
4.09296e-06
2.87186e-06
1.5268e-05
7.23116e-05
0.000145003
0.000216053
0.000281853
0.000341606
0.000395268
0.000443027
0.000485134
0.000521839
0.000553368
0.000579911
0.000601611
0.000618567
0.000630824
0.000638371
0.000641136
0.000638983
0.000631713
0.000619068
0.000600743
0.000576412
0.000545771
0.000508609
0.000464906
0.000414977
0.000359641
0.000289974
0.000215008
0.000153352
0.000105822
6.02789e-05
1.26544e-05
4.06381e-06
2.95442e-06
1.61344e-05
7.53653e-05
0.000150446
0.000223916
0.000292077
0.000354069
0.000409803
0.000459436
0.000503203
0.000541345
0.000574084
0.000601603
0.000624047
0.000641508
0.000654031
0.000661604
0.000664157
0.000661563
0.000653638
0.000640146
0.000620817
0.000595372
0.000563562
0.000525238
0.000480435
0.000429499
0.000373223
0.00030257
0.000228785
0.000166928
0.000116453
6.34609e-05
1.31768e-05
4.028e-06
3.01974e-06
1.68757e-05
7.81416e-05
0.000155675
0.000231674
0.000302271
0.000366529
0.000424323
0.000475794
0.000521166
0.000560676
0.000594543
0.000622953
0.000646049
0.000663929
0.000676639
0.00068417
0.00068646
0.000683395
0.000674809
0.000660494
0.000640215
0.000613739
0.000580869
0.000541503
0.000495719
0.000443865
0.000386685
0.000315824
0.000243274
0.000181349
0.000127925
6.66809e-05
1.3684e-05
3.99045e-06
3.10569e-06
1.77612e-05
8.12013e-05
0.000161135
0.000239543
0.000312457
0.00037888
0.000438652
0.000491891
0.000538806
0.000579627
0.00061457
0.000643819
0.00066752
0.000685772
0.000698627
0.000706086
0.000708097
0.000704562
0.000695335
0.000680237
0.000659069
0.000631636
0.000597787
0.000557458
0.000510748
0.000457996
0.000399874
0.000329611
0.000259136
0.000196843
0.000136391
6.9748e-05
1.42093e-05
3.95216e-06
3.18292e-06
1.85767e-05
8.41037e-05
0.000166469
0.000247332
0.000322584
0.000391164
0.00045288
0.000507833
0.000556227
0.000598288
0.000634232
0.000664249
0.000688486
0.000707052
0.000720005
0.000727358
0.000729075
0.000725072
0.000715228
0.000699389
0.00067739
0.000649069
0.00061431
0.00057308
0.000525484
0.000471837
0.00041273
0.00034455
0.000276728
0.000212447
0.000143111
7.25012e-05
1.46897e-05
3.91269e-06
3.27266e-06
1.94814e-05
8.71671e-05
0.000171925
0.000255161
0.000332659
0.000403308
0.000466888
0.000523483
0.000573289
0.000616528
0.000653416
0.000684146
0.000708872
0.000727711
0.000740734
0.000747966
0.000749387
0.000744935
0.00073451
0.000717985
0.000695222
0.00066609
0.000630497
0.000588426
0.000539986
0.000485467
0.000425408
0.000360658
0.000292408
0.000221819
0.000149228
7.50126e-05
1.51418e-05
3.8732e-06
3.35761e-06
2.03447e-05
9.0122e-05
0.00017727
0.000262881
0.000342607
0.000415284
0.000480669
0.000538837
0.000589981
0.000634324
0.000672086
0.000703465
0.000728624
0.00074769
0.000760747
0.000767836
0.000768956
0.000764065
0.000753088
0.000735922
0.000712455
0.000682581
0.000646231
0.000603406
0.000554231
0.000499005
0.000438252
0.000372725
0.000303285
0.000230616
0.000154965
7.73903e-05
1.55841e-05
3.83433e-06
3.44734e-06
2.12426e-05
9.31115e-05
0.000182601
0.000270519
0.000352401
0.000427033
0.000494149
0.000553817
0.000606227
0.000651606
0.000690179
0.00072215
0.000747693
0.000766945
0.000780007
0.000786935
0.000787748
0.000782427
0.000770918
0.000753146
0.000729022
0.000698468
0.00066144
0.000617964
0.000568176
0.000512362
0.000450967
0.000384565
0.000313739
0.000238906
0.000160313
7.9597e-05
1.59996e-05
3.79574e-06
3.53264e-06
2.20944e-05
9.59598e-05
0.000187734
0.000277915
0.000361906
0.000438438
0.000507223
0.000568324
0.000621933
0.000668281
0.000707603
0.000740111
0.00076599
0.000785393
0.000798433
0.000805186
0.000805689
0.000799945
0.000787926
0.000769581
0.000744851
0.000713684
0.000676065
0.000632036
0.000581731
0.000525389
0.000463346
0.00039599
0.000323685
0.000246688
0.00016528
8.16304e-05
1.63851e-05
3.75763e-06
3.61769e-06
2.29293e-05
9.87144e-05
0.000192682
0.000285039
0.00037106
0.000449419
0.000519805
0.000582272
0.000637016
0.000684273
0.000724287
0.000757283
0.000783459
0.000802979
0.000815975
0.00082254
0.000822731
0.000816574
0.000804065
0.00078518
0.000759889
0.000728168
0.000690025
0.000645513
0.000594746
0.000537896
0.000475176
0.000406813
0.000333007
0.000253906
0.000169847
8.34808e-05
1.67351e-05
3.71999e-06
3.7002e-06
2.37264e-05
0.000101336
0.000197399
0.00029184
0.000379806
0.000459911
0.00053182
0.000595583
0.000651395
0.000699501
0.000740154
0.000773592
0.000800027
0.000819639
0.000832574
0.000838946
0.000838831
0.000832276
0.000819298
0.000799898
0.000774072
0.000741831
0.000703215
0.000658283
0.000607103
0.000549756
0.000486339
0.000416947
0.000341658
0.000260549
0.000174015
8.51518e-05
1.70506e-05
3.68203e-06
3.78206e-06
2.4493e-05
0.000103833
0.000201884
0.000298304
0.000388117
0.00046988
0.000543234
0.000608219
0.000665033
0.000713928
0.000755169
0.000789006
0.000815665
0.000835342
0.000848202
0.000854375
0.000853957
0.000847015
0.000833572
0.000810256
0.000782437
0.000752118
0.000715518
0.000670315
0.000618807
0.000560993
0.000496877
0.000426459
0.000349728
0.000266705
0.000177853
8.66792e-05
1.7339e-05
3.64462e-06
3.86426e-06
2.52427e-05
0.000106245
0.000206189
0.00030448
0.000396031
0.00047935
0.000554055
0.000620178
0.000677919
0.000727539
0.000769313
0.000803503
0.000830353
0.000850072
0.000862843
0.000868813
0.000868097
0.000859661
0.000840191
0.000815303
0.0007885
0.000760766
0.000727255
0.000681845
0.000630019
0.000571719
0.00050688
0.000435428
0.000357282
0.000272427
0.00018139
8.80669e-05
1.75986e-05
3.60873e-06
3.94505e-06
2.59723e-05
0.000108573
0.000210325
0.000310392
0.000403585
0.000488367
0.000564335
0.000631516
0.000690113
0.000740395
0.000782647
0.000817146
0.00084415
0.000863886
0.000876552
0.000882314
0.000881145
0.000866472
0.000844833
0.000820305
0.000795518
0.000770456
0.0007386
0.000692995
0.000640838
0.000582027
0.000516444
0.000443957
0.00036443
0.000277823
0.000184728
8.93959e-05
1.78526e-05
3.57322e-06
4.02462e-06
2.66815e-05
0.000110812
0.000214282
0.000316025
0.000410759
0.000496908
0.000574053
0.000642216
0.000701604
0.000752492
0.000795179
0.000829953
0.000857086
0.000876822
0.000889373
0.00089492
0.000888173
0.000870962
0.000848951
0.000825755
0.000803496
0.000780966
0.000749552
0.000703749
0.000651247
0.00059191
0.000525579
0.000452073
0.000371208
0.000282925
0.000187887
9.06721e-05
1.81033e-05
3.53701e-06
4.09913e-06
2.73543e-05
0.000112934
0.000218037
0.000321367
0.000417553
0.000504981
0.00058322
0.000652292
0.000712406
0.000763848
0.000806926
0.000841942
0.000869182
0.000888904
0.000901335
0.000904847
0.000893339
0.00087451
0.000852918
0.000831584
0.000811975
0.000791666
0.000760093
0.000714079
0.000661221
0.00060135
0.00053427
0.000459758
0.000377593
0.000287698
0.00019081
9.18315e-05
1.83261e-05
3.49998e-06
4.16864e-06
2.79778e-05
0.000114897
0.000221514
0.000326324
0.000423866
0.00051249
0.000591752
0.000661671
0.000722462
0.000774419
0.00081786
0.000853101
0.00088044
0.000900149
0.000912469
0.000911139
0.000897228
0.000877879
0.000857261
0.000838017
0.000820968
0.000802493
0.000770265
0.000724035
0.000670819
0.00061042
0.000542608
0.000467122
0.000383709
0.000292284
0.000193639
9.29803e-05
1.85535e-05
3.46429e-06
4.22997e-06
2.85315e-05
0.000116651
0.000224659
0.000330844
0.000429653
0.000519398
0.000599618
0.000670332
0.000731758
0.000784197
0.00082798
0.000863434
0.00089087
0.000910575
0.000922805
0.000916604
0.000900617
0.000881269
0.0008621
0.000845229
0.000830741
0.000813736
0.000780029
0.000733569
0.00067999
0.000619066
0.000550538
0.000474113
0.00038951
0.00029664
0.00019636
9.41221e-05
1.87872e-05
3.42836e-06
4.28506e-06
2.90231e-05
0.000118213
0.000227467
0.000334898
0.000434869
0.00052565
0.000606766
0.000678226
0.000740252
0.000793151
0.000837263
0.000872925
0.000900459
0.000920165
0.000929933
0.000920999
0.000904097
0.00088518
0.000867566
0.000853046
0.000840999
0.00082517
0.000789336
0.00074263
0.000688677
0.000627227
0.00055799
0.000480647
0.000394893
0.000300641
0.000198819
9.51388e-05
1.89884e-05
3.38981e-06
4.33342e-06
2.94609e-05
0.000119612
0.000229993
0.000338558
0.000439591
0.000531325
0.000613264
0.000685417
0.000748003
0.000801338
0.000845768
0.000881639
0.000909286
0.000929017
0.000935807
0.000924991
0.000907489
0.000889195
0.000873226
0.000861006
0.000851224
0.000836345
0.000798188
0.000751228
0.0006969
0.000634925
0.000564989
0.000486742
0.000399864
0.000304277
0.000200984
9.59754e-05
1.91511e-05
3.35017e-06
4.37846e-06
2.98676e-05
0.000120905
0.000232312
0.000341906
0.000443903
0.000536502
0.000619194
0.00069198
0.000755082
0.000808822
0.000853552
0.00088963
0.000917399
0.000937179
0.000941178
0.000928741
0.000910902
0.000893412
0.000879139
0.000869145
0.000861429
0.000846609
0.000806625
0.000759413
0.000704714
0.000642228
0.000571613
0.000492496
0.000404539
0.000307676
0.000202992
9.67405e-05
1.92963e-05
3.31091e-06
4.42125e-06
3.02593e-05
0.000122139
0.000234504
0.000345048
0.000447927
0.000541313
0.000624686
0.000698043
0.000761611
0.000815715
0.000860718
0.000896988
0.000924877
0.000944717
0.000945901
0.000932095
0.000914209
0.000897758
0.000885388
0.000877739
0.000871531
0.00085475
0.000814655
0.000767212
0.00071216
0.000649182
0.000577917
0.00049797
0.000408992
0.000310926
0.00020493
9.75024e-05
1.9446e-05
3.27375e-06
4.46372e-06
3.06354e-05
0.000123314
0.000236568
0.000347987
0.000451675
0.000545782
0.000629776
0.000703653
0.000767642
0.000822075
0.000867324
0.000903768
0.00093177
0.000951671
0.000949817
0.000934846
0.000917235
0.000902125
0.000891845
0.00088645
0.000881353
0.000862498
0.00082229
0.00077463
0.000719241
0.000655793
0.000583906
0.000503168
0.000413221
0.000314018
0.000206791
9.82539e-05
1.95996e-05
3.23907e-06
4.50553e-06
3.09984e-05
0.000124439
0.000238526
0.000350754
0.000455188
0.000549957
0.00063452
0.00070887
0.000773241
0.000827971
0.000873439
0.000910034
0.000938133
0.000958089
0.000952772
0.000936929
0.000920011
0.000906499
0.000898361
0.000895078
0.000890862
0.000869837
0.000829522
0.000781656
0.000725947
0.000662049
0.000589566
0.000508075
0.000417208
0.000316936
0.000208555
9.8984e-05
1.97534e-05
3.20611e-06
4.54639e-06
3.13289e-05
0.000125461
0.000240302
0.000353266
0.000458385
0.000553767
0.000638861
0.000713657
0.000778389
0.000833397
0.000879069
0.0009158
0.000943975
0.00096168
0.000954615
0.000938704
0.000922668
0.000910753
0.000904696
0.000903431
0.000900014
0.000876745
0.000836331
0.000788272
0.000732259
0.000667931
0.000594877
0.000512663
0.00042092
0.000319637
0.000210179
9.96516e-05
1.98937e-05
3.17373e-06
4.58639e-06
3.16248e-05
0.000126372
0.000241886
0.000355509
0.000461245
0.000557185
0.00064277
0.000717985
0.000783061
0.000838341
0.000884215
0.000921083
0.000949337
0.000963916
0.000955662
0.000939882
0.000924851
0.000914561
0.000910519
0.000911184
0.000908563
0.000883214
0.000842712
0.000794474
0.000738176
0.000673439
0.000599838
0.000516929
0.000424344
0.000322097
0.000211624
0.000100221
2.0008e-05
3.14151e-06
4.62624e-06
3.19025e-05
0.000127216
0.000243339
0.000357552
0.000463838
0.000560278
0.000646306
0.000721904
0.000787301
0.000842839
0.000888911
0.000925917
0.000954252
0.00096546
0.000956026
0.000940478
0.000926505
0.000917781
0.000915594
0.000918021
0.000916218
0.000889261
0.000848687
0.00080029
0.000743728
0.000678606
0.000604484
0.00052091
0.000427516
0.000324343
0.000212906
0.000100692
2.00964e-05
3.10956e-06
4.6658e-06
3.21525e-05
0.000127974
0.00024464
0.000359377
0.000466152
0.000563041
0.000649471
0.000725421
0.000791117
0.000846903
0.000893167
0.000930314
0.000958738
0.000966354
0.000955779
0.000940563
0.000927688
0.000920449
0.000919928
0.000923925
0.000922962
0.00089494
0.000854316
0.000805783
0.000748984
0.000683509
0.000608904
0.000524705
0.000430549
0.000326497
0.000214139
0.000101149
2.01826e-05
3.07913e-06
4.70478e-06
3.23753e-05
0.000128643
0.000245791
0.000360992
0.000468203
0.000565492
0.000652284
0.000728555
0.00079453
0.000850549
0.000897001
0.000934288
0.000962805
0.000966524
0.000954897
0.000940177
0.000928469
0.000922653
0.000923645
0.000929067
0.00092897
0.000900289
0.000859634
0.000810985
0.000753974
0.000688177
0.000613127
0.00052835
0.000433481
0.000328604
0.000215373
0.000101631
2.02786e-05
3.05177e-06
4.74224e-06
3.25653e-05
0.00012921
0.000246774
0.000362379
0.000469969
0.000567611
0.000654726
0.000731288
0.000797519
0.000853758
0.000900392
0.000937821
0.00096644
0.000966005
0.000953468
0.000939429
0.000928932
0.000924426
0.000926722
0.000933372
0.00093415
0.000905325
0.000864656
0.00081591
0.000758707
0.000692611
0.000617142
0.000531818
0.000436273
0.00033061
0.000216546
0.000102087
2.03702e-05
3.02691e-06
4.77683e-06
3.27364e-05
0.000129712
0.000247635
0.000363583
0.000471492
0.000569431
0.00065682
0.000733632
0.000800087
0.00085652
0.000903313
0.000940864
0.000966794
0.000964737
0.000952261
0.000938949
0.000929418
0.000925949
0.000929297
0.000936966
0.000938589
0.000910078
0.000869418
0.000820599
0.000763229
0.000696863
0.00062101
0.000535177
0.000438997
0.000332589
0.000217726
0.000102566
2.04714e-05
3.00405e-06
4.80711e-06
3.28802e-05
0.000130127
0.00024835
0.000364585
0.000472764
0.000570954
0.000658579
0.000735609
0.000802264
0.000858876
0.000905822
0.000943495
0.00096656
0.000963485
0.000951142
0.000938536
0.000929928
0.00092743
0.000931739
0.000940323
0.000942716
0.000914543
0.000873906
0.000825031
0.000767519
0.000700912
0.000624711
0.000538414
0.00044165
0.000334549
0.000218934
0.000103091
2.05884e-05
2.98307e-06
4.8331e-06
3.3005e-05
0.000130478
0.000248946
0.000365413
0.000473808
0.000572201
0.00066002
0.000737235
0.000804066
0.00086084
0.000907932
0.00094573
0.000966343
0.000962368
0.000950159
0.000938218
0.00093048
0.000928903
0.000934117
0.000943548
0.000946618
0.000918693
0.000878086
0.000829165
0.000771523
0.000704697
0.000628173
0.000541444
0.000444138
0.000336392
0.000220074
0.000103592
2.07011e-05
2.96278e-06
4.85601e-06
3.31266e-05
0.000130809
0.000249481
0.000366129
0.000474687
0.000573232
0.000661197
0.000738557
0.000805531
0.000862446
0.000909673
0.000947595
0.0009663
0.000961555
0.000949422
0.00093805
0.000931115
0.000930418
0.000936504
0.000946711
0.000950335
0.000922531
0.000881958
0.000833001
0.000775247
0.000708221
0.000631404
0.000544281
0.000446476
0.000338139
0.000221174
0.000104093
2.08165e-05
2.94271e-06
4.8771e-06
3.324e-05
0.000131106
0.000249942
0.000366731
0.000475411
0.000574068
0.000662142
0.000739612
0.000806698
0.000863729
0.000911074
0.000949114
0.000966387
0.000961038
0.000948965
0.00093809
0.000931904
0.00093208
0.000939048
0.000950007
0.00095404
0.000926038
0.000885502
0.000836518
0.000778665
0.000711462
0.000634381
0.000546902
0.000448647
0.000339775
0.000222222
0.000104588
2.09324e-05
2.92273e-06
4.89761e-06
3.33393e-05
0.00013135
0.000250303
0.000367188
0.000475955
0.000574695
0.00066285
0.000740406
0.000807584
0.000864712
0.000912162
0.00095031
0.000966532
0.00096074
0.000948742
0.000938318
0.000932838
0.000933874
0.000941743
0.000953456
0.000957781
0.000929187
0.000888685
0.000839677
0.000781736
0.000714372
0.000637051
0.000549248
0.000450584
0.000341227
0.000223146
0.000105022
2.1032e-05
2.90208e-06
4.91884e-06
3.34152e-05
0.00013152
0.000250537
0.000367473
0.000476289
0.000575083
0.000663301
0.000740927
0.000808184
0.000865401
0.000912948
0.000951203
0.000966701
0.00096061
0.000948695
0.000938666
0.000933829
0.000935682
0.000944422
0.000956846
0.000961354
0.000931964
0.000891493
0.000842465
0.000784444
0.000716935
0.000639396
0.000551297
0.000452261
0.000342467
0.000223916
0.000105369
2.11084e-05
2.87991e-06
4.94254e-06
3.34897e-05
0.000131678
0.000250727
0.000367672
0.000476497
0.00057531
0.00066356
0.000741234
0.000808553
0.000865847
0.000913484
0.000951842
0.000966912
0.000960672
0.000948856
0.000939173
0.000934915
0.000937531
0.00094709
0.000960141
0.000964705
0.00093438
0.000893938
0.000844894
0.000786805
0.000719166
0.000641432
0.000553068
0.000453698
0.000343513
0.000224547
0.00010564
2.11626e-05
2.85564e-06
4.9693e-06
3.357e-05
0.000131847
0.000250911
0.000367838
0.000476639
0.000575439
0.000663693
0.00074139
0.000808754
0.00086611
0.000913826
0.000952279
0.00096694
0.000960704
0.000949113
0.000939836
0.000936173
0.000939549
0.00094992
0.000963569
0.00096807
0.000936462
0.000896045
0.000846988
0.000788842
0.000721094
0.000643192
0.000554598
0.000454939
0.000344415
0.000225091
0.000105874
2.12056e-05
2.83006e-06
4.99841e-06
3.36552e-05
0.000132024
0.000251097
0.000367983
0.000476733
0.000575491
0.000663724
0.000741423
0.000808812
0.000866216
0.000914
0.000952538
0.000966483
0.000960339
0.000949173
0.000940468
0.000937505
0.000941712
0.000952967
0.000967153
0.000970363
0.000938238
0.000897834
0.000848763
0.000790566
0.000722724
0.000644678
0.000555885
0.000455974
0.000345157
0.000225525
0.000106049
2.12317e-05
2.80371e-06
5.02832e-06
3.37457e-05
0.000132215
0.000251293
0.000368125
0.000476802
0.000575491
0.000663675
0.000741351
0.000808744
0.000866179
0.000914017
0.000952626
0.000965449
0.000959376
0.000948794
0.000940858
0.000938777
0.000943996
0.000956222
0.000970588
0.00097183
0.000939736
0.000899338
0.000850246
0.000791997
0.000724066
0.000645889
0.00055692
0.000456787
0.000345714
0.000225821
0.000106139
2.12331e-05
2.77636e-06
5.05822e-06
3.38233e-05
0.000132374
0.00025145
0.000368219
0.000476809
0.000575414
0.000663531
0.000741166
0.000808547
0.000865998
0.000913877
0.000952548
0.000964008
0.000957952
0.000948062
0.000941089
0.000940112
0.000946509
0.0009597
0.000974054
0.000973134
0.000941052
0.000900648
0.000851527
0.000793226
0.000725213
0.00064692
0.000557798
0.000457478
0.00034619
0.000226078
0.000106221
2.12327e-05
2.74911e-06
5.08864e-06
3.39084e-05
0.000132556
0.000251638
0.00036834
0.00047683
0.000575331
0.000663359
0.000740929
0.000808274
0.000865718
0.000913619
0.000952334
0.000962076
0.000955986
0.000946921
0.000941131
0.00094148
0.000949209
0.000963398
0.000977645
0.000974319
0.000942235
0.000901812
0.000852654
0.000794292
0.000726196
0.000647793
0.000558532
0.000458046
0.000346573
0.000226274
0.000106274
2.12255e-05
2.72278e-06
5.11888e-06
3.39905e-05
0.000132734
0.000251835
0.000368478
0.000476868
0.000575257
0.000663178
0.000740663
0.000807948
0.000865362
0.000913259
0.000951995
0.000959498
0.000953287
0.000945181
0.000940765
0.0009426
0.000951749
0.000966955
0.000981094
0.000975418
0.000943328
0.000902879
0.000853675
0.000795246
0.000727059
0.000648541
0.000559143
0.000458499
0.000346854
0.000226392
0.00010628
2.12063e-05
2.69721e-06
5.14905e-06
3.40851e-05
0.000132948
0.000252094
0.000368695
0.000476987
0.000575252
0.000663047
0.000740417
0.000807608
0.000864952
0.000912805
0.000950309
0.000956307
0.000950377
0.000943342
0.00094029
0.000943582
0.00095413
0.000970351
0.000984414
0.000976469
0.000944377
0.000903903
0.000854651
0.00079615
0.000727869
0.000649235
0.000559699
0.0004589
0.000347093
0.00022648
0.000106271
2.11854e-05
2.67304e-06
5.17875e-06
3.42032e-05
0.000133236
0.000252473
0.000369064
0.000477274
0.000575415
0.000663069
0.0007403
0.000807365
0.0008646
0.000912364
0.00094745
0.000952775
0.000947301
0.000941318
0.000939587
0.000944307
0.000956247
0.000973508
0.00098757
0.000977481
0.000945391
0.000904894
0.000855591
0.000797013
0.000728629
0.000649868
0.000560187
0.000459228
0.000347259
0.000226504
0.000106218
2.11529e-05
2.64992e-06
5.20837e-06
3.4336e-05
0.000133569
0.000252947
0.000369576
0.000477736
0.000575769
0.000663284
0.000740362
0.000807278
0.000864375
0.000912016
0.000944548
0.00094909
0.000944015
0.000939042
0.000938583
0.000944664
0.000957931
0.000976216
0.000990383
0.00097848
0.000946404
0.000905889
0.000856536
0.000797875
0.000729379
0.00065048
0.000560639
0.000459508
0.000347367
0.000226469
0.000106119
2.11086e-05
2.6278e-06
5.23888e-06
3.45e-05
0.000133997
0.000253579
0.000370299
0.000478448
0.000576394
0.000663773
0.000740688
0.000807431
0.000864358
0.000911839
0.000941736
0.000945413
0.000940641
0.000936576
0.000937284
0.000944623
0.000959124
0.000978393
0.000992776
0.000979478
0.000947434
0.000906914
0.000857519
0.000798781
0.000730171
0.000651128
0.000561117
0.000459802
0.000347479
0.000226428
0.000106014
2.10644e-05
2.60729e-06
5.27028e-06
3.46659e-05
0.000134446
0.000254285
0.00037116
0.000479355
0.000577258
0.000664525
0.000741285
0.000807846
0.000864581
0.000911869
0.000938979
0.000941724
0.000937199
0.000933963
0.000935726
0.000944189
0.0009598
0.000980002
0.000994727
0.000980458
0.000948459
0.000907945
0.000858515
0.000799702
0.000730978
0.000651784
0.000561594
0.000460081
0.000347561
0.000226348
0.000105876
2.10118e-05
2.58803e-06
5.30286e-06
3.48257e-05
0.000134893
0.000255022
0.000372098
0.000480391
0.000578293
0.000665482
0.000742106
0.000808494
0.000865031
0.000912109
0.000936383
0.000938146
0.00093379
0.000931265
0.000933927
0.000943319
0.000959832
0.00098083
0.000996015
0.00098142
0.000949477
0.000908978
0.00085952
0.000800633
0.000731792
0.000652441
0.000562059
0.000460332
0.000347598
0.000226213
0.000105688
2.09463e-05
2.5693e-06
5.33505e-06
3.49676e-05
0.000135307
0.000255735
0.000373043
0.000481471
0.000579413
0.00066656
0.000743076
0.000809306
0.000865654
0.000912522
0.000934157
0.000934942
0.000930641
0.000928654
0.000932007
0.000942095
0.00095927
0.000980897
0.000996636
0.000982357
0.000950486
0.000910017
0.000860544
0.000801594
0.000732644
0.000653138
0.000562565
0.000460621
0.000347666
0.000226099
0.000105513
2.08854e-05
2.55125e-06
5.36522e-06
3.50732e-05
0.000135627
0.00025633
0.000373877
0.000482468
0.000580489
0.000667634
0.00074408
0.000810187
0.000866371
0.000913048
0.000932463
0.00093234
0.000927978
0.000926333
0.000930144
0.000940681
0.000958288
0.000980395
0.00099675
0.000983229
0.000951441
0.000911014
0.000861536
0.000802536
0.000733486
0.000653836
0.000563078
0.00046092
0.000347744
0.000225992
0.00010534
2.0825e-05
2.53325e-06
5.39205e-06
3.51275e-05
0.000135801
0.000256705
0.000374457
0.000483212
0.000581338
0.000668523
0.000744949
0.000810982
0.00086705
0.000913578
0.000931412
0.000930515
0.000925961
0.000924418
0.000928418
0.000939128
0.000956903
0.000979299
0.000996297
0.000983989
0.000952293
0.000911917
0.000862445
0.000803403
0.000734263
0.000654476
0.000563538
0.000461171
0.00034778
0.000225849
0.00010514
2.07563e-05
2.51465e-06
5.41554e-06
3.51245e-05
0.000135794
0.000256779
0.000374658
0.000483548
0.000581787
0.000669048
0.000745507
0.00081153
0.000867549
0.000913999
0.000931281
0.000929841
0.000924932
0.000923204
0.000927099
0.000937715
0.000955426
0.000977945
0.000995539
0.000984601
0.000953005
0.000912692
0.000863242
0.000804175
0.000734963
0.000655055
0.000563954
0.000461393
0.000347799
0.000225699
0.000104938
2.06862e-05
2.49489e-06
5.43651e-06
3.50634e-05
0.000135594
0.0002565
0.000374383
0.000483338
0.000581673
0.000669035
0.000745579
0.000811664
0.000867717
0.000914176
0.000931937
0.000930269
0.000924924
0.00092278
0.000926316
0.000936613
0.000954075
0.000976561
0.000994636
0.000985016
0.000953525
0.000913287
0.000863874
0.000804802
0.000735538
0.000655532
0.000564292
0.000461559
0.000347784
0.000225533
0.00010473
2.06132e-05
2.4739e-06
5.45663e-06
3.4928e-05
0.000135151
0.000255785
0.000373516
0.000482438
0.000580828
0.000668298
0.000744975
0.000811196
0.000867377
0.000913948
0.000933148
0.000931636
0.000925879
0.000923182
0.00092619
0.000936023
0.000953113
0.000975442
0.000993816
0.000985208
0.000953824
0.000913673
0.000864318
0.000805268
0.000735985
0.000655916
0.000564572
0.000461702
0.000347774
0.000225392
0.000104549
2.05464e-05
2.45189e-06
5.47935e-06
3.47509e-05
0.000134546
0.000254725
0.000372126
0.000480881
0.000579247
0.0006668
0.000743629
0.000810041
0.000866429
0.000913211
0.000934579
0.000933638
0.000927616
0.000924371
0.000926818
0.000936168
0.000952884
0.000974996
0.000993401
0.000985143
0.000953857
0.000913797
0.000864517
0.000805516
0.00073625
0.000656162
0.00056476
0.000461801
0.000347764
0.000225283
0.000104404
2.04892e-05
2.42964e-06
5.50729e-06
3.45527e-05
0.000133838
0.000253399
0.000370292
0.000478727
0.000576962
0.00066454
0.00074151
0.000808141
0.000864795
0.000911868
0.000935744
0.000935763
0.000929769
0.000926169
0.000928194
0.000937191
0.000953651
0.000975558
0.000993683
0.000984813
0.000953603
0.000913628
0.000864431
0.000805502
0.000736287
0.000656224
0.000564815
0.000461817
0.000347721
0.000225177
0.000104277
2.0436e-05
2.40715e-06
5.54336e-06
3.4359e-05
0.0001331
0.000251926
0.000368153
0.000476116
0.000574093
0.000661609
0.000738673
0.000805515
0.00086246
0.000909874
0.000936143
0.000937443
0.000931886
0.000928294
0.000930205
0.000939121
0.000955547
0.000977321
0.000994827
0.000984223
0.000953056
0.000913145
0.000864026
0.000805179
0.000736041
0.000656038
0.00056467
0.00046169
0.000347589
0.000225032
0.000104143
2.03827e-05
2.38486e-06
5.59005e-06
3.42215e-05
0.00013248
0.000250528
0.000365971
0.000473314
0.000570893
0.000658227
0.000735299
0.000802298
0.00085951
0.000907267
0.000935171
0.00093793
0.00093332
0.000930272
0.00093254
0.000941772
0.000958465
0.000980198
0.000996748
0.00098341
0.000952251
0.000912381
0.000863328
0.000804564
0.000735518
0.000655609
0.000564325
0.000461413
0.000347361
0.00022484
0.000103996
2.03268e-05
2.3624e-06
5.6485e-06
3.41722e-05
0.000132076
0.000249382
0.000363979
0.000470581
0.000567615
0.000654626
0.000731583
0.000798643
0.000856055
0.000904112
0.000932529
0.000936765
0.000933639
0.000931788
0.000935011
0.000945062
0.000962396
0.000984226
0.000999517
0.000982406
0.000951218
0.000911359
0.000862353
0.000803667
0.000734722
0.000654931
0.000563772
0.000460983
0.000347044
0.000224617
0.000103856
2.02771e-05
2.34106e-06
5.71854e-06
3.42662e-05
0.00013205
0.000248763
0.000362537
0.000468322
0.000564678
0.000651204
0.000727882
0.000794853
0.000852334
0.000900584
0.000927976
0.000933534
0.000932408
0.000932464
0.00093732
0.00094875
0.000967114
0.000989184
0.00100296
0.000981242
0.000949993
0.000910112
0.000861126
0.0008025
0.000733652
0.000653987
0.000562976
0.000460346
0.000346565
0.000224285
0.000103661
2.02146e-05
2.32015e-06
5.79644e-06
3.4496e-05
0.000132413
0.000248759
0.000361827
0.000466799
0.000562391
0.000648293
0.000724522
0.000791226
0.000848606
0.00089689
0.000921145
0.000927731
0.000929163
0.000931896
0.000939123
0.000952611
0.000972526
0.000994406
0.00100304
0.000979919
0.000948592
0.000908664
0.000859668
0.000801076
0.000732304
0.000652757
0.000561901
0.000459453
0.000345871
0.000223794
0.000103376
2.01306e-05
2.29999e-06
5.87614e-06
3.48001e-05
0.000133017
0.000249216
0.000361744
0.000465977
0.000560788
0.000645974
0.000721616
0.000787884
0.000844983
0.000892723
0.000912134
0.00091947
0.000923901
0.000930042
0.000940442
0.000956636
0.000978173
0.000999016
0.00100165
0.000978449
0.000947046
0.000907059
0.000858035
0.000799454
0.000730739
0.000651296
0.000560589
0.000458332
0.000344973
0.000223141
0.000102992
2.00224e-05
2.2795e-06
5.95173e-06
3.50979e-05
0.000133662
0.000249879
0.000362052
0.000465677
0.000559758
0.000644195
0.000719139
0.000784801
0.000841397
0.00088213
0.000900661
0.000910284
0.000918092
0.000927701
0.000941293
0.000960134
0.000983114
0.00100287
0.00100016
0.000976888
0.000945405
0.000905347
0.000856276
0.000797681
0.000728998
0.000649637
0.000559066
0.000456998
0.000343876
0.000222327
0.00010251
1.98912e-05
2.25888e-06
6.01807e-06
3.52669e-05
0.000134025
0.000250287
0.000362242
0.000465425
0.000558917
0.000642694
0.00071697
0.000782002
0.000838029
0.000871571
0.000888806
0.000900436
0.000911537
0.000924628
0.000941408
0.000962814
0.000987146
0.00100595
0.000998616
0.000975283
0.000943726
0.000903593
0.000854459
0.000795829
0.000727151
0.000647846
0.00055739
0.0004555
0.000342618
0.000221372
0.000101935
1.97348e-05
2.23692e-06
6.07379e-06
3.52487e-05
0.000133917
0.0002501
0.000361862
0.000464717
0.000557762
0.000641012
0.000714722
0.00077919
0.000834577
0.000861867
0.000878032
0.000891376
0.000905301
0.00092143
0.000941041
0.000964754
0.000990336
0.00100838
0.000996991
0.000973623
0.000942009
0.000901807
0.000852606
0.000793926
0.000725231
0.000645957
0.000555595
0.00045387
0.000341233
0.000220316
0.000101302
1.95662e-05
2.21427e-06
6.12218e-06
3.50996e-05
0.000133452
0.000249382
0.000360887
0.000463444
0.000556139
0.000638984
0.000712247
0.000776249
0.000828456
0.00085404
0.000870118
0.00088462
0.000900433
0.000918747
0.000940525
0.000966091
0.000992724
0.00101014
0.000995234
0.000971862
0.000940217
0.000899964
0.000850702
0.000791968
0.000723239
0.00064397
0.000553669
0.000452079
0.000339666
0.000219081
0.000100538
1.93602e-05
2.18828e-06
6.16668e-06
3.49591e-05
0.00013298
0.000248564
0.000359724
0.00046195
0.000554321
0.000636844
0.000709787
0.000773478
0.000825054
0.000849594
0.000865233
0.000880171
0.000897109
0.000916952
0.000940441
0.000967579
0.000994609
0.00100856
0.000993246
0.000969904
0.00093826
0.000897985
0.000848687
0.000789912
0.000721154
0.000641885
0.000551634
0.000450167
0.000337972
0.00021773
9.96978e-05
1.91354e-05
2.15979e-06
6.20807e-06
3.49896e-05
0.000132937
0.000248256
0.000359043
0.000460865
0.000552848
0.000635021
0.000707662
0.000771108
0.00082407
0.00084833
0.000863474
0.00087836
0.000895813
0.000916655
0.000941432
0.000969616
0.000996196
0.00100617
0.000990909
0.000967608
0.00093599
0.000895725
0.000846422
0.000787634
0.000718866
0.000639609
0.000549411
0.000448063
0.000336088
0.000216205
9.87344e-05
1.88758e-05
2.12608e-06
6.24212e-06
3.53111e-05
0.000133689
0.000249053
0.000359585
0.000460986
0.00055249
0.000634204
0.00070645
0.00076959
0.000823979
0.00084963
0.000864387
0.000878902
0.000896446
0.000917862
0.000943473
0.000972155
0.000997709
0.00100339
0.000988127
0.000964839
0.000933243
0.000893001
0.000843718
0.000784947
0.000716203
0.000636985
0.000546864
0.000445661
0.000333935
0.000214459
9.76319e-05
1.85787e-05
2.08755e-06
6.25694e-06
3.58531e-05
0.000135095
0.000250922
0.000361484
0.000462584
0.0005536
0.00063476
0.000706472
0.000769147
0.000823154
0.000852374
0.000867415
0.000881365
0.000898695
0.000920421
0.000946559
0.000975297
0.000999269
0.00100023
0.000984862
0.000961524
0.000929919
0.000889696
0.000840454
0.00078174
0.000713067
0.000633942
0.000543951
0.000442939
0.000331507
0.000212491
9.63842e-05
1.82398e-05
2.0424e-06
6.24072e-06
3.65075e-05
0.000136872
0.000253483
0.00036438
0.00046539
0.000556016
0.000636619
0.000707721
0.000769812
0.000823318
0.000855812
0.000871495
0.000885072
0.000902119
0.000923995
0.000950415
0.000978813
0.00100072
0.000996627
0.000981033
0.000957553
0.000925878
0.000885648
0.000836449
0.000777823
0.000709276
0.000630319
0.000540543
0.000439816
0.000328774
0.000210315
9.50267e-05
1.78728e-05
1.99253e-06
6.1864e-06
3.7065e-05
0.00013847
0.000255988
0.000367467
0.000468644
0.000559077
0.000639239
0.000709767
0.000771252
0.000824194
0.000860109
0.000876482
0.000889721
0.000906429
0.000928282
0.000954717
0.000982347
0.00100094
0.000992518
0.000976579
0.000952862
0.000921049
0.000880775
0.000831617
0.000773108
0.000704748
0.000626045
0.000536591
0.000436264
0.000325728
0.000207932
9.35619e-05
1.74792e-05
1.93689e-06
6.09353e-06
3.73514e-05
0.000139404
0.000257642
0.000369756
0.000471293
0.00056177
0.000641708
0.000711828
0.000772813
0.000825246
0.000865478
0.000882618
0.000895456
0.000911854
0.000933823
0.000960161
0.000985539
0.000996658
0.000987696
0.000971324
0.000947285
0.000915268
0.000874902
0.000825765
0.000767386
0.000699262
0.000620898
0.000531889
0.000432117
0.000322263
0.000205308
9.20031e-05
1.70691e-05
1.87694e-06
5.97008e-06
3.72557e-05
0.000139349
0.000257886
0.000370476
0.000472424
0.000563118
0.000643056
0.00071299
0.000773667
0.00082574
0.000869761
0.000889861
0.000902455
0.000918452
0.000940287
0.00096595
0.000988345
0.000991603
0.000982035
0.000965171
0.00094076
0.000908494
0.000868006
0.000818877
0.000760636
0.000692782
0.00061482
0.000526349
0.00042726
0.000318248
0.00020232
9.02685e-05
1.6614e-05
1.81118e-06
5.83061e-06
3.67852e-05
0.000138288
0.000256575
0.000369315
0.000471561
0.00056252
0.000642599
0.00071253
0.000773076
0.000824927
0.000868676
0.000897668
0.000911667
0.00092678
0.00094768
0.000971804
0.000988805
0.000985601
0.000975412
0.000958042
0.000933246
0.000900722
0.000860111
0.000810998
0.000752919
0.000685377
0.000607886
0.000520051
0.000421772
0.000313757
0.000199032
8.84037e-05
1.61369e-05
1.74572e-06
5.69122e-06
3.60363e-05
0.000136424
0.000253917
0.000366394
0.000468694
0.000559826
0.000640068
0.00071009
0.000770639
0.000822422
0.000866066
0.000902113
0.000921946
0.000937209
0.000956692
0.000976643
0.000982281
0.000978406
0.000967646
0.000949816
0.00092468
0.000891944
0.000851258
0.000802215
0.000744361
0.000677209
0.000600279
0.000513185
0.000415838
0.000308952
0.000195559
8.6462e-05
1.56414e-05
1.67862e-06
5.56381e-06
3.51294e-05
0.000134026
0.000250256
0.00036205
0.000464097
0.000555213
0.000635529
0.000705625
0.000766205
0.000817959
0.000861516
0.000897427
0.000926158
0.000948079
0.000963402
0.000972169
0.000974349
0.000969869
0.000958605
0.00094038
0.000914967
0.000882081
0.000841385
0.000792483
0.000734933
0.00066826
0.000591997
0.000505771
0.000409499
0.000303899
0.000191988
8.45194e-05
1.51558e-05
1.61492e-06
5.45349e-06
3.41336e-05
0.000131255
0.000245823
0.000356543
0.000458009
0.00054886
0.000629075
0.00069913
0.000759661
0.000811323
0.000854724
0.0008904
0.000918793
0.000940245
0.000954991
0.000963161
0.00096479
0.000959835
0.000948188
0.000929684
0.000904104
0.000871177
0.000830575
0.000781918
0.000724776
0.00065869
0.000583204
0.000497956
0.000402868
0.000298651
0.000188303
8.25208e-05
1.46548e-05
1.55122e-06
5.36071e-06
3.30744e-05
0.00012817
0.000240725
0.000350018
0.000450591
0.000540918
0.000620833
0.000690698
0.000751074
0.000802568
0.000845761
0.000881171
0.000909235
0.000930302
0.000944622
0.000952356
0.000953572
0.000948259
0.000936336
0.000917657
0.000892017
0.000859155
0.000818757
0.000770453
0.00071383
0.000648442
0.000573851
0.000489705
0.000395932
0.000293234
0.000184565
8.05368e-05
1.41682e-05
1.49297e-06
5.28478e-06
3.19231e-05
0.0001247
0.000234896
0.000342452
0.00044188
0.000531492
0.000610965
0.000680543
0.000740701
0.000791989
0.000834957
0.000870106
0.000897872
0.000918608
0.00093258
0.000939971
0.000940874
0.000935306
0.000923209
0.000904457
0.000878863
0.000846179
0.0008061
0.000758271
0.000702288
0.000637719
0.000564136
0.000481196
0.000388825
0.000287707
0.000180756
7.85072e-05
1.36681e-05
1.43483e-06
5.22754e-06
3.06544e-05
0.000120777
0.000228248
0.000333774
0.000431852
0.000520616
0.000599565
0.000668807
0.00072872
0.000779794
0.000822542
0.000857449
0.000884946
0.000905394
0.000919073
0.000926184
0.000926844
0.000921093
0.000908896
0.000890147
0.000864675
0.000832247
0.000792572
0.000745306
0.000690058
0.000626407
0.000553937
0.000472312
0.000381458
0.000282038
0.000176907
7.64951e-05
1.31851e-05
1.38213e-06
5.1934e-06
2.92723e-05
0.000116388
0.000220735
0.000323925
0.000420463
0.000508277
0.000586661
0.000655561
0.000715244
0.00076613
0.000808692
0.000843397
0.000870672
0.000890884
0.000904329
0.000911226
0.000911715
0.000905856
0.000893637
0.000874972
0.000849707
0.000817624
0.000778444
0.000731835
0.000677415
0.000614773
0.000543498
0.000463256
0.000373967
0.000276267
0.000172962
7.44065e-05
1.26783e-05
1.32723e-06
5.18913e-06
2.7843e-05
0.00011167
0.000212477
0.000312988
0.000407769
0.000494527
0.000572316
0.000640888
0.000700381
0.00075113
0.00079356
0.000828117
0.000855224
0.000875256
0.000888523
0.000895263
0.000895637
0.000889729
0.000877545
0.000859019
0.000834016
0.000802332
0.000763702
0.000717806
0.000664273
0.000602702
0.00053269
0.000453908
0.000366267
0.000270379
0.000168989
7.23436e-05
1.21923e-05
1.27797e-06
5.22165e-06
2.6453e-05
0.000106831
0.000203707
0.000301157
0.000393918
0.000479481
0.000556628
0.000624889
0.000684239
0.000734914
0.000777279
0.000811755
0.000838761
0.000858679
0.000871837
0.00087849
0.000878823
0.000872939
0.000860867
0.000842561
0.000817899
0.000786696
0.000748697
0.000703593
0.00065102
0.000590583
0.000521882
0.000444582
0.000358585
0.000264476
0.000164953
7.02076e-05
1.16822e-05
1.22617e-06
5.29722e-06
2.52464e-05
0.000102257
0.000194918
0.000288927
0.000379355
0.000463525
0.000539934
0.000607856
0.000667078
0.00071771
0.000760052
0.00079449
0.000821437
0.000841284
0.000854374
0.000860986
0.000861323
0.000855513
0.000843603
0.000825565
0.000801296
0.000770623
0.000733305
0.000689041
0.000637479
0.000578228
0.000510891
0.000435133
0.000350845
0.000258583
0.000160988
6.81597e-05
1.12128e-05
1.18221e-06
5.4165e-06
2.43382e-05
9.83173e-05
0.000186656
0.000276899
0.000364668
0.000447194
0.000522702
0.000590194
0.000649241
0.000699815
0.00074213
0.000776537
0.000803438
0.000823233
0.000836283
0.000842888
0.000843274
0.000837589
0.000825902
0.000808202
0.000784401
0.000754338
0.000717783
0.000674442
0.000623965
0.000565963
0.000500033
0.00042583
0.000343223
0.000252741
0.000156986
6.6038e-05
1.07187e-05
1.13441e-06
5.56744e-06
2.37965e-05
9.52743e-05
0.000179404
0.000265408
0.000350666
0.000431411
0.000505796
0.000572656
0.000631365
0.000681746
0.000723925
0.00075821
0.000784993
0.000804679
0.000817647
0.000824216
0.000824635
0.000819073
0.000807614
0.000790264
0.000766949
0.00073752
0.000701755
0.000659368
0.000610015
0.000553307
0.000488842
0.000416265
0.000335427
0.000246823
0.000153005
6.39888e-05
1.02658e-05
1.09346e-06
5.72219e-06
2.35174e-05
9.27725e-05
0.000170427
0.000245599
0.000327588
0.000413823
0.000490626
0.000556374
0.00061437
0.00066425
0.000706036
0.000739988
0.00076648
0.000785924
0.00079871
0.000805178
0.000805591
0.000800135
0.00078891
0.000771933
0.000749139
0.000720389
0.000685467
0.000644089
0.000595912
0.000540544
0.000477571
0.000406622
0.000327525
0.000240743
0.000148806
6.17567e-05
9.76186e-06
1.04391e-06
5.84673e-06
2.34147e-05
9.07277e-05
0.000159906
0.000229234
0.000308713
0.000396075
0.000478393
0.000542621
0.000599401
0.000648285
0.000689234
0.000722473
0.000748362
0.000767311
0.000779716
0.000785925
0.000786212
0.000780771
0.00076971
0.000753052
0.000730739
0.000702636
0.000668531
0.000628146
0.000581139
0.00052712
0.000465674
0.000396421
0.000319175
0.000234369
0.000144493
5.95457e-05
9.29211e-06
9.99756e-07
5.91522e-06
2.35351e-05
8.98059e-05
0.000153287
0.000218126
0.000295006
0.000382403
0.000468479
0.000531145
0.000586472
0.000634031
0.000673787
0.00070597
0.000730953
0.000749154
0.00076098
0.000766782
0.000766838
0.000761345
0.00075041
0.000734056
0.000712227
0.000684783
0.000651516
0.000612145
0.000566324
0.00051366
0.000453727
0.000386134
0.000310674
0.000227766
0.000139897
5.71185e-05
8.76426e-06
9.45173e-07
5.9172e-06
2.34379e-05
8.86048e-05
0.000147937
0.000209624
0.000284387
0.00037109
0.000457433
0.000520465
0.000574339
0.000620518
0.000658978
0.000689977
0.000713914
0.000731232
0.000742354
0.00074764
0.000747375
0.000741753
0.00073088
0.000714778
0.000693384
0.000666558
0.000634089
0.000595697
0.000551037
0.000499717
0.000441314
0.000375434
0.000301866
0.000221012
0.00013533
5.48187e-05
8.29663e-06
8.98767e-07
5.88071e-06
2.27176e-05
8.5863e-05
0.000140779
0.000200298
0.000274099
0.000360707
0.000447148
0.000508551
0.000561254
0.000606266
0.000643594
0.000673534
0.000696523
0.000713036
0.000723517
0.000728345
0.000727812
0.000722116
0.000711363
0.000695569
0.000674669
0.000648519
0.000616902
0.000579533
0.000536064
0.000486097
0.0004292
0.000364973
0.000293193
0.000214257
0.000130638
5.23827e-05
7.78418e-06
8.43351e-07
5.84657e-06
2.16699e-05
8.21284e-05
0.000132098
0.000189706
0.0002632
0.00035024
0.000435677
0.000494723
0.000546527
0.000590612
0.000627012
0.000656063
0.000678245
0.000694068
0.000704005
0.000708454
0.000707718
0.000701999
0.000691402
0.000675944
0.000655555
0.000630088
0.000599324
0.000562978
0.000520705
0.000472108
0.000416762
0.00035427
0.000284409
0.000207565
0.000126174
5.0193e-05
7.35655e-06
8.00107e-07
5.83966e-06
2.05597e-05
7.68315e-05
0.000122959
0.000178558
0.000251339
0.000338468
0.000421063
0.000479255
0.00053026
0.000573554
0.000609171
0.000637478
0.000658991
0.000674259
0.000683784
0.000687984
0.000687173
0.000681558
0.000671243
0.000656241
0.000636478
0.0006118
0.000581985
0.000546742
0.000505722
0.000458522
0.000404713
0.00034389
0.000275825
0.0002009
0.000121568
4.7833e-05
6.87329e-06
7.47676e-07
5.85526e-06
1.97332e-05
7.15258e-05
0.000114523
0.000167681
0.000239153
0.000326021
0.000406076
0.000463254
0.000513345
0.000555769
0.000590557
0.000618097
0.000638939
0.000653663
0.000662799
0.000666778
0.000665924
0.000660444
0.000650441
0.000635921
0.000616805
0.000592933
0.000564079
0.000529953
0.000490205
0.00044444
0.000392237
0.000333198
0.000267098
0.000194305
0.000117222
4.57434e-05
6.48129e-06
7.0881e-07
5.87141e-06
1.91323e-05
6.72434e-05
0.000107126
0.000157322
0.000226658
0.000312695
0.000390918
0.000446928
0.000495989
0.000537462
0.000571372
0.000598124
0.000618301
0.000632513
0.000641309
0.000645137
0.000644322
0.000639072
0.000629483
0.000615554
0.000597195
0.00057424
0.000546452
0.000513532
0.000475125
0.000430826
0.000380208
0.000322868
0.000258573
0.000187693
0.000112655
4.34221e-05
6.02054e-06
6.5858e-07
5.87864e-06
1.87266e-05
6.38723e-05
0.000100891
0.000147975
0.000214712
0.000299472
0.000375887
0.000430558
0.000478432
0.000518817
0.000551732
0.000577607
0.000597053
0.000610707
0.000619137
0.000622798
0.000622019
0.000617
0.00060783
0.000594497
0.000576901
0.000554867
0.000528153
0.000496457
0.000459426
0.000416659
0.000367733
0.000312248
0.000249971
0.000181249
0.000108458
4.14471e-05
5.66741e-06
6.22491e-07
5.86259e-06
1.84484e-05
6.12621e-05
9.57251e-05
0.000139649
0.000203336
0.000286257
0.000360974
0.000414116
0.000460644
0.000499821
0.000531656
0.000556602
0.000575298
0.000588402
0.000596499
0.000600046
0.00059937
0.000594663
0.000586002
0.000573363
0.000556634
0.000535626
0.000510086
0.000479702
0.000444107
0.000402895
0.000355631
0.000301909
0.000241486
0.000174704
0.000103961
3.9196e-05
5.23564e-06
5.72911e-07
5.82804e-06
1.82264e-05
5.9103e-05
9.13105e-05
0.00013215
0.000192503
0.000273129
0.000346306
0.000397727
0.000442731
0.000480539
0.000511162
0.000535075
0.00055294
0.000565436
0.000573156
0.000576557
0.000575958
0.000571541
0.000563368
0.000551403
0.00053552
0.000515524
0.000491154
0.000462093
0.000427976
0.000388396
0.000342922
0.00029115
0.000232834
0.000168296
9.98682e-05
3.73394e-05
4.92099e-06
5.38469e-07
5.78343e-06
1.79414e-05
5.71041e-05
8.72296e-05
0.000124943
0.000181507
0.000259227
0.00033131
0.00038089
0.000424288
0.000460682
0.00049008
0.000512969
0.000530035
0.000541971
0.000549373
0.000552698
0.000552252
0.000548203
0.0005406
0.000529389
0.000514434
0.000495525
0.000472391
0.000444707
0.000412096
0.000374143
0.000330406
0.000280467
0.000224068
0.000161527
9.52219e-05
3.50533e-05
4.50034e-06
4.89176e-07
5.74046e-06
1.75996e-05
5.51614e-05
8.33839e-05
0.000118032
0.000170517
0.00024485
0.00031621
0.000363816
0.000405492
0.000440377
0.000468476
0.000490289
0.000506518
0.000517865
0.000524928
0.000528155
0.000527841
0.000524137
0.000517075
0.00050659
0.000492534
0.00047469
0.000452783
0.000426486
0.000395428
0.000359196
0.000317355
0.00026949
0.000215333
0.000155163
9.12548e-05
3.33182e-05
4.22088e-06
4.56827e-07
5.72002e-06
1.70951e-05
5.30139e-05
7.93348e-05
0.00011081
0.000158702
0.00022897
0.000300189
0.000345814
0.000385805
0.000419257
0.000446154
0.000466997
0.000482497
0.000493361
0.000500184
0.000503406
0.000503309
0.000500025
0.000493572
0.000483871
0.000470762
0.000454019
0.000433359
0.000408449
0.00037891
0.000344325
0.000304254
0.000258274
0.000206115
0.000148065
8.64371e-05
3.10178e-05
3.81513e-06
4.07961e-07
5.73045e-06
1.66222e-05
5.09932e-05
7.54712e-05
0.000103834
0.000146962
0.000212729
0.000283938
0.000327519
0.000365776
0.000397764
0.00042344
0.000443305
0.000458073
0.000468453
0.000475035
0.000478245
0.000478351
0.00047547
0.000469602
0.00046066
0.000448476
0.000432822
0.000413415
0.000389926
0.000361983
0.000329176
0.000291072
0.000247251
0.000197423
0.000141824
8.26417e-05
2.94293e-05
3.57136e-06
3.77996e-07
5.77677e-06
1.62105e-05
4.92782e-05
7.18754e-05
9.70272e-05
0.000134992
0.000195418
0.00026681
0.000308371
0.000344991
0.000375651
0.00040026
0.000419298
0.000433474
0.000443494
0.000449939
0.000453224
0.000453603
0.000451175
0.000445926
0.000437757
0.000426494
0.000411901
0.00039369
0.000371531
0.00034505
0.000313837
0.00027746
0.000235503
0.000187687
0.000134272
7.75075e-05
2.70255e-05
3.1673e-06
3.305e-07
5.82888e-06
1.6165e-05
4.8603e-05
6.9518e-05
9.16237e-05
0.000124513
0.000179133
0.000250541
0.000289894
0.000324722
0.000353939
0.000377398
0.00039555
0.000409094
0.000418723
0.000425009
0.000428348
0.000428981
0.000426988
0.000422337
0.000414925
0.000404576
0.000391055
0.000374082
0.000353332
0.000328445
0.000299023
0.000264643
0.000224886
0.000179448
0.00012851
7.41525e-05
2.57097e-05
2.97632e-06
3.05432e-07
5.85759e-06
1.63764e-05
4.90477e-05
6.85472e-05
8.76816e-05
0.000115307
0.000163099
0.000233843
0.000271618
0.000304639
0.000332471
0.000354872
0.000372238
0.000385238
0.000394554
0.000400739
0.000404176
0.000405088
0.000403537
0.000399472
0.00039278
0.000383279
0.000370728
0.000354843
0.0003353
0.000311736
0.000283759
0.000250953
0.000212918
0.00016938
0.000120578
6.87113e-05
2.3213e-05
2.58164e-06
2.61159e-07
5.80874e-06
1.69129e-05
5.0785e-05
6.9481e-05
8.61315e-05
0.000109019
0.000149308
0.000212946
0.000255578
0.000286412
0.000312589
0.000333736
0.000350163
0.0003625
0.000371401
0.000377401
0.000380863
0.000381996
0.00038084
0.000377324
0.000371334
0.000362685
0.000351144
0.000336433
0.000318243
0.000296226
0.000270003
0.000239168
0.00020331
0.000162113
0.000115705
6.60589e-05
2.22658e-05
2.45262e-06
2.41701e-07
5.68721e-06
1.72739e-05
5.30081e-05
7.15439e-05
8.62264e-05
0.000104574
0.000136346
0.000190042
0.000239877
0.000268668
0.000293355
0.000313435
0.000329107
0.000340932
0.000349533
0.000355426
0.000358959
0.000360328
0.000359554
0.000356544
0.000351173
0.000343249
0.000332529
0.00031873
0.000301536
0.000280599
0.000255547
0.000225989
0.00019155
0.000151979
0.000107521
6.03495e-05
1.9694e-05
2.07233e-06
2.00576e-07
5.48797e-06
1.76032e-05
5.55221e-05
7.46994e-05
8.81716e-05
0.000102775
0.00012686
0.000170462
0.000225104
0.000252243
0.000275593
0.00029462
0.00030948
0.000320709
0.00032892
0.000334621
0.000338151
0.000339701
0.000339274
0.000336758
0.000332026
0.000324891
0.000315115
0.000302428
0.000286524
0.000267072
0.000243709
0.000216045
0.000183683
0.000146301
0.000103993
5.86595e-05
1.91907e-05
2.00779e-06
1.85929e-07
5.28318e-06
1.73797e-05
5.75059e-05
7.79325e-05
9.09962e-05
0.000102709
0.000119858
0.000152813
0.000205929
0.0002339
0.000256677
0.000275434
0.000290141
0.000301275
0.000309455
0.000315213
0.00031891
0.000320745
0.000320715
0.000318688
0.000314529
0.000308037
0.000298961
0.000287012
0.000271873
0.000253202
0.000230641
0.000203827
0.000172427
0.000136243
9.55794e-05
5.26708e-05
1.65524e-05
1.64504e-06
1.47956e-07
5.06776e-06
1.75703e-05
5.95938e-05
8.18658e-05
9.53211e-05
0.000105469
0.000118063
0.000141843
0.000183973
0.000217922
0.000239509
0.000257629
0.000271865
0.000282595
0.000290452
0.000296014
0.00029968
0.000301674
0.000301989
0.000300473
0.000296995
0.000291362
0.000283333
0.000272627
0.000258933
0.000241913
0.000221198
0.000196393
0.000167091
0.000132953
9.40486e-05
5.22971e-05
1.657e-05
1.64324e-06
1.3693e-07
4.89402e-06
1.70405e-05
6.05423e-05
8.48869e-05
9.96008e-05
0.000109368
0.000118825
0.000134617
0.000165001
0.000203349
0.000221014
0.000238117
0.000252168
0.00026306
0.000271189
0.000277062
0.000281073
0.000283466
0.000284243
0.000283243
0.000280327
0.000275295
0.00026789
0.000257814
0.000244733
0.00022829
0.000208114
0.00018384
0.000155151
0.000121903
8.45286e-05
4.54826e-05
1.37032e-05
1.2849e-06
1.00977e-07
4.6559e-06
1.7469e-05
6.1434e-05
8.79045e-05
0.000103893
0.000113842
0.000122159
0.000134642
0.000159401
0.000199505
0.000214889
0.00022808
0.000239407
0.00024826
0.000254832
0.000259541
0.000262766
0.000264744
0.000265441
0.000264649
0.00026221
0.000257912
0.000251496
0.000242662
0.00023108
0.000216394
0.000198228
0.000176192
0.000149883
0.00011896
8.34786e-05
4.54305e-05
1.37991e-05
1.28512e-06
8.9627e-08
4.37927e-06
1.54807e-05
5.81654e-05
8.63359e-05
0.000103999
0.000114541
0.00012216
0.000131852
0.000150061
0.000182107
0.000208213
0.000216808
0.000224587
0.000231025
0.000236126
0.000240037
0.000242917
0.000244867
0.000245796
0.000245457
0.000243663
0.000240186
0.00023475
0.000227029
0.000216643
0.000203156
0.000186088
0.000164934
0.000139246
0.000108824
7.42698e-05
3.8602e-05
1.09998e-05
9.57835e-07
5.76485e-08
3.92791e-06
1.47859e-05
5.47853e-05
8.45277e-05
0.000104145
0.000114827
0.000120804
0.000127676
0.000141927
0.000171079
0.000210415
0.0002158
0.000219624
0.000222306
0.000224222
0.000225592
0.000226495
0.000226916
0.000226613
0.000225246
0.000222588
0.000218381
0.000212339
0.000204152
0.000193509
0.000180105
0.000163655
0.000143905
0.000120645
9.37747e-05
6.36583e-05
3.27053e-05
9.23602e-06
7.97177e-07
3.68266e-08
3.51648e-06
1.11722e-05
4.53206e-05
7.22943e-05
9.44199e-05
0.000109665
0.00011725
0.000120763
0.00012613
0.000140839
0.000172939
0.000203514
0.000206101
0.000206636
0.000205875
0.000204733
0.000203748
0.000203078
0.000202486
0.000201622
0.000200225
0.000198027
0.000194735
0.000190003
0.000183402
0.000174383
0.000162252
0.00014616
0.000125181
9.86116e-05
6.68275e-05
3.34326e-05
8.75531e-06
6.71353e-07
2.20276e-08
3.06731e-06
1.1916e-05
4.75295e-05
7.00216e-05
8.65034e-05
0.000101139
0.000112653
0.000119403
0.000123058
0.000128029
0.000140373
0.000167218
0.000201888
0.000204276
0.000205003
0.000204803
0.00020424
0.000203568
0.000202563
0.000200665
0.000197409
0.000192347
0.000185081
0.000175283
0.000162713
0.000147249
0.000128925
0.000107985
8.4922e-05
6.06437e-05
3.67927e-05
1.65602e-05
4.27152e-06
3.21673e-07
3.99223e-09
2.83679e-06
1.27822e-05
4.90577e-05
7.17633e-05
8.46538e-05
9.5049e-05
0.000104841
0.000113292
0.000120006
0.000125654
0.000132061
0.000142087
0.000158951
0.000181768
0.000184321
0.000178276
0.000170545
0.000161893
0.00015284
0.000143872
0.000135447
0.000127842
0.000121141
0.000115279
0.000110113
0.000105428
0.000100807
9.5273e-05
8.67929e-05
7.21074e-05
4.86866e-05
2.14651e-05
4.5557e-06
2.79767e-07
1.27781e-08
2.37384e-06
2.03316e-05
6.2924e-05
8.19093e-05
0.000100624
0.000123592
0.000145254
0.000163671
0.000180846
0.000198066
0.000213569
0.000225633
0.000236302
0.000245701
0.000253846
0.000260805
0.000266389
0.000270288
0.00027204
0.00027096
0.000266293
0.000257251
0.00024304
0.000222956
0.000196614
0.000164357
0.000127782
9.01365e-05
5.60679e-05
2.99991e-05
1.35232e-05
4.6567e-06
8.56558e-07
6.71733e-08
4.40998e-08
1.96129e-06
3.63465e-05
3.7923e-05
4.30663e-05
5.73715e-05
6.68321e-05
7.75856e-05
9.02164e-05
9.89086e-05
0.000105442
0.000111555
0.000116984
0.000121447
0.000124578
0.000126088
0.000125932
0.000124048
0.000120364
0.00011492
0.000107837
9.93018e-05
8.95439e-05
7.88068e-05
6.73569e-05
5.55224e-05
4.37021e-05
3.2426e-05
2.23556e-05
1.40282e-05
7.84376e-06
3.88108e-06
1.74665e-06
9.43934e-07
4.47252e-07
1.43983e-07
4.30025e-06
2.73063e-05
2.22321e-05
1.44992e-05
1.47061e-05
1.77552e-05
2.05777e-05
2.47336e-05
2.84179e-05
3.17367e-05
3.47558e-05
3.69897e-05
3.74232e-05
3.76855e-05
3.77711e-05
3.76923e-05
3.74704e-05
3.70929e-05
3.65669e-05
3.58903e-05
3.50639e-05
3.40882e-05
3.29665e-05
3.17081e-05
3.03345e-05
2.88878e-05
2.74443e-05
2.61334e-05
2.51583e-05
2.48101e-05
2.54163e-05
2.70652e-05
2.8879e-05
2.17441e-05
5.69319e-07
6.46437e-08
1.27789e-06
3.70496e-06
6.43531e-06
8.99729e-06
1.14661e-05
1.3619e-05
1.54815e-05
1.66812e-05
1.63138e-05
1.68634e-05
1.29053e-05
1.19737e-05
9.70129e-06
4.84269e-06
2.17868e-06
9.82397e-07
3.85104e-06
1.3344e-05
1.3578e-05
1.28901e-05
1.21663e-05
1.15575e-05
1.0929e-05
1.03003e-05
9.76655e-06
9.38439e-06
9.15649e-06
9.05343e-06
9.03857e-06
9.08033e-06
9.17129e-06
9.32062e-06
2.78564e-06
4.09469e-08
3.90081e-07
8.01442e-07
4.80299e-06
1.11184e-05
1.72837e-05
2.22786e-05
2.55141e-05
2.70239e-05
2.72541e-05
2.67276e-05
2.59864e-05
2.52993e-05
2.48228e-05
2.55248e-05
2.56214e-05
2.36159e-05
2.36979e-05
2.44575e-05
2.49997e-05
2.51163e-05
2.48788e-05
2.44967e-05
2.4061e-05
2.3555e-05
2.29794e-05
2.23253e-05
2.15816e-05
2.08928e-05
2.03625e-05
2.00566e-05
2.00032e-05
1.96469e-05
8.26039e-06
3.307e-06
7.31309e-07
7.1891e-07
5.11842e-06
3.05714e-05
4.86866e-05
7.11827e-05
9.88778e-05
0.000100974
9.1486e-05
7.42722e-05
5.22285e-05
2.51064e-05
1.67492e-05
1.28585e-05
1.35896e-05
1.54574e-05
1.72473e-05
1.87875e-05
1.98494e-05
2.03536e-05
2.03473e-05
2.01086e-05
1.99114e-05
1.97641e-05
1.96015e-05
1.93713e-05
1.90739e-05
1.84894e-05
1.79402e-05
1.83197e-05
1.77545e-05
1.6598e-05
1.35802e-05
4.80484e-06
2.62871e-06
1.07411e-06
4.70644e-07
2.05458e-07
2.17003e-06
1.10191e-05
2.35902e-05
3.57673e-05
4.77286e-05
5.91358e-05
6.40725e-05
6.63788e-05
6.68929e-05
6.66836e-05
6.62427e-05
6.53038e-05
6.32824e-05
5.94365e-05
5.27791e-05
4.26856e-05
2.98549e-05
1.73568e-05
1.09047e-05
1.18333e-05
1.44955e-05
1.62037e-05
1.58132e-05
1.56616e-05
1.65284e-05
1.89524e-05
2.21438e-05
2.1111e-05
1.75009e-05
1.02297e-05
6.19033e-06
2.77491e-06
1.65128e-06
9.61212e-07
2.75829e-06
1.8988e-05
4.4247e-05
6.47466e-05
7.82916e-05
8.61847e-05
9.00547e-05
9.09972e-05
8.97852e-05
8.70219e-05
8.32926e-05
7.91158e-05
7.48644e-05
7.07442e-05
6.68031e-05
6.29644e-05
5.91452e-05
5.53646e-05
4.46989e-05
3.43954e-05
2.78578e-05
2.34003e-05
2.02769e-05
1.85507e-05
1.90582e-05
2.36893e-05
2.65596e-05
2.59542e-05
2.20855e-05
1.83732e-05
1.12044e-05
7.35296e-06
3.38734e-06
2.00653e-06
1.07106e-06
3.54202e-06
2.31706e-05
4.73317e-05
6.67582e-05
8.3919e-05
9.90589e-05
0.000110766
0.000114708
0.000115484
0.000113616
0.000109599
0.000103983
9.736e-05
9.03118e-05
8.33499e-05
7.68834e-05
7.11662e-05
6.6264e-05
6.20103e-05
5.69111e-05
4.29631e-05
3.31928e-05
2.68716e-05
2.28793e-05
2.10605e-05
2.32591e-05
3.30181e-05
3.26118e-05
2.63538e-05
2.0597e-05
1.33348e-05
9.07942e-06
3.72425e-06
2.35794e-06
1.22512e-06
3.50749e-06
2.21034e-05
4.95859e-05
7.07605e-05
8.87408e-05
0.00010532
0.000119426
0.000125954
0.000129133
0.000129466
0.000127353
0.00012319
0.000117436
0.000110621
0.000103311
9.60537e-05
8.93092e-05
8.34212e-05
7.84913e-05
7.44037e-05
7.09044e-05
5.98209e-05
4.82675e-05
4.08455e-05
3.73885e-05
3.85909e-05
4.62574e-05
4.96733e-05
3.90076e-05
2.58912e-05
1.50141e-05
1.05824e-05
4.34734e-06
2.56683e-06
1.3684e-06
4.7419e-06
2.87837e-05
6.036e-05
8.26067e-05
0.000101309
0.000118538
0.000134624
0.00014683
0.000150758
0.000151566
0.000149791
0.00014585
0.000140122
0.000133037
0.000125097
0.000116854
0.000108842
0.00010158
9.536e-05
9.02547e-05
8.61477e-05
8.27874e-05
7.77078e-05
6.57053e-05
5.85852e-05
5.90525e-05
6.78034e-05
6.12739e-05
4.55763e-05
2.92589e-05
1.67702e-05
1.18793e-05
4.60268e-06
2.80917e-06
1.46639e-06
4.52485e-06
2.74512e-05
5.94285e-05
8.31399e-05
0.000103359
0.000121947
0.000139774
0.000156018
0.000163857
0.000167307
0.000167836
0.000165857
0.000161735
0.000155841
0.000148603
0.000140515
0.000132098
0.000123973
0.000116569
0.000110109
0.000104662
0.000100158
9.64382e-05
9.32849e-05
9.04252e-05
8.73122e-05
8.23915e-05
7.20864e-05
5.22137e-05
3.22767e-05
1.79929e-05
1.30053e-05
5.00495e-06
2.98611e-06
1.50465e-06
4.96035e-06
2.93976e-05
6.30602e-05
9.22549e-05
0.000115123
0.000135381
0.000154634
0.000171206
0.000179769
0.000184782
0.00018671
0.000185994
0.000183011
0.000178092
0.000171569
0.000163823
0.000155288
0.000146623
0.000138323
0.000130667
0.000123809
0.000117797
0.000112582
0.000107978
0.000103531
9.81849e-05
8.95976e-05
7.35969e-05
5.06963e-05
3.17092e-05
1.89898e-05
1.39173e-05
5.16708e-06
3.17597e-06
1.63615e-06
5.42251e-06
3.15382e-05
6.66286e-05
9.53503e-05
0.000118778
0.000140387
0.000161621
0.000180838
0.000191519
0.000198713
0.000202755
0.000204003
0.000202803
0.000199464
0.000194272
0.000187524
0.00017956
0.000171067
0.000162583
0.000154358
0.000146538
0.000139209
0.000132386
0.000125906
0.000119197
0.000110879
9.8206e-05
7.72692e-05
5.18203e-05
3.16751e-05
2.00285e-05
1.49344e-05
5.4499e-06
3.3198e-06
1.61378e-06
5.42426e-06
3.18111e-05
6.82132e-05
0.000101816
0.000130133
0.00015487
0.000175778
0.000191908
0.00020425
0.000213091
0.000218736
0.000221515
0.000221756
0.000219761
0.0002158
0.000210122
0.000202991
0.000195063
0.000186844
0.000178501
0.000170146
0.000161856
0.000153605
0.000145104
0.000135541
0.000123213
0.000105293
7.90456e-05
5.19483e-05
3.08627e-05
2.09669e-05
1.57157e-05
5.54449e-06
3.46308e-06
1.77193e-06
6.15923e-06
3.4975e-05
7.31664e-05
0.000106243
0.000133294
0.00015865
0.000183242
0.000201938
0.000215736
0.000226172
0.000233491
0.000237954
0.000239839
0.000239415
0.000236935
0.000232628
0.000226719
0.000219791
0.000212277
0.000204282
0.000195892
0.000187139
0.000177887
0.000167667
0.000155426
0.000139267
0.00011656
8.57633e-05
5.61733e-05
3.20871e-05
2.24472e-05
1.6857e-05
5.81418e-06
3.57449e-06
1.7631e-06
6.10344e-06
3.5255e-05
7.5146e-05
0.000112047
0.000144001
0.000171554
0.000194613
0.000213654
0.000229016
0.000240958
0.000249731
0.000255591
0.000258807
0.000259651
0.000258385
0.000255248
0.000250461
0.000244495
0.000237684
0.000230103
0.000221794
0.00021268
0.000202441
0.000190361
0.000175136
0.000154806
0.000127298
9.26586e-05
6.11925e-05
3.36348e-05
2.39175e-05
1.7809e-05
5.93179e-06
3.68177e-06
1.92526e-06
7.12245e-06
3.94965e-05
8.19671e-05
0.000120532
0.000152304
0.000180105
0.000206037
0.000226293
0.000242769
0.000255974
0.000266132
0.000273453
0.000278149
0.000280444
0.000280565
0.000278735
0.000275163
0.000270228
0.00026419
0.000257104
0.000248959
0.000239569
0.000228462
0.000214744
0.000197003
0.000173428
0.000142595
0.000105599
7.12626e-05
3.75058e-05
2.62147e-05
1.92113e-05
6.24353e-06
3.76589e-06
1.94129e-06
7.22621e-06
4.04348e-05
8.51056e-05
0.000126836
0.000163309
0.000194384
0.000220502
0.000242226
0.000260073
0.000274463
0.000285734
0.00029416
0.000299976
0.000303396
0.000304622
0.00030385
0.000301256
0.000297112
0.000291595
0.000284722
0.000276405
0.000266354
0.000253976
0.000238298
0.00021796
0.000191505
0.000158256
0.000120066
7.65307e-05
4.16574e-05
2.87934e-05
2.06159e-05
6.48244e-06
3.84229e-06
2.10454e-06
8.2178e-06
4.41537e-05
9.10726e-05
0.000134753
0.00017318
0.000206263
0.000234351
0.000257915
0.00027743
0.000293329
0.000305984
0.000315709
0.000322771
0.000327398
0.000329788
0.000330113
0.000328518
0.000325182
0.000320209
0.00031356
0.000305083
0.000294419
0.000280935
0.000263681
0.000241449
0.000213103
0.000178369
0.000139163
8.56321e-05
4.76793e-05
3.21714e-05
2.24052e-05
6.90344e-06
3.90457e-06
2.12919e-06
8.33422e-06
4.50983e-05
9.41079e-05
0.00014059
0.000182043
0.000218103
0.000248957
0.000274988
0.000296643
0.000314373
0.000328594
0.000339675
0.000347936
0.000353643
0.000357018
0.000358235
0.000357418
0.000354681
0.000350052
0.000343432
0.000334588
0.00032309
0.00030826
0.00028916
0.000264702
0.000233976
0.000196958
0.000155545
9.50067e-05
5.42536e-05
3.59623e-05
2.44048e-05
7.28124e-06
3.96151e-06
2.27251e-06
9.27102e-06
4.857e-05
9.98637e-05
0.000148382
0.000191841
0.000229987
0.000263018
0.000291257
0.000315073
0.000334844
0.000350943
0.000363718
0.000373485
0.00038052
0.000385053
0.000387261
0.000387261
0.00038512
0.000380814
0.000374188
0.000364938
0.000352568
0.000336356
0.000315379
0.000288639
0.000255401
0.000215828
0.00017184
0.00010606
6.19457e-05
4.05943e-05
2.69811e-05
7.76794e-06
4.01002e-06
2.31123e-06
9.53032e-06
5.00283e-05
0.000103641
0.000154983
0.000201347
0.00024231
0.000278008
0.000308742
0.000334868
0.000356754
0.000374763
0.000389239
0.000400496
0.000408813
0.000414419
0.000417488
0.000418124
0.000416358
0.00041212
0.000405201
0.00039524
0.000381685
0.000363795
0.000340675
0.000311434
0.000275515
0.000233272
0.000186717
0.000116554
6.98193e-05
4.56065e-05
2.98536e-05
8.22136e-06
4.05163e-06
2.43644e-06
1.0454e-05
5.33973e-05
0.000109373
0.000162965
0.000211546
0.000254735
0.00029267
0.000325634
0.000353947
0.00037794
0.000397934
0.000414235
0.000427128
0.000436864
0.000443654
0.00044765
0.000448934
0.000447505
0.000443256
0.000435939
0.000425154
0.000410329
0.000390733
0.000365535
0.000333967
0.000295632
0.000251009
0.000201697
0.000127764
7.8518e-05
5.13691e-05
3.32731e-05
8.77888e-06
4.08654e-06
2.47972e-06
1.07979e-05
5.50844e-05
0.00011335
0.000169666
0.000221058
0.000266988
0.00030753
0.000342939
0.00037353
0.000399626
0.000421541
0.000439572
0.000453986
0.000465018
0.000472854
0.000477623
0.000479381
0.000478093
0.000473617
0.000465678
0.000453855
0.000437578
0.000416152
0.000388836
0.000355006
0.000314444
0.000267781
0.000211858
0.000138443
8.75152e-05
5.76128e-05
3.71015e-05
9.34074e-06
4.11369e-06
2.58288e-06
1.1664e-05
5.81925e-05
0.000118705
0.000177235
0.000230848
0.000279017
0.000321798
0.000359415
0.000392145
0.000420275
0.000444084
0.000463838
0.000479774
0.000492096
0.000500963
0.000506474
0.000508657
0.000507449
0.000502683
0.000494068
0.000481181
0.000463478
0.000440321
0.000411072
0.000375245
0.000332772
0.000284382
0.000222959
0.000149718
9.71209e-05
6.45095e-05
4.14806e-05
9.99526e-06
4.1337e-06
2.62078e-06
1.20873e-05
6.0117e-05
0.000122869
0.000183929
0.000240107
0.000290775
0.000335943
0.000375817
0.000410659
0.000440742
0.00046633
0.000487668
0.000504971
0.000518422
0.000528151
0.000534235
0.000536674
0.000535383
0.000530178
0.000520762
0.000506726
0.000487563
0.000462709
0.00043163
0.000393976
0.000349808
0.000299929
0.0002342
0.000161014
0.000106995
7.18946e-05
4.63263e-05
1.06631e-05
4.14512e-06
2.69961e-06
1.28945e-05
6.30373e-05
0.000128003
0.000191267
0.000249623
0.000302434
0.0003497
0.000391608
0.000428395
0.000460306
0.000487575
0.000510419
0.000529022
0.000543535
0.000554064
0.000560655
0.000563288
0.000561862
0.000556183
0.00054596
0.000530811
0.000510275
0.000483864
0.000451148
0.000411894
0.000366269
0.000315117
0.000246179
0.000172789
0.00011733
7.99396e-05
5.19321e-05
1.14497e-05
4.14999e-06
2.73324e-06
1.34235e-05
6.52949e-05
0.000132551
0.00019827
0.000259037
0.000314141
0.000363559
0.00040747
0.000446109
0.000479715
0.000508509
0.000532691
0.000552425
0.000567839
0.000579013
0.000585972
0.000588677
0.000587012
0.000580784
0.000569713
0.000553444
0.000531572
0.000503683
0.000469441
0.000428716
0.000381761
0.000329452
0.000257999
0.000184626
0.000128209
8.85244e-05
5.59486e-05
1.21786e-05
4.14882e-06
2.79729e-06
1.42333e-05
6.82506e-05
0.000137809
0.000205819
0.000268794
0.000325994
0.000377386
0.000423143
0.00046349
0.000498656
0.00052885
0.000554251
0.000575005
0.000591218
0.000602947
0.000610198
0.000612916
0.000610977
0.000604187
0.000592283
0.000574944
0.000551813
0.00052255
0.000486904
0.00044483
0.000396652
0.000343263
0.000270025
0.00019698
0.00013986
9.76991e-05
5.94776e-05
1.2858e-05
4.14066e-06
2.83398e-06
1.48728e-05
7.0839e-05
0.000142791
0.000213281
0.00027864
0.000338056
0.000391469
0.000439051
0.00048103
0.000517639
0.000549086
0.000575546
0.000597155
0.000614006
0.000626142
0.000633557
0.000636183
0.000633893
0.000626499
0.000613755
0.000595372
0.000571043
0.000540494
0.000503549
0.000460236
0.000410931
0.000356528
0.000282193
0.000209771
0.000152127
0.000107351
6.27567e-05
1.3448e-05
4.12409e-06
2.8947e-06
1.57214e-05
7.39201e-05
0.000148285
0.000221164
0.000288788
0.000350303
0.000405634
0.000454946
0.000498467
0.000536426
0.000569027
0.000596442
0.000618799
0.000636182
0.000648628
0.00065612
0.000658588
0.000655905
0.000647892
0.000634325
0.000614948
0.000589504
0.000557777
0.000519655
0.000475227
0.000424897
0.000369538
0.000294731
0.000223055
0.000164992
0.000117529
6.59247e-05
1.3995e-05
4.10249e-06
2.94157e-06
1.64774e-05
7.68029e-05
0.000153644
0.000229034
0.000299041
0.000362739
0.000420027
0.000471061
0.000516074
0.000555302
0.000588957
0.000617212
0.000640197
0.000657995
0.00067064
0.000678114
0.000680346
0.000677217
0.00066856
0.000654174
0.000633836
0.000607334
0.000574507
0.000535302
0.000489853
0.000438582
0.00038232
0.000307991
0.000237096
0.000178579
0.000128289
6.89936e-05
1.45044e-05
4.07499e-06
3.01085e-06
1.74084e-05
8.00844e-05
0.000159436
0.000237273
0.000309568
0.000375354
0.000434513
0.000487197
0.000533635
0.000574067
0.000608706
0.000637729
0.000661272
0.000679418
0.000692204
0.000699616
0.000701587
0.000698009
0.000688729
0.000673567
0.000652335
0.000624858
0.000591021
0.000550817
0.000504412
0.000452227
0.000395035
0.000321861
0.000252266
0.00019333
0.000137896
7.21e-05
1.50422e-05
4.0437e-06
3.08124e-06
1.83347e-05
8.33678e-05
0.000165327
0.000245727
0.000320401
0.000388322
0.000449352
0.000503642
0.000551434
0.000592977
0.000628498
0.000658185
0.00068218
0.000700577
0.000713421
0.000720705
0.000722375
0.000718331
0.00070844
0.000692541
0.000670472
0.000642091
0.000607314
0.000566166
0.000518831
0.000465716
0.000407519
0.000336495
0.000269214
0.000209159
0.000144277
7.46958e-05
1.55078e-05
4.01049e-06
3.17156e-06
1.93528e-05
8.67971e-05
0.00017133
0.000254236
0.00033124
0.000401262
0.000464138
0.000520013
0.000569128
0.000611742
0.000648094
0.000678384
0.000702768
0.000721355
0.000734202
0.000741318
0.000742663
0.000738157
0.000727684
0.000711107
0.000688286
0.000659102
0.000623497
0.000581507
0.000533316
0.000479297
0.000420056
0.000352108
0.00028674
0.000220633
0.000150265
7.70376e-05
1.59197e-05
3.97972e-06
3.26413e-06
2.03595e-05
9.01779e-05
0.000177318
0.000262773
0.000342136
0.000414266
0.000478976
0.000536405
0.0005868
0.00063043
0.000667548
0.000698369
0.000723067
0.000741768
0.000754547
0.000761433
0.000762408
0.000757413
0.000746354
0.00072912
0.000705592
0.000675672
0.000639314
0.00059656
0.000547579
0.000492719
0.000432552
0.000367938
0.000299974
0.000229373
0.000155794
7.91878e-05
1.63006e-05
3.9475e-06
3.3682e-06
2.13822e-05
9.35102e-05
0.000183162
0.000271082
0.000352746
0.000426954
0.000493483
0.00055246
0.000604129
0.000648766
0.000686635
0.000717966
0.000742951
0.000761734
0.000774413
0.000781039
0.000781617
0.000776115
0.000764467
0.000746585
0.000722377
0.000691765
0.000654717
0.00061128
0.000561629
0.000506111
0.00044528
0.000379862
0.000310576
0.000237751
0.000161122
8.1341e-05
1.67086e-05
3.9086e-06
3.4704e-06
2.2345e-05
9.66465e-05
0.000188726
0.000279046
0.00036296
0.000439204
0.000507523
0.000568026
0.000620955
0.000666588
0.000705197
0.000737029
0.00076229
0.000781144
0.000793712
0.000800066
0.00080024
0.000794226
0.000781989
0.000763468
0.000738599
0.000707331
0.000669653
0.000625632
0.000575444
0.000519404
0.000457963
0.000391643
0.000320871
0.000245777
0.000166189
8.33836e-05
1.70963e-05
3.86336e-06
3.57296e-06
2.32765e-05
9.96353e-05
0.000193991
0.000286562
0.000372601
0.000450788
0.000520835
0.000582828
0.000637
0.000683626
0.000722984
0.00075533
0.000780884
0.000799828
0.0008123
0.0008184
0.000818184
0.000811675
0.000798863
0.000779723
0.000754222
0.00072234
0.000684094
0.000639562
0.000588903
0.000532368
0.000470277
0.000402957
0.000330628
0.000253295
0.000170884
8.52358e-05
1.74318e-05
3.81365e-06
3.66643e-06
2.41394e-05
0.000102419
0.000198926
0.000293618
0.000381654
0.000461668
0.000533346
0.000596758
0.000652126
0.000699722
0.000739826
0.000772699
0.000798572
0.00081764
0.000830061
0.000835951
0.000835392
0.000828433
0.000815095
0.000795384
0.000769302
0.00073686
0.000698096
0.000653091
0.000601972
0.000544913
0.000482109
0.000413724
0.000339826
0.000260342
0.000175287
8.70058e-05
1.77592e-05
3.75875e-06
3.75448e-06
2.49607e-05
0.000105061
0.000203601
0.000300277
0.000390163
0.000471859
0.000545035
0.000609753
0.000666229
0.000714736
0.000755554
0.000788949
0.000815159
0.00083439
0.000846813
0.00085256
0.00085173
0.000844394
0.000830596
0.000810371
0.000783749
0.000750772
0.000711499
0.000666009
0.000614396
0.000556756
0.000493173
0.000423682
0.000348238
0.000266707
0.000179196
8.8517e-05
1.80313e-05
3.70438e-06
3.83842e-06
2.57531e-05
0.000107613
0.000208129
0.000306708
0.000398331
0.000481572
0.000556098
0.000621974
0.000679424
0.000728725
0.000770164
0.000804015
0.000830524
0.000849909
0.000862349
0.000867993
0.000866953
0.000859312
0.000845128
0.000824174
0.0007966
0.000763805
0.000724096
0.000678185
0.000626097
0.000567851
0.000503439
0.000432805
0.000355819
0.000272311
0.000182478
8.96051e-05
1.81868e-05
3.66153e-06
3.92372e-06
2.65504e-05
0.000110159
0.000212612
0.000313043
0.000406332
0.000491025
0.000566788
0.000633697
0.000691988
0.000741953
0.000783893
0.000818093
0.000844814
0.000864283
0.000876697
0.000882215
0.000880966
0.000873047
0.000854882
0.000829926
0.000802971
0.00077408
0.000736039
0.000689858
0.000637356
0.000578502
0.000513232
0.000441434
0.000362929
0.000277533
0.000185539
9.06467e-05
1.83411e-05
3.62428e-06
4.01087e-06
2.73071e-05
0.000112568
0.000216896
0.000319141
0.000414066
0.000500174
0.000577123
0.000644999
0.000704056
0.000754603
0.000796959
0.000831427
0.000858283
0.000877771
0.0008901
0.000895446
0.000893951
0.000880008
0.000858173
0.000833979
0.000809957
0.000784314
0.000747492
0.00070111
0.000648235
0.000588793
0.000522679
0.000449742
0.000369778
0.000282613
0.000188634
9.18829e-05
1.85835e-05
3.58394e-06
4.10035e-06
2.79994e-05
0.000114754
0.000220837
0.000324817
0.000421324
0.000508807
0.000586908
0.000655715
0.000715497
0.000766581
0.000809308
0.000844
0.000870952
0.000890424
0.000902639
0.000907783
0.000898679
0.000880535
0.000858727
0.000836508
0.000815386
0.000792882
0.000758463
0.00071193
0.000658714
0.000598704
0.000531756
0.000457683
0.000376256
0.000287317
0.000191373
9.28543e-05
1.87524e-05
3.54288e-06
4.19059e-06
2.8649e-05
0.000116779
0.00022448
0.000330071
0.000428066
0.000516855
0.000596056
0.000665753
0.000726221
0.000777804
0.000820862
0.000855738
0.000882747
0.000902167
0.000914237
0.000913078
0.000899936
0.000881116
0.000860306
0.00084
0.000821225
0.000801161
0.000769143
0.00072247
0.000668918
0.000608348
0.00054058
0.00046539
0.000382524
0.000291838
0.000193956
9.37023e-05
1.88698e-05
3.50413e-06
4.27755e-06
2.92157e-05
0.000118546
0.000227687
0.000334742
0.00043412
0.00052415
0.000604416
0.000674987
0.000736138
0.000788219
0.000831605
0.000866656
0.000893708
0.000913057
0.00092338
0.000916442
0.000901149
0.000882427
0.000863218
0.000845445
0.000829412
0.000811331
0.000779537
0.000732713
0.000678828
0.000617715
0.000549165
0.000472921
0.00038871
0.000296397
0.000196705
9.47894e-05
1.90717e-05
3.46468e-06
4.35845e-06
2.96956e-05
0.000120034
0.000230406
0.000338732
0.000439336
0.000530498
0.000611766
0.000683188
0.000745026
0.00079763
0.000841376
0.000876633
0.000903749
0.000923036
0.000927848
0.000918217
0.000902214
0.000884258
0.000866981
0.000851946
0.000838769
0.0008224
0.00078936
0.000742381
0.000688182
0.000626562
0.000557281
0.000480053
0.00039459
0.000300772
0.00019941
9.59292e-05
1.9301e-05
3.41632e-06
4.42659e-06
3.00987e-05
0.000121286
0.000232705
0.00034211
0.000443764
0.000535912
0.000618076
0.000690286
0.00075279
0.000805929
0.000850077
0.000885606
0.000912868
0.000932185
0.000933149
0.000921162
0.00090437
0.000887001
0.000871406
0.000858783
0.000848121
0.000833175
0.000798536
0.000751392
0.00069689
0.000634792
0.000564821
0.000486657
0.000399993
0.000304729
0.000201771
9.6844e-05
1.94548e-05
3.35921e-06
4.47898e-06
3.04408e-05
0.000122376
0.000234692
0.000345006
0.000447541
0.00054052
0.000623451
0.00069635
0.000759452
0.000813095
0.000857649
0.000893487
0.000920966
0.000940414
0.000940134
0.00092642
0.000908746
0.000891721
0.000877546
0.000867023
0.00085846
0.000844359
0.000807215
0.000759866
0.000705046
0.000642484
0.000571862
0.000492825
0.000405039
0.000308409
0.000203934
9.7635e-05
1.95666e-05
3.30051e-06
4.51611e-06
3.07202e-05
0.000123323
0.000236449
0.000347579
0.000450888
0.000544586
0.000628172
0.000701657
0.000765273
0.000819355
0.000864274
0.000900407
0.000928118
0.000947746
0.000947642
0.000932787
0.000914445
0.000897878
0.000885262
0.000877018
0.000870533
0.0008558
0.000815504
0.000767888
0.000712706
0.000649662
0.000578408
0.000498557
0.000409746
0.000311879
0.000206018
9.84343e-05
1.96879e-05
3.24453e-06
4.54497e-06
3.09728e-05
0.000124216
0.000238117
0.000350018
0.000454045
0.000548389
0.000632549
0.000706534
0.000770581
0.000825028
0.00087025
0.000906633
0.000934549
0.000954349
0.00095411
0.000938441
0.000919921
0.000904376
0.000894021
0.000888574
0.000883195
0.000863816
0.000823369
0.000775491
0.00071993
0.000656381
0.000584483
0.000503836
0.000414063
0.00031507
0.000207969
9.9232e-05
1.98282e-05
3.19392e-06
4.56832e-06
3.12079e-05
0.000125072
0.000239734
0.000352396
0.00045712
0.000552078
0.000636764
0.000711194
0.00077561
0.00083036
0.000875827
0.000912407
0.000940483
0.000960418
0.000958659
0.000942304
0.000924226
0.000910259
0.000902405
0.000899608
0.000895108
0.000871521
0.000830959
0.000782852
0.000726929
0.000662874
0.00059032
0.000508863
0.000418134
0.000318056
0.000209801
0.000100014
1.99866e-05
3.15343e-06
4.58747e-06
3.14286e-05
0.000125869
0.000241247
0.000354637
0.000460034
0.000555583
0.000640771
0.000715616
0.00078037
0.000835389
0.000881066
0.000917809
0.000946012
0.00096605
0.000961699
0.00094472
0.000927442
0.000915231
0.000909745
0.000909291
0.000905646
0.000878925
0.000838341
0.000790093
0.000733888
0.000669387
0.000596211
0.000513955
0.000422261
0.000321084
0.00021167
0.000100846
2.01753e-05
3.12452e-06
4.60306e-06
3.16626e-05
0.000126673
0.000242717
0.000356781
0.000462805
0.000558906
0.000644562
0.000719794
0.000784859
0.00084012
0.000885984
0.000922865
0.000951171
0.000971291
0.000964066
0.000946647
0.000930253
0.000919643
0.000916225
0.000917819
0.000914999
0.000885856
0.000845315
0.000797009
0.00074061
0.000675752
0.000602031
0.000519028
0.000426391
0.00032411
0.000213521
0.000101654
2.0358e-05
3.09978e-06
4.6201e-06
3.19271e-05
0.000127519
0.00024419
0.000358875
0.000465476
0.000562088
0.000648179
0.00072377
0.000789122
0.000844607
0.000890637
0.000927635
0.000956019
0.000974921
0.0009659
0.000948422
0.000932766
0.000923486
0.000921851
0.000925272
0.000923297
0.000892205
0.000851728
0.000803405
0.000746874
0.000681735
0.000607552
0.000523881
0.000430364
0.000327019
0.000215274
0.000102386
2.05133e-05
3.07408e-06
4.64419e-06
3.22071e-05
0.000128374
0.000245627
0.000360882
0.000468016
0.000565105
0.000651608
0.000727542
0.00079317
0.000848866
0.000895051
0.000932154
0.000960598
0.000976626
0.000966696
0.00094942
0.000934575
0.00092651
0.000926395
0.000931389
0.000930305
0.000897984
0.000857564
0.000809229
0.000752589
0.000687211
0.000612625
0.000528358
0.000434035
0.000329695
0.000216852
0.000102999
2.06315e-05
3.04888e-06
4.67875e-06
3.2491e-05
0.000129201
0.000246982
0.000362749
0.000470371
0.000567908
0.000654807
0.000731075
0.000796975
0.000852882
0.000899219
0.000936418
0.000964905
0.00097675
0.000965848
0.000949103
0.000935313
0.000928459
0.000929634
0.000935918
0.000935784
0.000903273
0.000862898
0.000814543
0.000757795
0.000692195
0.000617241
0.000532432
0.000437375
0.000332117
0.000218256
0.000103512
2.07261e-05
3.02758e-06
4.72439e-06
3.27479e-05
0.00012992
0.00024814
0.00036434
0.00047239
0.00057034
0.00065762
0.000734225
0.000800409
0.000856541
0.000903044
0.000940348
0.000968876
0.000975095
0.000963172
0.00094735
0.00093493
0.000929357
0.000931652
0.000938967
0.000939826
0.000908162
0.000867825
0.000819443
0.000762588
0.00069678
0.000621492
0.000536196
0.000440479
0.000334394
0.000219602
0.000104031
2.08348e-05
3.01096e-06
4.78053e-06
3.29643e-05
0.000130498
0.00024906
0.000365599
0.000474002
0.000572311
0.000659942
0.000736875
0.000803349
0.000859723
0.00090641
0.000943836
0.000972418
0.000971608
0.000958646
0.00094414
0.000933428
0.000929265
0.000932602
0.000940777
0.000942674
0.000912687
0.00087238
0.000823959
0.000766993
0.000700984
0.000625388
0.000539654
0.000443354
0.000336539
0.000220919
0.000104587
2.09666e-05
2.99676e-06
4.84136e-06
3.31156e-05
0.000130881
0.000249683
0.000366462
0.000475124
0.000573715
0.000661642
0.000738869
0.000805616
0.000862224
0.000909087
0.000946616
0.0009687
0.000965829
0.000953611
0.000940694
0.000931528
0.00092856
0.000932741
0.00094164
0.000944648
0.00091689
0.000876606
0.000828136
0.000771046
0.000704833
0.00062894
0.000542801
0.000445976
0.000338516
0.000222168
0.000105153
2.1112e-05
2.98298e-06
4.89435e-06
3.31695e-05
0.000131011
0.000249957
0.000366886
0.000475714
0.000574499
0.000662649
0.00074012
0.000807115
0.000863955
0.000911012
0.000948674
0.00096417
0.000959721
0.000948397
0.000937109
0.000929449
0.000927569
0.000932455
0.000941959
0.000946085
0.000920822
0.000880565
0.000832042
0.000774823
0.000708402
0.000632218
0.000545696
0.000448387
0.000340346
0.00022335
0.000105719
2.1264e-05
2.96794e-06
4.92489e-06
3.31043e-05
0.000130847
0.00024985
0.000366871
0.000475801
0.000574707
0.000663007
0.000740656
0.000807854
0.000864906
0.000912166
0.000950003
0.000961237
0.000955297
0.000944343
0.000934228
0.000927809
0.000926892
0.000932425
0.000942493
0.000947625
0.0009245
0.000884284
0.000835718
0.000778376
0.000711756
0.000635294
0.000548412
0.000450659
0.000342093
0.000224514
0.000106313
2.14252e-05
2.95114e-06
4.92684e-06
3.29659e-05
0.000130463
0.000249401
0.000366445
0.000475429
0.000574409
0.000662805
0.000740581
0.000807935
0.00086517
0.000912632
0.000950678
0.000961076
0.000954038
0.000942734
0.000933007
0.000927333
0.00092719
0.000933401
0.000944118
0.000950033
0.000927884
0.000887726
0.000839136
0.000781691
0.000714891
0.000638174
0.000550963
0.000452807
0.000343768
0.000225663
0.000106927
2.15902e-05
2.93248e-06
4.90859e-06
3.2825e-05
0.000130069
0.000248854
0.000365824
0.000474792
0.000573794
0.000662243
0.000740104
0.000807576
0.000864965
0.000912618
0.000950892
0.00096338
0.000955847
0.00094366
0.000933543
0.00092804
0.00092842
0.000935301
0.00094669
0.000953088
0.000930881
0.0008908
0.00084221
0.000784687
0.000717733
0.000640787
0.000553275
0.00045475
0.00034528
0.000226697
0.000107476
2.17307e-05
2.91088e-06
4.88646e-06
3.27229e-05
0.000129735
0.000248324
0.000365172
0.000474067
0.000573039
0.000661501
0.000739411
0.000806974
0.000864498
0.000912335
0.000950845
0.000967597
0.000960198
0.000946823
0.000935713
0.000929876
0.000930515
0.000937988
0.000949955
0.000956473
0.00093344
0.000893453
0.000844895
0.000787334
0.000720268
0.000643135
0.000555366
0.000456517
0.000346664
0.00022765
0.000107984
2.18548e-05
2.88685e-06
4.87578e-06
3.27403e-05
0.000129666
0.000248036
0.00036469
0.000473451
0.000572345
0.000660776
0.000738703
0.00080633
0.000863968
0.000911974
0.00095072
0.000973086
0.000966431
0.000951848
0.000939435
0.000932956
0.000933695
0.000941738
0.000954232
0.000960475
0.000935515
0.00089562
0.000847113
0.000789548
0.000722414
0.000645146
0.000557173
0.000458055
0.000347873
0.000228485
0.000108428
2.19555e-05
2.86072e-06
4.88329e-06
3.28721e-05
0.000129889
0.000248099
0.000364536
0.000473108
0.000571867
0.000660224
0.000738133
0.000805794
0.000863521
0.000911673
0.000950628
0.000978177
0.00097279
0.000957527
0.00094408
0.000937044
0.000937918
0.000946568
0.000959537
0.000965119
0.000937123
0.000897285
0.000848823
0.000791272
0.000724107
0.000646751
0.000558627
0.000459296
0.000348844
0.000229143
0.000108768
2.20268e-05
2.83366e-06
4.90558e-06
3.30895e-05
0.00013035
0.000248501
0.000364749
0.00047311
0.000571689
0.000659918
0.000737759
0.000805412
0.000863188
0.000911446
0.000950561
0.000980848
0.000976904
0.000961922
0.000948299
0.000941241
0.000942507
0.000951808
0.00096511
0.000969722
0.000938327
0.00089849
0.000850036
0.000792485
0.000725293
0.000647872
0.000559634
0.000460134
0.000349466
0.000229521
0.000108928
2.20484e-05
2.80497e-06
4.93539e-06
3.33682e-05
0.000131004
0.000249232
0.000365363
0.000473521
0.00057188
0.000659916
0.000737613
0.000805182
0.000862937
0.000911234
0.000950442
0.000980924
0.000978242
0.000964289
0.000951412
0.00094509
0.000947311
0.000957564
0.000970594
0.000970931
0.000939239
0.000899358
0.000850872
0.000793291
0.00072606
0.000648575
0.000560241
0.000460609
0.000349776
0.000229658
0.000108944
2.2031e-05
2.77466e-06
4.97193e-06
3.36545e-05
0.000131683
0.000250032
0.000366103
0.000474104
0.000572266
0.000660104
0.00073763
0.000805072
0.00086275
0.000911023
0.000950256
0.000979384
0.000977388
0.000964903
0.00095357
0.000948816
0.000952604
0.000963906
0.000976109
0.000971729
0.00093994
0.000899979
0.000851427
0.000793789
0.000726499
0.000648946
0.000560525
0.000460783
0.000349825
0.000229596
0.000108845
2.19834e-05
2.74365e-06
5.01854e-06
3.3904e-05
0.000132275
0.000250739
0.000366767
0.00047464
0.000572638
0.000660305
0.000737675
0.000804987
0.000862571
0.000910785
0.000949993
0.000975724
0.000974041
0.000963435
0.000954364
0.000951838
0.000957609
0.000970105
0.000981477
0.000972439
0.000940518
0.000900439
0.000851782
0.000794049
0.000726671
0.00064903
0.000560514
0.000460672
0.000349619
0.00022933
0.000108619
2.19018e-05
2.71252e-06
5.0722e-06
3.41487e-05
0.000132871
0.000251486
0.000367491
0.000475243
0.000573075
0.000660563
0.000737763
0.000804927
0.000862388
0.000910506
0.000949637
0.000970194
0.000968296
0.000959782
0.000953464
0.000953641
0.000961719
0.000975596
0.000986344
0.000973128
0.000941061
0.000900836
0.000852039
0.000794172
0.000726669
0.000648908
0.00056028
0.000460335
0.000349203
0.000228893
0.000108285
2.17906e-05
2.68209e-06
5.12919e-06
3.43644e-05
0.000133417
0.00025223
0.000368269
0.00047594
0.000573622
0.000660932
0.000737947
0.000804937
0.00086224
0.000910217
0.000949221
0.000963305
0.00096075
0.000954372
0.000951027
0.000954111
0.000964629
0.000980028
0.000990493
0.000973857
0.000941651
0.000901268
0.000852301
0.000794262
0.000726588
0.000648666
0.00055989
0.000459821
0.000348607
0.000228295
0.000107837
2.16472e-05
2.65263e-06
5.18744e-06
3.45599e-05
0.000133938
0.000252994
0.000369117
0.000476744
0.000574296
0.000661425
0.000738237
0.000805019
0.00086212
0.000909903
0.0009474
0.000955499
0.000952272
0.000947861
0.000947358
0.000953269
0.000966175
0.000983149
0.000993707
0.000974695
0.000942378
0.000901842
0.000852693
0.000794451
0.000726566
0.000648435
0.000559465
0.000459233
0.000347912
0.000227594
0.000107307
2.14787e-05
2.62428e-06
5.23984e-06
3.4721e-05
0.000134402
0.000253752
0.000370021
0.000477649
0.000575091
0.000662034
0.000738613
0.000805135
0.000861961
0.000909457
0.000940415
0.000946561
0.000944074
0.000941634
0.000943479
0.000951687
0.000966615
0.000985076
0.000996083
0.000975692
0.000943313
0.000902656
0.000853334
0.000794884
0.000726767
0.000648396
0.000559196
0.000458765
0.000347305
0.000226952
0.000106809
2.13203e-05
2.59857e-06
5.28106e-06
3.48115e-05
0.000134734
0.000254426
0.000370933
0.00047865
0.000576048
0.000662843
0.000739203
0.000805458
0.000861988
0.000909172
0.000934491
0.000938606
0.000936494
0.000935636
0.000939457
0.000949622
0.000966316
0.000986214
0.000997963
0.000976846
0.00094446
0.000903721
0.000854252
0.0007956
0.000727242
0.000648608
0.000559142
0.000458468
0.000346823
0.000226389
0.000106346
2.11693e-05
2.57538e-06
5.30918e-06
3.48588e-05
0.000134993
0.000255068
0.000371896
0.000479795
0.000577226
0.000663927
0.000740094
0.000806088
0.000862313
0.000909168
0.000930095
0.000932245
0.00093011
0.000930324
0.00093563
0.000947322
0.000965472
0.000986702
0.000999402
0.000978134
0.000945799
0.000905026
0.000855445
0.000796611
0.000728014
0.000649102
0.000559342
0.000458385
0.000346503
0.000225931
0.00010593
2.10304e-05
2.55477e-06
5.32475e-06
3.48515e-05
0.000135133
0.000255594
0.000372809
0.000480984
0.000578547
0.000665236
0.000741271
0.000807041
0.00086298
0.000909515
0.000927355
0.000927734
0.000925201
0.000925919
0.000932136
0.000944853
0.000964079
0.000986466
0.00100028
0.00097951
0.000947285
0.000906537
0.000856892
0.000797913
0.000729101
0.000649919
0.000559854
0.000458585
0.000346421
0.000225649
0.000105615
2.09208e-05
2.53688e-06
5.33527e-06
3.48489e-05
0.000135277
0.000256118
0.000373752
0.000482269
0.000580044
0.000666805
0.00074278
0.000808381
0.000864072
0.000910308
0.000926011
0.000924895
0.000921705
0.00092239
0.000928906
0.000942085
0.000961935
0.000985219
0.00100027
0.000980888
0.000948827
0.000908156
0.000858499
0.000799417
0.000730418
0.000650978
0.000560604
0.000459
0.000346511
0.000225482
0.000105355
2.0826e-05
2.52084e-06
5.34695e-06
3.48531e-05
0.000135406
0.000256584
0.000374627
0.000483518
0.000581574
0.000668493
0.0007445
0.000810016
0.000865526
0.000911509
0.000925776
0.00092341
0.000919353
0.000919528
0.000925784
0.000938874
0.000958846
0.000982676
0.000999067
0.000982187
0.000950335
0.000909795
0.000860179
0.000801045
0.000731901
0.000652231
0.000561557
0.000459608
0.000346765
0.000225432
0.000105159
2.07511e-05
2.50597e-06
5.35978e-06
3.48543e-05
0.000135465
0.000256872
0.000375246
0.000484487
0.000582852
0.00067
0.000746136
0.000811676
0.000867112
0.000912938
0.000926867
0.000923571
0.000918453
0.000917672
0.00092313
0.000935579
0.000955154
0.00097915
0.000996902
0.000983318
0.000951707
0.00091134
0.000861815
0.000802679
0.000733436
0.000653572
0.000562621
0.000460332
0.000347122
0.000225456
0.000105002
2.06871e-05
2.49121e-06
5.37016e-06
3.48396e-05
0.000135416
0.000256893
0.000375455
0.000484958
0.000583606
0.000671019
0.000747365
0.000813044
0.000868537
0.000914343
0.000929423
0.000925616
0.000919282
0.000917139
0.000921313
0.000932622
0.000951322
0.000975102
0.000994099
0.000984201
0.000952844
0.00091268
0.000863288
0.000804199
0.000734909
0.000654898
0.000563704
0.000461094
0.00034752
0.000225511
0.000104862
2.06286e-05
2.47565e-06
5.37688e-06
3.47857e-05
0.000135192
0.000256551
0.000375125
0.00048476
0.000583625
0.000671295
0.000747905
0.00081382
0.000869504
0.000915445
0.000933305
0.000929535
0.000921944
0.000918147
0.00092066
0.00093044
0.000947899
0.000971147
0.000991148
0.000984775
0.000953666
0.000913721
0.000864497
0.000805507
0.000736227
0.000656129
0.000564748
0.000461863
0.000347954
0.000225613
0.000104759
2.05786e-05
2.45834e-06
5.3827e-06
3.47039e-05
0.000134836
0.000255903
0.000374312
0.000483931
0.00058291
0.000670792
0.000747672
0.000813882
0.000869859
0.000916069
0.000937955
0.000934842
0.000926136
0.00092058
0.000921241
0.000929287
0.000945296
0.000967757
0.000988386
0.000984996
0.000954106
0.00091438
0.00086535
0.000806505
0.000737302
0.000657194
0.000565707
0.000462622
0.000348442
0.000225808
0.000104744
2.05559e-05
2.4407e-06
5.39186e-06
3.45872e-05
0.000134338
0.000254945
0.000373015
0.000482472
0.000581458
0.000669489
0.000746623
0.000813159
0.000869498
0.000916083
0.000942781
0.000940922
0.000931417
0.000924224
0.000923057
0.000929357
0.000943863
0.000965357
0.000986144
0.000984824
0.000954101
0.000914565
0.00086573
0.00080706
0.000737985
0.000657937
0.000566425
0.000463223
0.000348846
0.000225976
0.00010473
2.05319e-05
2.42133e-06
5.40762e-06
3.44386e-05
0.000133706
0.000253685
0.000371238
0.000480376
0.000579251
0.000667354
0.000744711
0.00081158
0.00086833
0.00091537
0.000947185
0.000947109
0.000937282
0.000928802
0.000926071
0.000930838
0.00094398
0.000964443
0.000984854
0.000984273
0.000953639
0.000914243
0.000865581
0.000807096
0.000738193
0.000658277
0.000566837
0.000463627
0.000349161
0.000226143
0.000104757
2.05241e-05
2.40095e-06
5.43289e-06
3.42895e-05
0.000133034
0.000252252
0.000369115
0.000477763
0.00057638
0.000664447
0.000741957
0.000809133
0.000866305
0.000913848
0.000950559
0.000952694
0.000943145
0.000933935
0.000930117
0.000933767
0.00094585
0.000965297
0.000984741
0.000983398
0.000952759
0.000913424
0.000864879
0.000806549
0.000737819
0.00065807
0.000566763
0.000463634
0.000349182
0.000226124
0.000104693
2.0491e-05
2.37861e-06
5.47048e-06
3.42058e-05
0.000132506
0.000250923
0.000366965
0.000474957
0.000573147
0.000661023
0.000738561
0.000805953
0.00086349
0.00091151
0.000950366
0.000956994
0.000948846
0.000939589
0.000935293
0.000938453
0.000950054
0.000968741
0.000986615
0.000982296
0.00095156
0.000912209
0.000863726
0.000805527
0.000736979
0.000657441
0.000566346
0.000463403
0.000349086
0.000226095
0.000104678
2.04777e-05
2.35457e-06
5.5209e-06
3.42004e-05
0.000132188
0.000249844
0.000365007
0.000472216
0.000569821
0.000657343
0.000734756
0.00080223
0.000860025
0.000908444
0.000947807
0.000958896
0.000953202
0.000945014
0.000941178
0.000944653
0.000956429
0.000974648
0.000990385
0.000980984
0.000950049
0.000910584
0.000862076
0.00080394
0.000735536
0.000656206
0.000565364
0.000462691
0.000348628
0.000225847
0.000104572
2.0443e-05
2.32949e-06
5.58335e-06
3.43573e-05
0.000132312
0.00024938
0.000363693
0.000470041
0.000566914
0.000653901
0.000731
0.000798379
0.000856278
0.000904973
0.000944752
0.000958619
0.000955486
0.000949354
0.000947213
0.000952137
0.000964917
0.000982978
0.000996027
0.000979598
0.000948387
0.000908728
0.00086012
0.000801983
0.000733678
0.00065454
0.000563969
0.00046162
0.000347903
0.000225443
0.000104412
2.03985e-05
2.30281e-06
5.65178e-06
3.46581e-05
0.000132887
0.000249643
0.00036325
0.000468745
0.000564789
0.000651079
0.000727667
0.000794743
0.000852547
0.00090134
0.000941382
0.000955823
0.000955155
0.000952062
0.000952908
0.000960497
0.000975239
0.000993412
0.00100171
0.000978146
0.000946601
0.00090668
0.000857897
0.000799688
0.000731424
0.000652444
0.000562141
0.000460154
0.000346861
0.000224835
0.000104164
2.03354e-05
2.27493e-06
5.71902e-06
3.51256e-05
0.00013399
0.00025081
0.000363964
0.000468705
0.000563883
0.000649333
0.000725201
0.000791728
0.000849184
0.000897831
0.000937925
0.000950249
0.000951811
0.000952875
0.000958404
0.00097035
0.000987727
0.00100376
0.00100043
0.000976555
0.000944712
0.000904525
0.000855539
0.000797213
0.000728937
0.000650065
0.000559996
0.000458364
0.000345524
0.000223997
0.000103783
2.02363e-05
2.24571e-06
5.7751e-06
3.56354e-05
0.000135335
0.000252574
0.000365608
0.000469813
0.000564207
0.000648772
0.000723769
0.000789521
0.000846347
0.000894538
0.00092889
0.000941167
0.00094638
0.000952604
0.000963584
0.000980307
0.00100026
0.00101384
0.000999025
0.000974876
0.000942759
0.000902321
0.000853128
0.000794665
0.000726346
0.000647546
0.00055768
0.000456382
0.000343994
0.000222994
0.0001033
2.01137e-05
2.21664e-06
5.81245e-06
3.61016e-05
0.000136679
0.000254595
0.000367836
0.000471787
0.000565577
0.000649323
0.000723405
0.000788249
0.000844246
0.000891739
0.000918331
0.00093002
0.00093894
0.000950939
0.000968254
0.000990109
0.00101055
0.00101395
0.000997347
0.000973007
0.000940671
0.000900009
0.000850611
0.000791989
0.000723588
0.000644808
0.000555085
0.00045407
0.000342102
0.000221639
0.000102552
1.99091e-05
2.18543e-06
5.82673e-06
3.64035e-05
0.000137678
0.000256348
0.000370042
0.000474033
0.000567479
0.000650579
0.000723819
0.000787721
0.000842769
0.00088771
0.000906879
0.000918283
0.000930824
0.000948177
0.000971137
0.00099723
0.00101753
0.00101205
0.000995373
0.000970916
0.000938426
0.000897586
0.000848007
0.00078923
0.000720728
0.000641937
0.000552322
0.000451558
0.000339996
0.00022009
0.000101678
1.96784e-05
2.15522e-06
5.82083e-06
3.64832e-05
0.000138126
0.000257444
0.000371703
0.000475973
0.000569357
0.000652081
0.000724691
0.000787784
0.000841919
0.000881051
0.000897195
0.00090843
0.000923007
0.000943781
0.000970661
0.000999708
0.00101894
0.00100985
0.000993145
0.000968623
0.000936023
0.000895034
0.00084528
0.000786325
0.000717673
0.000638791
0.000549184
0.000448564
0.000337323
0.000217955
0.000100356
1.93191e-05
2.12079e-06
5.80064e-06
3.64401e-05
0.000138227
0.000258013
0.000372807
0.000477466
0.000570994
0.000653596
0.000725839
0.000788369
0.000841806
0.000878645
0.00089221
0.000902077
0.000916809
0.00093899
0.000967901
0.000998386
0.00101647
0.0010074
0.00099071
0.000966168
0.000933504
0.000892404
0.000842501
0.000783372
0.000714548
0.000635534
0.000545876
0.000445338
0.000334366
0.000215527
9.88144e-05
1.88992e-05
2.08365e-06
5.77422e-06
3.63257e-05
0.000138085
0.000258151
0.000373379
0.000478441
0.000572232
0.000654908
0.000727028
0.00078926
0.000842263
0.000880348
0.000892209
0.00089991
0.000913097
0.00093457
0.000963537
0.000994724
0.00101382
0.00100476
0.000988082
0.000963548
0.000930865
0.000889704
0.000839696
0.000780426
0.000711442
0.000632284
0.000542543
0.000442041
0.000331298
0.000212968
9.71678e-05
1.84554e-05
2.04336e-06
5.75022e-06
3.63553e-05
0.000138223
0.000258464
0.00037397
0.000479322
0.000573337
0.000656129
0.000728242
0.00079035
0.000843133
0.000885514
0.000896795
0.00090205
0.00091262
0.000931929
0.000959412
0.000990279
0.00101103
0.0010019
0.000985208
0.000960681
0.000928006
0.000886833
0.000836775
0.000777412
0.000708299
0.000628994
0.000539133
0.000438602
0.000328017
0.000210163
9.53229e-05
1.79529e-05
1.99922e-06
5.72859e-06
3.64884e-05
0.000138611
0.00025903
0.000374738
0.000480281
0.000574443
0.000657314
0.000729433
0.000791473
0.000844119
0.000888018
0.000903674
0.000907471
0.000915158
0.000931782
0.000957133
0.000986746
0.00100812
0.000998811
0.000982033
0.000957483
0.000924827
0.000883691
0.000833666
0.000774311
0.000705174
0.000625816
0.000535898
0.000435357
0.000324898
0.000207448
9.35054e-05
1.74548e-05
1.95197e-06
5.70604e-06
3.66229e-05
0.000138982
0.000259546
0.000375416
0.000481106
0.000575368
0.000658279
0.000730376
0.000792336
0.000844853
0.000888582
0.000910545
0.000914762
0.000920122
0.000933924
0.000956869
0.00098466
0.00100499
0.000995395
0.000978433
0.000953796
0.000921135
0.000880056
0.000830128
0.000770888
0.000701863
0.000622607
0.000532784
0.000432362
0.000322104
0.000205052
9.18913e-05
1.70108e-05
1.90486e-06
5.6735e-06
3.66972e-05
0.00013917
0.000259748
0.000375674
0.000481433
0.000575745
0.00065867
0.00073074
0.000792635
0.000845058
0.000888676
0.000916574
0.000922157
0.000926358
0.000938127
0.000958977
0.000984553
0.00100149
0.000991505
0.000974263
0.000949465
0.000916753
0.000875725
0.000825931
0.00076689
0.000698106
0.000619113
0.000529565
0.000429432
0.000319512
0.000202919
9.04909e-05
1.66248e-05
1.8556e-06
5.62352e-06
3.66074e-05
0.000138921
0.000259314
0.000375162
0.000480904
0.000575214
0.000658125
0.00073016
0.000792001
0.000844357
0.000887906
0.000921227
0.000928703
0.000932767
0.000943546
0.000962909
0.000985803
0.000997427
0.000986973
0.000969377
0.000944349
0.000911535
0.000870529
0.000820876
0.000762082
0.000693636
0.000615052
0.000525965
0.000426333
0.000316955
0.000200972
8.92998e-05
1.63096e-05
1.80821e-06
5.5542e-06
3.63116e-05
0.00013812
0.000258067
0.000373666
0.000479283
0.000573526
0.000656389
0.000728377
0.000790167
0.000842472
0.000885974
0.000921296
0.000934966
0.000940054
0.000950196
0.000968078
0.000987713
0.000992575
0.000981636
0.000963663
0.000938376
0.000905435
0.00086444
0.000814937
0.000756428
0.000688393
0.000610331
0.000521857
0.000422904
0.000314249
0.000199026
8.81797e-05
1.60233e-05
1.75896e-06
5.46832e-06
3.58165e-05
0.00013678
0.000255989
0.000371135
0.000476492
0.000570581
0.00065334
0.000725246
0.000786966
0.000839212
0.00088267
0.000917973
0.000940476
0.000948432
0.000958461
0.000974593
0.000990222
0.000986751
0.00097533
0.000956979
0.00093143
0.000898356
0.000857368
0.000808022
0.000749827
0.000682263
0.000604823
0.000517108
0.000419028
0.000311323
0.000197075
8.71686e-05
1.57802e-05
1.71091e-06
5.37295e-06
3.5137e-05
0.000134919
0.000253077
0.000367536
0.000472474
0.000566303
0.000648891
0.000720673
0.000782301
0.000834484
0.00087791
0.000913217
0.000940971
0.000957082
0.000968148
0.000980911
0.000985012
0.000979818
0.000967979
0.000949303
0.000923538
0.000890371
0.000849427
0.000800276
0.000742437
0.000675398
0.000598652
0.000511791
0.000414702
0.000308082
0.000194949
8.60956e-05
1.5522e-05
1.66039e-06
5.27752e-06
3.43361e-05
0.000132678
0.000249506
0.00036305
0.000467396
0.000560839
0.000643157
0.000714736
0.000776203
0.000828255
0.000871577
0.0009068
0.00093448
0.000955074
0.000968927
0.000976255
0.000977139
0.000971557
0.000959398
0.000940486
0.000914581
0.000881386
0.000840543
0.000791639
0.00073421
0.000667756
0.000591779
0.00050587
0.000409897
0.000304514
0.000192656
8.49821e-05
1.52615e-05
1.61284e-06
5.18969e-06
3.34437e-05
0.000130123
0.000245371
0.000357789
0.00046138
0.0005543
0.000636232
0.000707497
0.000768691
0.000820496
0.00086359
0.000898599
0.000926063
0.000946425
0.000960016
0.000967056
0.000967655
0.000961819
0.000949466
0.000930438
0.000904509
0.000871394
0.000830748
0.000782176
0.000725229
0.000659425
0.000584279
0.000499383
0.000404595
0.00030053
0.000190043
8.36723e-05
1.49442e-05
1.5624e-06
5.1152e-06
3.24763e-05
0.000127278
0.00024069
0.000351773
0.000454452
0.000546737
0.000628195
0.000699073
0.000759922
0.000811405
0.000854192
0.000888904
0.000916079
0.00093616
0.00094948
0.000956266
0.000956641
0.000950627
0.000938161
0.0009191
0.000893231
0.00086028
0.000819915
0.00077175
0.000715354
0.000650263
0.000576008
0.000492195
0.000398681
0.000296053
0.000187092
8.21919e-05
1.45906e-05
1.51324e-06
5.05805e-06
3.14093e-05
0.00012406
0.000235337
0.000344865
0.0004465
0.000538087
0.000619048
0.000689532
0.000750031
0.000801177
0.000843627
0.000878002
0.000904846
0.000924608
0.000937634
0.000944163
0.000944332
0.000938181
0.00092566
0.000906639
0.000880916
0.000848225
0.000808241
0.000760587
0.000704841
0.000640549
0.000567256
0.00048458
0.000392378
0.00029122
0.000183834
8.05029e-05
1.41741e-05
1.45766e-06
5.02235e-06
3.02258e-05
0.000120404
0.000229205
0.000336944
0.000437425
0.000528292
0.000608786
0.000678927
0.000739127
0.000789974
0.000832107
0.000866144
0.000892639
0.000912055
0.000924756
0.000931001
0.000930946
0.000924651
0.000912081
0.000893122
0.000867582
0.000835203
0.000795665
0.000748595
0.000693578
0.000630168
0.000557919
0.000476458
0.000385649
0.000286049
0.000180338
7.86893e-05
1.37293e-05
1.40234e-06
5.0159e-06
2.8871e-05
0.000116129
0.000221987
0.000327636
0.000426844
0.000517006
0.000597128
0.000667059
0.0007271
0.000777774
0.000819693
0.00085347
0.000879666
0.000898764
0.000911152
0.000917113
0.00091683
0.000910386
0.00089777
0.000878884
0.000853552
0.000821525
0.000782489
0.000736075
0.000681868
0.000619421
0.000548289
0.000468098
0.000378707
0.000280665
0.000176622
7.66997e-05
1.32267e-05
1.34148e-06
5.05146e-06
2.73307e-05
0.000111116
0.000213397
0.000316528
0.000414282
0.000503752
0.000583638
0.000653555
0.000713649
0.000764357
0.000806245
0.000839913
0.000865932
0.000884803
0.00089694
0.000902656
0.000902164
0.000895576
0.000882906
0.000864082
0.000838945
0.000807262
0.000768728
0.000722982
0.000669609
0.000608164
0.0005382
0.000459339
0.000371437
0.000275028
0.000172736
7.46269e-05
1.27148e-05
1.28688e-06
5.14574e-06
2.56592e-05
0.000105411
0.000203316
0.000303317
0.000399317
0.000488058
0.000567845
0.000637979
0.000698395
0.000749405
0.000791511
0.000825292
0.000851324
0.000870128
0.000882145
0.000887723
0.000887106
0.000880438
0.000867766
0.000849042
0.000824133
0.000792823
0.000754822
0.000709776
0.000657275
0.00059687
0.000528107
0.000450598
0.000364182
0.000269374
0.000168784
7.24772e-05
1.2182e-05
1.2328e-06
5.31162e-06
2.40385e-05
9.94158e-05
0.000192061
0.000288099
0.000381851
0.000469696
0.000549446
0.000619999
0.000681004
0.000732597
0.000775191
0.00080933
0.000835588
0.000854509
0.000866563
0.000872132
0.000871498
0.000864837
0.00085223
0.000833657
0.00080901
0.000778096
0.000740644
0.00069631
0.000644694
0.00058535
0.000517824
0.000441718
0.000356858
0.000263734
0.000164916
7.04247e-05
1.16985e-05
1.19098e-06
5.54466e-06
2.2638e-05
9.35694e-05
0.000180139
0.000267973
0.000358495
0.000448641
0.000528698
0.000599701
0.000661442
0.000713822
0.000757124
0.000791834
0.000818519
0.000837737
0.000849994
0.000855706
0.000855193
0.000848669
0.000836246
0.000817935
0.000793654
0.000763231
0.000726413
0.000682872
0.000632211
0.000573988
0.000507742
0.00043306
0.000349746
0.000258258
0.000161133
6.83857e-05
1.12187e-05
1.14951e-06
5.81048e-06
2.16201e-05
8.80236e-05
0.000161559
0.000237699
0.000323736
0.00041674
0.000506925
0.000578348
0.000640493
0.000693536
0.000737537
0.00077287
0.000800058
0.000819664
0.000832213
0.000838157
0.000837852
0.000831547
0.000819386
0.00080141
0.000777561
0.000747692
0.000711567
0.000668872
0.000619224
0.000562183
0.000497289
0.00042412
0.000342458
0.000252723
0.000157395
6.64299e-05
1.07826e-05
1.11576e-06
6.05828e-06
2.13994e-05
8.47638e-05
0.000147485
0.000214874
0.000296382
0.000389976
0.000484045
0.000558008
0.000619929
0.000673118
0.000717435
0.000753132
0.000780666
0.000800576
0.00081339
0.000819577
0.000819518
0.000813488
0.000801659
0.000784098
0.000760768
0.000731543
0.000696202
0.000654445
0.000605895
0.000550116
0.00048664
0.000415029
0.000335036
0.000247043
0.00015349
6.43408e-05
1.03084e-05
1.07253e-06
6.23711e-06
2.24612e-05
8.59443e-05
0.000143247
0.000203766
0.000279628
0.000370612
0.000465158
0.00054146
0.000602166
0.000654611
0.000698488
0.000733934
0.000761338
0.000781196
0.000794019
0.000800273
0.000800343
0.000794517
0.000782979
0.000765811
0.000742993
0.000714413
0.000679865
0.000639063
0.000591639
0.000537165
0.000475174
0.000405221
0.000327038
0.000240968
0.000149394
6.22286e-05
9.85283e-06
1.03062e-06
6.30246e-06
2.4059e-05
8.95051e-05
0.000145664
0.000201684
0.000271742
0.000357233
0.000448974
0.000530491
0.000588946
0.000639633
0.000682159
0.00071658
0.000743217
0.000762521
0.000774971
0.000781011
0.000781015
0.000775263
0.000763938
0.000747123
0.000724806
0.000696877
0.000663141
0.000623317
0.000577046
0.000523899
0.000463407
0.000395112
0.000318725
0.000234558
0.000144972
5.99012e-05
9.34171e-06
9.76347e-07
6.25836e-06
2.47632e-05
9.12273e-05
0.000147411
0.000201266
0.000267135
0.000347358
0.000435198
0.000517686
0.000579266
0.000627691
0.00066832
0.00070118
0.000726562
0.000744887
0.000756607
0.000762143
0.000761847
0.000755986
0.000744731
0.000728158
0.000706248
0.000678895
0.000645906
0.000607006
0.000561843
0.000509999
0.000451007
0.000384413
0.000309917
0.00022781
0.00014041
5.75939e-05
8.86175e-06
9.26296e-07
6.1856e-06
2.38993e-05
8.87311e-05
0.000142715
0.000195686
0.000259954
0.000337553
0.000422645
0.000504095
0.000569655
0.000616214
0.000655113
0.000686446
0.000710535
0.000727809
0.000738718
0.000743675
0.000743021
0.000737009
0.000725801
0.00070946
0.000687963
0.000661196
0.000628964
0.000590994
0.000546936
0.000496371
0.000438837
0.000373875
0.000301179
0.000221029
0.000135737
5.5186e-05
8.34935e-06
8.68109e-07
6.16983e-06
2.21511e-05
8.33187e-05
0.000132316
0.000183902
0.000247847
0.000325349
0.000410676
0.000492508
0.000556935
0.00060254
0.000640378
0.000670651
0.00069376
0.000710191
0.000720424
0.00072489
0.000723937
0.000717816
0.000706682
0.000690594
0.000669521
0.000643345
0.000611871
0.000574825
0.000531862
0.000482574
0.000426504
0.000363204
0.000292372
0.000214278
0.000131204
5.29385e-05
7.8928e-06
8.18204e-07
6.21771e-06
2.0621e-05
7.79056e-05
0.000121006
0.000169808
0.000232721
0.000310761
0.000397981
0.000480986
0.000540287
0.000585628
0.000623046
0.000652804
0.000675378
0.000691321
0.000701166
0.000705378
0.000704324
0.000698267
0.000687364
0.000671671
0.000651152
0.000625686
0.000595071
0.000559032
0.000517224
0.000469237
0.000414619
0.000352923
0.000283849
0.000207672
0.000126672
5.06248e-05
7.40387e-06
7.61269e-07
6.26924e-06
1.96786e-05
7.37838e-05
0.000112012
0.000157224
0.000217483
0.000294686
0.000383167
0.000467235
0.000521076
0.000566281
0.000603497
0.00063299
0.000655274
0.000670951
0.000680601
0.000684726
0.000683718
0.000677851
0.000667287
0.000652083
0.0006322
0.000607514
0.000577823
0.000542849
0.00050225
0.000455623
0.000402524
0.000342517
0.00027531
0.000201173
0.000122352
4.85092e-05
6.97574e-06
7.13539e-07
6.29935e-06
1.90105e-05
6.99809e-05
0.000104955
0.000146391
0.000202867
0.00027763
0.000365447
0.000448058
0.000500566
0.000545475
0.000582459
0.000611742
0.000633844
0.000649392
0.000658997
0.000663187
0.000662374
0.000656844
0.000646765
0.000632191
0.000613081
0.000589303
0.00056065
0.000526841
0.00048753
0.000442312
0.000390743
0.000332387
0.000266956
0.000194722
0.000117936
4.62621e-05
6.50449e-06
6.59709e-07
6.32562e-06
1.84736e-05
6.69038e-05
9.90547e-05
0.000136859
0.000189149
0.000260459
0.00034662
0.000427651
0.000479356
0.000523752
0.000560379
0.000589395
0.000611303
0.000626739
0.000636336
0.000640641
0.000640081
0.000634951
0.000625418
0.000611537
0.000593261
0.000570453
0.000542902
0.000510324
0.000472372
0.000428646
0.000378707
0.00032213
0.000258626
0.000188457
0.000113824
4.42803e-05
6.11384e-06
6.17322e-07
6.35056e-06
1.81534e-05
6.48326e-05
9.44882e-05
0.000128749
0.000176553
0.000243533
0.000327093
0.000407106
0.00045771
0.000501386
0.000537526
0.000566207
0.000587899
0.000603236
0.000612864
0.000617345
0.000617117
0.000612478
0.000603595
0.000590515
0.000573182
0.000551453
0.000525106
0.000493849
0.000457331
0.000415144
0.000366846
0.000312005
0.00025033
0.000182081
0.000109469
4.20791e-05
5.67113e-06
5.68767e-07
6.35534e-06
1.80352e-05
6.38669e-05
9.15032e-05
0.000122445
0.000165683
0.000227758
0.000307922
0.00038704
0.000436176
0.000478826
0.000514243
0.000542409
0.000563751
0.000578893
0.000588486
0.0005931
0.000593181
0.000589026
0.0005808
0.000568541
0.000552186
0.000531577
0.000506487
0.000476616
0.00044161
0.000401064
0.00035454
0.000301606
0.000241967
0.000175856
0.000105428
4.01669e-05
5.31598e-06
5.2866e-07
6.33255e-06
1.80053e-05
6.37313e-05
8.99383e-05
0.000117934
0.000156684
0.000213465
0.000289578
0.000367705
0.000415064
0.000456424
0.000490905
0.000518395
0.000539269
0.000554133
0.000563635
0.000568351
0.000568726
0.00056506
0.000557509
0.000546103
0.000530765
0.000511327
0.000487545
0.000459111
0.00042566
0.000386778
0.000342022
0.000290959
0.000233291
0.000169247
0.000100978
3.79762e-05
4.89409e-06
4.77421e-07
6.27406e-06
1.7984e-05
6.40414e-05
8.96187e-05
0.000115336
0.000150002
0.000201408
0.000272908
0.0003497
0.000394941
0.000434698
0.000467976
0.00049457
0.000514794
0.000529227
0.000538509
0.000543215
0.000543792
0.000540534
0.000533592
0.000522987
0.000508634
0.000490351
0.000467886
0.000440921
0.000409084
0.000371959
0.000329098
0.000280067
0.000224563
0.000162794
9.68559e-05
3.61082e-05
4.5635e-06
4.35084e-07
6.19388e-06
1.77794e-05
6.39309e-05
8.96898e-05
0.000114079
0.000145402
0.000191702
0.000258242
0.000333138
0.000375991
0.000413898
0.000445776
0.000471324
0.000490788
0.000504707
0.000513702
0.00051834
0.000519063
0.00051616
0.000509776
0.000499924
0.000486507
0.000469336
0.000448147
0.000422609
0.000392342
0.00035692
0.000315886
0.000268801
0.000215353
0.000155747
9.2096e-05
3.37988e-05
4.13871e-06
3.84907e-07
6.11004e-06
1.74747e-05
6.30805e-05
8.96031e-05
0.000113733
0.000142893
0.000185078
0.000246879
0.000318606
0.000358781
0.000394534
0.000424743
0.000449025
0.000467554
0.000480819
0.000489411
0.000493882
0.000494663
0.000492034
0.000486132
0.000476963
0.000464424
0.000448321
0.000428383
0.000404276
0.000375613
0.000341962
0.000302861
0.00025786
0.000206633
0.000149354
8.80774e-05
3.20526e-05
3.85245e-06
3.49683e-07
6.02744e-06
1.71418e-05
6.16312e-05
8.9049e-05
0.000113645
0.000141714
0.000180861
0.00023831
0.000305914
0.000343203
0.000376582
0.000404933
0.000427807
0.0004453
0.000457839
0.000465975
0.000470229
0.000471014
0.000468597
0.000463098
0.000454517
0.000442743
0.000427575
0.000408737
0.000385892
0.000358648
0.00032657
0.000289193
0.000246063
0.000196854
0.000141753
8.28641e-05
2.95431e-05
3.4256e-06
3.06867e-07
5.92301e-06
1.6892e-05
5.99811e-05
8.82634e-05
0.000113757
0.000141605
0.000178739
0.000232392
0.000295587
0.000329783
0.000360514
0.000386739
0.000407976
0.000424255
0.000435937
0.000443522
0.000447494
0.000448241
0.000446007
0.000440896
0.000432899
0.000421897
0.000407686
0.000389987
0.000368463
0.000342723
0.000312331
0.000276815
0.000235709
0.000188666
0.000135832
7.92385e-05
2.8063e-05
3.2153e-06
2.83487e-07
5.77886e-06
1.64779e-05
5.79422e-05
8.68941e-05
0.000113364
0.000141317
0.000176757
0.000226694
0.000286211
0.000317394
0.00034549
0.000369564
0.000389131
0.000404165
0.000414959
0.000421957
0.000425601
0.000426248
0.000424117
0.000419291
0.000411746
0.000401354
0.000387901
0.000371107
0.000350631
0.000326087
0.000297041
0.000263035
0.000223616
0.000178457
0.000127744
7.36076e-05
2.53792e-05
2.79606e-06
2.47078e-07
5.5798e-06
1.58336e-05
5.54013e-05
8.49256e-05
0.000112441
0.000140641
0.000174469
0.000220485
0.000276369
0.000305837
0.000331365
0.000353322
0.000371244
0.000385053
0.00039498
0.000401412
0.000404753
0.000405336
0.000403356
0.000398881
0.000391879
0.000382215
0.000369671
0.000353965
0.000334759
0.000311667
0.000284255
0.000252058
0.000214606
0.000171537
0.000122969
7.09025e-05
2.4403e-05
2.6772e-06
2.3084e-07
5.35231e-06
1.46821e-05
5.18522e-05
8.1574e-05
0.000109946
0.000138109
0.0001698
0.000211223
0.000262196
0.000293103
0.000316413
0.000336615
0.000353225
0.00036609
0.000375354
0.000381342
0.00038442
0.000384905
0.000382977
0.000378695
0.00037202
0.000362812
0.000350849
0.000335842
0.000317454
0.000295305
0.000268977
0.000238028
0.000202031
0.000160683
0.000114196
6.47324e-05
2.15223e-05
2.24846e-06
1.90745e-07
5.10542e-06
1.34253e-05
4.78956e-05
7.75247e-05
0.000106549
0.000134378
0.000163299
0.000199226
0.000244805
0.000279512
0.000300807
0.000319524
0.000335144
0.000347399
0.000356315
0.000362133
0.000365182
0.00036577
0.000364083
0.000360184
0.000354053
0.000345558
0.000334482
0.000320543
0.000303407
0.000282695
0.000257988
0.000228834
0.000194774
0.000155444
0.000110935
6.31914e-05
2.11087e-05
2.20145e-06
1.74556e-07
4.86541e-06
1.1971e-05
4.36122e-05
7.27458e-05
0.000101955
0.000128895
0.000154061
0.000182777
0.000221219
0.000263046
0.000282654
0.00030033
0.000315478
0.00032766
0.000336715
0.000342746
0.00034601
0.000346804
0.000345324
0.000341658
0.000335805
0.00032765
0.000316981
0.000303514
0.000286913
0.000266804
0.000242787
0.000214455
0.000181432
0.000143495
0.000100958
5.60899e-05
1.79287e-05
1.76198e-06
1.32183e-07
4.60375e-06
1.10058e-05
4.05536e-05
6.9722e-05
9.91597e-05
0.00012493
0.000146107
0.000166783
0.000193936
0.000231478
0.000263715
0.000280195
0.000294882
0.000307195
0.000316738
0.000323395
0.00032729
0.000328674
0.000327765
0.000324692
0.000319512
0.000312155
0.000302446
0.000290121
0.000274857
0.000256282
0.00023399
0.000207546
0.000176513
0.000140538
9.97033e-05
5.5944e-05
1.80623e-05
1.7758e-06
1.21485e-07
4.33762e-06
9.97042e-06
3.79743e-05
6.78608e-05
9.84772e-05
0.000123619
0.000141351
0.000154929
0.000170495
0.000194816
0.00023042
0.000258171
0.000272408
0.000285046
0.000295466
0.000303245
0.000308243
0.000310566
0.000310407
0.000307927
0.00030324
0.000296334
0.000287066
0.000275185
0.000260356
0.000242193
0.00022028
0.000194213
0.000163656
0.000128491
8.92255e-05
4.83984e-05
1.48626e-05
1.3779e-06
8.62511e-08
4.02782e-06
9.66774e-06
3.79875e-05
7.03584e-05
0.000104096
0.000129711
0.000144352
0.000152048
0.000158653
0.000169898
0.000191384
0.000225164
0.000251274
0.000263286
0.00027383
0.000282294
0.000288251
0.000291557
0.000292298
0.00029062
0.000286675
0.000280538
0.000272157
0.000261357
0.000247865
0.000231341
0.0002114
0.000187628
0.000159599
0.000126949
8.96925e-05
4.966e-05
1.55378e-05
1.4493e-06
8.26918e-08
3.73909e-06
9.05889e-06
3.84245e-05
7.29774e-05
0.000109799
0.000138223
0.000153336
0.000158263
0.0001592
0.000161654
0.000170347
0.000190122
0.000222196
0.000242838
0.000252717
0.000261352
0.000268171
0.00027274
0.00027494
0.000274754
0.000272219
0.000267408
0.0002603
0.000250731
0.000238392
0.00022286
0.000203636
0.000180205
0.000152134
0.000119275
8.22586e-05
4.39232e-05
1.31483e-05
1.17097e-06
5.84263e-08
3.38627e-06
9.87559e-06
4.35425e-05
8.36182e-05
0.000122862
0.000150818
0.000164622
0.000167421
0.000165094
0.000163132
0.000165534
0.000176004
0.000198676
0.000231534
0.000240315
0.000246914
0.000252047
0.00025531
0.00025652
0.000255551
0.000252301
0.000246808
0.000239104
0.000229135
0.000216743
0.000201682
0.000183645
0.000162286
0.000137251
0.000108235
7.53056e-05
4.04039e-05
1.20203e-05
1.05076e-06
4.44591e-08
3.07293e-06
9.93967e-06
4.50348e-05
8.66884e-05
0.000122729
0.000148974
0.000165166
0.000171699
0.000171284
0.000168579
0.000167973
0.000173139
0.000187772
0.000212692
0.000228578
0.000232847
0.00023623
0.000238565
0.000239805
0.000239846
0.000238425
0.000235395
0.000230629
0.000223926
0.000214953
0.000203208
0.000188016
0.000168556
0.000143988
0.000113746
7.8268e-05
4.08516e-05
1.15716e-05
9.39623e-07
3.01554e-08
2.63438e-06
1.31057e-05
5.74081e-05
0.000100595
0.000126975
0.000143448
0.000154757
0.000161655
0.000165092
0.000167635
0.000172589
0.000183203
0.000201809
0.000225517
0.00023211
0.000234262
0.000235354
0.00023533
0.000234018
0.000231174
0.000226489
0.000219699
0.000210588
0.000198988
0.00018478
0.000167907
0.000148395
0.000126363
0.000102054
7.59215e-05
4.89643e-05
2.38841e-05
6.54353e-06
4.99425e-07
4.84726e-09
2.30004e-06
1.35046e-05
5.62234e-05
9.1189e-05
0.00010578
0.000118097
0.000132205
0.000145307
0.0001549
0.00016152
0.000167905
0.000177443
0.000192709
0.000210311
0.000209536
0.000206746
0.000202423
0.000197113
0.00019124
0.000185328
0.000179878
0.000175206
0.000171389
0.000168244
0.000165276
0.00016158
0.00015568
0.000145372
0.000127766
0.000100063
6.30702e-05
2.64487e-05
5.4385e-06
3.0587e-07
7.31592e-09
1.77707e-06
2.00295e-05
6.98136e-05
8.75161e-05
9.10004e-05
0.000100807
0.000118445
0.000140528
0.000154936
0.000169578
0.000184138
0.000197985
0.000210571
0.000221453
0.000230246
0.000236587
0.000240109
0.000240695
0.000238177
0.000232331
0.000222993
0.000210092
0.000193616
0.000173658
0.000150504
0.000124787
9.76813e-05
7.08375e-05
4.62508e-05
2.66457e-05
1.30303e-05
4.73304e-06
8.8518e-07
7.72629e-08
5.10496e-08
1.34794e-06
2.36244e-05
5.70971e-05
5.47459e-05
5.16106e-05
5.16414e-05
5.43594e-05
5.96173e-05
6.60827e-05
7.28213e-05
7.95454e-05
8.60061e-05
9.20709e-05
9.53366e-05
9.60583e-05
9.57723e-05
9.43207e-05
9.16669e-05
8.78559e-05
8.28921e-05
7.68446e-05
6.98163e-05
6.1951e-05
5.34398e-05
4.45322e-05
3.55293e-05
2.6847e-05
1.89588e-05
1.22992e-05
7.26016e-06
3.9649e-06
2.15537e-06
1.37832e-06
5.61396e-07
1.42736e-07
2.31509e-06
1.71734e-05
3.06087e-05
3.71355e-05
4.23517e-05
3.65536e-05
3.00696e-05
2.87893e-05
3.09701e-05
3.37431e-05
3.64467e-05
3.82132e-05
3.82067e-05
3.82118e-05
3.81939e-05
3.81295e-05
3.80018e-05
3.77909e-05
3.75125e-05
3.71574e-05
3.67267e-05
3.62264e-05
3.56695e-05
3.50796e-05
3.44955e-05
3.39792e-05
3.36262e-05
3.35748e-05
3.40078e-05
3.51204e-05
3.69937e-05
3.93053e-05
4.09156e-05
1.83279e-05
9.54764e-07
7.71492e-08
1.39255e-06
3.71346e-06
6.49143e-06
9.31767e-06
1.21127e-05
1.47753e-05
1.72095e-05
1.92681e-05
2.08993e-05
2.20411e-05
2.24295e-05
2.26575e-05
2.15511e-05
2.02729e-05
1.89043e-05
1.59478e-05
1.50949e-05
1.1658e-05
8.38251e-06
6.48543e-06
2.46319e-06
3.67217e-06
1.19312e-05
1.2752e-05
1.29171e-05
1.27587e-05
1.25276e-05
1.23477e-05
1.23021e-05
1.24779e-05
1.28549e-05
1.29557e-05
4.12945e-06
1.60793e-09
4.53663e-07
9.45707e-07
4.87489e-06
1.21245e-05
2.03328e-05
2.74946e-05
3.25964e-05
3.53678e-05
3.60931e-05
3.5295e-05
3.36234e-05
3.17269e-05
3.00205e-05
2.85367e-05
2.72098e-05
2.60159e-05
2.48784e-05
2.40039e-05
2.37657e-05
2.22747e-05
1.99219e-05
1.91807e-05
1.95102e-05
2.02514e-05
2.09789e-05
2.15107e-05
2.16124e-05
2.11271e-05
2.02687e-05
1.95551e-05
2.01644e-05
2.16658e-05
1.06859e-05
4.49129e-06
8.20558e-07
7.46029e-07
4.48549e-06
2.81616e-05
4.16575e-05
5.42654e-05
7.07023e-05
8.69444e-05
8.32552e-05
7.22032e-05
5.73201e-05
4.04375e-05
2.56888e-05
2.016e-05
2.11538e-05
2.32864e-05
2.52478e-05
2.69502e-05
2.84229e-05
2.94893e-05
2.97303e-05
2.63084e-05
2.26295e-05
2.15331e-05
2.11918e-05
2.0898e-05
2.10993e-05
2.14847e-05
2.08816e-05
2.07596e-05
2.14739e-05
2.26792e-05
1.49146e-05
7.93941e-06
4.0054e-06
1.15089e-06
5.4647e-07
1.58096e-07
4.46171e-08
3.70178e-06
1.64919e-05
3.30163e-05
4.55731e-05
5.67847e-05
6.73062e-05
7.26977e-05
7.49647e-05
7.47087e-05
7.21772e-05
6.75402e-05
6.13413e-05
5.42044e-05
4.61432e-05
3.63067e-05
2.42768e-05
1.45345e-05
1.39356e-05
1.86321e-05
2.25305e-05
2.47485e-05
2.59551e-05
2.66838e-05
2.71059e-05
2.71782e-05
2.66357e-05
2.49694e-05
1.83824e-05
1.20482e-05
7.71845e-06
3.21975e-06
1.76888e-06
1.12292e-06
2.42987e-06
1.6377e-05
4.50433e-05
7.37594e-05
9.64067e-05
0.000110871
0.00011787
0.000119783
0.000118747
0.000115655
0.000110661
0.00010392
9.57286e-05
8.66483e-05
7.7663e-05
7.0115e-05
6.51632e-05
6.30061e-05
5.0596e-05
4.09412e-05
3.55869e-05
3.1783e-05
3.01434e-05
3.28396e-05
3.63641e-05
3.39728e-05
3.13848e-05
2.79482e-05
2.39722e-05
1.75468e-05
1.15783e-05
7.64797e-06
3.37942e-06
2.13226e-06
1.2293e-06
2.8327e-06
1.70496e-05
4.03061e-05
6.09006e-05
8.38131e-05
0.000103671
0.000117941
0.000128008
0.000134029
0.000136458
0.000135706
0.000132076
0.000125911
0.000117711
0.000108179
9.82146e-05
8.89424e-05
8.13021e-05
7.55476e-05
7.14027e-05
6.82883e-05
5.25216e-05
4.23796e-05
3.64283e-05
3.37221e-05
3.57373e-05
4.30458e-05
3.59477e-05
2.71492e-05
1.99252e-05
1.4135e-05
8.91268e-06
3.5046e-06
2.47938e-06
1.40388e-06
3.33592e-06
2.02861e-05
4.8465e-05
7.49621e-05
9.77555e-05
0.000116509
0.000131008
0.000141275
0.000147674
0.000150776
0.0001511
0.000148966
0.00014458
0.000138176
0.000130138
0.000121046
0.000111629
0.000102789
9.52425e-05
8.93399e-05
8.50023e-05
8.18078e-05
7.76848e-05
6.56467e-05
5.83918e-05
5.77555e-05
6.40779e-05
5.92897e-05
4.47384e-05
2.86272e-05
1.66325e-05
1.06947e-05
4.03646e-06
2.7011e-06
1.6207e-06
4.51543e-06
2.70239e-05
6.01152e-05
8.56509e-05
0.000107189
0.000128171
0.000148186
0.00016173
0.000169175
0.000172964
0.000173547
0.000171405
0.000166945
0.000160486
0.000152363
0.000142997
0.000132942
0.000122967
0.000113828
0.000106113
0.000100088
9.56331e-05
9.23473e-05
8.96933e-05
8.48929e-05
8.38812e-05
7.85973e-05
6.79416e-05
4.99477e-05
3.04576e-05
1.84292e-05
1.22868e-05
4.38965e-06
2.95307e-06
1.55481e-06
3.862e-06
2.3324e-05
5.56565e-05
8.69357e-05
0.000113778
0.000135667
0.000154872
0.000168651
0.000178488
0.000184725
0.000187717
0.000187808
0.000185309
0.000180501
0.000173684
0.000165225
0.000155582
0.000145451
0.000135546
0.000126462
0.000118619
0.000112148
0.000106924
0.000102632
9.87279e-05
9.42016e-05
8.69126e-05
7.29656e-05
5.24375e-05
3.14334e-05
1.96795e-05
1.37062e-05
4.84299e-06
3.15153e-06
1.63036e-06
4.48545e-06
2.61776e-05
5.93547e-05
9.13029e-05
0.000119832
0.000144344
0.000164617
0.000180631
0.000192517
0.000200533
0.000205032
0.000206413
0.000205058
0.000201293
0.0001954
0.000187674
0.000178465
0.000168403
0.00015815
0.000148219
0.000139004
0.000130712
0.000123359
0.000116752
0.000110313
0.0001027
9.12578e-05
7.23501e-05
5.04256e-05
3.0054e-05
2.05097e-05
1.46774e-05
5.05345e-06
3.35902e-06
1.63538e-06
4.66752e-06
2.75314e-05
6.22927e-05
9.51995e-05
0.000124119
0.000148937
0.000169827
0.000186953
0.00020045
0.000210449
0.000217121
0.00022069
0.000221417
0.000219569
0.000215399
0.000209153
0.000201107
0.000191862
0.000182061
0.000172113
0.000162316
0.000152867
0.000143856
0.000135128
0.00012603
0.00011501
9.92811e-05
7.59017e-05
5.17647e-05
3.00888e-05
2.15442e-05
1.58815e-05
5.42009e-06
3.52116e-06
1.59743e-06
4.82766e-06
2.82316e-05
6.25303e-05
9.57556e-05
0.000125923
0.0001524
0.00017498
0.000193703
0.000208737
0.000220296
0.000228596
0.000233844
0.00023625
0.000236028
0.000233396
0.000228567
0.000221759
0.000213525
0.000204457
0.000194871
0.000184985
0.000174941
0.00016476
0.000154161
0.000142278
0.000127313
0.000106598
7.85649e-05
5.27203e-05
2.97991e-05
2.22874e-05
1.66614e-05
5.56444e-06
3.68347e-06
1.78079e-06
5.66229e-06
3.22149e-05
6.86639e-05
9.9444e-05
0.000128999
0.000158254
0.000180951
0.00020016
0.000215934
0.000228425
0.00023784
0.000244398
0.000248298
0.000249712
0.00024879
0.000245674
0.000240511
0.00023378
0.000225985
0.00021735
0.000208041
0.000198135
0.000187529
0.000175756
0.000161721
0.000143485
0.000118624
8.65627e-05
5.73795e-05
3.14012e-05
2.3599e-05
1.7798e-05
5.8895e-06
3.8141e-06
1.87327e-06
5.83039e-06
3.33142e-05
7.16565e-05
0.00010234
0.000128793
0.000155933
0.000184397
0.000208263
0.000225272
0.000239017
0.000249578
0.00025714
0.000261946
0.000264245
0.000264258
0.000262171
0.000258139
0.000252558
0.0002458
0.000238002
0.000229251
0.000219511
0.000208495
0.000195483
0.00017913
0.000157446
0.000128565
9.33305e-05
5.80732e-05
3.30339e-05
2.49799e-05
1.87515e-05
6.03171e-06
3.93624e-06
2.1091e-06
7.13732e-06
3.93991e-05
8.27299e-05
0.000118267
0.000142938
0.000164916
0.00018794
0.000213284
0.000238819
0.000253467
0.000264427
0.000272646
0.000278234
0.000281355
0.000282202
0.000280967
0.000277822
0.000273129
0.000267177
0.000260034
0.000251716
0.000242076
0.000230676
0.000216628
0.000198471
0.00017431
0.000142753
0.000105315
6.34866e-05
3.6432e-05
2.70893e-05
2.009e-05
6.39137e-06
4.02172e-06
2.16678e-06
7.41211e-06
4.09742e-05
8.75128e-05
0.000130178
0.000162157
0.000185294
0.000205459
0.000226068
0.000248754
0.000271732
0.00028543
0.000294033
0.000300073
0.000303678
0.000305002
0.000304215
0.000301491
0.000297138
0.000291379
0.000284248
0.000275689
0.000265447
0.000252945
0.000237186
0.000216718
0.000189938
0.000156111
0.000117417
6.8835e-05
4.02477e-05
2.94336e-05
2.13876e-05
6.63938e-06
4.09322e-06
2.36951e-06
8.50032e-06
4.48779e-05
9.39118e-05
0.000139306
0.000177004
0.000203549
0.000224799
0.000243908
0.000263318
0.000284508
0.000305674
0.000317351
0.000324192
0.000328623
0.000330772
0.000330763
0.000328716
0.000324856
0.000319336
0.000312154
0.000303203
0.000292173
0.000278449
0.00026105
0.00023867
0.000210028
0.000174778
0.00013508
7.81968e-05
4.58212e-05
3.25703e-05
2.31772e-05
7.14152e-06
4.14268e-06
2.38301e-06
8.46221e-06
4.51837e-05
9.62707e-05
0.000145073
0.000188303
0.000225197
0.000253207
0.000273853
0.000292056
0.000310594
0.00032962
0.000343398
0.000351132
0.000356398
0.000359352
0.000360106
0.00035874
0.00035538
0.000350084
0.000342778
0.000333276
0.000321193
0.00030587
0.000286348
0.000261461
0.000230212
0.000192595
0.00015081
8.73966e-05
5.18769e-05
3.61062e-05
2.51407e-05
7.55198e-06
4.18709e-06
2.53296e-06
9.45655e-06
4.87315e-05
0.000101956
0.000152702
0.00019806
0.00023754
0.000271219
0.000299352
0.000321
0.000340401
0.000357105
0.000369001
0.000377999
0.000384399
0.000388397
0.000390117
0.000389616
0.000386944
0.000382074
0.000374846
0.000364978
0.000351996
0.000335193
0.000313625
0.000286242
0.000252252
0.000211859
0.00016729
9.81993e-05
5.91004e-05
4.0509e-05
2.77071e-05
8.10252e-06
4.2217e-06
2.54297e-06
9.62712e-06
4.98561e-05
0.000105161
0.000158691
0.000207082
0.000249644
0.000286389
0.000317579
0.000343606
0.000364944
0.000382115
0.000395635
0.000405957
0.000413449
0.000418372
0.000420881
0.000421038
0.000418837
0.000414174
0.000406809
0.000396365
0.000382281
0.0003638
0.000340005
0.000309973
0.00027315
0.000229992
0.00017813
0.00010817
6.66267e-05
4.53024e-05
3.05132e-05
8.58584e-06
4.24969e-06
2.65817e-06
1.05593e-05
5.3198e-05
0.000110577
0.000166005
0.000216324
0.000260942
0.000299894
0.000333421
0.000361854
0.000385572
0.000404983
0.000420503
0.000432533
0.000441431
0.000447481
0.000450872
0.000451682
0.000449885
0.000445336
0.00043774
0.000426654
0.000411464
0.000391395
0.000365579
0.000333226
0.00029398
0.000248487
0.000189522
0.000119231
7.5147e-05
5.09375e-05
3.39357e-05
9.20079e-06
4.27068e-06
2.65946e-06
1.07732e-05
5.45347e-05
0.000113963
0.000171959
0.000225003
0.000272336
0.000313915
0.000349945
0.000380738
0.000406653
0.000428076
0.000445391
0.000458965
0.000469128
0.000476152
0.000480225
0.000481431
0.000479737
0.000474973
0.000466812
0.000454774
0.000438223
0.000416401
0.000388513
0.000353919
0.000312457
0.000264943
0.00020048
0.000130067
8.39e-05
5.69303e-05
3.76537e-05
9.7792e-06
4.27833e-06
2.73405e-06
1.15504e-05
5.74e-05
0.00011877
0.000178625
0.000233575
0.000282911
0.00032659
0.00036478
0.000397737
0.000425763
0.000449181
0.00046832
0.000483498
0.000495002
0.000503068
0.000507862
0.000509451
0.000507794
0.000502712
0.000493881
0.000480822
0.00046292
0.000439467
0.000409762
0.000373299
0.000330063
0.000280953
0.000212976
0.000141982
9.34848e-05
6.36487e-05
4.19163e-05
1.04658e-05
4.2781e-06
2.71635e-06
1.17456e-05
5.86906e-05
0.000121963
0.000184115
0.000241451
0.000293139
0.00033909
0.000379454
0.000414475
0.000444433
0.000469628
0.000490357
0.000506906
0.000519531
0.000528437
0.000533763
0.000535556
0.000533759
0.000528189
0.000518526
0.000504317
0.000484991
0.000459916
0.000428503
0.000390378
0.000345655
0.000295286
0.000224908
0.000153633
0.000103232
7.08026e-05
4.66342e-05
1.11441e-05
4.27091e-06
2.75977e-06
1.24207e-05
6.12459e-05
0.000126364
0.000190329
0.000249501
0.000303063
0.000350918
0.000393195
0.000430099
0.000461871
0.000488762
0.000511026
0.000528901
0.000542602
0.0005523
0.000558105
0.000560044
0.00055805
0.00055194
0.000541413
0.000526052
0.000505348
0.000478758
0.000445809
0.000406255
0.000360314
0.000308966
0.000237197
0.00016567
0.000113457
7.85023e-05
5.18125e-05
1.18583e-05
4.25931e-06
2.75603e-06
1.28332e-05
6.32681e-05
0.000130491
0.000196679
0.000257996
0.000313576
0.00036333
0.0004074
0.000446
0.000479363
0.000507723
0.000531302
0.000550306
0.00056491
0.00057525
0.000581403
0.000583377
0.00058109
0.000574361
0.000562908
0.000546355
0.000524259
0.000496169
0.000461724
0.000420803
0.000373726
0.000321502
0.000248615
0.000177119
0.000123708
8.66399e-05
5.6486e-05
1.25717e-05
4.24616e-06
2.80809e-06
1.36311e-05
6.62811e-05
0.000135703
0.000204007
0.000267313
0.000324748
0.000376228
0.00042191
0.000462021
0.000496791
0.000526442
0.000551175
0.000571164
0.000586552
0.000597439
0.000603874
0.000605839
0.000603241
0.000595901
0.000583558
0.000565876
0.000542476
0.000512993
0.000477169
0.000434983
0.000386837
0.00033376
0.000259954
0.000188891
0.000134705
9.52987e-05
5.97544e-05
1.321e-05
4.22867e-06
2.84296e-06
1.42471e-05
6.88502e-05
0.000140567
0.00021126
0.000276862
0.000336397
0.000389752
0.000437088
0.000478651
0.000514695
0.000545452
0.000571126
0.000591882
0.000607846
0.000619097
0.000625661
0.000627503
0.000624518
0.000616532
0.000603302
0.000584531
0.0005599
0.000529122
0.000492026
0.000448676
0.000399528
0.000345606
0.000270612
0.00020045
0.000145972
0.000104192
6.2517e-05
1.36768e-05
4.20329e-06
2.91966e-06
1.5073e-05
7.18396e-05
0.000145748
0.000218663
0.000286468
0.000348104
0.000403389
0.00045245
0.000495515
0.00053284
0.000564662
0.000591192
0.000612595
0.000628994
0.000640459
0.000647006
0.000648594
0.000645117
0.000636411
0.000622258
0.000602403
0.000576586
0.000544598
0.000506347
0.000461969
0.00041195
0.000356917
0.000281506
0.000212194
0.000157398
0.000113181
6.50361e-05
1.40372e-05
4.17412e-06
2.99093e-06
1.57477e-05
7.44146e-05
0.000150494
0.000225683
0.000295765
0.000359595
0.000416923
0.000467823
0.000512497
0.000551183
0.00058412
0.000611518
0.000633548
0.000650335
0.000661949
0.000668407
0.000669665
0.000665626
0.000656137
0.000641007
0.000620023
0.000592986
0.000559758
0.000520329
0.000474905
0.000424013
0.000368484
0.000293964
0.000225108
0.000169584
0.000122686
6.76984e-05
1.44514e-05
4.13814e-06
3.08723e-06
1.65682e-05
7.72703e-05
0.00015551
0.000232869
0.000305102
0.000371017
0.000430317
0.000483032
0.000529327
0.000569416
0.000603521
0.000631846
0.000654561
0.000671792
0.000683613
0.000690043
0.000691046
0.000686528
0.000676351
0.000660344
0.000638326
0.000610142
0.000575709
0.00053508
0.000488521
0.000436588
0.000380214
0.000307369
0.000239179
0.000183088
0.000133062
7.03777e-05
1.48488e-05
4.09153e-06
3.17786e-06
1.74345e-05
8.03057e-05
0.000160851
0.000240457
0.000314834
0.000382773
0.000443956
0.000498388
0.000546211
0.000587621
0.000622828
0.000652029
0.000675393
0.000693049
0.000705079
0.000711511
0.000712317
0.000707418
0.00069669
0.000679979
0.000657126
0.000628001
0.000592552
0.000550864
0.00050322
0.00045017
0.000391708
0.000320363
0.000254499
0.000197494
0.000138604
7.23865e-05
1.51383e-05
4.05446e-06
3.28625e-06
1.84564e-05
8.36936e-05
0.000166636
0.000248503
0.00032499
0.000394882
0.000457853
0.000513896
0.00056314
0.000605767
0.000641977
0.00067196
0.000695887
0.000713891
0.000726065
0.000732452
0.000733044
0.000727783
0.000716567
0.000699267
0.000675744
0.000645889
0.000609666
0.000567165
0.000518666
0.000464694
0.000401091
0.000331827
0.000268911
0.000211117
0.000144289
7.43703e-05
1.54349e-05
4.03788e-06
3.39628e-06
1.94915e-05
8.7103e-05
0.000172518
0.00025673
0.000335383
0.000407253
0.000472007
0.00052963
0.000580244
0.000624021
0.000661155
0.000691835
0.000716233
0.00073449
0.000746712
0.000752962
0.000753254
0.00074756
0.000735808
0.000717902
0.000693734
0.000663218
0.000626329
0.00058315
0.000533936
0.00047916
0.000413027
0.00034584
0.000283908
0.000220192
0.000150201
7.67689e-05
1.58577e-05
4.01957e-06
3.50997e-06
2.05121e-05
9.04141e-05
0.000178242
0.000264742
0.000345513
0.000419322
0.000485834
0.000545028
0.000597011
0.000641945
0.000680013
0.000711398
0.000736273
0.000754783
0.000767048
0.000773146
0.00077312
0.000766968
0.000754656
0.000736122
0.000711293
0.000680111
0.000642566
0.000598735
0.000548832
0.000493259
0.000428184
0.000363447
0.000299346
0.000229293
0.000156028
7.92839e-05
1.63619e-05
3.98404e-06
3.60869e-06
2.14227e-05
9.34481e-05
0.000183682
0.000272491
0.000355362
0.000431058
0.000499254
0.000559941
0.000613229
0.000659273
0.00069825
0.000730334
0.000755692
0.000774473
0.000786803
0.000792777
0.000792458
0.000785874
0.000773023
0.000753878
0.000728403
0.000696569
0.000658383
0.000613922
0.000563366
0.000507025
0.000444535
0.000379601
0.000310387
0.000237824
0.000161352
8.14054e-05
1.67535e-05
3.94342e-06
3.69357e-06
2.22966e-05
9.63949e-05
0.00018902
0.00028013
0.000365065
0.00044257
0.000512344
0.000574405
0.000628881
0.000675937
0.000715746
0.000748478
0.000774293
0.000793336
0.000805733
0.000811588
0.000810982
0.000803966
0.00079057
0.000770803
0.000744664
0.000712157
0.000673314
0.000628224
0.000577077
0.000520213
0.000458166
0.000391561
0.000320803
0.000245849
0.000166302
8.32758e-05
1.70584e-05
3.90176e-06
3.76623e-06
2.3133e-05
9.92761e-05
0.000194311
0.000287768
0.000374791
0.000454078
0.000525352
0.000588671
0.000644205
0.000692145
0.00073268
0.000765985
0.000792216
0.00081151
0.000823989
0.000829754
0.000828888
0.000821455
0.000807505
0.000787079
0.000760213
0.000726961
0.000687406
0.000641691
0.000590036
0.000532757
0.000470225
0.000402777
0.000330568
0.000253465
0.000171192
8.53892e-05
1.74765e-05
3.8432e-06
3.84611e-06
2.39661e-05
0.000102092
0.000199477
0.00029527
0.000384393
0.000465461
0.000538194
0.000602687
0.000659155
0.000707838
0.000748963
0.000782727
0.000809302
0.000828828
0.000841424
0.000847185
0.000846187
0.000838488
0.000824135
0.000803169
0.000775639
0.000741616
0.000701229
0.000654685
0.000602266
0.000544264
0.000480921
0.00041238
0.000338631
0.00025947
0.000174737
8.66122e-05
1.76681e-05
3.78327e-06
3.94236e-06
2.48036e-05
0.000104833
0.000204434
0.000302471
0.000393675
0.000476548
0.000550764
0.000616421
0.000673767
0.000723086
0.000764653
0.000798707
0.000825453
0.000845059
0.00085766
0.000863363
0.000862249
0.000854378
0.000839796
0.000818539
0.000788222
0.000749703
0.000707402
0.000663626
0.000614355
0.000555738
0.000491532
0.00042175
0.000346274
0.00026487
0.000177531
8.70965e-05
1.76346e-05
3.76083e-06
4.05833e-06
2.56722e-05
0.000107536
0.000209154
0.000309224
0.000402377
0.00048702
0.000562756
0.000629649
0.000687943
0.000737941
0.000779948
0.000814243
0.000841066
0.00086062
0.000873072
0.000878553
0.000877169
0.000869
0.000854106
0.00082879
0.0007958
0.000758405
0.000718918
0.000677158
0.000627016
0.000567906
0.000502871
0.000431893
0.000354822
0.000271401
0.000181677
8.88333e-05
1.79767e-05
3.74345e-06
4.18362e-06
2.6528e-05
0.000110135
0.000213598
0.000315463
0.000410337
0.000496587
0.000573767
0.000641899
0.000701202
0.000751974
0.000794528
0.00082916
0.000856138
0.000875687
0.000887999
0.000893224
0.000891486
0.000878305
0.000856897
0.000830233
0.000800377
0.000768976
0.000735316
0.000692387
0.000638902
0.000579192
0.000513265
0.000441069
0.000362459
0.000277219
0.0001855
9.07078e-05
1.84181e-05
3.68692e-06
4.30677e-06
2.7366e-05
0.000112653
0.000217867
0.000321349
0.000417705
0.000505313
0.000583721
0.000652931
0.000713143
0.000764643
0.000807742
0.000842746
0.000869933
0.000889549
0.000901792
0.000903
0.000893227
0.000876558
0.000854858
0.000829479
0.000802145
0.000774418
0.000744853
0.000704043
0.000650314
0.000590052
0.000523215
0.000449701
0.000369355
0.000282027
0.000188079
9.14508e-05
1.85069e-05
3.62027e-06
4.41121e-06
2.81024e-05
0.000114899
0.000221774
0.000326794
0.000424522
0.000513343
0.000592814
0.000662941
0.000723921
0.000776031
0.000819583
0.000854886
0.000882228
0.000901866
0.000910999
0.000906528
0.000894383
0.000877186
0.000856126
0.000832212
0.000806827
0.000781178
0.000753836
0.00071615
0.000662292
0.000601627
0.000534063
0.000459436
0.000377521
0.000288144
0.000191783
9.2862e-05
1.87431e-05
3.58433e-06
4.48422e-06
2.8637e-05
0.000116609
0.000224951
0.000331424
0.000430472
0.000520455
0.000600929
0.000671907
0.000733586
0.000786248
0.000830198
0.000865747
0.000893187
0.000912786
0.000916346
0.000908731
0.000895401
0.000878551
0.000859183
0.000838196
0.000816585
0.000794463
0.000768489
0.000727978
0.000673865
0.000612712
0.000544403
0.000468748
0.000385487
0.000294409
0.000195999
9.48906e-05
1.91817e-05
3.55659e-06
4.51977e-06
2.89036e-05
0.00011762
0.00022714
0.000334921
0.000435227
0.000526341
0.000607799
0.000679611
0.000741981
0.000795192
0.000839553
0.000875371
0.000902941
0.00092254
0.000921504
0.000911024
0.000896505
0.000880024
0.000862594
0.000845167
0.000828422
0.000810998
0.000785812
0.000738386
0.000683845
0.000622078
0.000552931
0.000476195
0.000391613
0.000299009
0.000198953
9.62904e-05
1.95006e-05
3.50402e-06
4.52991e-06
2.90246e-05
0.000118236
0.000228704
0.000337624
0.000439073
0.000531241
0.000613623
0.000686222
0.000749246
0.000802988
0.000847764
0.000883888
0.000911659
0.000931222
0.000927646
0.000914748
0.000898799
0.000882144
0.00086595
0.000851357
0.000838634
0.000824026
0.000795018
0.000747405
0.000692497
0.000630152
0.00056019
0.000482382
0.00039648
0.000302371
0.000200782
9.68988e-05
1.95913e-05
3.42796e-06
4.53599e-06
2.921e-05
0.000118966
0.000230281
0.000340189
0.000442632
0.000535719
0.000618911
0.000692198
0.000755793
0.000810001
0.000855156
0.000891584
0.000919597
0.00093948
0.000935445
0.000920541
0.000903086
0.000885861
0.000869976
0.000856488
0.000845555
0.000832794
0.000803739
0.000755951
0.000700696
0.000637801
0.000567047
0.000488177
0.000400934
0.000305253
0.000202037
9.69375e-05
1.94716e-05
3.35214e-06
4.55553e-06
2.95362e-05
0.000120052
0.000232242
0.00034305
0.000446353
0.000540221
0.00062409
0.000697939
0.000761988
0.000816557
0.000861998
0.000898665
0.000926887
0.000946965
0.000944504
0.000928556
0.000909728
0.000891858
0.000876029
0.000862882
0.000852303
0.000840098
0.000812385
0.00076444
0.000708864
0.000645459
0.000573974
0.000494119
0.000405615
0.000308414
0.000203555
9.71295e-05
1.93885e-05
3.29852e-06
4.59365e-06
2.98935e-05
0.000121219
0.00023429
0.00034598
0.000450119
0.000544738
0.000629244
0.000703605
0.000768042
0.000822889
0.000868522
0.000905324
0.000933658
0.000953855
0.000952326
0.000936308
0.000917235
0.000899647
0.000884772
0.000872811
0.000862865
0.000850157
0.000821173
0.000773049
0.000717159
0.00065329
0.000581175
0.000500495
0.000410938
0.000312438
0.000206075
9.81851e-05
1.95906e-05
3.26723e-06
4.64623e-06
3.02287e-05
0.0001223
0.000236175
0.000348684
0.000453626
0.000548992
0.000634155
0.000709058
0.000773906
0.000829034
0.000874834
0.000911711
0.000940062
0.000960253
0.000956546
0.000940674
0.000922915
0.000907492
0.000895538
0.000886703
0.000878735
0.000864845
0.000829714
0.00078131
0.000725035
0.000660663
0.00058792
0.000506485
0.000416036
0.000316483
0.000208893
9.96658e-05
1.99514e-05
3.23756e-06
4.70221e-06
3.05481e-05
0.000123293
0.000237863
0.000351065
0.000456703
0.000552749
0.000638546
0.000714007
0.000779313
0.00083478
0.000880792
0.00091776
0.000946094
0.000963771
0.000956982
0.000941664
0.000926205
0.000914236
0.000906748
0.000902583
0.000896962
0.000878314
0.000837366
0.000788659
0.000731962
0.000667026
0.000593572
0.000511295
0.000419911
0.000319381
0.000210815
0.000100666
2.0191e-05
3.18929e-06
4.74989e-06
3.08508e-05
0.000124216
0.000239409
0.000353192
0.000459385
0.000555973
0.000642296
0.000718255
0.000784007
0.000839847
0.000886134
0.000923263
0.000951638
0.00096388
0.00095538
0.000940782
0.000927569
0.000919093
0.000916237
0.000916807
0.000912517
0.000884934
0.000843883
0.000794994
0.000737984
0.000672556
0.000598405
0.000515229
0.000422797
0.000321176
0.000211646
0.000100877
2.02001e-05
3.12249e-06
4.79069e-06
3.1153e-05
0.000125144
0.000240977
0.000355322
0.000462
0.000559015
0.000645731
0.000722056
0.000788154
0.000844308
0.000890862
0.00092819
0.000956675
0.00096392
0.000953357
0.000938822
0.000926983
0.000920821
0.000921184
0.000925462
0.000923224
0.000890887
0.000849806
0.000800826
0.000743617
0.000677827
0.000603099
0.000519102
0.000425617
0.000322804
0.000212156
0.000100723
2.00768e-05
3.05228e-06
4.83639e-06
3.14569e-05
0.000126084
0.000242595
0.000357558
0.000464752
0.000562182
0.000649226
0.00072582
0.000792146
0.000848499
0.000895229
0.000932703
0.000961292
0.000963713
0.00095124
0.00093652
0.000925278
0.000920062
0.000921789
0.000928088
0.000928209
0.000896576
0.000855544
0.000806532
0.000749185
0.000683118
0.000607925
0.000523227
0.00042878
0.000324781
0.0002129
0.000100617
1.99461e-05
2.99606e-06
4.89465e-06
3.1757e-05
0.000126987
0.000244145
0.000359725
0.000467468
0.000565352
0.000652752
0.000729609
0.000796123
0.00085261
0.000899433
0.000936974
0.000965087
0.000962765
0.000949212
0.000934566
0.000923441
0.000918107
0.000919706
0.000926559
0.000929001
0.000902241
0.00086134
0.000812334
0.000754869
0.00068854
0.000612915
0.000527575
0.000432243
0.000327117
0.000213978
0.000100698
1.98674e-05
2.96489e-06
4.95696e-06
3.19529e-05
0.000127565
0.000245213
0.00036132
0.000469589
0.000567962
0.000655784
0.000732983
0.000799752
0.000856412
0.000903336
0.000940909
0.000963429
0.000960024
0.000946928
0.000932832
0.000921807
0.000915999
0.000916771
0.00092329
0.000927734
0.000907932
0.00086725
0.000818316
0.000760771
0.000694207
0.000618178
0.000532243
0.000436102
0.000329946
0.00021562
0.000101261
1.99683e-05
2.95896e-06
5.00693e-06
3.19665e-05
0.000127593
0.000245456
0.000361898
0.000470572
0.000569389
0.000657657
0.000735273
0.000802404
0.000859352
0.000906479
0.000944164
0.000959762
0.000955381
0.000943448
0.000930635
0.000920246
0.000914256
0.000914225
0.000920155
0.000926224
0.000913496
0.000873111
0.000824332
0.000766794
0.000700079
0.000623729
0.000537292
0.000440451
0.00033339
0.000217976
0.000102469
2.02938e-05
2.96651e-06
5.02919e-06
3.19076e-05
0.000127351
0.000245186
0.000361716
0.000470578
0.000569666
0.000658272
0.000736262
0.000803773
0.000861076
0.000908504
0.000946413
0.000956086
0.000950501
0.000939603
0.000928261
0.000918905
0.000913218
0.000912807
0.000918285
0.000925571
0.000918669
0.000878603
0.000830031
0.000772571
0.000705786
0.000629202
0.000542352
0.000444907
0.000337043
0.000220631
0.000103986
2.07259e-05
2.97075e-06
5.02249e-06
3.19472e-05
0.000127386
0.000245155
0.0003616
0.000470408
0.000569509
0.000658213
0.000736385
0.000804148
0.000861745
0.000909481
0.000947684
0.000955058
0.0009483
0.000937573
0.000927105
0.000918679
0.000913608
0.000913385
0.000918835
0.000926857
0.000923332
0.000883563
0.000835213
0.000777873
0.000711079
0.000634332
0.000547142
0.000449158
0.000340545
0.000223182
0.000105439
2.11308e-05
2.96504e-06
5.00415e-06
3.20385e-05
0.000127664
0.000245556
0.000362011
0.000470743
0.000569744
0.000658376
0.00073654
0.000804371
0.000862109
0.000910046
0.000948492
0.000955783
0.000948519
0.000937675
0.000927626
0.000919922
0.000915628
0.000916133
0.000922283
0.000930912
0.000927463
0.00088793
0.000839766
0.000782541
0.000715766
0.000638913
0.00055146
0.000453031
0.000343768
0.000225551
0.000106794
2.14896e-05
2.95342e-06
4.9889e-06
3.1936e-05
0.000127431
0.000245379
0.00036197
0.000470825
0.0005699
0.00065857
0.000736763
0.00080464
0.000862459
0.000910516
0.000948516
0.000954728
0.000947855
0.000937718
0.000928437
0.000921597
0.000918333
0.000920088
0.000927546
0.000936646
0.000931077
0.000891689
0.000843637
0.000786479
0.000719707
0.000642768
0.000555111
0.000456329
0.00034654
0.000227609
0.000107985
2.18029e-05
2.94027e-06
4.96717e-06
3.16388e-05
0.000126568
0.000244215
0.00036074
0.000469665
0.00056888
0.000657708
0.000736054
0.00080408
0.000862055
0.000910282
0.000947052
0.000952925
0.000946559
0.000937216
0.000928783
0.000922918
0.000920924
0.000924276
0.000933214
0.00094248
0.000934169
0.000894834
0.000846811
0.000789651
0.000722837
0.000645795
0.000557955
0.000458883
0.000348672
0.00022918
0.000108887
2.20406e-05
2.92427e-06
4.9364e-06
3.15433e-05
0.000126219
0.000243525
0.000359753
0.000468455
0.00056752
0.000656273
0.000734616
0.000802703
0.000860799
0.000909216
0.000948273
0.000955423
0.000947722
0.000937419
0.000928857
0.000923574
0.000922758
0.000927663
0.000937934
0.000947257
0.000936661
0.000897339
0.000849289
0.000792066
0.000725153
0.00064797
0.000559936
0.000460605
0.00035006
0.000230162
0.000109429
2.21784e-05
2.90175e-06
4.92499e-06
3.17944e-05
0.000126795
0.000244016
0.000360004
0.000468406
0.000567158
0.000655612
0.000733698
0.000801597
0.000859598
0.000908028
0.000947222
0.00096484
0.000956429
0.000942406
0.000930979
0.000924544
0.00092393
0.00092974
0.000940888
0.000950279
0.000938354
0.000899114
0.000851074
0.000793796
0.000726766
0.000649413
0.000561158
0.000461562
0.000350718
0.000230518
0.000109556
2.21973e-05
2.87051e-06
4.95968e-06
3.22544e-05
0.000127887
0.000245147
0.000360959
0.000469141
0.000567672
0.00065591
0.000733787
0.000801494
0.000859347
0.000907708
0.000946949
0.000977241
0.000970554
0.000953193
0.000937749
0.000928555
0.000926755
0.000932487
0.000943887
0.000952927
0.000939055
0.000899986
0.000852059
0.000794818
0.000727744
0.000650265
0.000561813
0.000461962
0.00035084
0.0002304
0.000109352
2.21086e-05
2.83026e-06
5.01713e-06
3.25678e-05
0.000128625
0.000245932
0.000361586
0.000469568
0.000567935
0.000656069
0.00073389
0.000801575
0.000859425
0.0009078
0.000947076
0.000977628
0.000979076
0.000963333
0.000946225
0.000934824
0.000931578
0.00093675
0.000947874
0.000955869
0.000938957
0.000900014
0.000852224
0.000795095
0.000728078
0.000650586
0.000562044
0.000462039
0.000350729
0.000230129
0.000109059
2.19864e-05
2.78656e-06
5.0632e-06
3.29605e-05
0.000129575
0.000246991
0.000362456
0.000470122
0.000568158
0.000656015
0.000733646
0.000801232
0.000859065
0.000907484
0.000946852
0.000977527
0.000981563
0.000968116
0.000951962
0.000940544
0.000936968
0.000941803
0.000952335
0.000958784
0.000938556
0.000899615
0.000851893
0.000794861
0.000727937
0.000650505
0.000561973
0.000461923
0.000350527
0.000229846
0.000108787
2.18698e-05
2.74457e-06
5.09772e-06
3.33565e-05
0.000130577
0.000248236
0.000363648
0.000471075
0.000568783
0.000656296
0.00073362
0.000800968
0.000858647
0.000907002
0.000946388
0.000977151
0.000982741
0.000971368
0.000956847
0.000946473
0.000943527
0.000948607
0.000958657
0.000963102
0.000938169
0.000899129
0.000851396
0.00079442
0.00072759
0.00065026
0.000561815
0.000461817
0.000350437
0.000229748
0.000108691
2.18109e-05
2.70719e-06
5.13296e-06
3.35787e-05
0.000131159
0.000248992
0.000364402
0.000471703
0.000569217
0.000656507
0.000733615
0.000800777
0.000858318
0.000906591
0.000945953
0.000976751
0.000981345
0.000971858
0.000959999
0.00095204
0.000950966
0.000957247
0.000967365
0.000969042
0.0009379
0.000898657
0.000850827
0.000793844
0.000727079
0.000649862
0.00056155
0.000461684
0.000350411
0.000229789
0.000108742
2.18075e-05
2.67489e-06
5.16537e-06
3.37728e-05
0.000131658
0.000249657
0.000365059
0.000472231
0.000569545
0.000656615
0.000733512
0.000800493
0.000857893
0.000906066
0.000945367
0.000973581
0.000976026
0.000968379
0.000959959
0.000955805
0.000958309
0.000967076
0.00097623
0.000969105
0.000937682
0.000898211
0.000850227
0.000793174
0.00072642
0.000649287
0.000561111
0.000461411
0.000350306
0.000229818
0.000108828
2.18247e-05
2.64562e-06
5.18632e-06
3.39015e-05
0.000131991
0.000250164
0.000365621
0.000472727
0.00056989
0.000656758
0.000733435
0.000800204
0.000857413
0.000905422
0.000944581
0.000966307
0.000967841
0.000962506
0.000957823
0.000957807
0.000964153
0.00097543
0.000983717
0.000969305
0.000937599
0.000897873
0.000849681
0.000792486
0.000725665
0.00064854
0.000560445
0.000460881
0.000349947
0.000229635
0.000108783
2.18131e-05
2.61776e-06
5.19472e-06
3.39814e-05
0.000132202
0.000250495
0.000366
0.000473069
0.000570124
0.000656834
0.000733327
0.000799906
0.000856932
0.000904775
0.000943788
0.000960186
0.000960198
0.000956301
0.00095478
0.000958631
0.000968722
0.00098254
0.000990318
0.000969722
0.000937769
0.000897791
0.000849363
0.000791969
0.000725006
0.000647809
0.000559717
0.00046023
0.000349435
0.000229304
0.000108637
2.17758e-05
2.59168e-06
5.19469e-06
3.40592e-05
0.000132427
0.000250878
0.000366477
0.000473551
0.000570526
0.000657093
0.000733404
0.000799786
0.000856618
0.000904284
0.000943146
0.000955774
0.00095415
0.000950977
0.000951897
0.000959147
0.000972828
0.000989045
0.000994785
0.000970379
0.000938224
0.000898006
0.000849324
0.000791684
0.000724507
0.000647147
0.000558961
0.000459458
0.00034873
0.000228745
0.000108302
2.16829e-05
2.56822e-06
5.20073e-06
3.41774e-05
0.000132801
0.000251519
0.000367319
0.000474489
0.000571451
0.000657913
0.000734048
0.000800212
0.000856812
0.000904254
0.00094292
0.000952007
0.000949047
0.000946557
0.000949608
0.000959895
0.00097665
0.000994024
0.000995709
0.000971245
0.000938951
0.000898528
0.000849594
0.000791679
0.000724228
0.000646625
0.000558249
0.000458633
0.000347886
0.000227997
0.000107797
2.15423e-05
2.54903e-06
5.22544e-06
3.43893e-05
0.000133438
0.000252577
0.00036871
0.000476092
0.000573133
0.000659551
0.00073554
0.000801479
0.000857804
0.000904949
0.000941836
0.000947538
0.000944035
0.000942437
0.000947284
0.000959972
0.000979128
0.000997584
0.000996915
0.000972426
0.000940028
0.000899424
0.000850241
0.000792028
0.000724255
0.00064633
0.000557664
0.000457819
0.00034694
0.00022706
0.000107102
2.13428e-05
2.5332e-06
5.27121e-06
3.46668e-05
0.000134284
0.000254014
0.000370627
0.000478338
0.000575552
0.000661993
0.000737874
0.000803593
0.000859607
0.00090637
0.000937118
0.000940907
0.000937693
0.00093733
0.000943827
0.000958371
0.000979349
0.0009991
0.000998447
0.000973962
0.000941483
0.000900712
0.000851283
0.000792758
0.000724627
0.000646326
0.000557295
0.000457136
0.000346037
0.000226096
0.000106355
2.11338e-05
2.52117e-06
5.32875e-06
3.49402e-05
0.000135187
0.000255648
0.00037287
0.000481008
0.000578463
0.000664972
0.00074077
0.000806274
0.000861959
0.000908294
0.000930976
0.000932547
0.000929907
0.000930949
0.00093885
0.000954626
0.000976841
0.000998261
0.00100031
0.000975872
0.000943347
0.000902434
0.000852769
0.000793924
0.000725405
0.000646675
0.000557205
0.000456641
0.000345226
0.000225142
0.000105577
2.09123e-05
2.51049e-06
5.38406e-06
3.51668e-05
0.000136032
0.00025732
0.000375277
0.000483948
0.000581714
0.000668328
0.00074405
0.000809327
0.000864657
0.000910527
0.000924605
0.000923805
0.000921596
0.000923741
0.000932501
0.000948768
0.000971608
0.000995025
0.00100237
0.000978044
0.000945524
0.000904507
0.000854633
0.000795481
0.00072657
0.000647385
0.000557432
0.000456399
0.000344594
0.000224293
0.000104843
2.07047e-05
2.49926e-06
5.42484e-06
3.52373e-05
0.000136452
0.000258428
0.000377117
0.000486404
0.000584598
0.000671429
0.000747164
0.000812269
0.000867268
0.000910006
0.000919016
0.000916803
0.000914665
0.000917095
0.000925767
0.000941494
0.000963982
0.000989144
0.00100388
0.000980265
0.000947836
0.000906791
0.000856767
0.000797347
0.000728065
0.000648425
0.000557967
0.000456426
0.000344175
0.000223593
0.000104189
2.0514e-05
2.48532e-06
5.44689e-06
3.51534e-05
0.000136341
0.000258625
0.000377814
0.000487647
0.000586327
0.00067352
0.000749457
0.000814594
0.000869463
0.000910052
0.0009172
0.000913672
0.000910608
0.00091222
0.00091994
0.000934521
0.00095598
0.000981141
0.000998531
0.000982226
0.000950034
0.000909087
0.000859021
0.00079942
0.000729827
0.000649765
0.000558804
0.000456725
0.000343972
0.000223036
0.000103602
2.03366e-05
2.46821e-06
5.45381e-06
3.49982e-05
0.000135874
0.000258037
0.000377357
0.000487509
0.000586605
0.000674224
0.000750531
0.000815944
0.000870975
0.000913954
0.000920322
0.000914964
0.000909959
0.000909712
0.000915557
0.000928193
0.00094793
0.000972546
0.000992389
0.000983761
0.000951923
0.000911205
0.000861227
0.000801568
0.000731772
0.000651375
0.00055997
0.000457382
0.00034412
0.00022278
0.000103211
2.02084e-05
2.44868e-06
5.4537e-06
3.48091e-05
0.000135164
0.000256838
0.000375918
0.0004861
0.000585442
0.000673444
0.000750198
0.000816056
0.000871487
0.000916998
0.000927518
0.000921014
0.000913243
0.000910097
0.00091319
0.000923183
0.000940609
0.000964147
0.000985969
0.000984641
0.00095325
0.00091288
0.000863129
0.000803557
0.000733699
0.000653092
0.000561342
0.000458307
0.000344555
0.000222775
0.000102977
2.01137e-05
2.42747e-06
5.45255e-06
3.46644e-05
0.000134448
0.000255363
0.00037386
0.000483751
0.000583091
0.000671328
0.000748481
0.000814834
0.000870797
0.000916839
0.000936749
0.000931473
0.000921103
0.000914279
0.000913741
0.000920403
0.000934965
0.000956839
0.00097983
0.000984657
0.000953742
0.000913802
0.000864397
0.000805055
0.000735288
0.000654621
0.000562664
0.000459296
0.000345132
0.000222943
0.000102874
2.00502e-05
2.40559e-06
5.4538e-06
3.45546e-05
0.000133759
0.000253734
0.000371386
0.000480715
0.00057982
0.000668124
0.000745592
0.000812444
0.000869029
0.000915763
0.000946654
0.000944047
0.000931951
0.000921772
0.000917617
0.000920862
0.00093237
0.000952047
0.000975021
0.000983838
0.000953352
0.000913873
0.00086491
0.000805946
0.000736453
0.000655924
0.000563955
0.000460424
0.000345971
0.000223418
0.000103011
2.00477e-05
2.38252e-06
5.46432e-06
3.44884e-05
0.000133171
0.000252121
0.000368739
0.000477268
0.000575899
0.000664065
0.000741698
0.000808965
0.000866154
0.000913624
0.000951768
0.000956424
0.000944522
0.000931724
0.000924323
0.000924503
0.000933328
0.000950859
0.00097274
0.000982347
0.000952154
0.00091307
0.000864556
0.000806046
0.000736961
0.000656753
0.000564981
0.000461501
0.000346944
0.00022414
0.000103375
2.01128e-05
2.36186e-06
5.48892e-06
3.45507e-05
0.000132935
0.000250951
0.000366471
0.000474029
0.000571952
0.000659725
0.000737278
0.000804748
0.000862375
0.000910462
0.000949353
0.000965897
0.000957515
0.000943679
0.000933641
0.000931118
0.000937748
0.000953604
0.000973779
0.000980488
0.000950421
0.000911609
0.000863484
0.000805432
0.000736826
0.000657063
0.000565649
0.000462395
0.000347892
0.000224946
0.000103847
2.02107e-05
2.34316e-06
5.52507e-06
3.46873e-05
0.000132971
0.000250237
0.000364741
0.000471297
0.000568395
0.000655601
0.000732878
0.000800356
0.000858249
0.000906821
0.000946367
0.000972252
0.000967869
0.000954585
0.000943549
0.000939722
0.000945306
0.000960111
0.000977842
0.000978353
0.000948212
0.000909501
0.000861638
0.000803981
0.000735861
0.000656622
0.000565713
0.000462876
0.000348636
0.000225728
0.000104389
2.03457e-05
2.32733e-06
5.57223e-06
3.49537e-05
0.00013342
0.000250217
0.000363876
0.000469474
0.000565678
0.000652171
0.000728976
0.000796247
0.000854196
0.000903059
0.000943097
0.000974587
0.000974625
0.000963305
0.000953008
0.000949428
0.000954987
0.00096896
0.00098349
0.000976152
0.00094577
0.000906987
0.000859225
0.000801829
0.000734103
0.000655349
0.000564959
0.000462612
0.000348758
0.000226058
0.000104691
2.04323e-05
2.31371e-06
5.62923e-06
3.53995e-05
0.000134443
0.000251174
0.000364257
0.000469007
0.000564287
0.000649927
0.000726052
0.000792871
0.000850617
0.000899522
0.000939817
0.000971736
0.000977187
0.000969479
0.0009616
0.000959735
0.000966188
0.000979439
0.000990123
0.000974035
0.000943274
0.000904265
0.000856446
0.000799172
0.000731731
0.000653396
0.00056351
0.000461685
0.000348295
0.000225925
0.000104709
2.04468e-05
2.30076e-06
5.68315e-06
3.59482e-05
0.000135891
0.000253039
0.000365954
0.000470096
0.000564521
0.000649231
0.000724489
0.000790605
0.00084787
0.000896542
0.000936851
0.000969005
0.000976118
0.000972299
0.0009686
0.000970064
0.000978261
0.000990709
0.000995745
0.000972224
0.000940989
0.000901614
0.000853573
0.000796241
0.000728919
0.00065087
0.000561408
0.000460099
0.000347249
0.000225367
0.000104515
2.04239e-05
2.28893e-06
5.72575e-06
3.6601e-05
0.00013775
0.000255788
0.000368988
0.000472852
0.000566586
0.000650371
0.00072463
0.000789808
0.000846293
0.000894406
0.000934405
0.00096369
0.000971578
0.000973028
0.000975579
0.00098225
0.000992856
0.00100212
0.000994664
0.000970689
0.000939005
0.000899239
0.000850908
0.000793426
0.000726111
0.000648231
0.000559083
0.000458196
0.000345828
0.000224435
0.000104051
2.03278e-05
2.27906e-06
5.75339e-06
3.72137e-05
0.000139659
0.000258915
0.000372824
0.000476795
0.000570115
0.000653108
0.000726357
0.000790458
0.000845928
0.000893188
0.000932563
0.000954191
0.00096373
0.000971882
0.00098261
0.000996057
0.00100876
0.00101059
0.000993626
0.000969173
0.000936999
0.000896773
0.000848061
0.000790322
0.000722911
0.000645114
0.000556229
0.00045576
0.000343919
0.000223109
0.000103322
2.01421e-05
2.26865e-06
5.76087e-06
3.76763e-05
0.000141282
0.000261909
0.00037687
0.000481348
0.000574609
0.000657056
0.000729399
0.000792372
0.00084663
0.000892722
0.00092475
0.000940199
0.000953572
0.000970214
0.000990266
0.00100986
0.00101933
0.00100946
0.000992204
0.000967394
0.000934818
0.000894182
0.000845103
0.000787095
0.000719571
0.000641863
0.000553293
0.000453358
0.000342219
0.000222164
0.000103007
2.01147e-05
2.26456e-06
5.75332e-06
3.78648e-05
0.000142205
0.000264059
0.000380207
0.000485502
0.000579089
0.000661365
0.000733103
0.000795139
0.000848251
0.000893122
0.000912468
0.000925583
0.000942673
0.000965821
0.000992474
0.00101494
0.0010177
0.00100768
0.000990199
0.000965091
0.00093214
0.000891077
0.000841563
0.00078317
0.000715378
0.000637588
0.000549178
0.000449679
0.000339244
0.000220103
0.000101952
1.98918e-05
2.24908e-06
5.73866e-06
3.79182e-05
0.000142733
0.000265571
0.000382838
0.000489068
0.000583227
0.000665645
0.000737098
0.000798467
0.000850605
0.000889681
0.000903742
0.000914924
0.000932449
0.000957934
0.000988044
0.00101349
0.00101589
0.00100573
0.000988052
0.000962662
0.000929334
0.000887807
0.00083777
0.000778848
0.000710596
0.000632503
0.000544043
0.000444832
0.000335078
0.000217017
0.000100243
1.94824e-05
2.21704e-06
5.71962e-06
3.77067e-05
0.000142516
0.000265953
0.000384172
0.000491383
0.000586334
0.00066923
0.000740794
0.000801904
0.000853442
0.000889285
0.000899527
0.000907453
0.000922772
0.000947339
0.000978206
0.00100657
0.00101409
0.00100382
0.000986006
0.000960407
0.000926771
0.000884825
0.000834267
0.000774758
0.00070592
0.00062734
0.000538613
0.000439487
0.000330294
0.000213339
9.81608e-05
1.89846e-05
2.16916e-06
5.70219e-06
3.73308e-05
0.000141773
0.000265414
0.000384282
0.00049233
0.000588102
0.000671663
0.000743649
0.000804896
0.000856278
0.000893357
0.000901172
0.000904997
0.000915851
0.000936579
0.000965526
0.000996
0.0010123
0.00100196
0.000984086
0.000958389
0.000924582
0.000882358
0.000831395
0.000771358
0.000701905
0.000622699
0.000533456
0.000434085
0.000325108
0.000209016
9.5476e-05
1.82934e-05
2.10375e-06
5.68456e-06
3.69044e-05
0.000140699
0.000264078
0.000383183
0.000491797
0.000588273
0.000672529
0.000745099
0.000806757
0.000858345
0.000900141
0.000907396
0.000907716
0.000913822
0.00092961
0.000954558
0.000984243
0.0010072
0.000999716
0.000981828
0.000956137
0.000922314
0.000880011
0.000828867
0.00076852
0.000698625
0.000618874
0.000529066
0.000429258
0.000320189
0.000204636
9.25668e-05
1.74989e-05
2.02442e-06
5.67164e-06
3.64715e-05
0.00013948
0.000262268
0.000381224
0.000490062
0.000586999
0.000671824
0.000744967
0.000807126
0.000859084
0.000901623
0.000915009
0.000913982
0.000915827
0.000926731
0.000947278
0.000974185
0.000997783
0.000996816
0.000978888
0.000953221
0.000919462
0.000877227
0.000826112
0.000765713
0.000695648
0.000615598
0.000525392
0.00042518
0.000315888
0.000200602
8.97323e-05
1.66945e-05
1.93954e-06
5.65661e-06
3.59819e-05
0.000138014
0.00025991
0.000378399
0.000487169
0.000584328
0.000669551
0.000743177
0.000805828
0.000858234
0.000901138
0.00092244
0.00092254
0.000921496
0.000927952
0.000944022
0.000967519
0.000990245
0.000993146
0.000975072
0.000949365
0.000915661
0.000873553
0.000822604
0.000762364
0.000692405
0.000612368
0.000522061
0.000421665
0.000312219
0.000197069
8.71104e-05
1.59148e-05
1.85511e-06
5.63801e-06
3.54579e-05
0.000136376
0.000257101
0.000374794
0.000483188
0.000580317
0.000665758
0.000739757
0.000802864
0.000855756
0.000899141
0.000929391
0.000932049
0.000929726
0.000933197
0.000945818
0.000966053
0.000986349
0.000988654
0.000970293
0.00094443
0.000910704
0.000868701
0.000817965
0.000758019
0.000688398
0.000608699
0.000518688
0.000418523
0.000309274
0.000194414
8.51696e-05
1.53257e-05
1.78133e-06
5.61294e-06
3.48643e-05
0.000134526
0.000253876
0.000370532
0.000478299
0.000575161
0.000660617
0.000734836
0.0007983
0.000851635
0.000895509
0.00093058
0.000940985
0.000939777
0.000941723
0.000951994
0.000969432
0.000986117
0.000983425
0.000964686
0.000938579
0.000904754
0.000862802
0.000812267
0.000752664
0.000683506
0.000604359
0.000514949
0.000415388
0.000306707
0.000192392
8.38121e-05
1.49193e-05
1.71777e-06
5.583e-06
3.42906e-05
0.000132681
0.00025051
0.000365909
0.000472799
0.000569144
0.000654381
0.00072861
0.000792259
0.000845904
0.00089018
0.000925725
0.000947873
0.00095105
0.000953377
0.000962253
0.00097713
0.000989144
0.000977493
0.000958374
0.000932023
0.000898099
0.000856204
0.000805889
0.000746674
0.000678066
0.000599618
0.000511024
0.000412345
0.000304542
0.000191009
8.30585e-05
1.47058e-05
1.66683e-06
5.55045e-06
3.37202e-05
0.000130832
0.000247049
0.00036104
0.000466867
0.000562491
0.000647305
0.000721354
0.000785014
0.000838824
0.000883389
0.000919323
0.000947213
0.00096073
0.000966428
0.000975385
0.000985914
0.000983129
0.000970604
0.000951233
0.000924757
0.00089085
0.000849126
0.000799146
0.000740434
0.000672496
0.000594871
0.000507228
0.000409575
0.000302784
0.00019012
8.27348e-05
1.46255e-05
1.62197e-06
5.52057e-06
3.32359e-05
0.000129196
0.000243834
0.00035636
0.000460994
0.000555718
0.000639897
0.000713539
0.000776979
0.000830725
0.000875353
0.000911457
0.000939601
0.000960293
0.000973954
0.000980889
0.000981268
0.000975125
0.000962389
0.000942899
0.000916416
0.000882635
0.000841187
0.000791647
0.000733545
0.000666389
0.000589706
0.000503135
0.000406631
0.000300975
0.000189289
8.25315e-05
1.45925e-05
1.58031e-06
5.49614e-06
3.27513e-05
0.000127559
0.000240637
0.000351704
0.000455112
0.000548854
0.000632268
0.000705329
0.000768346
0.000821797
0.000866237
0.000902237
0.000930331
0.000950993
0.00096461
0.000971467
0.000971738
0.000965488
0.000952678
0.00093318
0.000906783
0.000873202
0.000832091
0.000783042
0.0007256
0.000659277
0.000583593
0.000498163
0.00040289
0.00029847
0.000187901
8.19921e-05
1.44707e-05
1.5367e-06
5.48239e-06
3.21646e-05
0.000125628
0.000237068
0.000346698
0.00044894
0.000541745
0.000624406
0.000696858
0.00075938
0.00081243
0.000856549
0.000892291
0.000920178
0.000940671
0.000954143
0.000960872
0.000961033
0.000954697
0.000941843
0.000922358
0.000896052
0.000862662
0.000821861
0.000773262
0.000716429
0.00065089
0.000576174
0.000491888
0.000397907
0.000294867
0.000185662
8.09572e-05
1.42295e-05
1.49749e-06
5.48418e-06
3.12926e-05
0.000122881
0.000232334
0.000340449
0.000441636
0.00053371
0.000615838
0.000687869
0.000750028
0.000802749
0.000846561
0.000882016
0.000909639
0.000929892
0.000943154
0.000949708
0.000949734
0.000943314
0.000930435
0.000910995
0.000884814
0.000851644
0.000811168
0.000763018
0.000706774
0.000641983
0.00056819
0.00048501
0.000392312
0.000290694
0.000182974
7.96704e-05
1.39396e-05
1.46378e-06
5.51039e-06
2.99999e-05
0.000118843
0.000225566
0.000331809
0.000431948
0.000523536
0.00060549
0.000677479
0.000739619
0.000792285
0.000835985
0.000871271
0.000898683
0.000918704
0.000931735
0.000938082
0.000937947
0.000931429
0.000918529
0.000899157
0.000873143
0.000840242
0.000800148
0.000752499
0.000696886
0.00063287
0.000560011
0.00047794
0.000386526
0.000286347
0.000180149
7.83033e-05
1.36394e-05
1.43179e-06
5.57546e-06
2.83028e-05
0.000113413
0.000216298
0.000319928
0.000418755
0.000509979
0.000592125
0.000664556
0.000727181
0.000780254
0.000824229
0.000859647
0.000887061
0.000906983
0.000919854
0.000926017
0.000925714
0.000919077
0.000906136
0.000886824
0.000860984
0.000828383
0.000788719
0.000741632
0.000686717
0.00062354
0.00055167
0.000470747
0.000380644
0.000281922
0.000177264
7.68892e-05
1.33149e-05
1.3895e-06
5.69834e-06
2.64518e-05
0.000107132
0.000204981
0.000304884
0.000401709
0.000492344
0.000574826
0.000648077
0.000711685
0.000765699
0.000810457
0.000846454
0.00087424
0.000894351
0.000907267
0.000913379
0.000912976
0.000906241
0.000893244
0.000873957
0.000848252
0.000815916
0.000776657
0.000730123
0.000675907
0.000613576
0.000542698
0.000462918
0.000374117
0.000276859
0.000173803
7.50858e-05
1.28814e-05
1.33822e-06
5.8891e-06
2.50353e-05
0.00010156
0.000193598
0.000288552
0.000382334
0.000471702
0.00055418
0.000628196
0.000692952
0.000748211
0.000794131
0.000831107
0.000859651
0.000880304
0.000893568
0.000899876
0.000899563
0.000892861
0.00087989
0.000860666
0.000835102
0.000803016
0.000764143
0.000718141
0.000664611
0.000603119
0.000533227
0.000454575
0.000367045
0.00027121
0.000169759
7.2866e-05
1.23455e-05
1.28481e-06
6.12854e-06
2.45926e-05
9.82557e-05
0.000184414
0.000265803
0.000351177
0.000441888
0.000531428
0.0006074
0.000672664
0.000728833
0.00077579
0.000813766
0.000843185
0.000864551
0.000878365
0.00088508
0.000885063
0.000878581
0.000865798
0.000846767
0.000821441
0.000789671
0.000751219
0.000705768
0.000652933
0.000592284
0.000523388
0.00044588
0.000359639
0.000265247
0.000165429
7.04553e-05
1.1787e-05
1.24177e-06
6.36185e-06
2.54372e-05
9.82832e-05
0.000177154
0.000247536
0.000326214
0.000415538
0.000508017
0.000589929
0.000654358
0.000710303
0.00075742
0.00079576
0.000825626
0.000847448
0.000861693
0.000868799
0.000869141
0.000863
0.00085056
0.000831899
0.00080699
0.000775711
0.000737842
0.000693084
0.000641064
0.000581363
0.000513548
0.000437251
0.000352345
0.000259411
0.000161202
6.80936e-05
1.12596e-05
1.20549e-06
6.51814e-06
2.75851e-05
0.000102688
0.000178855
0.000242583
0.000314367
0.000398399
0.000488703
0.000573937
0.000641224
0.000695517
0.000741507
0.000779112
0.00080853
0.000830112
0.000844269
0.000851404
0.000851873
0.000845949
0.000833816
0.000815556
0.000791153
0.000760491
0.000723362
0.000679474
0.00062846
0.000569902
0.000503362
0.000428461
0.000345056
0.000253704
0.000157156
6.58609e-05
1.07656e-05
1.16577e-06
6.5409e-06
2.98891e-05
0.000108528
0.000187213
0.000246305
0.00031067
0.000386845
0.000470491
0.000552654
0.000625414
0.00068525
0.000729415
0.000765261
0.000793328
0.000813894
0.000827316
0.000833956
0.000834137
0.000828116
0.000816063
0.000798055
0.000774075
0.000744009
0.000707652
0.000664713
0.000614827
0.00055757
0.000492494
0.000419198
0.000337506
0.000247936
0.000153194
6.37437e-05
1.02865e-05
1.11153e-06
6.44754e-06
2.98804e-05
0.000108852
0.000189088
0.000246105
0.000305519
0.000375238
0.000452617
0.000530362
0.000601426
0.000662107
0.000712064
0.000751931
0.000779806
0.000798972
0.000811299
0.000817108
0.000816696
0.000810301
0.000798086
0.000780124
0.000756395
0.00072679
0.000691107
0.000649059
0.000600281
0.000544348
0.000480803
0.000409227
0.000329413
0.000241827
0.000149113
6.16624e-05
9.81544e-06
1.04798e-06
6.36603e-06
2.69183e-05
0.000100982
0.000175578
0.000232732
0.000292022
0.000359897
0.000434668
0.000510464
0.000580887
0.000641891
0.000692505
0.000733545
0.000765254
0.000784228
0.000795561
0.000800585
0.000799587
0.0007928
0.000780379
0.000762402
0.000738853
0.000709628
0.000674536
0.000633297
0.000585553
0.00053088
0.000468816
0.000398931
0.000320994
0.000235435
0.00014484
5.95108e-05
9.32869e-06
9.80137e-07
6.43675e-06
2.27483e-05
8.83906e-05
0.000150285
0.000206617
0.00026861
0.000338987
0.00041566
0.000493389
0.000566093
0.000629504
0.000682182
0.000723799
0.000750725
0.000768185
0.000778992
0.000783553
0.000782205
0.000775197
0.0007627
0.000744795
0.000721478
0.000692655
0.000658147
0.000617689
0.000570935
0.000517469
0.000456835
0.000388597
0.000312511
0.000228978
0.000140532
5.73658e-05
8.84699e-06
9.15027e-07
6.68491e-06
1.95822e-05
7.70096e-05
0.000125185
0.000176639
0.000239036
0.000312854
0.000394734
0.000478773
0.000558438
0.000627293
0.000674255
0.000707328
0.000732378
0.000750026
0.000760866
0.000765406
0.000764056
0.000757112
0.000744772
0.000727133
0.000704202
0.000675897
0.00064205
0.000602412
0.000556653
0.000504374
0.000445132
0.0003785
0.000304226
0.000222691
0.000136367
5.53137e-05
8.39277e-06
8.57075e-07
7.00065e-06
1.87562e-05
7.17744e-05
0.000110513
0.000154342
0.000212016
0.000285656
0.000373001
0.00046727
0.000554626
0.00060771
0.000651071
0.000685442
0.000711409
0.000729677
0.000740939
0.0007458
0.000744745
0.000738129
0.000726182
0.000709025
0.000686676
0.000659061
0.000626022
0.000587319
0.000542637
0.000491592
0.000433757
0.000368714
0.000296213
0.000216612
0.000132329
5.33153e-05
7.95754e-06
8.07443e-07
7.21001e-06
1.98412e-05
7.32587e-05
0.000107947
0.000144646
0.000194735
0.000263446
0.000351421
0.00044924
0.000529825
0.000583027
0.000627292
0.00066256
0.000689283
0.000708145
0.000719878
0.000725146
0.000724493
0.000718319
0.000706888
0.000690339
0.000668701
0.000641902
0.000609788
0.000572122
0.000528597
0.000478842
0.000422446
0.000359007
0.000288282
0.000210614
0.000128358
5.13505e-05
7.54407e-06
7.65764e-07
7.20933e-06
2.11503e-05
7.72565e-05
0.000112338
0.000144187
0.000186947
0.000247581
0.000328574
0.000422699
0.000508899
0.000561276
0.000605313
0.000640657
0.000667578
0.000686675
0.000698655
0.000704197
0.00070387
0.000698105
0.00068719
0.000671279
0.000650405
0.0006245
0.000593403
0.000556875
0.000514605
0.000466223
0.000411318
0.00034949
0.000280495
0.000204659
0.000124317
4.92942e-05
7.11413e-06
7.24008e-07
7.03554e-06
2.14056e-05
7.9023e-05
0.000116805
0.000146636
0.000183963
0.000236526
0.000308213
0.000395239
0.000481804
0.000542004
0.00058504
0.00061988
0.000646585
0.000665629
0.000677658
0.000683334
0.000683232
0.000677798
0.000667334
0.000652006
0.000631854
0.00060681
0.000576711
0.000541313
0.000500302
0.000453303
0.000399907
0.000339719
0.000272493
0.00019855
0.000120192
4.72104e-05
6.69489e-06
6.83947e-07
6.80243e-06
2.06126e-05
7.76722e-05
0.000117782
0.000147752
0.000182092
0.000228653
0.00029227
0.000371712
0.000455583
0.000523119
0.000565009
0.000599162
0.000625513
0.000644424
0.000656475
0.00066229
0.000662436
0.000657363
0.000647385
0.000632674
0.000613279
0.000589133
0.000560075
0.000525857
0.00048616
0.000440601
0.000388756
0.000330209
0.000264699
0.00019253
0.000116026
4.5064e-05
6.25572e-06
6.36885e-07
6.59695e-06
1.9569e-05
7.51528e-05
0.000116241
0.00014695
0.000179844
0.000222232
0.000279467
0.00035253
0.000433525
0.000503508
0.000544261
0.000577713
0.000603691
0.000622471
0.000634565
0.000640562
0.000641009
0.000636352
0.000626905
0.000612846
0.000594223
0.000570972
0.000542931
0.000509854
0.000471422
0.000427258
0.000376946
0.000320081
0.000256402
0.000186206
0.000111789
4.29836e-05
5.86253e-06
5.97105e-07
6.42514e-06
1.87675e-05
7.2981e-05
0.000114515
0.000145722
0.000177524
0.000216578
0.00026836
0.000335373
0.000412657
0.000483483
0.000522899
0.00055553
0.000581078
0.00059971
0.000611863
0.000618081
0.000618892
0.000614732
0.000605918
0.000592628
0.000574911
0.000552704
0.000525842
0.000494072
0.000457069
0.000414445
0.000365769
0.000310619
0.000248714
0.000180336
0.000107798
4.09906e-05
5.46571e-06
5.50833e-07
6.25848e-06
1.82966e-05
7.16654e-05
0.000113931
0.000145614
0.000176496
0.000212701
0.000259585
0.000320387
0.000392182
0.000461354
0.000501709
0.000533208
0.000558133
0.000576512
0.000588673
0.000595087
0.00059624
0.000592553
0.000584333
0.000571762
0.000554892
0.00053366
0.0005079
0.000477364
0.00044173
0.00040062
0.000353617
0.000300313
0.000240434
0.000174243
0.000103963
3.92711e-05
5.17037e-06
5.21319e-07
6.06538e-06
1.80033e-05
7.09632e-05
0.000114711
0.000147262
0.000177697
0.000211789
0.000254687
0.00030989
0.000375595
0.000440363
0.000480983
0.00051096
0.00053499
0.000552959
0.000565067
0.000571691
0.000573257
0.00057015
0.000562663
0.00055097
0.000535119
0.000515042
0.000490567
0.000461433
0.000427304
0.000387783
0.000342434
0.000290828
0.000232679
0.000168256
9.98367e-05
3.72155e-05
4.78352e-06
4.77839e-07
5.82896e-06
1.7957e-05
7.1135e-05
0.000117152
0.00015124
0.000181993
0.000214969
0.000255122
0.000306009
0.000366409
0.000425924
0.000461728
0.000489656
0.000512314
0.000529477
0.000541221
0.000547818
0.000549618
0.000546958
0.000540101
0.000529208
0.000514319
0.00049536
0.000472154
0.000444434
0.000411859
0.000374027
0.000330503
0.000280855
0.000224789
0.000162537
9.6281e-05
3.56238e-05
4.51491e-06
4.45139e-07
5.5557e-06
1.80596e-05
7.1857e-05
0.000120392
0.000156726
0.000188792
0.000221916
0.00026078
0.000308698
0.000364041
0.000414885
0.000444343
0.000469805
0.000490685
0.000506684
0.000517772
0.000524118
0.000525989
0.000523667
0.000517383
0.000507278
0.000493386
0.000475623
0.000453801
0.000427636
0.000396761
0.000360744
0.000319106
0.000271377
0.00021722
0.000156845
9.24541e-05
3.37441e-05
4.1487e-06
3.90138e-07
5.26787e-06
1.82532e-05
7.28995e-05
0.000123737
0.00016285
0.000197234
0.000231883
0.000271007
0.000316988
0.000366262
0.000403006
0.000429159
0.000451874
0.000470635
0.000485116
0.000495209
0.000500982
0.000502615
0.000500319
0.000494283
0.00048463
0.000471389
0.000454482
0.000433731
0.000408865
0.000379527
0.000345289
0.000305675
0.000260202
0.0002085
0.000150696
8.88138e-05
3.22365e-05
3.89494e-06
3.52245e-07
4.99031e-06
1.83502e-05
7.35737e-05
0.00012607
0.000168261
0.000205893
0.000243315
0.000283863
0.000327895
0.000367056
0.000392577
0.000415518
0.000435472
0.000452034
0.000464906
0.000473934
0.000479107
0.000480514
0.000478288
0.000472557
0.000463407
0.000450849
0.000434803
0.000415093
0.000391449
0.000363515
0.000330856
0.000292981
0.000249387
0.000199688
0.000144009
8.44027e-05
3.02383e-05
3.54688e-06
3.05228e-07
4.73311e-06
1.83082e-05
7.37045e-05
0.000127143
0.000172503
0.000214158
0.000255415
0.000297518
0.00033511
0.000360176
0.000382703
0.000402709
0.00042001
0.000434346
0.000445484
0.000453273
0.000457657
0.000458655
0.000456323
0.000450723
0.000441897
0.000429826
0.000414422
0.000395516
0.000372859
0.000346122
0.000314905
0.000278746
0.000237165
0.000189776
0.000136662
7.97581e-05
2.82091e-05
3.23748e-06
2.78955e-07
4.50345e-06
1.80509e-05
7.29896e-05
0.000126775
0.000175332
0.000221378
0.000265825
0.000303473
0.000329572
0.000352353
0.000372397
0.000389925
0.000404928
0.000417285
0.000426849
0.000433504
0.000437185
0.000437877
0.000435581
0.000430303
0.000422036
0.000410723
0.000396249
0.000378428
0.000357004
0.000331642
0.000301933
0.000267403
0.000227552
0.000181973
0.000130744
7.58498e-05
2.64604e-05
2.94761e-06
2.41719e-07
4.31482e-06
1.76983e-05
7.17357e-05
0.000125208
0.000176505
0.000225957
0.000268595
0.000297821
0.000322289
0.000343183
0.000361215
0.000376724
0.000389808
0.000400434
0.000408523
0.000413997
0.000416801
0.000416909
0.000414294
0.000408928
0.000400775
0.000389753
0.000375731
0.000358525
0.000337891
0.000313529
0.00028508
0.000252132
0.000214244
0.000171046
0.000122577
7.06499e-05
2.41506e-05
2.59638e-06
2.10681e-07
4.17956e-06
1.73361e-05
7.01768e-05
0.000122376
0.000175114
0.000225594
0.000262526
0.000290353
0.000313245
0.000332497
0.000348899
0.000362864
0.000374552
0.000383984
0.000391118
0.000395902
0.000398293
0.000398263
0.000395772
0.000390772
0.000383199
0.000372949
0.000359867
0.000343746
0.000324324
0.000301287
0.000274259
0.000242815
0.000206497
0.000164911
0.000118089
6.78527e-05
2.30061e-05
2.40539e-06
1.77977e-07
4.10954e-06
1.7078e-05
6.82228e-05
0.000118543
0.000170604
0.000220872
0.000255609
0.000281828
0.000303041
0.000320638
0.000335495
0.000348065
0.000358523
0.000366888
0.000373114
0.000377142
0.000378924
0.00037843
0.000375609
0.000370404
0.000362748
0.000352526
0.000339573
0.000323679
0.000304588
0.000282013
0.000255637
0.000225133
0.000190191
0.000150607
0.000106591
6.00296e-05
1.95143e-05
1.9293e-06
1.41508e-07
4.08219e-06
1.69955e-05
6.69288e-05
0.000114942
0.000164526
0.000213467
0.000249575
0.000273936
0.000293263
0.000309094
0.000322421
0.000333763
0.00034331
0.000351064
0.000356943
0.000360854
0.000362724
0.000362506
0.000360148
0.000355597
0.000348794
0.00033963
0.00032794
0.0003135
0.000296026
0.000275175
0.000250548
0.000221706
0.000188199
0.000149682
0.000106281
5.9967e-05
1.95253e-05
1.88349e-06
1.14947e-07
4.06459e-06
1.68929e-05
6.68376e-05
0.000112711
0.000158698
0.000205183
0.000245719
0.000268257
0.000285574
0.000299359
0.00031078
0.000320473
0.000328672
0.000335364
0.000340416
0.00034367
0.000344993
0.000344299
0.000341503
0.000336535
0.00032934
0.000319815
0.000307805
0.000293098
0.000275433
0.000254514
0.000230024
0.000201654
0.000169158
0.000132467
9.20294e-05
5.00917e-05
1.52936e-05
1.37059e-06
7.80092e-08
4.00294e-06
1.66564e-05
6.7066e-05
0.000111635
0.000153991
0.000196075
0.000236796
0.00026511
0.000280733
0.000292666
0.000302222
0.000310222
0.000317035
0.000322711
0.000327123
0.000330076
0.000331382
0.000330905
0.000328536
0.000324204
0.000317861
0.000309427
0.000298773
0.000285707
0.000269969
0.000251229
0.00022908
0.000203041
0.000172579
0.000137218
9.69658e-05
5.38481e-05
1.69121e-05
1.5165e-06
6.89285e-08
3.88069e-06
1.59861e-05
6.69008e-05
0.000111221
0.000151191
0.000188529
0.000225138
0.000259571
0.000277432
0.000288287
0.000296494
0.000302988
0.000308304
0.000312616
0.000315867
0.000317877
0.000318434
0.000317365
0.000314512
0.000309767
0.000303044
0.000294234
0.000283169
0.000269621
0.000253305
0.0002339
0.000211052
0.000184431
0.000153793
0.000119142
8.11328e-05
4.25112e-05
1.22291e-05
1.009e-06
4.16742e-08
3.68426e-06
1.6232e-05
6.73242e-05
0.000110274
0.000146884
0.000179041
0.000208701
0.000238187
0.000267128
0.000283921
0.000291123
0.000296273
0.000299943
0.000302401
0.000303687
0.000303714
0.000302344
0.000299459
0.000294949
0.000288771
0.000280919
0.000271375
0.000260078
0.000246905
0.000231678
0.000214168
0.000194056
0.000170958
0.000144408
0.000113924
7.93813e-05
4.26916e-05
1.26336e-05
1.04751e-06
3.43887e-08
3.47092e-06
1.58716e-05
6.71887e-05
0.000109196
0.000141603
0.000169653
0.00019569
0.00022122
0.000248164
0.00027531
0.00028784
0.00029306
0.000296732
0.000299244
0.000300758
0.000301284
0.000300738
0.000299007
0.000295985
0.000291554
0.000285585
0.000277916
0.000268315
0.000256452
0.000241885
0.000224075
0.00020243
0.000176405
0.000145661
0.000110381
7.19522e-05
3.47381e-05
8.92809e-06
6.56056e-07
1.5322e-08
3.16176e-06
1.94647e-05
7.73305e-05
0.000114491
0.000139477
0.000161376
0.00018251
0.000203463
0.000225639
0.000250281
0.000274302
0.000280826
0.000281484
0.000280476
0.000278057
0.000274332
0.000269296
0.00026289
0.000254866
0.000245111
0.000233637
0.000220465
0.00020564
0.00018924
0.000171378
0.000152205
0.000131909
0.000110703
8.87681e-05
6.62357e-05
4.32254e-05
2.10643e-05
5.32975e-06
3.43056e-07
4.4557e-09
2.85692e-06
1.95627e-05
7.63485e-05
0.00011045
0.000131908
0.000151861
0.000171816
0.000191882
0.000213474
0.00023797
0.000262535
0.000269251
0.000268403
0.000265359
0.000260772
0.00025527
0.000249448
0.000243817
0.000238636
0.000234148
0.000230485
0.000227466
0.000224547
0.000220779
0.000214771
0.000204686
0.000188336
0.000163503
0.000128719
8.57041e-05
4.27057e-05
1.31625e-05
2.09292e-06
1.01827e-07
1.57453e-08
2.31634e-06
2.84747e-05
8.19696e-05
0.000105325
0.00012574
0.000152217
0.000181656
0.000204711
0.00021991
0.000234002
0.00024627
0.000256156
0.000263233
0.000267217
0.000267929
0.000265211
0.000259226
0.000250022
0.000237681
0.000222284
0.000204054
0.000183395
0.000160794
0.000136876
0.000112414
8.82922e-05
6.5467e-05
4.4772e-05
2.76213e-05
1.49386e-05
6.5221e-06
1.90382e-06
3.44292e-07
1.25893e-07
8.84156e-08
1.85335e-06
3.68396e-05
4.80424e-05
5.45758e-05
6.48744e-05
7.37587e-05
8.17538e-05
9.02222e-05
9.87093e-05
0.000102342
0.000103748
0.000104466
0.000104391
0.000103364
0.000101302
9.81143e-05
9.39638e-05
8.88272e-05
8.27787e-05
7.59146e-05
6.83689e-05
6.0297e-05
5.18869e-05
4.3359e-05
3.49594e-05
2.69633e-05
1.96764e-05
1.33909e-05
8.3944e-06
4.94135e-06
3.14857e-06
2.83338e-06
2.81668e-06
9.72428e-07
2.20501e-07
3.44374e-06
2.97172e-05
3.35856e-05
3.06013e-05
3.90809e-05
4.39303e-05
4.3924e-05
4.38835e-05
4.37744e-05
4.36598e-05
4.35432e-05
4.34144e-05
4.32593e-05
4.30602e-05
4.28006e-05
4.24576e-05
4.20509e-05
4.15645e-05
4.09969e-05
4.03499e-05
3.96306e-05
3.88527e-05
3.80393e-05
3.72264e-05
3.64679e-05
3.58432e-05
3.54665e-05
3.54972e-05
3.61462e-05
3.7648e-05
4.01184e-05
4.32129e-05
4.56276e-05
2.24617e-05
1.16873e-06
4.7519e-08
1.54972e-06
3.75916e-06
6.44274e-06
9.24143e-06
1.21061e-05
1.50185e-05
1.79557e-05
2.09104e-05
2.38237e-05
2.55354e-05
2.58023e-05
2.60204e-05
2.62124e-05
2.63773e-05
2.65518e-05
2.52439e-05
2.30026e-05
2.1008e-05
1.999e-05
1.87915e-05
1.53565e-05
1.16866e-05
8.03479e-06
9.1042e-06
1.34415e-05
1.36111e-05
1.40748e-05
1.46657e-05
1.51203e-05
1.26504e-05
1.1076e-05
1.04099e-05
9.47644e-06
3.66398e-07
3.93703e-07
8.21912e-07
4.51872e-06
1.14861e-05
1.93196e-05
2.62272e-05
3.13588e-05
3.45204e-05
3.5892e-05
3.58965e-05
3.51074e-05
3.4015e-05
3.28417e-05
3.16213e-05
3.02835e-05
2.87124e-05
2.68431e-05
2.47211e-05
2.25047e-05
2.04261e-05
1.9141e-05
1.94866e-05
1.94545e-05
1.73039e-05
1.79993e-05
1.85451e-05
1.92812e-05
2.14742e-05
2.20248e-05
2.27582e-05
2.40199e-05
1.48227e-05
1.31136e-05
1.12308e-05
7.83589e-07
7.67377e-07
4.86595e-06
3.34889e-05
5.41729e-05
6.94859e-05
8.46508e-05
9.74339e-05
9.66094e-05
7.96554e-05
5.88962e-05
3.87313e-05
2.56988e-05
2.27773e-05
2.37674e-05
2.54881e-05
2.73733e-05
2.92423e-05
3.09546e-05
3.22838e-05
3.27682e-05
2.72638e-05
2.26038e-05
1.8931e-05
1.66457e-05
1.65465e-05
1.9585e-05
2.4707e-05
2.60156e-05
2.27197e-05
1.96844e-05
2.0204e-05
2.30107e-05
2.18973e-05
1.09039e-05
1.37275e-06
4.97254e-07
8.30824e-07
3.64182e-06
1.5485e-05
3.36266e-05
5.13053e-05
6.16883e-05
7.06582e-05
7.99591e-05
8.43145e-05
8.48064e-05
8.31526e-05
7.95156e-05
7.37455e-05
6.56456e-05
5.50453e-05
4.22658e-05
2.99633e-05
2.26142e-05
2.11531e-05
2.25118e-05
2.32886e-05
2.30413e-05
2.236e-05
2.14008e-05
1.81632e-05
1.48681e-05
1.59105e-05
1.50171e-05
1.53199e-05
1.54824e-05
1.75628e-05
1.70697e-05
6.94772e-06
1.98048e-06
9.35652e-07
3.11877e-06
2.16547e-05
5.60778e-05
9.26251e-05
0.00012093
0.000137746
0.000144976
0.000146124
0.000143633
0.00013842
0.000130924
0.000121718
0.000111478
0.000100756
9.0406e-05
8.1543e-05
7.50161e-05
7.00626e-05
4.93059e-05
3.5527e-05
2.76107e-05
2.43286e-05
2.68485e-05
3.12379e-05
3.35842e-05
3.1981e-05
2.5959e-05
1.9696e-05
1.50827e-05
1.43378e-05
1.51065e-05
1.31573e-05
5.59832e-06
2.22844e-06
9.59897e-07
2.71275e-06
1.9306e-05
4.96494e-05
8.2111e-05
0.000112006
0.000135665
0.000151618
0.000160629
0.000164455
0.000164569
0.000161637
0.000155904
0.000147706
0.00013764
0.000126469
0.000114946
0.000103735
9.32232e-05
8.34476e-05
7.44167e-05
5.12122e-05
3.45946e-05
2.78028e-05
2.81089e-05
3.51536e-05
4.11537e-05
3.53752e-05
2.57571e-05
1.98749e-05
1.64729e-05
1.60396e-05
1.25767e-05
4.81578e-06
2.53566e-06
1.2387e-06
2.63775e-06
1.64038e-05
4.12957e-05
6.49313e-05
9.22613e-05
0.000121103
0.000141553
0.000156652
0.000166315
0.00017138
0.000172829
0.000171309
0.000167183
0.000160754
0.000152436
0.000142776
0.00013239
0.000121915
0.000111814
0.000102412
9.38855e-05
8.62865e-05
7.33024e-05
5.31093e-05
4.21919e-05
4.09312e-05
4.71269e-05
3.61388e-05
2.36721e-05
1.74579e-05
1.60145e-05
1.30337e-05
5.10196e-06
2.74383e-06
1.67119e-06
5.02426e-06
2.88609e-05
6.23595e-05
8.25175e-05
0.000101216
0.000121339
0.00014333
0.000165762
0.000181945
0.000187722
0.000189912
0.000189041
0.000185647
0.000180157
0.000172895
0.000164188
0.000154421
0.000144091
0.000133666
0.000123529
0.000113947
0.000105041
9.67875e-05
8.91201e-05
8.20159e-05
7.48543e-05
6.53955e-05
4.9919e-05
3.27629e-05
2.16035e-05
1.7538e-05
1.35955e-05
5.01507e-06
2.98461e-06
1.75951e-06
5.19459e-06
2.99716e-05
6.80791e-05
0.000100776
0.000120058
0.000136175
0.000152444
0.000169909
0.000188182
0.000203649
0.000206652
0.0002067
0.00020417
0.00019942
0.000192789
0.000184605
0.000175213
0.000165082
0.000154654
0.000144266
0.000134192
0.000124617
0.000115651
0.000107299
9.9306e-05
9.072e-05
7.91698e-05
6.09949e-05
4.04734e-05
2.50048e-05
1.86709e-05
1.4632e-05
5.45523e-06
3.11457e-06
1.72999e-06
5.71857e-06
3.21829e-05
7.21031e-05
0.000109124
0.00013923
0.000157349
0.000172484
0.000187747
0.000204728
0.000221979
0.000228538
0.000229659
0.000227685
0.000223065
0.00021624
0.00020764
0.000197691
0.000186984
0.000175977
0.000164963
0.000154169
0.000143738
0.000133707
0.000123927
0.000113841
0.00010209
8.61917e-05
6.38385e-05
4.24332e-05
2.6265e-05
2.0124e-05
1.54142e-05
5.49728e-06
3.25045e-06
1.5759e-06
6.58114e-06
3.729e-05
8.1017e-05
0.000120515
0.000152569
0.000177783
0.000197523
0.000208073
0.000215497
0.000226103
0.000238771
0.000245991
0.000246455
0.000243967
0.000238851
0.000231473
0.000222244
0.00021188
0.00020092
0.000189648
0.000178295
0.000167004
0.000155768
0.000144292
0.000131788
0.000116688
9.66703e-05
7.0396e-05
4.67444e-05
2.8299e-05
2.17388e-05
1.67116e-05
5.90672e-06
3.35724e-06
1.35586e-06
4.83207e-06
3.01967e-05
6.9031e-05
0.0001086
0.000144593
0.000174779
0.000198656
0.000216988
0.000231017
0.000241849
0.000250135
0.000256024
0.000259251
0.000259552
0.000256989
0.000251779
0.000244231
0.00023506
0.000224795
0.000213718
0.000202071
0.000189962
0.0001773
0.000163634
0.000147957
0.000128599
0.000103739
7.37322e-05
4.92752e-05
3.00193e-05
2.3383e-05
1.77646e-05
6.05499e-06
3.49816e-06
1.72934e-06
5.19462e-06
2.88139e-05
6.15734e-05
8.72285e-05
0.000115278
0.000148001
0.000183695
0.00021436
0.00023063
0.000242361
0.000250856
0.00025707
0.000261375
0.000263659
0.000263765
0.000261621
0.000257217
0.000251
0.000243256
0.000234076
0.00022365
0.000212057
0.000199098
0.000184214
0.000166309
0.000143748
0.00011511
8.16774e-05
5.49113e-05
3.30933e-05
2.5463e-05
1.9273e-05
6.50268e-06
3.64201e-06
1.9436e-06
7.04056e-06
3.65601e-05
7.35295e-05
0.000100844
0.000117896
0.000136872
0.000161978
0.000194246
0.000228927
0.000247744
0.00025825
0.000264607
0.000268016
0.000269374
0.000269149
0.000267459
0.000264262
0.000259756
0.000253916
0.000246538
0.000237533
0.000226738
0.000213731
0.000197769
0.000177698
0.000152162
0.000120654
8.58974e-05
5.92005e-05
3.54008e-05
2.72253e-05
2.03714e-05
6.58139e-06
3.78548e-06
2.09552e-06
9.20585e-06
5.04379e-05
0.000101463
0.000139453
0.00016488
0.000173518
0.000183657
0.000201473
0.000227658
0.000256771
0.000267858
0.00027492
0.00027854
0.000279452
0.0002784
0.000276
0.00027256
0.000268411
0.000263485
0.000257368
0.000249672
0.000239941
0.000227488
0.000211389
0.000190491
0.000163673
0.000130895
9.52125e-05
6.36442e-05
3.87764e-05
2.93986e-05
2.17094e-05
6.89761e-06
3.87482e-06
2.14863e-06
8.2802e-06
4.69632e-05
0.000101281
0.000149095
0.00018358
0.000197095
0.00020434
0.000213319
0.00022811
0.000250097
0.000276157
0.000293021
0.000297016
0.000297949
0.000296347
0.000292879
0.00028813
0.000282689
0.00027671
0.000269933
0.000261911
0.000251973
0.000239179
0.000222382
0.000200424
0.000172473
0.00013899
0.000103271
6.78747e-05
4.23751e-05
3.17183e-05
2.30316e-05
7.0798e-06
3.94331e-06
2.43104e-06
9.52471e-06
4.97267e-05
0.000104504
0.000154248
0.000194527
0.000217979
0.000227331
0.000232282
0.000238121
0.000248461
0.00026565
0.000290076
0.00031611
0.00032069
0.000320367
0.000317361
0.000312241
0.000305712
0.000298157
0.000289613
0.000279863
0.000268346
0.000254129
0.000236002
0.000212808
0.000183865
0.000149819
0.00011377
7.35687e-05
4.6638e-05
3.44595e-05
2.47248e-05
7.40329e-06
3.99739e-06
2.39533e-06
1.02645e-05
5.40604e-05
0.000113874
0.000168826
0.000214322
0.000249745
0.000275813
0.000289345
0.000287229
0.000284882
0.000288199
0.000299869
0.000320843
0.000345196
0.000347114
0.000345618
0.00034113
0.000334752
0.000326699
0.0003168
0.000305072
0.000291193
0.000274426
0.000253744
0.000228184
0.000197318
0.000162017
0.000125257
7.88957e-05
5.08584e-05
3.72504e-05
2.64361e-05
7.68281e-06
4.04633e-06
2.4987e-06
1.12784e-05
5.76626e-05
0.000120269
0.000178904
0.000228784
0.000269053
0.000300128
0.000322978
0.000338285
0.000336298
0.000331205
0.00033019
0.000337408
0.000354543
0.000375011
0.00037503
0.00037196
0.000366642
0.000359294
0.000349389
0.000336759
0.000321123
0.000301912
0.000278411
0.000249996
0.000216577
0.000179246
0.000140825
8.66081e-05
5.60591e-05
4.06461e-05
2.85853e-05
8.13805e-06
4.10037e-06
2.50216e-06
1.13167e-05
5.80804e-05
0.00012239
0.000184151
0.00023815
0.000283143
0.00031923
0.000347087
0.00036767
0.000382091
0.000384817
0.000378034
0.000373014
0.000375287
0.000386815
0.000403099
0.000405194
0.000401218
0.000394638
0.000385062
0.000372074
0.00035517
0.000333773
0.000307319
0.000275477
0.000238535
0.000197896
0.000150594
9.38045e-05
6.14757e-05
4.42728e-05
3.08934e-05
8.55767e-06
4.15541e-06
2.63879e-06
1.23166e-05
6.13825e-05
0.000127566
0.000191295
0.000247677
0.000295554
0.000334991
0.000366555
0.000391035
0.000409317
0.000422314
0.000429253
0.000423306
0.000415541
0.000411841
0.00041511
0.000425157
0.000435895
0.000430183
0.000421333
0.000408677
0.000391462
0.000368914
0.000340378
0.000305571
0.000264983
0.000220328
0.000159423
0.00010183
6.76501e-05
4.84292e-05
3.35567e-05
9.07638e-06
4.21028e-06
2.7138e-06
1.24199e-05
6.17223e-05
0.000128935
0.000194783
0.000254092
0.000305356
0.000348377
0.000383555
0.000411587
0.000433303
0.00044956
0.000461182
0.000468928
0.000471608
0.00046422
0.000455694
0.00045011
0.000448541
0.000449864
0.00045045
0.000442609
0.000425287
0.000402176
0.000372456
0.000335727
0.000292436
0.000238626
0.000167319
0.000109589
7.40529e-05
5.29126e-05
3.65045e-05
9.5608e-06
4.25931e-06
2.9097e-06
1.31358e-05
6.3238e-05
0.000130423
0.000196547
0.000257059
0.000310433
0.000356214
0.000394508
0.000425759
0.000450614
0.000469813
0.000484118
0.000494247
0.000500834
0.000504397
0.000505317
0.000503802
0.000496858
0.000486282
0.00047507
0.000462935
0.000448014
0.000427596
0.000398414
0.000361182
0.000310746
0.000244091
0.000173939
0.000117702
8.09077e-05
5.77105e-05
3.96229e-05
9.99246e-06
4.29269e-06
3.01002e-06
1.31094e-05
6.26612e-05
0.000129567
0.000196049
0.000257844
0.000313365
0.000361903
0.000403259
0.000437598
0.00046535
0.000487115
0.000503571
0.000515405
0.000523245
0.000527616
0.000528907
0.000527342
0.000522964
0.000515612
0.000504912
0.000490294
0.000471019
0.000446252
0.0004152
0.000377339
0.000323413
0.000253818
0.000183815
0.000127498
8.8859e-05
6.33013e-05
4.32557e-05
1.05579e-05
4.30555e-06
3.16234e-06
1.35019e-05
6.32103e-05
0.000129855
0.000195824
0.000257635
0.000314123
0.000364615
0.000408693
0.000446195
0.00047721
0.000502044
0.000521164
0.000535126
0.000544501
0.000549811
0.000551469
0.000549741
0.000544725
0.000536326
0.000524248
0.000508012
0.000486986
0.000460476
0.000427847
0.000388721
0.000339008
0.000266166
0.000194456
0.000137426
9.71991e-05
6.94568e-05
4.73628e-05
1.1101e-05
4.30414e-06
3.20649e-06
1.39133e-05
6.4913e-05
0.000133064
0.00019975
0.000261775
0.000318544
0.000369804
0.000415315
0.000454879
0.000488403
0.00051594
0.000537695
0.000553993
0.000565236
0.000571842
0.000574185
0.00057254
0.000567038
0.000557644
0.000544134
0.000526118
0.000503074
0.000474432
0.000439723
0.000398775
0.000351981
0.000280127
0.000205889
0.000147067
0.000105248
7.57528e-05
5.18801e-05
1.16846e-05
4.30513e-06
3.23712e-06
1.438e-05
6.71423e-05
0.000137641
0.000206162
0.00026927
0.000326629
0.000378373
0.000424582
0.000465241
0.000500298
0.000529732
0.00055359
0.000572003
0.000585178
0.000593364
0.00059681
0.000595719
0.000590205
0.000580253
0.0005657
0.000546243
0.000521469
0.000490936
0.000454308
0.000411554
0.000363198
0.000294391
0.000218991
0.000157952
0.000114081
8.25469e-05
5.51765e-05
1.23411e-05
4.29589e-06
3.21272e-06
1.45882e-05
6.88464e-05
0.000141923
0.000213083
0.000278291
0.000337105
0.00038982
0.000436759
0.000478135
0.000514056
0.000544568
0.00056971
0.000589537
0.000604134
0.000613616
0.0006181
0.000617682
0.000612401
0.000602213
0.000586968
0.00056642
0.000540255
0.00050816
0.000469943
0.000425702
0.000376043
0.000306161
0.000230707
0.000168941
0.000123671
9.00595e-05
5.82473e-05
1.29762e-05
4.27891e-06
3.1931e-06
1.48395e-05
7.06533e-05
0.000146158
0.000220044
0.000287761
0.000348622
0.000402879
0.000450956
0.00049321
0.000529887
0.000561139
0.000587057
0.000607701
0.000623114
0.000633335
0.000638392
0.00063829
0.000632993
0.000622411
0.000606387
0.000584712
0.000557155
0.000523538
0.000483834
0.000438312
0.000387697
0.00031496
0.000239234
0.000177653
0.000131933
9.6616e-05
6.02605e-05
1.32486e-05
4.28016e-06
3.16447e-06
1.51231e-05
7.26265e-05
0.000150593
0.000227262
0.000297644
0.00036081
0.000416928
0.000466452
0.000509826
0.000547398
0.000579412
0.000606024
0.000627323
0.000643347
0.000654098
0.000659541
0.000659608
0.000654192
0.000643147
0.000626289
0.000603423
0.000574377
0.00053908
0.000497655
0.000450545
0.000398645
0.000330267
0.000252883
0.00018856
0.000140634
0.000103119
6.30548e-05
1.37482e-05
4.2483e-06
3.15808e-06
1.58849e-05
7.60387e-05
0.000156894
0.000236464
0.000309498
0.000374919
0.00043285
0.000483774
0.000528212
0.000566606
0.000599289
0.000626493
0.000648355
0.000664939
0.000676237
0.000682182
0.000682648
0.000677457
0.000666384
0.000649177
0.000625581
0.000595398
0.000558559
0.000515234
0.000465954
0.000411733
0.000351859
0.000273291
0.00020504
0.000153316
0.000111945
6.56235e-05
1.41086e-05
4.11608e-06
3.16893e-06
1.69765e-05
8.0332e-05
0.000164395
0.000247062
0.000322867
0.000390609
0.00045037
0.000502653
0.000548048
0.000587091
0.000620216
0.000647742
0.000669884
0.00068676
0.000698395
0.00070473
0.000705624
0.000700857
0.00069014
0.000673139
0.000649506
0.000618941
0.00058128
0.000536622
0.00048547
0.000428879
0.000363088
0.000286765
0.000220818
0.000168603
0.000123564
6.70829e-05
1.41823e-05
4.02323e-06
3.20759e-06
1.82651e-05
8.49041e-05
0.000172149
0.000257913
0.000336558
0.000406741
0.00046847
0.000522223
0.000568618
0.000608259
0.000641667
0.000669258
0.000691337
0.000708101
0.000719649
0.000725976
0.000726984
0.000722475
0.00071216
0.000695677
0.00067262
0.000642593
0.000605294
0.000560636
0.000508891
0.000437285
0.000361014
0.000290416
0.000230306
0.000180259
0.000130417
6.80145e-05
1.41523e-05
4.08955e-06
3.28604e-06
1.95176e-05
8.90826e-05
0.000179296
0.000268094
0.000349629
0.000422391
0.000486285
0.000541735
0.000589343
0.000629734
0.000663481
0.00069107
0.000712883
0.000729199
0.000740196
0.000745952
0.000746441
0.00074154
0.000731027
0.000714592
0.000691864
0.000662449
0.000626008
0.000582365
0.000519124
0.000444166
0.000367487
0.000296789
0.000236633
0.000186648
0.000137107
7.042e-05
1.4504e-05
4.22609e-06
3.40479e-06
2.03335e-05
9.16561e-05
0.000184124
0.000275739
0.000360281
0.00043592
0.000502361
0.000559925
0.000609167
0.000650703
0.000685129
0.000712971
0.00073467
0.000750572
0.000760924
0.000765876
0.000765481
0.000759697
0.000748392
0.000731347
0.000708276
0.000678859
0.000642791
0.000599879
0.000539512
0.000466039
0.000388348
0.000314892
0.000251429
0.000198574
0.000147017
7.60299e-05
1.5852e-05
4.24941e-06
3.57569e-06
2.06569e-05
9.23103e-05
0.000185713
0.000279376
0.000366751
0.000445514
0.000514985
0.000575242
0.000626712
0.000669957
0.000705568
0.000734097
0.000756032
0.000771778
0.000781649
0.000785868
0.000784566
0.000777783
0.00076548
0.000747536
0.000723771
0.000693965
0.000657897
0.000615406
0.000558037
0.000487474
0.0004118
0.00033936
0.000275613
0.000219576
0.000157927
8.1709e-05
1.71885e-05
4.14342e-06
3.76157e-06
2.06388e-05
9.16356e-05
0.000184497
0.000278777
0.000368106
0.000449761
0.00052255
0.000586115
0.000640581
0.000686332
0.000723869
0.000753723
0.000776398
0.000792343
0.000801937
0.000805477
0.000803179
0.000795178
0.000781535
0.000762243
0.000737237
0.000706414
0.00066966
0.000626897
0.000576809
0.000507816
0.00043201
0.000358856
0.000294563
0.000236438
0.000166831
8.53397e-05
1.77259e-05
4.02723e-06
3.92823e-06
2.06487e-05
9.10696e-05
0.00018283
0.000276371
0.00036611
0.000449453
0.000524932
0.000591773
0.000649687
0.000698726
0.000739156
0.000771362
0.00079577
0.000812803
0.000822847
0.000826233
0.000823232
0.000814053
0.000798852
0.000777736
0.000750781
0.00071804
0.000679554
0.000635365
0.000585537
0.000530173
0.000469464
0.000402444
0.000332172
0.000258122
0.000177178
9.08446e-05
1.88172e-05
3.76805e-06
4.04127e-06
2.09854e-05
9.1965e-05
0.000183724
0.000276524
0.000365596
0.000448971
0.000525437
0.000594171
0.000654658
0.00070666
0.000750161
0.00078531
0.000812361
0.000831615
0.00084338
0.000847936
0.000845522
0.000836328
0.000820507
0.000798191
0.000769521
0.00073467
0.000693869
0.000647405
0.000595599
0.000538772
0.000477235
0.000411249
0.000340838
0.000265419
0.000183586
9.51721e-05
1.99863e-05
3.52284e-06
4.12192e-06
2.19629e-05
9.53109e-05
0.000189161
0.000282687
0.000371419
0.00045405
0.000529936
0.000598599
0.000659654
0.000712826
0.000757967
0.000795055
0.000824177
0.000845497
0.00085922
0.000865559
0.000864699
0.000856783
0.000841897
0.000820079
0.00079134
0.00075568
0.000709424
0.000659127
0.000608591
0.000548405
0.000483815
0.000414986
0.000341797
0.000263685
0.00017947
8.97723e-05
1.81348e-05
3.64438e-06
4.17826e-06
2.35581e-05
0.000100808
0.000198487
0.000294697
0.000384722
0.000467528
0.00054291
0.000610816
0.000671177
0.000723906
0.000768921
0.000806178
0.000835693
0.000857542
0.000871854
0.00087879
0.000878515
0.000871178
0.000856883
0.000835688
0.000807603
0.000772622
0.000730765
0.000674478
0.000609728
0.000544201
0.000483228
0.000423038
0.000346774
0.000265137
0.000177466
8.6076e-05
1.68964e-05
3.82075e-06
4.23511e-06
2.48996e-05
0.000105323
0.000206752
0.00030651
0.00039926
0.000483782
0.000559988
0.000628074
0.000688252
0.000740665
0.000785389
0.000822451
0.000851866
0.000873659
0.000887884
0.000894635
0.000894035
0.000886225
0.000871352
0.00084955
0.00082092
0.00078553
0.000743413
0.000694603
0.000639212
0.000577527
0.000510017
0.000437184
0.000359219
0.000275797
0.000186457
9.31099e-05
1.91972e-05
3.765e-06
4.32449e-06
2.57564e-05
0.000108108
0.000212513
0.000315614
0.000411376
0.000498218
0.000575957
0.000644869
0.00070534
0.000757724
0.000802287
0.000839206
0.000868574
0.000890425
0.000898734
0.000896506
0.000888352
0.000875474
0.000857805
0.000835157
0.000808083
0.000778464
0.000747813
0.000709202
0.000654129
0.000592597
0.000524701
0.000450648
0.000370602
0.000284506
0.000192272
9.62928e-05
2.02065e-05
3.68499e-06
4.4699e-06
2.67614e-05
0.000111235
0.000218376
0.000324511
0.000423169
0.000512441
0.000591962
0.000661958
0.000722866
0.000775159
0.000819269
0.000855543
0.000884233
0.000897016
0.000900815
0.000897585
0.000888312
0.000873621
0.000853797
0.000828825
0.000798596
0.0007633
0.000724063
0.00068343
0.000644168
0.00060321
0.00053948
0.000464237
0.000381727
0.000291948
0.000195266
9.55669e-05
1.96122e-05
3.74506e-06
4.66681e-06
2.75041e-05
0.000113387
0.000222534
0.000331294
0.000432841
0.000524877
0.000606742
0.000678492
0.000740492
0.000793221
0.000837171
0.000872801
0.000898042
0.000910261
0.00091417
0.000911437
0.000902918
0.000889424
0.000871495
0.000849127
0.000821805
0.00078873
0.000749432
0.00070484
0.000657778
0.000610501
0.000557625
0.000481396
0.000396793
0.000303852
0.000203343
9.97938e-05
2.05479e-05
3.759e-06
4.91102e-06
2.78372e-05
0.000113686
0.000223262
0.000333348
0.000437024
0.000531633
0.00061614
0.000690292
0.000754235
0.000808298
0.000851054
0.000877154
0.000893792
0.000903261
0.00090616
0.000903144
0.000895228
0.00088359
0.000869295
0.000852925
0.000834279
0.000812287
0.000785064
0.000749947
0.000703467
0.000642289
0.000573423
0.00049653
0.000411075
0.000316638
0.000213636
0.000106537
2.24885e-05
3.63163e-06
5.11938e-06
2.78571e-05
0.000112741
0.000221131
0.000330588
0.00043466
0.000530656
0.000617253
0.000693843
0.000760254
0.000816565
0.000858939
0.000883806
0.000899023
0.000906791
0.000907624
0.000902118
0.000891355
0.000876692
0.000859703
0.000842267
0.000826272
0.000812157
0.000795901
0.00076526
0.000712098
0.000651243
0.000582386
0.000505097
0.000418837
0.000323112
0.000218211
0.000108769
2.2913e-05
3.42439e-06
5.21979e-06
2.78136e-05
0.000112091
0.000219109
0.000326854
0.000429717
0.000525447
0.000612777
0.000690936
0.000759506
0.000818335
0.000867456
0.000907021
0.00092986
0.00093551
0.00093256
0.000923884
0.000910481
0.000892928
0.000871871
0.000848582
0.000825446
0.000805394
0.000788932
0.000767629
0.000715628
0.000654717
0.00058574
0.000508058
0.00042094
0.000323798
0.00021709
0.000106373
2.17621e-05
3.24305e-06
5.22292e-06
2.7992e-05
0.000113023
0.000220298
0.000327168
0.000428573
0.000522917
0.000609366
0.000687337
0.000756413
0.000816338
0.000867012
0.000908459
0.000940802
0.000964215
0.00096497
0.00095329
0.000937267
0.000918667
0.000896903
0.000871647
0.000844175
0.000817341
0.000793232
0.000767028
0.000717526
0.000655282
0.00058533
0.000506995
0.000419415
0.0003218
0.000214493
0.000103497
2.0588e-05
3.13434e-06
5.20035e-06
2.85175e-05
0.000115555
0.000225076
0.00033308
0.000434347
0.000527679
0.000612747
0.00068938
0.00075743
0.000816776
0.000867351
0.000909155
0.000942257
0.000966778
0.000977527
0.00096929
0.000954484
0.000937534
0.000918304
0.000895629
0.000869734
0.000842753
0.000815891
0.000781473
0.000723979
0.000659176
0.000586847
0.000506592
0.000417807
0.000319831
0.000212869
0.000102453
2.02623e-05
3.0899e-06
5.18022e-06
2.89712e-05
0.000117851
0.00023009
0.000340533
0.000443282
0.000537016
0.000621606
0.000697204
0.000763975
0.000822052
0.000871541
0.000912553
0.000945215
0.000969214
0.000971744
0.000965218
0.000955679
0.000944717
0.000931777
0.000916189
0.000898145
0.000877227
0.00084712
0.00079615
0.000737265
0.000670441
0.000595616
0.00051268
0.000421454
0.000321778
0.000214186
0.000103793
2.08682e-05
3.09981e-06
5.13524e-06
2.92955e-05
0.000119392
0.000233538
0.000346103
0.000450637
0.000545527
0.000630577
0.000706014
0.000772148
0.000829276
0.000877661
0.000917549
0.000949184
0.000958323
0.000958046
0.000954932
0.000951483
0.000948351
0.000945068
0.000940071
0.000929495
0.000903811
0.000861869
0.000811711
0.000753181
0.000686119
0.000610361
0.000525761
0.000432248
0.00032998
0.000220002
0.000107704
2.22224e-05
3.10978e-06
5.02242e-06
2.99057e-05
0.000121578
0.000237316
0.000351327
0.00045701
0.000552681
0.000638129
0.000713599
0.000779451
0.000836045
0.000883712
0.000922777
0.000953575
0.000959076
0.000955303
0.000951736
0.000951224
0.000954655
0.000960777
0.000963088
0.000945195
0.000912525
0.000871918
0.000823105
0.000765788
0.000699648
0.000624347
0.000539548
0.000444987
0.000340696
0.000227819
0.000112265
2.35117e-05
3.04663e-06
4.85483e-06
3.08351e-05
0.000124842
0.000242706
0.000358374
0.000465106
0.000561273
0.000646786
0.000722015
0.00078742
0.000843439
0.000890465
0.000928859
0.000958968
0.000974483
0.000966337
0.000956957
0.000954248
0.000960133
0.000971584
0.000973442
0.000948928
0.000916941
0.000877187
0.000829328
0.000772971
0.000707676
0.000632954
0.000548296
0.000453246
0.000347654
0.000232601
0.000114444
2.38481e-05
2.92334e-06
4.69962e-06
3.17032e-05
0.000128015
0.000248139
0.000365895
0.000474226
0.00057135
0.000657199
0.000732274
0.000797191
0.000852527
0.000898786
0.000936405
0.00096577
0.000987252
0.000984031
0.000968066
0.000958125
0.000959612
0.000970565
0.000975351
0.000950941
0.00091921
0.000879811
0.000832359
0.000776409
0.000711443
0.000636861
0.000552021
0.000456338
0.000349601
0.000233023
0.000113628
2.33243e-05
2.8383e-06
4.61818e-06
3.22676e-05
0.00013004
0.000251451
0.000370795
0.00048081
0.000579391
0.000666259
0.00074185
0.000806831
0.000861886
0.000907637
0.000944626
0.000973316
0.000994111
0.00100128
0.000982407
0.000964315
0.000957303
0.000962489
0.000970745
0.000952628
0.000920926
0.000881598
0.00083422
0.000778313
0.000713321
0.000638599
0.000553442
0.000457197
0.000349617
0.000232058
0.000112162
2.28081e-05
2.84575e-06
4.66482e-06
3.23804e-05
0.000130389
0.000251716
0.000371561
0.000482707
0.000582749
0.000671076
0.000747882
0.000813717
0.000869249
0.00091515
0.000952036
0.000980453
0.00100087
0.00101223
0.000992997
0.000970319
0.000956333
0.0009546
0.000960956
0.000954677
0.0009228
0.000883332
0.00083581
0.000779725
0.000714504
0.000639492
0.000553975
0.00045729
0.000349201
0.000231151
0.000111109
2.25321e-05
2.91644e-06
4.89198e-06
3.21729e-05
0.000129383
0.000249629
0.000369125
0.000480847
0.000582146
0.000672069
0.000750495
0.000817744
0.000874362
0.000920982
0.000958244
0.000986747
0.00100702
0.00100694
0.000989367
0.000968571
0.000953199
0.000947434
0.0009507
0.000952912
0.000925235
0.000885557
0.000837788
0.00078141
0.000715845
0.00064045
0.000554533
0.00045746
0.000349018
0.000230682
0.000110551
2.24608e-05
3.00816e-06
5.2958e-06
3.23538e-05
0.000129093
0.000248252
0.000366786
0.000478216
0.000579981
0.00067101
0.00075093
0.000819742
0.000876584
0.000919978
0.000952658
0.000973836
0.000982797
0.00098036
0.000969778
0.000956036
0.000944329
0.000938642
0.000940071
0.000943052
0.00092851
0.000888662
0.000840624
0.000783901
0.00071793
0.000642085
0.000555706
0.0004582
0.000349401
0.000230802
0.0001105
2.25461e-05
3.08688e-06
5.72877e-06
3.30014e-05
0.000129755
0.000248282
0.000365249
0.000474583
0.000567629
0.00063691
0.000699553
0.00075891
0.000813451
0.000860774
0.000898735
0.000925802
0.00094148
0.00094675
0.000944152
0.000937414
0.000930638
0.000927331
0.000929169
0.000933675
0.000929872
0.000892465
0.000844241
0.00078724
0.000720916
0.000644661
0.000557839
0.0004599
0.000350722
0.000231817
0.000111193
2.28544e-05
3.12839e-06
5.91348e-06
3.28048e-05
0.000127817
0.000244938
0.00035989
0.000466719
0.000561691
0.000615958
0.000663018
0.000711739
0.000761204
0.000807844
0.000848184
0.000879648
0.000901058
0.000912894
0.000917102
0.000916639
0.000914939
0.000915198
0.000919259
0.000925515
0.000925072
0.000896425
0.000848092
0.00079086
0.000724218
0.00064757
0.000560295
0.00046187
0.000352228
0.000232933
0.000111957
2.31523e-05
3.11272e-06
5.72621e-06
3.14152e-05
0.000123644
0.000239596
0.000353854
0.000460287
0.000557045
0.000643438
0.000686922
0.000717133
0.000750476
0.000786539
0.000821194
0.000850727
0.000873129
0.000888058
0.000896453
0.000900258
0.000902163
0.000905143
0.000911462
0.0009205
0.000924237
0.000900486
0.000852045
0.000794565
0.000727577
0.000650505
0.000562734
0.000463755
0.000353547
0.000233761
0.000112432
2.32897e-05
3.04751e-06
5.342e-06
3.04177e-05
0.000122154
0.000238875
0.000353697
0.000460139
0.000556854
0.000643558
0.000720092
0.000781883
0.000799736
0.000812941
0.00083027
0.000849184
0.000865899
0.000878426
0.000886487
0.000890983
0.000893783
0.000897546
0.000904979
0.000916419
0.000924291
0.00090447
0.000856093
0.000798437
0.000731108
0.000653587
0.000565295
0.000465743
0.000354941
0.000234602
0.000112833
2.33321e-05
2.96479e-06
4.9734e-06
3.0442e-05
0.000123726
0.000242488
0.000359119
0.000466292
0.000562627
0.000648451
0.000724336
0.000790621
0.000847465
0.000885084
0.000885253
0.000882129
0.000883287
0.00088666
0.000889389
0.000890475
0.000890783
0.000892561
0.000898636
0.000910138
0.000920825
0.000907627
0.000859837
0.000802368
0.000734902
0.000657013
0.000568205
0.000468054
0.000356612
0.000235629
0.000113277
2.33539e-05
2.89565e-06
4.72888e-06
3.06953e-05
0.000124811
0.000243684
0.000361079
0.000469332
0.000566353
0.00065209
0.000727249
0.000792676
0.000849028
0.000896702
0.000935916
0.000945214
0.000933788
0.000921693
0.000912691
0.000905844
0.000900586
0.000898078
0.000900714
0.0009098
0.000919907
0.000908899
0.000862227
0.000805533
0.000738452
0.000660581
0.000571489
0.000470839
0.00035876
0.000237056
0.000113957
2.34309e-05
2.84698e-06
4.66556e-06
3.00475e-05
0.000122442
0.000238748
0.000354607
0.000462719
0.000560561
0.000647467
0.000723644
0.000789694
0.000846337
0.000894217
0.000933828
0.000965509
0.000986999
0.000973893
0.0009537
0.00093628
0.00092389
0.000917272
0.000917702
0.000924955
0.000930732
0.000908356
0.000862718
0.000807073
0.000740878
0.000663614
0.000574803
0.000474111
0.000361696
0.000239378
0.000115362
2.37469e-05
2.82051e-06
4.74391e-06
2.95285e-05
0.00012038
0.000234524
0.000348525
0.000455564
0.000553189
0.000640556
0.000717586
0.000784589
0.000842067
0.000890565
0.000930593
0.000962593
0.00098693
0.0010006
0.000984283
0.000962216
0.000945084
0.000936485
0.000937015
0.000943508
0.00094232
0.000906262
0.000861165
0.000806325
0.00074104
0.000664633
0.000576491
0.000476188
0.000363822
0.000241184
0.000116493
2.40262e-05
2.79845e-06
4.80628e-06
3.10492e-05
0.000124338
0.000239268
0.000352654
0.000458367
0.000554501
0.000640534
0.000716519
0.00078278
0.000839762
0.00088794
0.000927762
0.000959636
0.000983915
0.00100072
0.000989599
0.000971412
0.000957048
0.00095075
0.000952117
0.000954321
0.000938834
0.000902783
0.000857994
0.000803733
0.000739217
0.00066365
0.000576282
0.000476553
0.00036446
0.000241769
0.000116831
2.41e-05
2.75828e-06
4.80726e-06
3.28847e-05
0.000129306
0.000245818
0.000359638
0.000464952
0.000560117
0.000644845
0.000719382
0.000784192
0.000839824
0.00088683
0.000925705
0.00095687
0.000980675
0.000997401
0.00099365
0.000981393
0.000971997
0.000969494
0.000970915
0.000962999
0.000934524
0.000898274
0.000853598
0.000799741
0.000735868
0.000661096
0.000574559
0.000475564
0.000363999
0.000241587
0.000116783
2.40655e-05
2.69957e-06
4.87445e-06
3.28925e-05
0.000129249
0.000245642
0.00035963
0.000465327
0.000560914
0.000645946
0.000720573
0.000785223
0.000840457
0.000886876
0.000925064
0.000955536
0.000978719
0.000994955
0.000995755
0.000991669
0.000990322
0.000990674
0.000980265
0.000958238
0.000929178
0.000892584
0.000847832
0.000794178
0.000730775
0.000656694
0.000570994
0.000472882
0.000362138
0.000240425
0.00011622
2.39107e-05
2.64018e-06
5.01959e-06
3.30571e-05
0.000129363
0.000245364
0.000358964
0.000464497
0.000560177
0.000645496
0.000720493
0.000785484
0.000840932
0.000887374
0.000925372
0.000955467
0.000977614
0.000984436
0.000987502
0.000992156
0.000997356
0.000992632
0.000976488
0.000953704
0.000923962
0.000886823
0.000841717
0.000787947
0.000724685
0.000651004
0.000565935
0.000468632
0.000358807
0.000238067
0.000114903
2.3564e-05
2.58946e-06
5.19102e-06
3.39213e-05
0.000131446
0.000248066
0.000361733
0.000467057
0.000562456
0.000647535
0.000722367
0.000787243
0.00084257
0.000888817
0.000926465
0.000945404
0.000955495
0.000962901
0.000971463
0.000982573
0.00099297
0.000990779
0.000973952
0.000950406
0.00091988
0.000881996
0.000836248
0.000781997
0.000718471
0.000644781
0.000559978
0.000463219
0.000354208
0.000234553
0.000112788
2.29994e-05
2.54744e-06
5.4104e-06
3.44766e-05
0.000132824
0.000250173
0.000364251
0.000469728
0.000565114
0.000650082
0.000724737
0.000789361
0.000844304
0.000879592
0.000901605
0.000916254
0.000927402
0.000937934
0.000950136
0.000965121
0.000981038
0.000989854
0.000973184
0.000948921
0.000917572
0.000878817
0.000832212
0.000777189
0.000713045
0.000638956
0.000554041
0.000457512
0.000349126
0.000230541
0.000110333
2.23422e-05
2.51198e-06
5.61645e-06
3.48345e-05
0.000133553
0.000251412
0.000365715
0.000471153
0.000566315
0.000650928
0.000725086
0.000786002
0.00082332
0.000849954
0.000870794
0.000887463
0.00090135
0.000914473
0.000928959
0.000945954
0.000964262
0.000978183
0.000974181
0.000949422
0.000917365
0.000877764
0.000830244
0.000774306
0.000709326
0.000634565
0.000549226
0.000452615
0.000344575
0.000226846
0.000108033
2.17218e-05
2.47887e-06
5.70285e-06
3.49003e-05
0.000133596
0.000251893
0.000366423
0.000471743
0.000566492
0.000650464
0.000723816
0.000777369
0.000807474
0.000829642
0.000848809
0.000865921
0.000881374
0.000896154
0.000911721
0.000929353
0.000949138
0.000968042
0.000976199
0.000951791
0.000919205
0.000878856
0.000830444
0.000773541
0.000707602
0.000631978
0.000545973
0.000448998
0.000341007
0.000223833
0.000106103
2.11808e-05
2.44696e-06
5.64783e-06
3.43259e-05
0.000132303
0.00025086
0.000365785
0.000471322
0.00056605
0.000649809
0.000722867
0.000784991
0.000809694
0.000824569
0.000838998
0.000854235
0.000869594
0.000884936
0.000901105
0.000919425
0.000940506
0.000962001
0.000974456
0.000955741
0.000922917
0.000882041
0.000832877
0.000775071
0.000708157
0.000631575
0.000544729
0.000447139
0.000338873
0.000221854
0.000104735
2.07634e-05
2.41901e-06
5.50041e-06
3.36342e-05
0.000131341
0.000250735
0.000366572
0.000472708
0.000567701
0.000651477
0.000724395
0.000786955
0.000830343
0.000839956
0.000845048
0.000853981
0.000866421
0.000880707
0.000896492
0.000914799
0.000936698
0.000960479
0.00097654
0.000960727
0.000927974
0.000886834
0.000837115
0.000778527
0.00071068
0.000633103
0.000545297
0.000446892
0.000338064
0.000220828
0.000103884
2.04716e-05
2.39786e-06
5.368e-06
3.3345e-05
0.00013179
0.000252974
0.000370687
0.000478228
0.000574014
0.000658049
0.000730848
0.000793071
0.000845387
0.000864287
0.00086236
0.000862358
0.000868788
0.000879926
0.000894193
0.000911903
0.000934237
0.0009599
0.000979081
0.000966016
0.000933688
0.000892631
0.000842659
0.000783517
0.000714875
0.000636341
0.000547511
0.00044812
0.000338459
0.000220645
0.000103464
2.02791e-05
2.38409e-06
5.33301e-06
3.31171e-05
0.000132058
0.000254756
0.000374569
0.000484193
0.000581642
0.000666744
0.000740001
0.000802155
0.000853991
0.000878865
0.000876022
0.000870678
0.000871279
0.000878088
0.000889664
0.000905822
0.000927525
0.0009539
0.000976312
0.000970956
0.000939311
0.000898635
0.000848709
0.000789282
0.000720051
0.000640678
0.000550833
0.000450345
0.00033961
0.000220878
0.00010316
2.01182e-05
2.37394e-06
5.36795e-06
3.296e-05
0.000131855
0.000254999
0.000375962
0.000487215
0.000586413
0.000673074
0.000747497
0.000810321
0.0008623
0.000883993
0.000881551
0.000875113
0.000872733
0.000875863
0.000883912
0.000896852
0.000915723
0.000940742
0.000966591
0.000975209
0.000944407
0.000904318
0.000854667
0.000795168
0.000725519
0.000645409
0.000554573
0.000452928
0.000340994
0.00022119
0.000102826
1.99404e-05
2.36426e-06
5.38677e-06
3.26626e-05
0.000130875
0.000253451
0.000374391
0.000486257
0.00058657
0.000674614
0.000750447
0.000814503
0.000867392
0.00088907
0.000887609
0.000880981
0.000876723
0.000876809
0.00088127
0.00089036
0.000905265
0.000927041
0.000953099
0.000970623
0.000948628
0.00090941
0.000860356
0.000801118
0.000731355
0.000650749
0.000559063
0.000456286
0.000343058
0.000222004
0.000102792
1.98657e-05
2.35956e-06
5.35108e-06
3.23908e-05
0.000129834
0.000251441
0.000371619
0.000483181
0.000583727
0.000672488
0.000749389
0.0008147
0.000868874
0.000899215
0.000899872
0.000892325
0.000885725
0.000882681
0.000883499
0.000888549
0.000899175
0.000917082
0.000941381
0.000962178
0.000951382
0.000913186
0.00086497
0.000806295
0.000736748
0.00065597
0.000563708
0.000459984
0.000345529
0.000223167
0.000102953
1.98132e-05
2.34662e-06
5.28347e-06
3.22185e-05
0.000129041
0.000249717
0.000369035
0.000479994
0.00058031
0.000669259
0.000746749
0.000812987
0.000868336
0.000911137
0.000915441
0.000907149
0.000897985
0.000891675
0.000888856
0.000889892
0.000896174
0.000909938
0.000931807
0.000954516
0.000952517
0.000915365
0.000868116
0.000810219
0.000741165
0.000660525
0.000568012
0.000463656
0.000348256
0.000224781
0.000103559
1.99187e-05
2.34698e-06
5.23994e-06
3.19519e-05
0.000127827
0.000247237
0.000365532
0.000475841
0.000575888
0.000664933
0.000742857
0.000809828
0.000866153
0.000912208
0.000928204
0.000922485
0.000911586
0.000902064
0.000895663
0.000892945
0.000895223
0.000904948
0.000923846
0.000947033
0.000951836
0.000915658
0.000869457
0.000812546
0.000744285
0.000664126
0.000571697
0.000466988
0.00035083
0.00022633
0.000104119
1.9994e-05
2.33803e-06
5.23397e-06
3.16228e-05
0.000126192
0.00024373
0.000360424
0.000469679
0.000569234
0.000658282
0.000736619
0.000804328
0.000861645
0.000908877
0.000935449
0.000934229
0.000923608
0.000912075
0.000902664
0.000896555
0.000895211
0.000901093
0.000916466
0.000938666
0.000949098
0.000913605
0.000868317
0.000812434
0.000745188
0.000665897
0.000574065
0.000469582
0.00035322
0.00022811
0.000105058
2.02284e-05
2.33438e-06
5.2507e-06
3.1361e-05
0.00012464
0.00024013
0.0003548
0.000462459
0.000560997
0.000649616
0.000728057
0.000796322
0.000854553
0.000902976
0.00093996
0.000943653
0.000934182
0.000921528
0.000909794
0.000900775
0.000896145
0.000898331
0.000909636
0.000928447
0.000940927
0.000909718
0.000865049
0.000809941
0.000743525
0.000665007
0.000573778
0.00046964
0.000353341
0.000228073
0.000104841
2.0127e-05
2.32218e-06
5.28178e-06
3.15374e-05
0.000124289
0.000238149
0.000350842
0.000456629
0.000553656
0.000641246
0.000719175
0.000787421
0.000846074
0.000895291
0.000935267
0.000950511
0.0009456
0.000933234
0.000919675
0.000908005
0.000900471
0.000899629
0.000907798
0.000923648
0.000934404
0.000904863
0.000860694
0.000806389
0.00074101
0.00066365
0.000573547
0.000470336
0.000354609
0.00022945
0.00010585
2.04261e-05
2.30004e-06
5.3312e-06
3.16288e-05
0.000123825
0.000236318
0.000347341
0.000451468
0.000547034
0.00063349
0.000710686
0.000778627
0.00083739
0.000887093
0.000927876
0.000952955
0.000953053
0.000942281
0.000928305
0.00091507
0.000905275
0.000901615
0.000906398
0.000918553
0.000926593
0.000898238
0.000854078
0.000800096
0.000735348
0.000658876
0.000569832
0.000467735
0.000353041
0.000228701
0.000105598
2.03659e-05
2.27135e-06
5.406e-06
3.21627e-05
0.000124491
0.000236015
0.000345531
0.000448006
0.000542012
0.00062714
0.000703331
0.000770641
0.000829164
0.000879011
0.000920301
0.000952647
0.000958389
0.000951249
0.000938567
0.000924804
0.000913377
0.000907362
0.000909026
0.000917238
0.00092143
0.000892452
0.000848183
0.000794425
0.000730248
0.000654661
0.000566734
0.000465855
0.00035231
0.000228855
0.00010613
2.05802e-05
2.24268e-06
5.46967e-06
3.26203e-05
0.000125212
0.000236099
0.000344362
0.00044529
0.000537715
0.000621413
0.000696445
0.000762944
0.000821036
0.000870829
0.000912419
0.000945885
0.000961337
0.000959146
0.000948574
0.000935349
0.000923428
0.000915907
0.000914766
0.000918699
0.000917971
0.000886179
0.000841434
0.000787536
0.000723627
0.00064874
0.00056191
0.000462414
0.000350347
0.000228194
0.000106254
2.06809e-05
2.19784e-06
5.51501e-06
3.37811e-05
0.000127978
0.000239303
0.000346961
0.000446556
0.000537236
0.00061907
0.000692348
0.000757365
0.000814356
0.000863491
0.000904888
0.000938627
0.000964761
0.000970125
0.000963312
0.000951573
0.000939522
0.000930514
0.000926481
0.00092594
0.000918943
0.000881882
0.000836503
0.000782198
0.000718208
0.000643643
0.000557574
0.000459247
0.000348619
0.000227876
0.000106751
2.08834e-05
2.16788e-06
5.5391e-06
3.4649e-05
0.000130484
0.000242931
0.000350934
0.000450098
0.000539724
0.000620087
0.000691692
0.000755031
0.000810505
0.000858405
0.000898929
0.00093221
0.000958335
0.000977355
0.000980394
0.000973228
0.000963858
0.000956532
0.00095193
0.000944235
0.000915772
0.000878162
0.000832369
0.000777861
0.000713965
0.000639872
0.000554698
0.000457652
0.000348526
0.000229129
0.0001085
2.15357e-05
2.14094e-06
5.54927e-06
3.5615e-05
0.000133547
0.000247896
0.000357062
0.000456524
0.000545661
0.000624921
0.00069501
0.000756621
0.00081033
0.000856575
0.000895655
0.000927762
0.000953015
0.000971483
0.000983206
0.000988193
0.000986417
0.000977803
0.000962216
0.000939455
0.000909247
0.000871254
0.000825072
0.000770215
0.000706104
0.00063206
0.000547339
0.000451266
0.000343659
0.000226167
0.000107309
2.1213e-05
2.0763e-06
5.53054e-06
3.63773e-05
0.000136566
0.000253769
0.00036538
0.000466409
0.000556151
0.000635153
0.000704302
0.000764497
0.000816517
0.00086098
0.00089833
0.000928861
0.000952734
0.000970018
0.000980732
0.000984868
0.000982391
0.000973222
0.000957226
0.000934189
0.000903821
0.000865756
0.000819565
0.000764761
0.000700798
0.000627077
0.000542971
0.000447925
0.000341796
0.000226028
0.000108376
2.17063e-05
2.04329e-06
5.51757e-06
3.67298e-05
0.00013857
0.00025859
0.000373124
0.000476565
0.000567944
0.000647753
0.000716948
0.000776569
0.000827567
0.000870735
0.000906674
0.000935799
0.000958357
0.000974452
0.000984091
0.000987221
0.000983763
0.000973625
0.000956679
0.000932741
0.000901544
0.000862738
0.000815894
0.000760518
0.000696065
0.000621956
0.000537629
0.000442633
0.000336955
0.000222175
0.000106115
2.11192e-05
1.98472e-06
5.48533e-06
3.74486e-05
0.000141354
0.000264034
0.000381241
0.000486984
0.000580083
0.000660945
0.000730535
0.000789968
0.000840319
0.000882534
0.000917371
0.000945381
0.000966898
0.000982061
0.000990861
0.000993206
0.000988958
0.000977965
0.000960074
0.000935106
0.000902826
0.000862916
0.000814969
0.000758498
0.000692965
0.000617811
0.000532529
0.000436792
0.000330804
0.000216468
0.000102072
1.98662e-05
1.90637e-06
5.4338e-06
3.73012e-05
0.000141932
0.000266624
0.000386374
0.000494607
0.000589815
0.000672233
0.000742756
0.000802502
0.000852612
0.00089415
0.000928048
0.00095484
0.0009703
0.000988403
0.000999034
0.00100104
0.000996425
0.000984976
0.000966484
0.000940743
0.000907529
0.000866559
0.000817471
0.00075981
0.000693061
0.000616688
0.000530231
0.000433464
0.000326776
0.000212379
9.90254e-05
1.89546e-05
1.84523e-06
5.40356e-06
3.76295e-05
0.00014324
0.000269263
0.000390625
0.000500568
0.000597399
0.0006812
0.000752749
0.00081309
0.00086333
0.000904536
0.000937679
0.000951181
0.00095595
0.000969438
0.000992116
0.00100838
0.00100386
0.00099248
0.000973963
0.00094802
0.00091437
0.00087271
0.000822682
0.000763846
0.000695685
0.000617665
0.000529354
0.000430643
0.000322212
0.000206865
9.44215e-05
1.75363e-05
1.77472e-06
5.35238e-06
3.74765e-05
0.000143278
0.000269811
0.000392106
0.000503254
0.000601377
0.000686398
0.000758977
0.000820075
0.000870747
0.000912032
0.000944898
0.000954898
0.0009535
0.000959852
0.000978242
0.00100179
0.00100873
0.000997632
0.000979423
0.000953747
0.000920235
0.000878507
0.000828157
0.000768722
0.000699668
0.000620435
0.000530566
0.000430002
0.000319659
0.000202919
9.07269e-05
1.63792e-05
1.7235e-06
5.31774e-06
3.69752e-05
0.000142095
0.000268302
0.00039086
0.000502733
0.00060184
0.000687922
0.000761492
0.000823398
0.000874618
0.000916147
0.000948934
0.000956806
0.000951757
0.000952974
0.000966475
0.000989813
0.00101004
0.000999091
0.000981162
0.000955847
0.000922713
0.000881305
0.000831146
0.000771723
0.000702467
0.000622776
0.000532134
0.00043045
0.000318722
0.000200718
8.83419e-05
1.56511e-05
1.68789e-06
5.29455e-06
3.66223e-05
0.000140918
0.000266124
0.000388129
0.000499999
0.00059955
0.000686352
0.000760748
0.000823442
0.000875299
0.000917229
0.000950128
0.000959169
0.000952072
0.000948816
0.000957045
0.000976565
0.000998157
0.000996568
0.000978675
0.000953543
0.000920719
0.000879706
0.00082997
0.000770944
0.000702021
0.000622558
0.000531987
0.000430134
0.000317967
0.0001994
8.69124e-05
1.52482e-05
1.66793e-06
5.28269e-06
3.58546e-05
0.000138471
0.000261837
0.000382591
0.00049393
0.000593569
0.000680907
0.000756105
0.000819701
0.00087241
0.000915029
0.000948366
0.000959726
0.000952152
0.000945566
0.000948617
0.000963213
0.00098389
0.000990758
0.000972469
0.000947103
0.000914224
0.000873339
0.000823901
0.00076532
0.000696967
0.00061819
0.000528392
0.000427327
0.000315855
0.000197816
8.58326e-05
1.50334e-05
1.65743e-06
5.29882e-06
3.51683e-05
0.000135913
0.000256942
0.000375805
0.000485971
0.000585145
0.000672608
0.000748363
0.000812787
0.000866443
0.000909986
0.000944104
0.000959313
0.000953117
0.000944626
0.000943172
0.000952044
0.000969032
0.000982586
0.000964236
0.000938249
0.000904885
0.000863676
0.0008141
0.000755583
0.000687525
0.000609326
0.000520459
0.000420715
0.000310894
0.000194635
8.42751e-05
1.47918e-05
1.64372e-06
5.33637e-06
3.45192e-05
0.000133347
0.000251732
0.000368235
0.000476697
0.000574889
0.000662033
0.00073802
0.000803092
0.000857679
0.000902302
0.000937524
0.000960247
0.000957393
0.000948482
0.000943908
0.000947976
0.000959798
0.00097039
0.000956272
0.000929666
0.000895804
0.000854255
0.00080452
0.000746048
0.000678265
0.000600615
0.000512658
0.000414272
0.000306256
0.000192032
8.33624e-05
1.47404e-05
1.62954e-06
5.39315e-06
3.40306e-05
0.000131124
0.000246844
0.000360724
0.000467042
0.000563721
0.00065
0.000725722
0.000791049
0.000846314
0.000891933
0.00092836
0.00095606
0.000963483
0.000957905
0.000952248
0.00095263
0.000959508
0.000965434
0.000949477
0.000922458
0.000888344
0.000846756
0.000797229
0.000739226
0.000672162
0.000595455
0.000508632
0.000411536
0.00030489
0.0001919
8.38585e-05
1.49949e-05
1.62366e-06
5.44974e-06
3.3891e-05
0.000129905
0.000243406
0.000354764
0.000458731
0.000553461
0.000638294
0.000713104
0.000778046
0.000833417
0.000879583
0.000916931
0.000945843
0.000966689
0.000970159
0.000966349
0.000965086
0.000967603
0.000963684
0.000943179
0.000915902
0.000881657
0.000840149
0.000790987
0.000733688
0.000667686
0.00059237
0.000507164
0.000411732
0.000306515
0.000194318
8.5926e-05
1.56187e-05
1.63604e-06
5.49142e-06
3.38722e-05
0.000129221
0.000241037
0.000350247
0.000451986
0.000544632
0.000627663
0.000701034
0.000764942
0.000819705
0.000865692
0.000903279
0.000932818
0.000954622
0.000968968
0.000976096
0.000976204
0.000969436
0.000955871
0.00093551
0.000908282
0.000874041
0.000832571
0.000783574
0.00072667
0.000661391
0.000587198
0.00050352
0.000409918
0.000306559
0.000195748
8.75759e-05
1.61775e-05
1.66058e-06
5.51051e-06
3.38818e-05
0.000128893
0.000239671
0.000347374
0.000447341
0.000538118
0.00061931
0.000690968
0.000753359
0.000806858
0.000851878
0.000888829
0.000918081
0.000939946
0.000954665
0.000962413
0.000963304
0.000957393
0.000944673
0.000925082
0.000898502
0.000864767
0.00082366
0.000774916
0.000718223
0.000653218
0.000579492
0.000496618
0.000404269
0.00030262
0.000193745
8.71083e-05
1.61955e-05
1.65563e-06
5.51523e-06
3.35799e-05
0.000128017
0.000238028
0.000344832
0.000443753
0.000533339
0.000613226
0.000683507
0.000744501
0.000796637
0.000840388
0.000876226
0.000904582
0.000925817
0.000940208
0.00094794
0.000949105
0.00094372
0.000931727
0.000913002
0.00088736
0.000854565
0.000814338
0.000766365
0.000710306
0.000645813
0.000572539
0.000490177
0.000398567
0.000298064
0.000190803
8.58792e-05
1.59362e-05
1.59282e-06
5.52629e-06
3.28308e-05
0.000125994
0.000234874
0.00034094
0.000439361
0.000528504
0.000607872
0.000677496
0.000737676
0.000788858
0.000831558
0.000866305
0.000893598
0.000913873
0.000927477
0.000934656
0.000935544
0.000930172
0.000918475
0.00090031
0.000875458
0.000843633
0.000804496
0.00075766
0.000702713
0.00063923
0.000566818
0.000485165
0.000394171
0.000294324
0.000187946
8.42273e-05
1.53739e-05
1.46163e-06
5.57338e-06
3.16301e-05
0.000122607
0.000229449
0.000334322
0.000432325
0.000521517
0.000601106
0.000670911
0.000731103
0.000782074
0.000824334
0.000858439
0.000884943
0.00090435
0.000917085
0.000923475
0.00092373
0.000917939
0.000906076
0.00088801
0.000863524
0.000832317
0.00079402
0.000748204
0.000694392
0.000632082
0.000560788
0.000480115
0.00038992
0.00029072
0.000184993
8.22609e-05
1.46339e-05
1.32096e-06
5.67566e-06
3.04631e-05
0.000118838
0.000222642
0.000325366
0.000422365
0.000511461
0.000591517
0.000662021
0.000722908
0.000774411
0.000816962
0.000851094
0.000877375
0.000896349
0.000908503
0.000914236
0.000913838
0.000907482
0.000895212
0.00087695
0.000852502
0.000821578
0.000783801
0.000738715
0.000685799
0.000624483
0.000554189
0.000474418
0.000384942
0.00028627
0.000181079
7.94842e-05
1.37049e-05
1.21336e-06
5.81948e-06
3.01005e-05
0.000116776
0.000217418
0.000317141
0.0004121
0.000500246
0.000580232
0.00065124
0.000712909
0.000765247
0.000808525
0.000843184
0.000869751
0.000888764
0.000900732
0.000906095
0.000905201
0.000898292
0.000885493
0.000866802
0.000842091
0.000811115
0.00077352
0.000728859
0.000676601
0.000616144
0.000546845
0.000468111
0.000379606
0.000281785
0.000177433
7.71177e-05
1.30624e-05
1.17269e-06
5.95997e-06
3.08143e-05
0.000117473
0.000215886
0.000312483
0.000404569
0.000490692
0.000569633
0.000640406
0.000702386
0.00075533
0.000799312
0.000834632
0.000861723
0.000881073
0.00089317
0.000898459
0.000897313
0.000890012
0.000876732
0.000857536
0.000832364
0.000801037
0.000763256
0.000718617
0.000666618
0.000606678
0.000538155
0.000460412
0.000373035
0.000276399
0.000173313
7.46735e-05
1.25652e-05
1.18472e-06
6.05101e-06
3.20954e-05
0.00011993
0.000217368
0.000311291
0.000399154
0.000473314
0.000544346
0.000613449
0.000678201
0.000736727
0.000787714
0.000825895
0.000853281
0.000872905
0.000885194
0.000890562
0.000889372
0.000881906
0.00086835
0.000848786
0.000823182
0.000791394
0.000753172
0.000708162
0.000655926
0.00059595
0.000527681
0.000450582
0.000364301
0.000269214
0.000168094
7.18335e-05
1.21222e-05
1.24751e-06
6.09228e-06
3.22586e-05
0.000119843
0.000216377
0.000308245
0.000382778
0.000449691
0.000517637
0.000585953
0.000650497
0.000707545
0.000755456
0.000794637
0.000826758
0.000853536
0.000874339
0.000881005
0.000879924
0.000872544
0.000859038
0.000839479
0.000813826
0.000781932
0.000743549
0.000698338
0.000645884
0.00058572
0.000517363
0.000440388
0.000354614
0.000260625
0.000161385
6.79461e-05
1.14256e-05
1.29372e-06
6.15553e-06
3.01208e-05
0.000113556
0.000206879
0.000292622
0.000360953
0.000426922
0.000495225
0.000564031
0.000629112
0.000686688
0.000734786
0.000773242
0.000803004
0.000825465
0.000842096
0.000854202
0.000861774
0.000859934
0.000846647
0.000827334
0.000801962
0.00077038
0.000732333
0.000687473
0.000635383
0.000575599
0.000507657
0.000431192
0.000346133
0.000253234
0.000155653
6.46133e-05
1.08026e-05
1.29691e-06
6.35529e-06
2.6155e-05
0.000101229
0.000185365
0.00025626
0.000327122
0.000400824
0.000476155
0.00055005
0.000618629
0.000678619
0.000728347
0.000767779
0.000797966
0.000820375
0.000836407
0.000846972
0.000851327
0.000844576
0.000831269
0.000812105
0.000787053
0.000755971
0.000718606
0.000674608
0.000623541
0.000564917
0.00049824
0.000423106
0.000339419
0.000247919
0.000151788
6.23546e-05
1.02677e-05
1.22487e-06
6.75953e-06
2.3457e-05
9.04539e-05
0.00015482
0.000218088
0.000290821
0.00037278
0.000459084
0.000543368
0.000620234
0.000686493
0.000736974
0.000772771
0.000800016
0.000819272
0.000831107
0.00083604
0.000834518
0.000826892
0.00081341
0.000794209
0.00076931
0.000738615
0.000701912
0.000658875
0.000609082
0.000552033
0.000487197
0.000414103
0.000332549
0.000243124
0.000148826
6.08539e-05
9.85738e-06
1.13434e-06
7.23702e-06
2.46865e-05
9.01826e-05
0.000143332
0.00019648
0.000264285
0.000349179
0.000446498
0.000543594
0.000613674
0.000669177
0.000715335
0.000752238
0.000780309
0.000800121
0.000812282
0.000817366
0.000815871
0.000808202
0.000794661
0.000775439
0.000750618
0.000720167
0.000683936
0.000641662
0.000592971
0.000537393
0.000474393
0.000403454
0.000324263
0.000237243
0.000145184
5.91324e-05
9.41834e-06
1.04068e-06
7.49162e-06
2.93249e-05
0.000100997
0.00015373
0.000197891
0.000256196
0.000335464
0.000432209
0.000529521
0.000595932
0.000650498
0.000696307
0.000733164
0.000761322
0.000781265
0.000793561
0.000798765
0.000797368
0.000789774
0.00077629
0.00075712
0.000732371
0.000702049
0.000666063
0.000624221
0.000576232
0.000521715
0.000460213
0.000391248
0.000314482
0.000230207
0.000140942
5.73267e-05
9.0713e-06
9.87727e-07
7.34908e-06
3.35906e-05
0.000113141
0.000173844
0.000212729
0.000261119
0.000328483
0.000412815
0.000503094
0.000583748
0.000639031
0.000682592
0.000717897
0.000745016
0.000764304
0.000776235
0.000781301
0.000779944
0.000772526
0.000759313
0.000740472
0.000716082
0.00068613
0.000650525
0.000609098
0.000561608
0.000507748
0.00044716
0.000379473
0.000304447
0.000222409
0.000135789
5.49273e-05
8.65125e-06
9.47506e-07
6.91927e-06
3.32835e-05
0.000115067
0.000184508
0.000223467
0.000266075
0.000323642
0.000396251
0.000476729
0.000554402
0.000620727
0.000672149
0.000705257
0.000730709
0.000748781
0.000759877
0.000764438
0.000762874
0.000755512
0.000742584
0.000724223
0.000700461
0.000671243
0.000636435
0.000595837
0.000549193
0.000496205
0.00043655
0.000369932
0.000296208
0.000215811
0.00013122
5.26517e-05
8.2137e-06
9.03565e-07
6.49064e-06
2.85632e-05
0.000105529
0.000176385
0.000219238
0.00026217
0.00031604
0.000382522
0.000457277
0.000532302
0.000599963
0.000655137
0.00069221
0.000716532
0.000733628
0.000743953
0.00074797
0.000746098
0.000738675
0.000725938
0.000708018
0.000684936
0.000656612
0.000622876
0.000583478
0.000538108
0.000486415
0.000428036
0.000362657
0.000290158
0.00021104
0.000127879
5.09123e-05
7.80523e-06
8.42457e-07
6.27501e-06
2.36167e-05
9.30334e-05
0.000158406
0.000204048
0.000249376
0.000303064
0.000367465
0.000440028
0.000514611
0.000584367
0.000642259
0.000675403
0.000700039
0.000717211
0.000727465
0.000731354
0.000729377
0.000721937
0.000709323
0.000691709
0.00066915
0.000641586
0.000608854
0.00057069
0.000526749
0.000476622
0.000419872
0.000356094
0.000285081
0.00020728
0.00012529
4.94683e-05
7.35891e-06
7.71556e-07
6.24186e-06
2.12589e-05
8.53422e-05
0.0001446
0.000189049
0.00023387
0.000286191
0.000348558
0.000419235
0.000492476
0.000561172
0.000618643
0.000653896
0.000679853
0.000698226
0.000709487
0.000714175
0.000712816
0.000705861
0.000693662
0.000676459
0.000654375
0.000627413
0.000595465
0.000558307
0.000515616
0.000466979
0.00041192
0.000349961
0.00028078
0.00020466
0.000124012
4.90166e-05
7.17598e-06
7.33092e-07
6.24624e-06
2.12627e-05
8.41532e-05
0.000140636
0.000181784
0.000222968
0.000271198
0.000329234
0.000395946
0.000465837
0.000530858
0.000584414
0.000624278
0.000652472
0.000673127
0.000688715
0.000694774
0.000694696
0.000688897
0.000677716
0.0006614
0.000640101
0.000613866
0.000582638
0.000546255
0.000504446
0.000456839
0.000402976
0.000342369
0.000274652
0.000200037
0.000120876
4.74081e-05
6.82978e-06
7.14364e-07
6.2055e-06
2.18843e-05
8.57917e-05
0.00014294
0.00018134
0.000218438
0.000261971
0.000315041
0.000376989
0.000442709
0.000504202
0.000554856
0.000592538
0.000618771
0.000636108
0.000646635
0.000651817
0.000652909
0.000651356
0.000648356
0.000642423
0.00062346
0.000598341
0.000568064
0.00053251
0.000491458
0.000444594
0.000391527
0.00033184
0.00026524
0.000192031
0.000114736
4.3981e-05
6.20243e-06
6.80468e-07
6.08972e-06
2.22967e-05
8.74375e-05
0.000148537
0.000185837
0.000219727
0.000259401
0.000308604
0.000367296
0.000430573
0.000489812
0.000537979
0.000573768
0.000599735
0.00061829
0.000630266
0.000635772
0.000635173
0.000629291
0.000619132
0.000605662
0.000589576
0.000571099
0.000548293
0.000514144
0.000474402
0.00042881
0.000377042
0.000318769
0.000253813
0.00018261
0.00010781
4.02012e-05
5.45281e-06
5.84912e-07
5.89151e-06
2.24093e-05
8.85744e-05
0.000155546
0.000193392
0.000225072
0.000261526
0.000307561
0.000364589
0.000428885
0.000489173
0.000527279
0.000555369
0.000578322
0.000595885
0.000608027
0.000614858
0.000616554
0.000613291
0.000605198
0.000592345
0.000574721
0.000552238
0.000524738
0.000492009
0.000453797
0.000409828
0.000359828
0.000303571
0.000241018
0.000172722
0.0001013
3.71365e-05
4.82509e-06
4.6197e-07
5.61512e-06
2.24364e-05
8.9751e-05
0.000161657
0.00020334
0.000234064
0.00026784
0.000310906
0.00036617
0.000430049
0.000483287
0.000513116
0.000538506
0.00055908
0.000574658
0.000585239
0.000590947
0.000591961
0.000588454
0.000580549
0.00056829
0.000551627
0.000530417
0.00050444
0.000473413
0.00043702
0.000394939
0.000346883
0.000292659
0.000232306
0.000166462
9.76899e-05
3.57743e-05
4.48927e-06
3.65115e-07
5.33395e-06
2.24054e-05
9.06603e-05
0.000164339
0.000212529
0.000244374
0.000276138
0.000315848
0.00036764
0.000428543
0.000474989
0.000502231
0.000525311
0.000543901
0.00055784
0.000567132
0.000571899
0.000572324
0.000568589
0.000560828
0.000549095
0.000533345
0.000513431
0.000489108
0.000460048
0.000425853
0.000386088
0.000340316
0.000288173
0.000229527
0.000164901
9.68946e-05
3.54805e-05
4.26482e-06
2.94965e-07
5.10659e-06
2.24191e-05
9.17413e-05
0.000167485
0.000219357
0.000253134
0.000283566
0.000319034
0.000364405
0.000419505
0.000468576
0.000493198
0.000514048
0.000530822
0.000543342
0.00055157
0.000555583
0.000555521
0.000551537
0.000543757
0.000532236
0.00051694
0.000497733
0.000474379
0.000446544
0.000413808
0.00037569
0.00033168
0.000281316
0.000224351
0.000161215
9.45176e-05
3.43995e-05
4.04998e-06
2.69701e-07
4.9447e-06
2.19297e-05
9.1064e-05
0.000168469
0.000221261
0.000257403
0.000287825
0.000319313
0.000356013
0.000399944
0.000448228
0.000485743
0.000504197
0.000519082
0.000530217
0.000537512
0.000540965
0.000540643
0.000536646
0.000529072
0.000517975
0.00050334
0.000485059
0.000462926
0.000436622
0.000405712
0.000369651
0.000327798
0.000279479
0.000224162
0.000161988
9.54603e-05
3.50302e-05
4.15294e-06
2.67455e-07
4.79223e-06
2.02829e-05
8.63622e-05
0.000163934
0.000219481
0.000258979
0.000290813
0.000320493
0.000351008
0.000383216
0.000416535
0.000449876
0.000481799
0.000506951
0.000516702
0.000523036
0.000525889
0.000525229
0.000521045
0.000513347
0.000502132
0.000487366
0.000468967
0.00044679
0.000420609
0.000390103
0.000354845
0.000314298
0.000267855
0.000214962
0.000155575
9.18223e-05
3.3716e-05
4.12531e-06
3.16092e-07
4.64258e-06
1.79506e-05
7.88085e-05
0.000154405
0.000215969
0.000262189
0.000298114
0.000328608
0.000356574
0.000383326
0.000408853
0.000432264
0.000452614
0.000469226
0.000481757
0.00049032
0.000495663
0.000499358
0.000502404
0.000497018
0.000486636
0.00047268
0.000454963
0.000433267
0.000407344
0.000376893
0.000341577
0.000301027
0.000254881
0.000202905
0.000145397
8.46717e-05
3.04278e-05
3.71637e-06
3.3726e-07
4.53114e-06
1.59248e-05
7.1468e-05
0.000142286
0.000209988
0.000266456
0.000310501
0.000345225
0.000373796
0.000398161
0.000419277
0.000437324
0.0004521
0.000463273
0.00047063
0.000474241
0.000474492
0.000471882
0.000466909
0.000460048
0.000451794
0.00044291
0.000433472
0.000417192
0.000392532
0.000363203
0.000328824
0.000289038
0.000243577
0.000192409
0.000136149
7.75069e-05
2.65709e-05
3.09425e-06
3.1813e-07
4.4976e-06
1.52361e-05
6.7654e-05
0.000129972
0.000200968
0.000264949
0.000314436
0.000353746
0.000384455
0.000408382
0.000427079
0.000441697
0.000453009
0.000461489
0.000467398
0.000470855
0.000471893
0.000470493
0.000466567
0.00046001
0.000448139
0.000433436
0.000417244
0.000399928
0.000380408
0.00035269
0.00031984
0.000281347
0.000236832
0.000186288
0.000130592
7.29913e-05
2.41127e-05
2.61755e-06
2.48639e-07
4.5226e-06
1.51317e-05
6.2722e-05
0.000117882
0.000185723
0.000254076
0.000301117
0.000338893
0.000368625
0.000391878
0.000410056
0.000424228
0.000435123
0.000443193
0.000448699
0.000451775
0.000452479
0.000450836
0.000446787
0.000440266
0.000431188
0.000419402
0.000404692
0.000386756
0.000365184
0.000339456
0.000308958
0.000273015
0.000230999
0.000182558
0.000128205
7.1098e-05
2.2703e-05
2.22959e-06
1.75499e-07
4.52759e-06
1.533e-05
6.11609e-05
0.000110445
0.000171262
0.000237631
0.000292044
0.000327112
0.000355022
0.00037709
0.000394517
0.000408231
0.000418867
0.00042682
0.000432311
0.000435453
0.000436302
0.000434898
0.000431206
0.000425177
0.000416782
0.000405925
0.000392439
0.000376055
0.000356386
0.0003329
0.000304908
0.000271571
0.00023197
0.000185331
0.000131707
7.40368e-05
2.4137e-05
2.33104e-06
1.3249e-07
4.4207e-06
1.5066e-05
6.22619e-05
0.000109033
0.000162657
0.000221831
0.000278768
0.000318294
0.000343882
0.000364326
0.000380681
0.000393717
0.000403934
0.000411616
0.000416893
0.000419811
0.000420379
0.000418628
0.00041451
0.000407973
0.000399046
0.000387717
0.000373901
0.000357406
0.000337923
0.000315004
0.000288065
0.000256381
0.000219124
0.000175479
0.000125144
7.03172e-05
2.24946e-05
2.07573e-06
9.23105e-08
4.18921e-06
1.42431e-05
6.35168e-05
0.00011282
0.000163705
0.00021388
0.000261456
0.000304327
0.000334085
0.000353016
0.000368442
0.000381077
0.000391342
0.000399438
0.000405402
0.000409177
0.000410673
0.000409834
0.000406569
0.000400792
0.000392548
0.000381884
0.000368826
0.000353334
0.000335222
0.000314099
0.000289333
0.000260074
0.000225262
0.000183717
0.000134603
7.9322e-05
2.8047e-05
3.06261e-06
1.14629e-07
3.90801e-06
1.2637e-05
6.04366e-05
0.000115122
0.000169176
0.000214294
0.000249955
0.000279548
0.000306201
0.000331462
0.000353022
0.000365128
0.000375064
0.000383048
0.000389125
0.000393203
0.000395103
0.000394648
0.000391606
0.000385748
0.000376986
0.000365279
0.000350645
0.000333105
0.000312646
0.000289151
0.00026233
0.00023172
0.000196745
0.000156879
0.000112011
6.39185e-05
2.17231e-05
2.32648e-06
1.05166e-07
3.60397e-06
1.11612e-05
5.50143e-05
0.000113628
0.00017105
0.000214515
0.000243678
0.00026523
0.000283697
0.000300952
0.000317507
0.000333399
0.000348394
0.000361671
0.000370261
0.000375387
0.000378778
0.000380299
0.000379717
0.000376759
0.0003712
0.000362809
0.000351373
0.000336712
0.000318665
0.000297076
0.000271729
0.000242278
0.000208214
0.00016888
0.000123735
7.36297e-05
2.65366e-05
2.96319e-06
1.5086e-07
3.27212e-06
9.99582e-06
4.84891e-05
0.000102042
0.000150257
0.000188847
0.000220039
0.000246066
0.000268186
0.000287029
0.000302942
0.000316178
0.000326966
0.000335522
0.00034204
0.000346665
0.00034948
0.0003505
0.000349577
0.000346521
0.000341164
0.000333263
0.000322504
0.000308511
0.000290881
0.000269218
0.000243168
0.000212448
0.000176911
0.000136727
9.28955e-05
4.896e-05
1.49846e-05
1.40655e-06
6.24845e-08
2.86142e-06
1.08677e-05
4.93264e-05
9.39449e-05
0.000129466
0.000158201
0.000183686
0.00020714
0.000228601
0.000247794
0.000264462
0.000278467
0.000289789
0.000298499
0.00030472
0.000308598
0.000310278
0.00030991
0.000307486
0.000303014
0.000296588
0.00028826
0.00027804
0.000265902
0.00025177
0.000235488
0.000216738
0.000194889
0.000168741
0.000136359
9.57267e-05
4.9177e-05
1.2866e-05
8.90829e-07
2.27492e-08
2.45297e-06
1.02947e-05
4.37072e-05
7.8199e-05
0.000102522
0.000122565
0.000142145
0.000161876
0.000181305
0.000199847
0.000217037
0.00023257
0.000246298
0.000258187
0.000268276
0.000276633
0.000283308
0.0002883
0.000291441
0.000292431
0.000290796
0.000286157
0.000277881
0.000265232
0.000247424
0.000223707
0.000193521
0.000156835
0.000114868
7.15688e-05
3.48579e-05
1.23173e-05
2.61936e-06
1.39136e-07
3.77681e-08
1.76059e-06
1.56905e-05
5.32821e-05
7.33185e-05
8.18364e-05
8.96833e-05
9.88467e-05
0.000108755
0.000118668
0.000128044
0.000136534
0.000143812
0.000149627
0.000153817
0.000156296
0.000157035
0.000156023
0.00015322
0.000148631
0.000142254
0.000134049
0.000124128
0.000112577
9.95247e-05
8.52143e-05
7.00307e-05
5.45392e-05
3.94226e-05
2.57671e-05
1.4771e-05
7.15266e-06
2.75857e-06
7.61791e-07
1.7849e-07
1.01682e-07
1.53633e-06
1.65587e-05
3.68558e-05
4.7113e-05
4.97058e-05
5.02714e-05
5.12744e-05
5.29915e-05
5.541e-05
5.8581e-05
6.19063e-05
6.48165e-05
6.77258e-05
6.787e-05
6.74727e-05
6.6623e-05
6.52773e-05
6.34028e-05
6.0985e-05
5.80172e-05
5.44689e-05
5.03297e-05
4.56353e-05
4.04792e-05
3.49829e-05
2.93054e-05
2.36871e-05
1.84628e-05
1.40664e-05
1.09943e-05
9.32e-06
8.3054e-06
5.34508e-06
1.2592e-06
2.20638e-07
2.98686e-06
3.33458e-05
5.26327e-05
5.27144e-05
5.26049e-05
5.21747e-05
5.1537e-05
5.08032e-05
5.00398e-05
4.92976e-05
4.86234e-05
4.8052e-05
4.76006e-05
4.72679e-05
4.70364e-05
4.68848e-05
4.67865e-05
4.67186e-05
4.6661e-05
4.65985e-05
4.6522e-05
4.64264e-05
4.63149e-05
4.62011e-05
4.61114e-05
4.60895e-05
4.62001e-05
4.65293e-05
4.71754e-05
4.82164e-05
4.96451e-05
5.12034e-05
5.18705e-05
2.12012e-05
1.23672e-06
2.89394e-07
6.77752e-06
1.16105e-05
1.60595e-05
2.05606e-05
2.50246e-05
2.94919e-05
3.41071e-05
3.88654e-05
4.35339e-05
4.42409e-05
4.47109e-05
4.50165e-05
4.52084e-05
4.53198e-05
4.53729e-05
4.53814e-05
4.53495e-05
4.52747e-05
4.51503e-05
4.36735e-05
4.21707e-05
4.04794e-05
3.8684e-05
3.72902e-05
3.61464e-05
3.47597e-05
3.32918e-05
3.16637e-05
2.96371e-05
2.8366e-05
2.36218e-05
1.81601e-05
2.2355e-05
1.95386e-06
2.8985e-07
1.22949e-06
6.55838e-06
1.60078e-05
2.6242e-05
3.46441e-05
4.10967e-05
4.64731e-05
5.0514e-05
5.26032e-05
5.24588e-05
5.10638e-05
4.93451e-05
4.75163e-05
4.58144e-05
4.44882e-05
4.36624e-05
4.31041e-05
4.22232e-05
4.07692e-05
3.89565e-05
3.6891e-05
3.46578e-05
3.24437e-05
3.03143e-05
2.8306e-05
2.63549e-05
1.91239e-05
1.48658e-05
1.26014e-05
1.07279e-05
9.2849e-06
1.24074e-05
6.49652e-06
1.13895e-06
8.11587e-07
9.06266e-06
5.03138e-05
6.76444e-05
7.58722e-05
8.65042e-05
0.000104323
0.000126445
0.000113165
7.25987e-05
3.89745e-05
3.5101e-05
4.15283e-05
4.70124e-05
4.8262e-05
4.98894e-05
5.18235e-05
5.29319e-05
5.17318e-05
5.03343e-05
5.08724e-05
5.16307e-05
5.03813e-05
4.57414e-05
4.13212e-05
3.72783e-05
3.34492e-05
2.98895e-05
2.60322e-05
2.12396e-05
1.62476e-05
9.93188e-06
7.18523e-06
2.99598e-06
1.69343e-06
8.16362e-07
3.87782e-06
1.64344e-05
4.04025e-05
6.68503e-05
7.24707e-05
7.35436e-05
7.65758e-05
8.12941e-05
8.81018e-05
9.59608e-05
0.000100815
9.64594e-05
9.00712e-05
8.3331e-05
7.94071e-05
7.5217e-05
8.36088e-05
7.29105e-05
5.41594e-05
4.42161e-05
4.38934e-05
4.61155e-05
5.00863e-05
5.46526e-05
5.39312e-05
4.84927e-05
4.34301e-05
3.86591e-05
3.40403e-05
3.13001e-05
2.79891e-05
1.48044e-05
3.07678e-06
2.28485e-06
1.68248e-06
9.51845e-06
5.14219e-05
0.000113883
0.00016852
0.000203314
0.000216217
0.000208814
0.000183822
0.000165461
0.000159166
0.000161382
0.000155309
0.000143725
0.000133272
0.000125691
0.000123018
0.000125141
0.000121456
0.000105145
7.61894e-05
5.66336e-05
5.00153e-05
4.97318e-05
4.66511e-05
5.16575e-05
5.70481e-05
5.12579e-05
4.64971e-05
4.28435e-05
3.83749e-05
2.92719e-05
1.23805e-05
2.31176e-06
2.60427e-06
1.28298e-06
5.45184e-06
3.15566e-05
7.49581e-05
0.00011009
0.000134392
0.000152946
0.000165691
0.000171057
0.000169936
0.000168313
0.00017308
0.000176703
0.000164468
0.000151921
0.000140595
0.000131192
0.000123511
0.000116779
0.000110264
0.000103992
9.9756e-05
7.84172e-05
5.82513e-05
5.06424e-05
6.17986e-05
4.69905e-05
4.03509e-05
3.95196e-05
3.8504e-05
3.81401e-05
3.43816e-05
2.27805e-05
4.60493e-06
2.71822e-06
1.68502e-06
2.92795e-06
1.80589e-05
5.167e-05
8.93234e-05
0.000122683
0.000146666
0.000161948
0.000171858
0.00017895
0.000185518
0.000193401
0.000194535
0.000182283
0.000169617
0.000158096
0.000148613
0.000140399
0.000133194
0.000126927
0.000121484
0.000112376
0.000110945
0.000106803
0.000101215
9.34429e-05
8.07669e-05
6.26523e-05
4.81448e-05
3.70786e-05
3.38145e-05
3.159e-05
2.40423e-05
6.25554e-06
2.98332e-06
2.40895e-06
1.0849e-05
5.17454e-05
8.17255e-05
0.000101558
0.000123643
0.000149344
0.000176128
0.000198064
0.000212075
0.000223772
0.000222811
0.000215439
0.000205135
0.000193707
0.000182225
0.000171036
0.000160139
0.000150156
0.000141325
0.000133571
0.000126611
0.00012
0.000113116
0.00010507
9.46194e-05
8.03331e-05
6.22082e-05
4.67916e-05
3.70817e-05
3.10774e-05
2.93363e-05
2.38831e-05
7.82542e-06
3.20762e-06
2.5947e-06
7.23084e-06
3.93615e-05
8.88218e-05
0.00010918
0.000126559
0.000145132
0.000164345
0.000181891
0.00019548
0.000205181
0.00021576
0.000230504
0.000227907
0.000217791
0.000206737
0.000195679
0.000185009
0.000175166
0.000165404
0.000155842
0.000146834
0.000138296
0.000129783
0.0001205
0.000109184
9.40083e-05
7.34209e-05
5.3096e-05
4.22623e-05
3.1551e-05
2.82457e-05
2.29039e-05
7.87415e-06
3.33124e-06
2.8591e-06
1.31773e-05
5.85716e-05
0.000108025
0.000132167
0.000138517
0.000145328
0.000152706
0.000160368
0.000168592
0.000178309
0.000191444
0.000209484
0.000229869
0.000238807
0.000229015
0.0002185
0.000208041
0.000198274
0.000189372
0.000179789
0.000169332
0.000158664
0.000147784
0.000136024
0.000122101
0.000104191
8.08593e-05
5.81762e-05
4.55151e-05
3.33475e-05
2.84e-05
2.23e-05
7.65424e-06
3.39651e-06
2.16966e-06
1.63248e-05
5.37819e-05
9.52373e-05
0.000131157
0.000160008
0.000182167
0.000178601
0.000169684
0.000162632
0.000158141
0.000156731
0.000159111
0.000165993
0.000176555
0.000188723
0.000200146
0.000208887
0.000213951
0.000208463
0.000200719
0.00019252
0.000182455
0.000170704
0.000157275
0.000141301
0.000121139
9.52714e-05
6.83589e-05
5.10257e-05
3.61295e-05
2.96231e-05
2.26125e-05
7.58743e-06
3.43043e-06
9.50878e-07
3.60193e-06
1.66161e-05
4.65465e-05
8.25287e-05
0.00011685
0.000139572
0.000153004
0.000167294
0.000180397
0.000188618
0.000189705
0.000184873
0.000178376
0.000174816
0.000175637
0.000179179
0.000181958
0.000179007
0.000170076
0.000159942
0.000153011
0.000149649
0.000148593
0.000147893
0.000146277
0.000134894
0.000107423
7.76858e-05
5.66532e-05
3.85709e-05
3.08476e-05
2.30578e-05
7.55537e-06
3.50685e-06
1.51326e-06
4.18801e-06
1.96941e-05
5.43455e-05
9.31118e-05
0.000125877
0.000151936
0.000173067
0.000190802
0.000198992
0.000188397
0.00018675
0.000196625
0.000216646
0.000241132
0.000243679
0.000238393
0.000232337
0.000226645
0.000221686
0.000217227
0.000210911
0.000166671
0.000147892
0.000148676
0.000156224
0.000146004
0.000119023
8.81798e-05
6.42272e-05
4.28796e-05
3.32144e-05
2.45349e-05
8.07556e-06
3.63861e-06
2.63695e-06
1.17219e-05
6.1096e-05
0.000136388
0.000196438
0.00021808
0.000218832
0.000230119
0.000249235
0.000263573
0.000260012
0.000243931
0.000214383
0.000201492
0.000211688
0.000238479
0.000231745
0.000223591
0.000216982
0.000212305
0.000209159
0.000206925
0.00020508
0.000198721
0.000185755
0.000167093
0.000143264
0.000115232
8.64905e-05
6.53463e-05
4.38082e-05
3.42717e-05
2.52239e-05
7.78033e-06
3.79513e-06
3.4644e-06
1.75406e-05
8.24883e-05
0.000166561
0.000237636
0.000286472
0.000314162
0.000326037
0.000316577
0.000297549
0.000284035
0.000270246
0.000252086
0.000234293
0.000225664
0.000230441
0.000237918
0.000224427
0.000212933
0.000204607
0.000199511
0.0001968
0.000196219
0.000193057
0.000182665
0.000165268
0.000142528
0.000116059
8.98268e-05
6.42791e-05
4.50546e-05
3.58467e-05
2.64739e-05
7.93649e-06
3.8653e-06
3.30473e-06
1.65817e-05
7.35697e-05
0.000145719
0.000210569
0.00026299
0.00030173
0.000327133
0.000340759
0.000338935
0.000318628
0.00029429
0.000270142
0.000249692
0.00023617
0.000232389
0.000238191
0.000243135
0.000227098
0.000213347
0.000202967
0.00019596
0.000191817
0.00018715
0.00017557
0.00015706
0.000133933
0.000108833
8.70278e-05
6.14199e-05
4.55733e-05
3.67284e-05
2.71256e-05
7.69238e-06
3.90143e-06
3.49128e-06
2.14458e-05
8.93365e-05
0.000168268
0.000234024
0.000284102
0.000320247
0.000344679
0.0003594
0.000366123
0.000361502
0.000333293
0.000303998
0.000278866
0.000258357
0.000245018
0.000241898
0.000247232
0.000248768
0.000231677
0.000216707
0.000204669
0.000195552
0.00018756
0.000173743
0.00015354
0.00012983
0.00010559
8.61398e-05
6.07056e-05
4.68215e-05
3.83961e-05
2.8554e-05
7.85355e-06
3.9295e-06
3.3602e-06
2.00864e-05
8.81254e-05
0.000172341
0.000245266
0.000301545
0.000342074
0.00036929
0.000383927
0.000389334
0.000386456
0.000374385
0.000354966
0.000331557
0.000307552
0.000286583
0.000273639
0.000271206
0.000272191
0.000255367
0.000237194
0.000221085
0.000207405
0.000193878
0.000175049
0.00015162
0.000127059
0.000104427
8.34528e-05
5.97565e-05
4.7296e-05
3.92534e-05
2.95367e-05
7.80912e-06
3.95696e-06
3.38672e-06
1.87442e-05
8.27935e-05
0.000164268
0.000238131
0.000298282
0.000343965
0.000376318
0.000384023
0.000385884
0.000387501
0.000387212
0.000381812
0.000369741
0.000352094
0.000332218
0.000314636
0.000303776
0.000298146
0.000287695
0.000267183
0.000247688
0.00022951
0.000208953
0.000183784
0.000155879
0.000129013
0.000106328
8.04297e-05
6.0175e-05
4.88692e-05
4.08436e-05
3.09114e-05
7.94549e-06
4.00512e-06
3.3329e-06
1.56866e-05
7.31214e-05
0.000150478
0.000223941
0.000287153
0.000338282
0.000377204
0.000403784
0.000410851
0.000412844
0.000413009
0.000409304
0.000400128
0.000386415
0.000370293
0.000354153
0.000340145
0.000328288
0.000316235
0.00030106
0.000281354
0.000257562
0.000229904
0.000198655
0.000166002
0.000134265
0.000105083
8.0274e-05
6.151e-05
4.99586e-05
4.20399e-05
3.23535e-05
8.12942e-06
4.06642e-06
3.55179e-06
1.57687e-05
7.16324e-05
0.000146006
0.000217062
0.000279852
0.000332696
0.000374953
0.000398706
0.000408643
0.000413112
0.00041725
0.000421482
0.000421716
0.000415422
0.000404634
0.000392828
0.000382201
0.000372251
0.000360141
0.000342007
0.000316305
0.000287029
0.00025414
0.00021326
0.000169784
0.000131265
0.000101673
8.04636e-05
6.45331e-05
5.25639e-05
4.37053e-05
3.35553e-05
8.14174e-06
4.14181e-06
3.5626e-06
1.32734e-05
6.25554e-05
0.000132146
0.000200592
0.00026341
0.000318818
0.000365624
0.000400797
0.000420362
0.000429468
0.000433188
0.000435249
0.00043609
0.00043286
0.000424697
0.000415239
0.00040913
0.000406185
0.000393761
0.000369547
0.000340847
0.00030758
0.000270366
0.000229445
0.00017218
0.000127195
9.87442e-05
8.01527e-05
6.55062e-05
5.37769e-05
4.47287e-05
3.3533e-05
8.09187e-06
4.15802e-06
3.84889e-06
1.40798e-05
6.21717e-05
0.000128989
0.000193481
0.000252914
0.000304433
0.000347294
0.000381937
0.000407703
0.000425137
0.000436252
0.00044358
0.000448192
0.000447799
0.000439069
0.000424161
0.000411528
0.000408764
0.000410569
0.000391744
0.000363097
0.000329864
0.000292724
0.000252688
0.000194935
0.000145235
0.00011005
8.62742e-05
6.95362e-05
5.70912e-05
4.67857e-05
3.43453e-05
8.25045e-06
4.17827e-06
3.97495e-06
1.47723e-05
6.30374e-05
0.000130397
0.000193883
0.0002505
0.000295834
0.000337194
0.000373214
0.00040188
0.000422359
0.000435284
0.000442743
0.000447768
0.000452339
0.000454742
0.000451596
0.000443574
0.000435769
0.0004308
0.000418428
0.000389206
0.000355247
0.000317277
0.000269307
0.000212582
0.000160934
0.000120826
9.28096e-05
7.38558e-05
6.0532e-05
4.95947e-05
3.60584e-05
8.58389e-06
4.22627e-06
4.2075e-06
1.61682e-05
6.68259e-05
0.000137111
0.000201535
0.000249474
0.000292267
0.000334942
0.000374637
0.000408504
0.000434815
0.000452678
0.000462165
0.000464855
0.000464147
0.00046388
0.0004656
0.000466872
0.000464259
0.000456458
0.000443194
0.000418456
0.000383935
0.000344167
0.000300762
0.000238575
0.00017779
0.000132024
0.000101299
8.05036e-05
6.49231e-05
5.2212e-05
3.76766e-05
8.88527e-06
4.3365e-06
4.33234e-06
1.75959e-05
7.27032e-05
0.000148822
0.000217548
0.000264807
0.000300996
0.000340541
0.000381402
0.000419294
0.000451348
0.000475999
0.000492446
0.000500404
0.00050049
0.000495074
0.000488104
0.00048321
0.000480872
0.00047855
0.000471199
0.000445203
0.000409535
0.000367745
0.000321176
0.000272493
0.000204729
0.000143395
0.000105379
8.45465e-05
6.99518e-05
5.62682e-05
4.00362e-05
9.46019e-06
4.4609e-06
4.46841e-06
1.9148e-05
7.95307e-05
0.000161992
0.000236511
0.000293098
0.000322541
0.000355671
0.000394964
0.000435154
0.000471016
0.000499645
0.000520018
0.000532087
0.000536265
0.000533471
0.000525679
0.000516309
0.000509168
0.000505413
0.000499296
0.000475692
0.000440541
0.000398735
0.000351122
0.000288184
0.000218644
0.000158586
0.000114256
8.7714e-05
7.27696e-05
5.97323e-05
4.14508e-05
9.59406e-06
4.54968e-06
4.56481e-06
2.13476e-05
8.89573e-05
0.000178788
0.000259677
0.000325813
0.000353656
0.000377525
0.000411006
0.000451404
0.000491637
0.000525623
0.000550327
0.00056517
0.000570855
0.000568683
0.000560577
0.000549364
0.000538433
0.000529852
0.000520422
0.000498803
0.000463178
0.000420831
0.000372797
0.000307679
0.000238348
0.000177907
0.000129705
9.56979e-05
7.47712e-05
6.13319e-05
4.46367e-05
1.04552e-05
4.68578e-06
4.68301e-06
2.38038e-05
9.83896e-05
0.000194917
0.000282149
0.000353558
0.00039051
0.000404827
0.000426736
0.000460256
0.000500664
0.000540132
0.000571826
0.000592494
0.000601944
0.000601484
0.000592995
0.000578787
0.000561555
0.000543794
0.000526003
0.00050478
0.000474118
0.000429814
0.000379469
0.000320185
0.000248743
0.000179654
0.000129103
9.92991e-05
8.00521e-05
6.44695e-05
4.61794e-05
1.10631e-05
4.84889e-06
4.70898e-06
2.53143e-05
0.000103641
0.00020441
0.000297128
0.000374448
0.000426702
0.000437233
0.000450255
0.000475171
0.000510311
0.00055024
0.000587988
0.000617321
0.000634509
0.000638277
0.000634151
0.000622965
0.000604229
0.000580432
0.000552937
0.000522495
0.000488379
0.000447181
0.000394451
0.000335588
0.000260628
0.000179634
0.000123234
9.82232e-05
8.61725e-05
7.13097e-05
4.66042e-05
1.05956e-05
4.8774e-06
4.66896e-06
2.57138e-05
0.000104835
0.000206821
0.000302769
0.000385084
0.000452344
0.000474531
0.00048499
0.000503501
0.000532885
0.000569656
0.000608585
0.000644062
0.000669174
0.000672564
0.000668293
0.000659411
0.000645669
0.000626617
0.000601622
0.000569947
0.000530555
0.000479871
0.000420339
0.000350741
0.000272946
0.000195381
0.000133212
9.7507e-05
8.20583e-05
7.16578e-05
4.55828e-05
1.02092e-05
4.63223e-06
4.46986e-06
2.35132e-05
9.86982e-05
0.000198276
0.000294833
0.00038065
0.000453586
0.000503865
0.000523536
0.000540056
0.000562735
0.000593683
0.000629237
0.000663559
0.000691179
0.000703602
0.000699995
0.000691651
0.000678472
0.000660145
0.000636166
0.000605899
0.00056305
0.000505411
0.000436674
0.000360431
0.000283988
0.000215053
0.000157816
0.000114248
8.57757e-05
6.79313e-05
4.64974e-05
1.11459e-05
4.51941e-06
4.35587e-06
2.0373e-05
8.95893e-05
0.000184921
0.00028011
0.000367551
0.000444667
0.000510578
0.000552467
0.000578607
0.000599839
0.000623592
0.000653717
0.000687494
0.000716335
0.000729336
0.000726541
0.00071863
0.000705665
0.000687468
0.000663645
0.000633655
0.000596944
0.000550207
0.000481587
0.000399975
0.000316004
0.00024008
0.000178943
0.000133816
0.000101361
7.60992e-05
4.6569e-05
1.09737e-05
4.9894e-06
4.35861e-06
1.75116e-05
8.08595e-05
0.000171291
0.000263713
0.000350997
0.000430464
0.000500868
0.000561637
0.000611404
0.000639829
0.000660725
0.00068398
0.000713648
0.000742706
0.000749662
0.000747832
0.000740305
0.000727289
0.000708753
0.000684424
0.00065383
0.000616412
0.000571719
0.000519031
0.000437423
0.000349808
0.000270392
0.000204689
0.000152786
0.000113194
8.30059e-05
4.91301e-05
1.09457e-05
5.15879e-06
4.52826e-06
1.61697e-05
7.5333e-05
0.000160654
0.000248722
0.000333619
0.000413074
0.000485734
0.00055058
0.000606862
0.000654199
0.000691444
0.000711903
0.000732343
0.00075523
0.000765804
0.000765555
0.000758919
0.000746249
0.000727692
0.000703163
0.000672351
0.00063479
0.00059002
0.00053787
0.000457989
0.000367816
0.000286164
0.000219947
0.000168253
0.000126746
9.10752e-05
5.15812e-05
1.0865e-05
4.95186e-06
4.76873e-06
1.68654e-05
7.51058e-05
0.000156963
0.000240591
0.000321685
0.000398959
0.000471465
0.00053809
0.000597675
0.000649274
0.000692311
0.000726606
0.000748091
0.000762867
0.000778042
0.000781431
0.000776243
0.000764437
0.000746372
0.000722222
0.000691974
0.000655444
0.000609674
0.000542388
0.000463448
0.000380756
0.000302987
0.000237757
0.000186402
0.000145073
0.000108237
6.55427e-05
1.51217e-05
4.94399e-06
5.02704e-06
1.93931e-05
8.09765e-05
0.000163023
0.000244265
0.000321881
0.000395842
0.000466014
0.000531691
0.000591794
0.000645214
0.000691028
0.000728613
0.000757662
0.000778151
0.000790248
0.000794236
0.000790488
0.00077946
0.000761613
0.000737336
0.000706956
0.000663251
0.000600208
0.000526255
0.000448611
0.000376683
0.000318547
0.000267973
0.000217277
0.000168353
0.000123836
7.51253e-05
1.65392e-05
5.06162e-06
5.26961e-06
2.28476e-05
9.14232e-05
0.000178579
0.00026185
0.000338864
0.000410532
0.000477686
0.000540489
0.000598514
0.000650989
0.000697028
0.000735806
0.000766686
0.000789293
0.000803503
0.000809342
0.000806934
0.000796576
0.000778679
0.000753663
0.00072191
0.000683739
0.000633312
0.000562243
0.000495266
0.000428022
0.000348663
0.000269572
0.000206393
0.00016056
0.00012142
6.45942e-05
1.26515e-05
4.69527e-06
5.48131e-06
2.63199e-05
0.000103425
0.000199316
0.000288966
0.00036908
0.00044081
0.000505772
0.000565127
0.000619417
0.000668645
0.000712438
0.000750206
0.000781285
0.000805042
0.000820967
0.000826539
0.000819441
0.000811269
0.000800693
0.000779018
0.000743452
0.000692053
0.000628533
0.000557412
0.000484946
0.000417597
0.000356571
0.000295728
0.000230601
0.000169068
0.000120447
7.22025e-05
1.61034e-05
3.92022e-06
5.6003e-06
2.91374e-05
0.000113936
0.000219136
0.000317578
0.000404206
0.000479535
0.000545288
0.000603151
0.000654392
0.000699771
0.000739594
0.000773813
0.000802147
0.000824176
0.000839426
0.000847434
0.000847804
0.000840248
0.000824646
0.000801069
0.000769818
0.000731423
0.000681511
0.000612681
0.000532823
0.000451051
0.000375249
0.000310701
0.000259929
0.000218876
0.000164383
8.62707e-05
1.841e-05
4.72486e-06
5.60506e-06
3.03397e-05
0.000118952
0.000229973
0.000335836
0.000429946
0.000511545
0.000581642
0.000641708
0.000693163
0.000737156
0.000774477
0.000805558
0.000830539
0.000849349
0.000861787
0.000867577
0.000866422
0.000858026
0.000842135
0.00081857
0.00078728
0.000748395
0.000702269
0.00063586
0.000566748
0.000506636
0.000439388
0.000360619
0.000284448
0.000221841
0.000169465
9.24488e-05
1.88345e-05
4.98895e-06
5.58143e-06
2.98071e-05
0.000118158
0.000230733
0.000340742
0.000440862
0.000529156
0.000605552
0.000670766
0.000725835
0.000771869
0.000809857
0.00084055
0.000864411
0.000881637
0.000892217
0.000895997
0.000892738
0.000882179
0.000864085
0.000838293
0.000804741
0.000763507
0.000714803
0.000658944
0.000596453
0.000528424
0.000454907
0.000372641
0.000301318
0.000240891
0.000169868
8.99431e-05
1.94305e-05
4.50795e-06
5.606e-06
2.84192e-05
0.000113782
0.000224362
0.000334821
0.00043804
0.000531469
0.000614078
0.000685611
0.000746342
0.000796903
0.00083812
0.000870843
0.000895791
0.000913465
0.00092414
0.000927887
0.000924622
0.000914158
0.000896279
0.000866253
0.000823331
0.0007705
0.000710784
0.000647557
0.000583141
0.000517806
0.000450756
0.000382243
0.000313375
0.000240022
0.000162102
8.15567e-05
1.67149e-05
4.0604e-06
5.67758e-06
2.62754e-05
0.00010625
0.000211852
0.000319412
0.000422627
0.000518826
0.000606265
0.00068377
0.000750745
0.000807121
0.000853243
0.00088972
0.000917272
0.000936568
0.000948145
0.000952353
0.000947719
0.000929537
0.000905821
0.000876857
0.00084019
0.000793602
0.000737868
0.000677464
0.000615328
0.000548259
0.000474988
0.000404371
0.000343893
0.000283445
0.000194072
9.80468e-05
2.07396e-05
4.46034e-06
5.78248e-06
2.3722e-05
9.68443e-05
0.000195843
0.000298334
0.000399166
0.000495932
0.000586446
0.000668801
0.000741614
0.000804084
0.000855936
0.000897319
0.000928676
0.000950598
0.000963715
0.000968605
0.00096574
0.000946285
0.000919002
0.000887013
0.000852196
0.000817864
0.000784283
0.000738843
0.000669567
0.000581021
0.000500627
0.000434393
0.000375124
0.000304028
0.000216013
0.000115832
2.6543e-05
4.79063e-06
5.93818e-06
2.25046e-05
9.09466e-05
0.0001844
0.000281042
0.000377278
0.00047163
0.000562194
0.000646916
0.000723988
0.000792016
0.000850072
0.000897681
0.00093475
0.000961479
0.000978253
0.000985551
0.000983874
0.000971287
0.000945876
0.000918145
0.000890051
0.000854852
0.000806588
0.000750396
0.000686084
0.000614072
0.000534558
0.000451861
0.000370374
0.000285989
0.000197832
0.000103077
2.28325e-05
4.50193e-06
6.18521e-06
2.41301e-05
9.42762e-05
0.000187065
0.00027971
0.00037016
0.000458677
0.000544656
0.000626816
0.000703626
0.000773597
0.000835441
0.000888168
0.000931119
0.000963941
0.000986552
0.000999076
0.00100179
0.000990336
0.000965354
0.000936886
0.000905709
0.000871767
0.00083345
0.000777685
0.000714081
0.000642431
0.000562868
0.000476288
0.000384518
0.000289631
0.000192764
9.51477e-05
1.93698e-05
3.89993e-06
6.51699e-06
2.83386e-05
0.000107305
0.000206201
0.000299437
0.000382101
0.000467696
0.000547026
0.000622488
0.000694003
0.000760567
0.000821068
0.000874448
0.000919798
0.000956406
0.000983763
0.00100156
0.00100966
0.00100811
0.000997082
0.000976884
0.000945357
0.000901748
0.00084972
0.000793021
0.000736128
0.000678953
0.000603288
0.000519173
0.000426643
0.000325944
0.000218296
0.000107762
2.16357e-05
3.73207e-06
6.82973e-06
3.2477e-05
0.000121148
0.000229345
0.000327761
0.000408201
0.000486661
0.000567418
0.000638283
0.000702874
0.000763016
0.000818114
0.000867447
0.000910283
0.000945935
0.000973766
0.00099319
0.00100368
0.0010048
0.000996296
0.000978228
0.000950996
0.000913493
0.00085887
0.000800899
0.000746156
0.00069365
0.000625197
0.000546177
0.000457528
0.000357621
0.000245521
0.000124656
2.65076e-05
3.93712e-06
7.04239e-06
3.44877e-05
0.000128718
0.000245049
0.000351877
0.000444948
0.000526646
0.000594042
0.000660907
0.000726904
0.000781621
0.000830926
0.000874591
0.000912271
0.000943546
0.00096794
0.000984906
0.000993828
0.000994056
0.000984995
0.000966328
0.000938287
0.000901596
0.000849254
0.000794779
0.000745377
0.000687807
0.000621154
0.000547248
0.000463691
0.000367622
0.000256711
0.000133667
3.04906e-05
4.15167e-06
7.15373e-06
3.59153e-05
0.000134212
0.00025596
0.00036927
0.000468296
0.000553804
0.000620214
0.000673621
0.00073198
0.000794673
0.000853476
0.000893054
0.000925959
0.000952488
0.000972424
0.000985444
0.000991091
0.000988779
0.000977852
0.00095771
0.000928069
0.000889276
0.000838533
0.000785106
0.00072943
0.000666695
0.000600089
0.000528458
0.000449257
0.000358743
0.000253198
0.000134019
3.16832e-05
4.21728e-06
7.16892e-06
3.90346e-05
0.000143873
0.000270559
0.000387548
0.000489335
0.000576145
0.000631958
0.000682471
0.00073787
0.000798607
0.000860217
0.000914123
0.000944235
0.000967381
0.000983796
0.000993393
0.000995956
0.00099112
0.000978373
0.000957114
0.000926781
0.000887071
0.000838212
0.000781138
0.000717363
0.000648543
0.000575941
0.000499869
0.000419198
0.000331111
0.000231818
0.000121285
2.78698e-05
3.99943e-06
6.98999e-06
4.30685e-05
0.00015658
0.000290028
0.000410479
0.00051261
0.000570844
0.00062354
0.000680702
0.000742237
0.000806536
0.000870496
0.000927248
0.00096098
0.000982153
0.000996426
0.00100383
0.00100431
0.000997753
0.000983863
0.000962216
0.000932262
0.000893437
0.000845345
0.000787977
0.000721898
0.000648292
0.00056873
0.000484679
0.000396875
0.000304803
0.000206823
0.000103729
2.21979e-05
3.57911e-06
6.62282e-06
4.44229e-05
0.000162573
0.000301988
0.000427804
0.000533272
0.00059256
0.000628818
0.000676982
0.000737723
0.000804549
0.000871288
0.000931863
0.000974603
0.000994219
0.00100706
0.00101313
0.00101241
0.00100486
0.000990375
0.00096873
0.000939585
0.000902469
0.000856839
0.000802182
0.000738208
0.000665051
0.000583427
0.000494573
0.000399987
0.000300969
0.000198474
9.57604e-05
1.92454e-05
3.19176e-06
6.20932e-06
4.22167e-05
0.000158521
0.000299145
0.000429907
0.000541992
0.0006347
0.00066713
0.000695622
0.000739142
0.000795318
0.000856872
0.000916542
0.000968614
0.00100385
0.00101566
0.00102086
0.00101944
0.00101135
0.000996553
0.00097493
0.000946308
0.000910417
0.000866871
0.000815181
0.000754801
0.000685244
0.00060625
0.000517972
0.000421111
0.00031698
0.000207776
9.9291e-05
1.9836e-05
3.03366e-06
5.9236e-06
3.90444e-05
0.000150198
0.000286486
0.000416988
0.000532594
0.000630995
0.000699757
0.000726589
0.000761825
0.000805864
0.000852394
0.000899506
0.000945824
0.00098822
0.00102056
0.00102562
0.00102391
0.00101564
0.00100077
0.000979223
0.000950873
0.000915561
0.000873044
0.000822976
0.000764892
0.00069821
0.000622281
0.000536501
0.000440521
0.000334623
0.000220631
0.000105794
2.16005e-05
3.10644e-06
5.8384e-06
3.5609e-05
0.00013999
0.000269614
0.000396562
0.000512521
0.000614574
0.000701953
0.000752617
0.000783743
0.000829985
0.000881445
0.000916356
0.000939091
0.000966368
0.000998985
0.00102585
0.00102532
0.00101689
0.00100196
0.000980426
0.00095218
0.000917064
0.000874876
0.000825337
0.000768065
0.000702533
0.000628059
0.000543825
0.000448999
0.000343117
0.000227322
0.000109236
2.26354e-05
3.23671e-06
5.96153e-06
3.30795e-05
0.000130857
0.000253677
0.00037613
0.000490813
0.000594565
0.000685852
0.00076415
0.00079855
0.000828034
0.000877477
0.000932648
0.000957048
0.000957974
0.000969084
0.000993775
0.00101705
0.00101747
0.00100216
0.000980291
0.000951774
0.000916455
0.000874116
0.000824482
0.000767198
0.000701791
0.000627636
0.000543937
0.000449805
0.000344577
0.000229036
0.000110541
2.31918e-05
3.30438e-06
6.1236e-06
3.07767e-05
0.000120636
0.000235231
0.000352103
0.000464853
0.000569829
0.000664361
0.000746778
0.000793458
0.000819078
0.000852151
0.000898855
0.000938742
0.000945893
0.000943597
0.00095596
0.000979888
0.00100136
0.00100408
0.000981757
0.000952643
0.000916681
0.000873704
0.000823457
0.000765608
0.000699741
0.000625321
0.000541671
0.000447998
0.000343653
0.000229228
0.000111517
2.37249e-05
3.30217e-06
6.25751e-06
2.8183e-05
0.000110336
0.000216467
0.000326292
0.000435064
0.000539204
0.000635426
0.000721219
0.000776338
0.000810907
0.00084514
0.000883873
0.000916956
0.000928146
0.000926235
0.000933608
0.000954011
0.000979084
0.00099558
0.000985794
0.000956359
0.000919775
0.000875997
0.000824845
0.000766043
0.000699239
0.000623999
0.0005398
0.000446041
0.000342224
0.000228886
0.000112228
2.41376e-05
3.25722e-06
6.53967e-06
2.76612e-05
0.00010933
0.00021432
0.00030769
0.000397898
0.000495815
0.000594803
0.000683148
0.000754201
0.000810263
0.000857791
0.000898652
0.000926153
0.000933114
0.000929356
0.00093338
0.000951206
0.000977679
0.00099941
0.00099138
0.000962322
0.000925622
0.000881355
0.00082945
0.000769705
0.000701816
0.000625413
0.000540086
0.000445418
0.000341155
0.000228043
0.00011209
2.41401e-05
3.19047e-06
6.95053e-06
3.143e-05
0.000122279
0.000230065
0.000271998
0.000324861
0.000399005
0.000491634
0.000594761
0.000697046
0.000788691
0.000864497
0.000920555
0.000951179
0.00095645
0.000950722
0.000951872
0.000967903
0.000995247
0.00101531
0.00099559
0.000967672
0.000931664
0.000887656
0.000835649
0.000775512
0.000706989
0.000629728
0.000543337
0.000447482
0.000342096
0.000228225
0.000112062
2.40244e-05
3.12626e-06
7.0263e-06
3.66617e-05
0.000139573
0.000262903
0.000301063
0.00032131
0.000366786
0.000434495
0.000519125
0.000616556
0.000720516
0.000820194
0.000901177
0.000951317
0.000971264
0.000976314
0.000983862
0.00100202
0.00102289
0.00101411
0.000995607
0.000968948
0.00093406
0.000890921
0.000839493
0.000779661
0.000711195
0.000633745
0.000546883
0.000450227
0.000343732
0.000228641
0.000111639
2.36814e-05
3.06987e-06
6.54145e-06
3.77403e-05
0.000145198
0.000281442
0.000400609
0.000414164
0.000414156
0.000442557
0.000493972
0.000560979
0.000639253
0.000723469
0.000804245
0.000871564
0.00092201
0.000960369
0.000993467
0.00101978
0.00101883
0.00100853
0.000990479
0.000964497
0.000930428
0.000888144
0.00083752
0.000778392
0.000710514
0.000633526
0.000546958
0.000450346
0.000343552
0.000227854
0.000110411
2.3123e-05
3.02388e-06
5.87361e-06
3.47775e-05
0.000137271
0.000267837
0.000391795
0.000496054
0.000517887
0.000504849
0.000511141
0.000542508
0.000590291
0.000645611
0.000703495
0.000762215
0.000820187
0.000876112
0.000929078
0.000975714
0.00100567
0.000997192
0.000979908
0.000954512
0.000920967
0.000879205
0.000829123
0.000770573
0.000703326
0.000627041
0.000541255
0.000445461
0.000339432
0.000224387
0.000107787
2.22813e-05
2.97738e-06
5.58367e-06
3.08395e-05
0.000125546
0.000246442
0.000363858
0.0004683
0.000551912
0.000558729
0.000550334
0.00054496
0.000558558
0.000601394
0.00066617
0.000731376
0.000787408
0.000836469
0.00088264
0.000927008
0.000964427
0.000978118
0.000962832
0.000939016
0.000906676
0.000865818
0.000816423
0.000758438
0.000691735
0.000616083
0.000531129
0.000436447
0.000331843
0.000218531
0.000104066
2.12346e-05
2.91801e-06
5.69815e-06
3.15695e-05
0.000127276
0.000247041
0.000361131
0.000461855
0.000547229
0.000581707
0.00057757
0.000574765
0.000578915
0.000599145
0.000653081
0.000732002
0.000804883
0.000858867
0.000899328
0.000934015
0.000960488
0.000956778
0.000942303
0.000919712
0.000888726
0.000849156
0.000800889
0.000743852
0.00067797
0.000603125
0.000519118
0.000425703
0.000322837
0.000211805
0.000100096
2.01588e-05
2.8463e-06
5.77617e-06
3.6932e-05
0.000142265
0.000267278
0.00038267
0.000481667
0.000556275
0.000584329
0.000591046
0.00058652
0.000587272
0.000611197
0.000661875
0.000730209
0.000795074
0.000847693
0.000889392
0.000923363
0.000946062
0.000939776
0.000924891
0.00090239
0.000871886
0.000833049
0.000785623
0.000729429
0.000664348
0.000590289
0.000507162
0.000414891
0.000313639
0.000204856
9.59987e-05
1.90263e-05
2.75497e-06
5.55402e-06
3.43304e-05
0.000135009
0.000257651
0.000374296
0.000476788
0.000562579
0.000592597
0.000605102
0.000608955
0.000607606
0.000613851
0.000641184
0.000688353
0.000744498
0.000796338
0.000840016
0.000876501
0.000905764
0.00092228
0.000910122
0.000888108
0.000858241
0.000820179
0.000773604
0.000718263
0.000653972
0.000580624
0.00049818
0.000406698
0.000306554
0.000199422
9.27889e-05
1.8087e-05
2.6493e-06
5.47423e-06
3.02777e-05
0.000122986
0.000238626
0.000351854
0.000455182
0.00054554
0.000621454
0.000650173
0.000656638
0.0006539
0.000645892
0.000641889
0.000652959
0.000684855
0.000735753
0.000789253
0.000835748
0.000872473
0.000896424
0.000897282
0.000876135
0.000847232
0.000810238
0.000764801
0.000710589
0.000647333
0.000574852
0.000493084
0.00040215
0.000302584
0.000196299
9.0906e-05
1.74788e-05
2.54559e-06
5.63406e-06
3.08445e-05
0.000122527
0.000235572
0.000346104
0.000447874
0.000538457
0.000616555
0.000681436
0.000702226
0.000695382
0.00068264
0.000672688
0.000667871
0.000671375
0.000690278
0.000732913
0.000785411
0.000834966
0.000873095
0.000888437
0.000868103
0.000840077
0.000804092
0.000759799
0.000706816
0.000644775
0.000573374
0.000492438
0.000402019
0.000302675
0.000196433
9.10088e-05
1.73891e-05
2.46501e-06
5.74057e-06
2.9254e-05
0.000116487
0.00022569
0.000334201
0.000436037
0.000528517
0.000609839
0.000678764
0.000724981
0.00073022
0.000717272
0.000700546
0.000688359
0.000682677
0.000683333
0.000698962
0.000736265
0.000783922
0.000829528
0.000861762
0.000864049
0.000836892
0.000801709
0.000758263
0.000706218
0.000645176
0.000574741
0.000494592
0.000404621
0.000305256
0.000198491
9.21798e-05
1.75977e-05
2.41017e-06
5.84545e-06
2.6824e-05
0.000107628
0.000210414
0.000314141
0.000413916
0.000507122
0.000591452
0.000664956
0.000722226
0.000738026
0.000734666
0.000723849
0.00071201
0.000702333
0.000694952
0.000690949
0.000708193
0.000743782
0.000786525
0.000825748
0.000849576
0.000837353
0.000802945
0.00076009
0.000708574
0.000648071
0.000578184
0.000498516
0.000408821
0.000309343
0.000201902
9.42747e-05
1.80872e-05
2.38199e-06
5.98036e-06
2.48111e-05
0.000100317
0.000198647
0.000298518
0.000395777
0.00048807
0.000573158
0.000649056
0.000714148
0.000744054
0.000748762
0.000743345
0.000735616
0.000729167
0.000723657
0.000716187
0.000713178
0.00072795
0.000756794
0.000791724
0.000823571
0.000838339
0.000807261
0.000765035
0.000713871
0.000653534
0.000583686
0.00050393
0.000413944
0.000313847
0.000205321
9.61458e-05
1.84655e-05
2.36697e-06
6.17877e-06
2.42392e-05
9.86088e-05
0.000196731
0.000294996
0.00038973
0.000479544
0.000563031
0.000638668
0.000701553
0.000740926
0.000759763
0.000764636
0.000762551
0.000758886
0.000755526
0.00074961
0.000738516
0.000737393
0.00075107
0.000775285
0.000803274
0.000823878
0.000813941
0.000772395
0.000721533
0.000661186
0.000591102
0.000510947
0.000420405
0.000319508
0.000209758
9.87665e-05
1.91146e-05
2.38794e-06
6.39978e-06
2.57438e-05
0.000105009
0.000208937
0.000308955
0.000397332
0.000471655
0.00054402
0.00061466
0.000678183
0.00072826
0.000761557
0.000779367
0.000786263
0.000787848
0.000788227
0.00078686
0.000778237
0.000765014
0.000762687
0.000773508
0.000793486
0.000815046
0.000822467
0.000782197
0.000731483
0.000670874
0.000600117
0.000518923
0.000427033
0.000324531
0.000212973
0.000100134
1.92951e-05
2.40499e-06
6.55411e-06
2.8424e-05
0.000115742
0.000228845
0.000333854
0.000409893
0.000470229
0.000533208
0.00059886
0.000662892
0.000719218
0.000762791
0.000791914
0.000808351
0.000816013
0.000819161
0.000819678
0.000814281
0.000798751
0.000785708
0.00078477
0.000794941
0.000810502
0.000818798
0.000793214
0.000742759
0.000682073
0.00061083
0.000528717
0.000435475
0.000331189
0.000217446
0.000102259
1.97664e-05
2.45293e-06
6.59447e-06
3.04114e-05
0.000123585
0.000244796
0.000358021
0.000442527
0.000493173
0.000548345
0.000607269
0.000665513
0.000719262
0.000764662
0.000799091
0.000822276
0.000836112
0.000843653
0.000847206
0.000845381
0.000832866
0.000812887
0.000800874
0.000800971
0.000809535
0.000817281
0.000804722
0.00075418
0.000693122
0.000621105
0.000537744
0.000442774
0.000336357
0.000220267
0.000103035
1.98234e-05
2.48083e-06
6.62462e-06
3.03309e-05
0.000124578
0.00024953
0.000370019
0.000475501
0.000530645
0.00057825
0.000627389
0.000676997
0.000724712
0.000767664
0.00080334
0.00083047
0.000849306
0.000861305
0.000868126
0.000869474
0.000861175
0.000840448
0.000819996
0.000810555
0.000811188
0.000815113
0.000808686
0.000765399
0.000704065
0.000631477
0.000547089
0.00045051
0.000341872
0.000223171
0.000103731
1.99023e-05
2.50812e-06
6.70215e-06
3.02118e-05
0.000123922
0.000247983
0.000369516
0.000478686
0.000550578
0.000602136
0.000643948
0.00068466
0.000726231
0.000766451
0.00080242
0.000832248
0.000855354
0.000872148
0.000883342
0.000888556
0.000884421
0.000866462
0.000840814
0.000822393
0.000815016
0.000813841
0.000807714
0.000775267
0.000713395
0.000640128
0.000554819
0.000456971
0.000346655
0.000225958
0.00010471
2.01509e-05
2.51943e-06
6.71265e-06
3.04349e-05
0.000123754
0.000245894
0.00036522
0.000469959
0.000541846
0.000600754
0.000646611
0.000686932
0.000726658
0.000765744
0.000802203
0.000834258
0.000860955
0.000882072
0.000897714
0.000907344
0.000908303
0.000896245
0.000871481
0.000846057
0.000829708
0.000821792
0.000813544
0.000784879
0.000722027
0.000647676
0.000561075
0.000461657
0.000349517
0.000226993
0.000104583
2.00991e-05
2.50481e-06
6.65528e-06
3.03088e-05
0.000123163
0.000244197
0.000361794
0.000460264
0.000526293
0.000585516
0.000634494
0.000676451
0.000717062
0.000757243
0.000795429
0.000830145
0.000860515
0.000886172
0.000906908
0.000921896
0.000928374
0.000921336
0.000898657
0.000869807
0.000847621
0.000834555
0.000823092
0.000793449
0.000729814
0.000654715
0.00056731
0.000466932
0.000353602
0.000229688
0.000105945
2.05095e-05
2.49419e-06
6.54512e-06
2.9751e-05
0.000121221
0.000240464
0.0003568
0.000461525
0.000514635
0.000564521
0.000614984
0.000658961
0.000699986
0.000740312
0.000779414
0.000815919
0.000848949
0.000878101
0.000903139
0.000923434
0.000936913
0.000939146
0.000925707
0.000900059
0.000874473
0.000855999
0.000839019
0.000800499
0.000735709
0.000659506
0.000571037
0.000469644
0.0003554
0.000230766
0.00010657
2.07675e-05
2.47359e-06
6.41849e-06
2.85364e-05
0.000116643
0.000231515
0.000344738
0.00044848
0.000514453
0.000558016
0.000602842
0.000644948
0.000683127
0.000721126
0.000759572
0.000796781
0.000831394
0.00086289
0.000891125
0.000915597
0.00093449
0.000943782
0.000938699
0.000919979
0.000897385
0.000878394
0.000856508
0.000804735
0.000739324
0.000662504
0.000573387
0.000471303
0.000356364
0.000231162
0.000106714
2.08228e-05
2.43414e-06
6.29377e-06
2.67839e-05
0.000110286
0.000219388
0.000327743
0.00042861
0.000505787
0.0005515
0.000590624
0.000631266
0.000666307
0.000700391
0.000736253
0.000772827
0.000808025
0.000840743
0.000870853
0.000898373
0.000922422
0.00093994
0.000945568
0.000935796
0.000915508
0.000892524
0.000859615
0.000804884
0.000739622
0.000662975
0.000574072
0.000472234
0.000357545
0.000232509
0.000107896
2.11992e-05
2.39829e-06
6.22311e-06
2.57473e-05
0.000105767
0.000209965
0.000313508
0.000410687
0.000495501
0.000545414
0.000582044
0.000617742
0.000649873
0.000678841
0.000710029
0.000744205
0.000779063
0.000812551
0.000843982
0.000873587
0.000901515
0.000926613
0.000945169
0.000950446
0.000933356
0.000897939
0.000853325
0.000798972
0.000734172
0.000658113
0.000569969
0.000469104
0.000355612
0.000231896
0.000108283
2.14336e-05
2.35059e-06
6.16473e-06
2.51965e-05
0.000102676
0.000202842
0.000302151
0.000395702
0.000481599
0.000539225
0.000577045
0.00060856
0.000637422
0.000658397
0.000682115
0.000712145
0.000746252
0.000781
0.000814743
0.000847573
0.00087964
0.000909123
0.000930918
0.000937272
0.000918531
0.000884426
0.000841041
0.000787889
0.000724324
0.000649583
0.000562869
0.000463562
0.000351742
0.000229745
0.000107625
2.13e-05
2.2788e-06
6.11597e-06
2.4222e-05
9.86025e-05
0.00019501
0.000290695
0.000381204
0.000465023
0.000535372
0.000575429
0.000603246
0.000628506
0.000647225
0.00066417
0.000686432
0.000714737
0.000746325
0.000779085
0.000813063
0.000849317
0.000886779
0.000917535
0.000922503
0.00089827
0.000865116
0.000822768
0.000770805
0.000708666
0.000635675
0.000551115
0.000454415
0.000345614
0.000226783
0.000107182
2.14081e-05
2.21014e-06
6.09462e-06
2.3687e-05
9.59642e-05
0.000189584
0.000282242
0.000369909
0.000451514
0.0005261
0.000576593
0.000607427
0.000631807
0.000647697
0.000653286
0.000666835
0.000690848
0.000721041
0.000752749
0.000784412
0.000816838
0.000850499
0.000881932
0.000899428
0.000877908
0.000845584
0.00080406
0.000753025
0.000692037
0.000620539
0.00053792
0.000443674
0.000337827
0.000222239
0.000105507
2.10341e-05
2.12907e-06
6.12264e-06
2.39553e-05
9.60779e-05
0.000188742
0.000279717
0.000365245
0.000444678
0.000517535
0.000577359
0.000609594
0.00063491
0.000656566
0.000663105
0.000669469
0.000683156
0.000704176
0.000729497
0.000757295
0.000788067
0.00082242
0.000856724
0.000877916
0.000859874
0.000828514
0.000787911
0.000737828
0.00067793
0.000607779
0.000526865
0.000434732
0.000331364
0.000218416
0.000103988
2.06495e-05
2.06452e-06
6.13289e-06
2.44837e-05
9.75375e-05
0.000190989
0.000282122
0.000367009
0.000445212
0.000516735
0.000581412
0.000625031
0.000657943
0.00067823
0.000676623
0.000676216
0.000684666
0.000700034
0.000718471
0.00073848
0.000760727
0.000787237
0.000818148
0.000845561
0.000843781
0.000813235
0.000773258
0.00072367
0.000664265
0.000594785
0.000514927
0.000424429
0.000323377
0.000213295
0.000101654
1.99716e-05
1.98611e-06
6.10571e-06
2.49608e-05
9.92091e-05
0.000193949
0.000286141
0.000371558
0.000449676
0.000520627
0.000584611
0.000641631
0.000674968
0.000699367
0.000704948
0.000700633
0.000702046
0.000709549
0.000718332
0.000727073
0.000737941
0.000753848
0.000775905
0.00080114
0.000819449
0.000805487
0.000767265
0.000719005
0.000660517
0.000591633
0.0005122
0.000422123
0.000321627
0.000212264
0.000101309
1.98156e-05
1.95161e-06
6.10546e-06
2.60867e-05
0.000103158
0.000200616
0.000294925
0.000381657
0.00046031
0.000531148
0.000594604
0.000651093
0.00070084
0.000739988
0.000757568
0.00074905
0.000731885
0.000719531
0.000716696
0.000720096
0.000724429
0.000728813
0.000737083
0.000753136
0.000775168
0.000789465
0.000761535
0.000714899
0.000657334
0.000588644
0.00050878
0.000417894
0.000316613
0.000207061
9.72372e-05
1.8381e-05
1.88765e-06
6.06344e-06
2.74386e-05
0.000108494
0.000210658
0.000309354
0.000399452
0.000480262
0.000552128
0.000615604
0.000671288
0.000719743
0.000761402
0.00079642
0.000793235
0.000776901
0.00075879
0.000739707
0.00072633
0.000721349
0.00072234
0.000724094
0.00072534
0.000730761
0.000742987
0.000751489
0.000717555
0.000662114
0.000594622
0.000514827
0.000422877
0.000319644
0.000207807
9.63089e-05
1.75696e-05
1.81306e-06
6.08205e-06
2.82121e-05
0.000112073
0.000218322
0.000321444
0.000415738
0.000500178
0.000574976
0.000640641
0.000697725
0.000746771
0.000788286
0.000822713
0.000850373
0.000849893
0.000829924
0.000801996
0.000772571
0.000746391
0.000732513
0.000728249
0.000728509
0.000728339
0.000728813
0.000732847
0.000728269
0.00067459
0.000608502
0.000529336
0.000436862
0.000331685
0.000216462
0.000100655
1.84192e-05
1.83468e-06
6.10702e-06
3.02277e-05
0.000119436
0.000231386
0.000339687
0.000438221
0.000525879
0.000603003
0.000670341
0.000728619
0.000778454
0.000820368
0.000854788
0.00088206
0.000896494
0.000885955
0.000859986
0.000824788
0.000787029
0.000752932
0.000731798
0.000722617
0.000720667
0.000721773
0.000724882
0.000725873
0.000690409
0.000624842
0.000545224
0.000451048
0.000342814
0.000223432
0.00010333
1.86367e-05
1.82696e-06
6.10005e-06
3.05032e-05
0.000121315
0.000236505
0.000349111
0.000452231
0.000544194
0.000624932
0.00069514
0.000755683
0.000807332
0.000850704
0.000886277
0.000914414
0.000932194
0.000931061
0.000916145
0.000890084
0.000853449
0.000809158
0.000765223
0.000735214
0.000720307
0.000714689
0.000715245
0.00071945
0.000711064
0.000646241
0.0005663
0.000470331
0.000358614
0.000234246
0.000108675
1.99187e-05
1.88492e-06
6.13799e-06
3.14614e-05
0.000124517
0.000241771
0.000356586
0.000462143
0.000556674
0.000639839
0.000712133
0.000774436
0.000827606
0.00087192
0.000907716
0.000934394
0.000950688
0.000955673
0.000949251
0.00093192
0.00090362
0.000863536
0.0008135
0.000762879
0.000727417
0.000709375
0.000703033
0.00070615
0.000710372
0.000670302
0.000591521
0.000494695
0.000379506
0.000249068
0.000116196
2.18748e-05
1.95023e-06
6.12203e-06
3.16159e-05
0.000125224
0.000242965
0.000358727
0.000465607
0.00056164
0.000646224
0.000715674
0.000770043
0.00081792
0.000860855
0.000897769
0.000927214
0.000948279
0.000960344
0.000962707
0.00095492
0.000937029
0.000908661
0.000868054
0.000815019
0.000758348
0.000714995
0.000693689
0.000688961
0.000696482
0.000690859
0.000614308
0.000518242
0.000401324
0.000265998
0.000125778
2.47769e-05
2.12863e-06
6.15494e-06
3.09641e-05
0.000123197
0.000239506
0.000354591
0.000461649
0.00055847
0.00064418
0.000708634
0.000758102
0.00080308
0.000845515
0.000883946
0.00091594
0.000940062
0.000956285
0.000964748
0.000964906
0.000955777
0.000936511
0.00090613
0.000862696
0.000805978
0.000744833
0.000699183
0.0006833
0.000688728
0.000697155
0.000631913
0.00053749
0.000420322
0.00028169
0.000135214
2.79427e-05
2.3402e-06
6.20374e-06
3.05245e-05
0.000121396
0.000235697
0.00034927
0.000455652
0.000552552
0.000638871
0.000702652
0.000750359
0.000793587
0.000834914
0.00087226
0.000902845
0.000926057
0.000942975
0.000954431
0.000960026
0.000958157
0.000946709
0.000923825
0.000887867
0.000837264
0.000773908
0.000710274
0.000671179
0.000668073
0.000678561
0.000637703
0.000545216
0.00042898
0.000289511
0.00014021
2.97482e-05
2.54755e-06
6.28705e-06
2.97802e-05
0.000118392
0.000229228
0.000339794
0.00044429
0.000540447
0.000626935
0.000694132
0.000740161
0.000778761
0.000816389
0.000852559
0.000883209
0.00090587
0.000921763
0.000932981
0.000940167
0.000942192
0.000936609
0.000920772
0.000892932
0.000852368
0.000798926
0.000736381
0.000679535
0.000653459
0.00065945
0.000632686
0.000541509
0.000426732
0.000288575
0.000140125
3.0124e-05
2.67442e-06
6.39801e-06
2.90935e-05
0.000115367
0.000222384
0.000329196
0.000430859
0.00052533
0.000611198
0.000680614
0.000729775
0.000768631
0.000804323
0.000838349
0.000866824
0.000886276
0.000898465
0.000906864
0.000912916
0.000916004
0.00091404
0.000904197
0.000884154
0.000853244
0.000812367
0.000763137
0.000709437
0.000663223
0.000641472
0.000611124
0.000520734
0.000408613
0.000274992
0.000132567
2.85687e-05
2.68167e-06
6.52982e-06
2.92526e-05
0.000114584
0.000218267
0.000320984
0.000418941
0.000510633
0.000594831
0.000666409
0.000717831
0.000755598
0.000787509
0.000818364
0.000845994
0.000864279
0.000872745
0.00087669
0.000879627
0.000881674
0.000881044
0.000875255
0.000861904
0.000839398
0.000808035
0.00076962
0.000725608
0.000676849
0.000628559
0.000580163
0.000490437
0.000381804
0.000254786
0.000121418
2.59892e-05
2.50949e-06
6.65429e-06
2.99431e-05
0.000115505
0.000216978
0.000316032
0.000409951
0.00049796
0.000579287
0.00065036
0.000705059
0.000745152
0.000775286
0.000801858
0.000827355
0.000846502
0.000853533
0.000852317
0.000849868
0.000848581
0.00084713
0.00084297
0.000833608
0.000817049
0.000792459
0.000760783
0.000723234
0.000677568
0.000619095
0.000549642
0.000461014
0.000355765
0.000234805
0.000109943
2.3003e-05
2.27652e-06
6.74007e-06
3.16186e-05
0.000119533
0.000220967
0.000317917
0.00040845
0.00049255
0.000570081
0.000637894
0.000692543
0.000733705
0.000763173
0.000786148
0.000808395
0.00082979
0.000841487
0.000838171
0.000828536
0.000821365
0.000817879
0.000815168
0.000809606
0.000797915
0.000777567
0.000747722
0.000707308
0.000653985
0.000592182
0.000519873
0.000434595
0.000334256
0.000219508
0.000101533
2.07906e-05
2.05904e-06
6.75643e-06
3.30279e-05
0.000123301
0.000225831
0.000322233
0.000410728
0.000491753
0.000565314
0.000627698
0.000681373
0.000724291
0.000754979
0.000775298
0.000790543
0.000806407
0.000822221
0.000828162
0.000818433
0.000803537
0.000794129
0.000791471
0.000791185
0.000785849
0.000765489
0.000722158
0.000672789
0.000617264
0.000554991
0.000484519
0.00040352
0.000309823
0.000203293
9.34368e-05
1.89125e-05
1.9093e-06
6.71467e-06
3.35994e-05
0.000125067
0.00022886
0.000325909
0.000413926
0.000493291
0.000560302
0.000618335
0.000671055
0.00071551
0.000748141
0.000768346
0.000779278
0.000786596
0.000795598
0.000806316
0.000809628
0.000797393
0.000779562
0.000769408
0.000768847
0.000768672
0.000747437
0.000700139
0.000646311
0.000586391
0.000520598
0.000448626
0.000369229
0.000280717
0.000182681
8.28827e-05
1.65716e-05
1.75067e-06
6.6607e-06
3.25125e-05
0.000122347
0.000225761
0.000323438
0.000412204
0.000491803
0.000554392
0.000609869
0.000662853
0.000710012
0.00074623
0.000768577
0.000777955
0.000778757
0.000777231
0.000778832
0.00078458
0.000787178
0.000775798
0.000756272
0.00074342
0.000740342
0.000734478
0.000694022
0.000637511
0.000573933
0.000504087
0.000428667
0.000347765
0.000260677
0.000167425
7.48937e-05
1.46423e-05
1.62874e-06
6.64937e-06
3.01346e-05
0.0001158
0.000216531
0.000313554
0.000403113
0.000484117
0.00054612
0.000602014
0.0006566
0.000706879
0.0007476
0.000774744
0.000787205
0.000787108
0.000779249
0.000769805
0.000764112
0.000764096
0.000765505
0.000756481
0.000735911
0.000717772
0.000708126
0.000695571
0.000645637
0.000581461
0.000509584
0.000430981
0.000346468
0.00025633
0.00016173
7.05732e-05
1.30379e-05
1.54412e-06
6.71575e-06
2.77607e-05
0.000108595
0.000204786
0.000298936
0.000387711
0.000469723
0.000534567
0.000594621
0.00065357
0.000708375
0.000754004
0.000786399
0.000803801
0.000806876
0.000798576
0.000783833
0.000768466
0.000756985
0.000751154
0.000749677
0.000742667
0.000722512
0.000698382
0.00067927
0.000656927
0.000597631
0.000526982
0.000448102
0.000361515
0.000267728
0.000168655
7.33064e-05
1.30675e-05
1.51067e-06
6.84931e-06
2.68305e-05
0.000104889
0.000196897
0.000286813
0.000372646
0.00045177
0.000520495
0.000586332
0.000650832
0.000710765
0.000759288
0.000795209
0.000820947
0.000829005
0.00082355
0.000808249
0.000788221
0.000769005
0.000753321
0.000740671
0.000732124
0.000724275
0.00070775
0.00068257
0.000655179
0.000613903
0.000545084
0.00046653
0.000378563
0.00028171
0.000178312
7.81335e-05
1.39158e-05
1.49706e-06
6.98027e-06
2.80471e-05
0.000107403
0.000197932
0.000284366
0.000366383
0.000440145
0.000510816
0.000581747
0.000650342
0.000705964
0.000751812
0.000789207
0.000818442
0.00084003
0.000843742
0.000829181
0.000807153
0.000783749
0.000762991
0.000744995
0.000726263
0.000706961
0.000689635
0.000671172
0.000646786
0.000615471
0.000561976
0.000485331
0.000396888
0.000297103
0.000188884
8.36e-05
1.54708e-05
1.5843e-06
7.03348e-06
3.08251e-05
0.000115026
0.000207527
0.00029291
0.000372126
0.000441903
0.000510789
0.000581545
0.000647113
0.00070064
0.000746437
0.000784174
0.000813901
0.000835965
0.000850883
0.000845596
0.000824418
0.000798863
0.000774655
0.000754263
0.000735472
0.000712545
0.000683585
0.000653231
0.000627166
0.000605087
0.000572705
0.000500531
0.000414757
0.000314854
0.000203134
9.19319e-05
1.81112e-05
1.7855e-06
6.97248e-06
3.39906e-05
0.000124269
0.000221154
0.000308366
0.0003869
0.00045754
0.000519262
0.000582749
0.00064545
0.000700941
0.000745057
0.000781687
0.000810718
0.000832327
0.000846895
0.000842871
0.00082629
0.000804619
0.000782078
0.00076065
0.000740196
0.000717343
0.000687396
0.000648703
0.000604465
0.000561831
0.000527878
0.00049668
0.000416161
0.000320508
0.000210437
9.70672e-05
1.97387e-05
2.03135e-06
6.80515e-06
3.59547e-05
0.000130306
0.000231464
0.000322154
0.000402331
0.000474269
0.000535193
0.000589267
0.000644167
0.000696674
0.000742337
0.000779207
0.000807037
0.000825279
0.000832711
0.000829442
0.000818365
0.000803683
0.000788517
0.000773749
0.00075796
0.000737645
0.000708641
0.000670053
0.000624821
0.000576477
0.000527271
0.000475026
0.000393034
0.000298439
0.000192252
8.55527e-05
1.69079e-05
2.05943e-06
6.58519e-06
3.60172e-05
0.000130972
0.000234184
0.000327978
0.000410849
0.000484177
0.00054956
0.000602643
0.000649549
0.000696026
0.0007387
0.000773538
0.000798266
0.00081211
0.000815598
0.00081066
0.000800608
0.000789621
0.000781471
0.000777661
0.00077491
0.000764148
0.000731125
0.000690661
0.000642319
0.000585649
0.00052021
0.000445581
0.000361438
0.000267963
0.00016744
7.12411e-05
1.3822e-05
1.86021e-06
6.36968e-06
3.42079e-05
0.000126225
0.000228347
0.00032334
0.000408493
0.000483973
0.000550637
0.000609349
0.000658715
0.000698332
0.000734375
0.000764189
0.000784706
0.000794995
0.000795847
0.000788988
0.00077676
0.00076236
0.000750201
0.00074533
0.000749575
0.000749841
0.000716921
0.000676238
0.000627328
0.000569803
0.000503411
0.000428159
0.000344454
0.000253268
0.000157136
6.65129e-05
1.27704e-05
1.60381e-06
6.20186e-06
3.22681e-05
0.000120253
0.000219036
0.000312868
0.000398692
0.00047575
0.000544025
0.000603814
0.000655492
0.000699398
0.000734981
0.000757894
0.000772814
0.000779665
0.0007784
0.000769746
0.000755163
0.000736657
0.000717289
0.000702929
0.000699969
0.000707569
0.000702776
0.000664099
0.000617119
0.000561422
0.000496729
0.000423091
0.000340964
0.000251205
0.000156288
6.66054e-05
1.25923e-05
1.46645e-06
6.06651e-06
3.12825e-05
0.000116291
0.00021104
0.000301751
0.000386066
0.000463005
0.000531972
0.000592694
0.000645153
0.000689483
0.0007259
0.000754677
0.000772563
0.000775863
0.000771609
0.000761304
0.000745447
0.000725148
0.000702886
0.000684357
0.000676244
0.000678709
0.000678072
0.000649602
0.000605527
0.000553242
0.000492135
0.000421729
0.000341847
0.000252852
0.00015735
6.6679e-05
1.22085e-05
1.33977e-06
5.92827e-06
3.11743e-05
0.000115005
0.000206886
0.00029417
0.000375622
0.000450736
0.000518861
0.000579434
0.000632115
0.000676779
0.000713478
0.000742405
0.000763867
0.000778247
0.000777561
0.000765661
0.000748525
0.000727838
0.000704969
0.000684372
0.000672354
0.000670687
0.000664608
0.000628048
0.000585091
0.00053527
0.000477855
0.000411899
0.000336385
0.000250719
0.000156779
6.61418e-05
1.18581e-05
1.244e-06
5.77323e-06
3.08586e-05
0.000114003
0.000204458
0.000289318
0.00036799
0.000440678
0.000507089
0.000566686
0.000618978
0.000663641
0.000700543
0.000729737
0.000751427
0.000765943
0.00077369
0.000772712
0.000755673
0.00073424
0.000712725
0.000694731
0.000683104
0.000673692
0.000643219
0.000604625
0.000560254
0.000509882
0.000453083
0.000389131
0.000316991
0.000235787
0.000146795
6.096e-05
1.07242e-05
1.14e-06
5.62502e-06
2.93486e-05
0.000110404
0.000199628
0.00028311
0.000359975
0.000430746
0.000495517
0.000553962
0.000605622
0.000650099
0.000687152
0.000716716
0.000738889
0.000753909
0.000762106
0.000763873
0.000759648
0.000740959
0.000717819
0.000699546
0.000685974
0.000661637
0.000627127
0.000586897
0.00054086
0.000488973
0.00043115
0.000367135
0.000296398
0.000218426
0.000134482
5.47571e-05
9.45595e-06
1.05948e-06
5.55914e-06
2.68864e-05
0.000104131
0.000191026
0.000273146
0.000348927
0.000418672
0.000482545
0.00054034
0.000591664
0.000636121
0.000673433
0.000703483
0.000726317
0.000742117
0.000751152
0.000753755
0.000750299
0.000741145
0.000726071
0.000702099
0.000681214
0.000653099
0.000618245
0.000577466
0.00053054
0.000477421
0.000418213
0.000353103
0.000282215
0.000205641
0.000124991
4.99927e-05
8.43417e-06
1.00008e-06
5.63831e-06
2.4765e-05
9.81392e-05
0.000181446
0.000261202
0.000335639
0.000404595
0.000468017
0.000525626
0.000576992
0.000621695
0.000659427
0.000690047
0.00071357
0.000730153
0.000740064
0.00074364
0.000741243
0.00073322
0.000719869
0.000701407
0.000677892
0.000649206
0.000615076
0.000575137
0.000529036
0.000476525
0.000417478
0.000351941
0.000280134
0.000202571
0.000121555
4.76049e-05
7.67883e-06
9.4381e-07
5.86699e-06
2.39239e-05
9.48315e-05
0.000172485
0.000243621
0.000320294
0.00039192
0.000454662
0.000512
0.00056338
0.000608304
0.000646409
0.0006775
0.000701546
0.000718674
0.000729134
0.000733248
0.000731376
0.000723863
0.000711001
0.000693006
0.000669993
0.00064196
0.000608772
0.000570165
0.000525799
0.000475307
0.000418357
0.00035467
0.000284034
0.000206616
0.000124675
4.91539e-05
7.97014e-06
9.38852e-07
6.16165e-06
2.46362e-05
9.47586e-05
0.0001626
0.000226288
0.000298309
0.000376511
0.000445105
0.000501446
0.000552255
0.00059695
0.00063509
0.00066641
0.000690828
0.000708414
0.000719359
0.000723928
0.000722417
0.000715115
0.00070229
0.000684164
0.000660903
0.000632599
0.000599257
0.000560782
0.000516985
0.000467592
0.000412213
0.000350272
0.000281059
0.000204247
0.000122184
4.73444e-05
7.66231e-06
8.95297e-07
6.39315e-06
2.6602e-05
9.87026e-05
0.000163723
0.000218647
0.000278985
0.000348493
0.000422992
0.000492985
0.00054293
0.0005867
0.000624537
0.000656054
0.000681034
0.000699415
0.000711264
0.000716727
0.000715986
0.000709217
0.000696583
0.000678222
0.000654244
0.00062474
0.000589801
0.000549533
0.000504039
0.0004534
0.000397639
0.000336619
0.000269886
0.000196802
0.00011862
4.63942e-05
7.68309e-06
8.289e-07
6.46271e-06
2.85889e-05
0.000103718
0.000169425
0.000217386
0.000267664
0.000326308
0.000390895
0.000454712
0.000511502
0.000558628
0.000596224
0.000624752
0.000644295
0.000655922
0.000663429
0.000673537
0.000691138
0.000702895
0.000692669
0.000676286
0.000653634
0.000624657
0.000589473
0.000548423
0.000502023
0.00045087
0.000395457
0.000335857
0.000271488
0.000201363
0.00012576
5.25329e-05
8.8621e-06
7.9777e-07
6.38243e-06
2.86541e-05
0.000104876
0.000171214
0.000216104
0.000262065
0.00031603
0.000376603
0.000437253
0.000490534
0.000533112
0.000565396
0.00058773
0.000599683
0.000601531
0.000598024
0.000602714
0.000632551
0.000681614
0.000680196
0.00066691
0.000647133
0.000620812
0.000587954
0.000548714
0.000503483
0.000452855
0.000397384
0.000337231
0.000272082
0.000201483
0.000126132
5.3073e-05
8.41549e-06
7.98561e-07
6.2299e-06
2.75233e-05
0.000103478
0.000171092
0.000214458
0.000259518
0.000314353
0.00037912
0.00044783
0.00050866
0.000547192
0.000576584
0.000601587
0.00062227
0.00062663
0.000626039
0.00064055
0.000663596
0.000663129
0.000657569
0.000646272
0.000628898
0.000605315
0.000575499
0.000539449
0.000497176
0.000448755
0.000394299
0.00033388
0.000267534
0.000195524
0.000119524
4.78307e-05
6.79424e-06
7.02772e-07
6.1304e-06
2.5911e-05
0.00010087
0.00016983
0.000212499
0.000256245
0.000312281
0.000383953
0.000462071
0.000507874
0.000539769
0.000566669
0.000588923
0.000606863
0.00062079
0.000630943
0.00063747
0.000640412
0.000639733
0.000635205
0.000626222
0.000612038
0.000592071
0.000565906
0.000533243
0.000493835
0.000447454
0.000393903
0.000333076
0.000265118
0.000190834
0.000113142
4.25932e-05
5.50173e-06
5.41119e-07
6.15219e-06
2.50567e-05
9.98804e-05
0.000169509
0.00021537
0.000258465
0.000309721
0.000375769
0.000452316
0.000508461
0.000538899
0.000564094
0.000584383
0.000600136
0.000611733
0.000619538
0.000623866
0.000624931
0.000622796
0.00061738
0.000608453
0.000595595
0.000578182
0.00055546
0.000526626
0.000490901
0.000447544
0.000395882
0.000335444
0.000266292
0.000189687
0.00010994
4.00593e-05
5.20991e-06
4.67132e-07
6.17521e-06
2.46863e-05
9.92025e-05
0.00016915
0.000218518
0.000262306
0.00030829
0.000362395
0.000427006
0.000495224
0.000542712
0.000566931
0.000586165
0.000600779
0.00061113
0.000617553
0.000620355
0.000619804
0.000616107
0.000609399
0.000599681
0.000586804
0.000570466
0.000550191
0.000525303
0.000494906
0.000457903
0.000413028
0.000358879
0.000294157
0.000218482
0.000134691
5.51741e-05
8.66425e-06
5.97341e-07
6.02496e-06
2.27728e-05
9.40124e-05
0.000164592
0.000216418
0.000260878
0.000304757
0.00035182
0.000404589
0.000463444
0.000523252
0.000567131
0.000585636
0.00059944
0.000608925
0.000614423
0.000616195
0.00061443
0.000609267
0.000600817
0.000589134
0.00056375
0.000530132
0.000498461
0.00047449
0.000460515
0.000440413
0.000399036
0.000349416
0.000289793
0.000218617
0.000136956
5.67125e-05
9.50123e-06
8.29077e-07
5.80553e-06
1.92692e-05
8.34888e-05
0.000149669
0.000204576
0.000252102
0.000295905
0.000338995
0.000383499
0.000430629
0.000480928
0.000533409
0.000579882
0.000593714
0.000603013
0.000608133
0.000609353
0.000606867
0.000600767
0.000591102
0.000577825
0.000560805
0.000539851
0.000514769
0.000473575
0.000434559
0.000400457
0.000365794
0.000313459
0.000253033
0.00018431
0.000110114
4.31166e-05
7.51616e-06
7.56379e-07
5.62723e-06
1.58775e-05
7.13968e-05
0.000128967
0.000186928
0.000240558
0.000286869
0.000327303
0.000364992
0.000402245
0.000439652
0.000476257
0.00051018
0.00053986
0.000566072
0.000589857
0.000597571
0.000596241
0.000590848
0.000581346
0.000567622
0.000549501
0.000526736
0.000499028
0.000466089
0.000427733
0.000383921
0.000334756
0.000280408
0.000221121
0.000157537
9.20902e-05
3.49238e-05
5.93053e-06
5.81646e-07
5.56942e-06
1.41779e-05
6.18593e-05
0.000110825
0.000169269
0.000229531
0.000281593
0.000322381
0.000355138
0.000384191
0.000412239
0.000439965
0.000466469
0.000489915
0.00050839
0.000520815
0.00052764
0.000531796
0.000538798
0.000552629
0.000558952
0.000544412
0.000524713
0.000499598
0.00046888
0.000432468
0.000390412
0.0003429
0.000290207
0.000232545
0.00017005
0.000103946
4.20886e-05
6.66167e-06
5.91694e-07
5.52612e-06
1.34428e-05
5.66914e-05
0.000100813
0.000157203
0.000220028
0.000276347
0.000318896
0.000349844
0.000374348
0.000396404
0.000418045
0.000439665
0.000460386
0.000478409
0.000491492
0.000497995
0.000498585
0.000498268
0.000507411
0.00053079
0.000528117
0.000512414
0.000490802
0.000462956
0.000428726
0.00038807
0.000341057
0.000287926
0.000229056
0.000165068
9.79837e-05
3.67547e-05
4.74587e-06
5.2982e-07
5.31453e-06
1.3935e-05
5.75196e-05
0.000101351
0.000156038
0.000217017
0.000272631
0.000315159
0.000345592
0.000368169
0.000386638
0.00040364
0.000420752
0.000438469
0.000456146
0.000471869
0.00048268
0.000486786
0.000487802
0.00049632
0.00051442
0.000509165
0.00049998
0.000485696
0.000465199
0.000437501
0.000401734
0.000357175
0.000303377
0.000240434
0.000169612
9.53893e-05
3.20529e-05
3.7478e-06
4.18888e-07
4.97644e-06
1.28411e-05
5.44484e-05
9.72034e-05
0.000150059
0.000208659
0.000264491
0.000310249
0.000343894
0.000367402
0.000383825
0.000396184
0.000407072
0.000418153
0.00042984
0.000441392
0.000451155
0.00045698
0.000457112
0.000452843
0.000451268
0.000460349
0.000462743
0.000453234
0.000438595
0.000416965
0.00038673
0.0003466
0.000295749
0.000234124
0.000163358
8.95738e-05
2.98611e-05
3.76537e-06
3.20988e-07
4.67703e-06
1.20819e-05
5.17668e-05
9.35435e-05
0.000144437
0.000200739
0.000255747
0.000304204
0.000343047
0.000371222
0.000389459
0.000400104
0.000406411
0.000411218
0.000415874
0.000420017
0.000422155
0.000420758
0.000415129
0.000406023
0.000394042
0.000381149
0.000371725
0.000372477
0.000389323
0.000402841
0.000384898
0.000357092
0.000317015
0.000262674
0.00019344
0.000113318
4.06418e-05
5.74538e-06
4.18013e-07
4.3976e-06
1.14841e-05
4.95616e-05
8.94311e-05
0.000137659
0.000191567
0.000243126
0.000286797
0.000321687
0.000348167
0.000366289
0.000377089
0.000382873
0.000386135
0.000388602
0.000390706
0.000391506
0.000389208
0.000381817
0.000369389
0.000352748
0.000333865
0.000315218
0.000299386
0.000289287
0.000288235
0.000297673
0.000294252
0.000255138
0.000200773
0.000133621
6.64134e-05
2.15933e-05
3.78804e-06
3.09066e-07
4.0809e-06
1.17636e-05
4.9667e-05
8.88524e-05
0.000130293
0.00017301
0.000213384
0.000247888
0.000275217
0.00029606
0.000311744
0.000323356
0.000331738
0.000337844
0.000342859
0.000347862
0.000353217
0.000358042
0.000360086
0.000357282
0.000347941
0.000332424
0.00031293
0.000291875
0.000271161
0.000252998
0.000239792
0.000231281
0.000215465
0.000173416
0.000122456
6.8457e-05
2.6777e-05
5.25891e-06
3.04844e-07
3.75197e-06
1.18404e-05
4.86235e-05
9.18352e-05
0.000127009
0.000157991
0.000185674
0.000209242
0.000228158
0.000242751
0.000253883
0.00026243
0.000269055
0.000274291
0.000278816
0.000283612
0.000289901
0.000299035
0.000311806
0.000327249
0.000339881
0.000339256
0.000327338
0.000313992
0.000299111
0.000277958
0.000251884
0.000222715
0.000191419
0.000157431
0.000106894
5.53167e-05
1.93052e-05
2.78196e-06
1.66441e-07
3.46886e-06
1.44881e-05
5.59434e-05
9.67923e-05
0.000128723
0.000155619
0.000177664
0.000194355
0.000205737
0.000212978
0.000217948
0.00022227
0.000226769
0.000231869
0.000238363
0.000247871
0.000262113
0.0002802
0.000295777
0.000300989
0.000295265
0.000284519
0.000270115
0.000251379
0.000232114
0.000212145
0.000191078
0.000168481
0.000143982
0.000117318
8.75278e-05
5.21838e-05
1.777e-05
1.89882e-06
1.12235e-07
3.38969e-06
1.59343e-05
5.74523e-05
9.59766e-05
0.000120876
0.00013444
0.000141628
0.000147141
0.000154308
0.000164912
0.0001795
0.000197823
0.000219172
0.000242553
0.000266785
0.000290572
0.000312564
0.000331394
0.000345594
0.000353642
0.000354767
0.000349164
0.000329034
0.000301112
0.000276413
0.000256812
0.000241152
0.00022473
0.000189383
0.000132582
6.86738e-05
2.35015e-05
5.69912e-06
4.67127e-07
1.38123e-08
3.22861e-06
2.9671e-05
6.94223e-05
8.29636e-05
9.53124e-05
0.000110578
0.000123771
0.000118686
0.000116319
0.000117708
0.000122932
0.00013158
0.000143004
0.000156416
0.000170923
0.000185548
0.000199244
0.000210923
0.000219428
0.000218886
0.000213727
0.000209814
0.0002045
0.000186621
0.000163578
0.000136551
0.000107302
7.82001e-05
5.17682e-05
3.01762e-05
1.52473e-05
6.64774e-06
2.42733e-06
5.31823e-07
1.5597e-07
3.52115e-06
3.67195e-05
5.64074e-05
5.71198e-05
5.85091e-05
5.95133e-05
5.87785e-05
5.74832e-05
5.7156e-05
5.86456e-05
6.19597e-05
6.67523e-05
7.29847e-05
8.06946e-05
8.92894e-05
9.31377e-05
9.67144e-05
9.96226e-05
0.000101512
0.000102012
0.000100787
9.75498e-05
9.211e-05
8.44826e-05
7.4961e-05
6.40691e-05
5.26253e-05
4.15431e-05
3.16503e-05
2.3596e-05
1.78039e-05
1.24272e-05
9.28883e-06
2.83594e-06
5.70755e-07
5.27527e-06
2.93599e-05
3.2288e-05
4.01411e-05
4.81741e-05
5.4258e-05
5.89778e-05
6.21274e-05
6.38561e-05
6.45073e-05
6.44213e-05
6.38076e-05
6.26896e-05
6.15758e-05
6.06108e-05
5.95074e-05
5.82951e-05
5.6925e-05
5.54058e-05
5.37489e-05
5.20063e-05
5.02499e-05
4.85539e-05
4.6988e-05
4.56347e-05
4.45872e-05
4.39111e-05
4.38239e-05
4.43105e-05
4.45784e-05
4.38552e-05
4.29638e-05
4.26626e-05
2.64884e-05
2.66144e-06
1.69474e-06
1.89466e-05
2.53704e-05
2.93374e-05
3.13782e-05
3.25764e-05
3.38002e-05
3.5305e-05
3.70653e-05
3.89566e-05
4.08308e-05
4.25386e-05
4.4007e-05
4.52434e-05
4.62646e-05
4.70785e-05
4.76982e-05
4.81517e-05
4.84514e-05
4.8637e-05
4.87044e-05
4.86251e-05
4.84243e-05
4.79629e-05
4.70432e-05
4.57059e-05
4.40423e-05
4.20731e-05
3.9757e-05
3.69906e-05
3.40715e-05
2.98341e-05
2.54798e-05
2.20738e-05
2.43914e-06
2.71476e-06
1.71726e-05
3.26593e-05
5.15591e-05
7.21091e-05
7.85747e-05
7.01226e-05
6.16543e-05
5.86262e-05
6.11791e-05
6.93619e-05
8.12253e-05
9.15743e-05
9.86885e-05
0.000103444
0.000106465
0.00010822
0.000109127
0.000109214
0.000107886
0.000104203
9.75097e-05
8.88783e-05
8.04379e-05
7.2879e-05
6.62296e-05
6.04025e-05
5.52927e-05
5.06777e-05
4.64023e-05
4.23546e-05
3.80772e-05
3.42761e-05
3.24852e-05
3.11701e-06
7.26708e-06
7.82675e-05
5.24734e-05
2.38735e-05
1.37474e-05
1.10703e-05
1.14935e-05
1.55936e-05
2.80003e-05
1.80359e-05
1.47077e-05
2.06487e-05
3.71229e-05
6.61962e-05
0.00010142
0.000125175
0.000125867
0.000112072
9.6303e-05
8.47432e-05
7.77447e-05
7.39802e-05
7.25026e-05
7.20476e-05
7.14977e-05
7.04453e-05
6.87983e-05
6.66054e-05
6.38962e-05
6.07766e-05
5.70983e-05
5.1567e-05
4.67806e-05
5.9285e-05
3.93337e-06
2.48544e-06
3.8184e-05
5.90218e-05
7.00765e-05
7.12882e-05
4.48791e-05
2.82883e-05
2.28712e-05
2.20674e-05
2.44103e-05
3.06745e-05
4.18693e-05
5.48863e-05
5.77467e-05
5.07359e-05
4.57878e-05
4.5862e-05
4.67509e-05
4.41674e-05
3.91249e-05
3.46559e-05
3.21951e-05
3.19201e-05
3.30428e-05
3.48519e-05
3.70942e-05
3.96816e-05
4.24241e-05
4.49146e-05
4.63093e-05
4.46164e-05
3.74583e-05
3.2556e-05
5.03006e-05
4.13784e-06
2.88004e-06
2.24892e-05
5.72017e-05
9.84781e-05
9.74229e-05
7.14706e-05
5.1953e-05
4.24795e-05
3.74537e-05
3.42417e-05
3.25262e-05
3.23788e-05
3.38955e-05
3.73971e-05
4.23897e-05
4.14818e-05
3.14644e-05
2.62781e-05
2.62121e-05
3.03377e-05
3.93399e-05
5.25646e-05
6.27544e-05
5.96835e-05
5.012e-05
4.31537e-05
3.97677e-05
3.87867e-05
3.92291e-05
3.95757e-05
3.71329e-05
3.17705e-05
3.28957e-05
6.21678e-05
4.47683e-06
1.79797e-06
1.42929e-05
3.63029e-05
7.12202e-05
8.50045e-05
8.54143e-05
8.48249e-05
8.09014e-05
7.26481e-05
6.34909e-05
5.69179e-05
5.33487e-05
5.16391e-05
4.94273e-05
4.2827e-05
3.39989e-05
3.21241e-05
4.72133e-05
4.36263e-05
2.20619e-05
2.19964e-05
3.33499e-05
4.45072e-05
4.8603e-05
5.14561e-05
5.34652e-05
5.13789e-05
4.55317e-05
3.97391e-05
3.49904e-05
2.8655e-05
2.14943e-05
2.45498e-05
6.62064e-05
4.75099e-06
6.00425e-06
1.82726e-05
3.84131e-05
5.52784e-05
5.23848e-05
4.70513e-05
4.07631e-05
3.40436e-05
2.86295e-05
2.70371e-05
3.27086e-05
4.98612e-05
7.70882e-05
0.000101274
0.000109167
6.18945e-05
3.36327e-05
2.73715e-05
4.10561e-05
0.000148332
6.35999e-05
3.30301e-05
3.4474e-05
5.01355e-05
8.05805e-05
0.00011946
0.000125467
0.000106376
7.16332e-05
4.80319e-05
3.11746e-05
1.94118e-05
2.07357e-05
6.3089e-05
5.12723e-06
8.08437e-06
5.2127e-05
2.24556e-05
2.04348e-05
2.86608e-05
3.63358e-05
3.47651e-05
2.78124e-05
2.32244e-05
2.60898e-05
3.09593e-05
2.42078e-05
2.40409e-05
4.88695e-05
5.3285e-05
6.18011e-05
7.95873e-05
5.82577e-05
3.61489e-05
3.06434e-05
3.01994e-05
3.32487e-05
3.95704e-05
4.72206e-05
5.41771e-05
5.92033e-05
6.10948e-05
5.80471e-05
4.92628e-05
3.68911e-05
2.46895e-05
1.71891e-05
2.1753e-05
7.23262e-05
5.65026e-06
6.22216e-06
2.21209e-07
5.76247e-06
2.96643e-05
3.7106e-05
2.61794e-05
1.94449e-05
1.8976e-05
2.47664e-05
3.82948e-05
4.86612e-05
4.26468e-05
3.35115e-05
3.12818e-05
3.21682e-05
3.1232e-05
2.98951e-05
2.94944e-05
2.97929e-05
3.10982e-05
3.31071e-05
3.54926e-05
3.78608e-05
3.99399e-05
4.15735e-05
4.25677e-05
4.25665e-05
4.09439e-05
3.6777e-05
2.94218e-05
2.03546e-05
1.46551e-05
2.02755e-05
7.16794e-05
5.72648e-06
4.1185e-06
3.39891e-05
6.34541e-05
4.13172e-05
2.39671e-05
2.55855e-05
2.3553e-05
2.0503e-05
2.00867e-05
2.00022e-05
1.95908e-05
2.0094e-05
2.21048e-05
2.50503e-05
2.79834e-05
2.95487e-05
3.01112e-05
3.10461e-05
3.23015e-05
3.39695e-05
3.60978e-05
3.83163e-05
4.01749e-05
4.13938e-05
4.18089e-05
4.11811e-05
3.91827e-05
3.549e-05
2.98865e-05
2.28068e-05
1.62426e-05
1.36651e-05
2.19559e-05
7.31017e-05
6.01741e-06
5.09714e-06
3.30643e-05
5.83458e-05
7.4832e-05
7.21473e-05
6.54271e-05
5.92759e-05
4.99102e-05
4.05069e-05
3.19773e-05
2.54941e-05
2.16823e-05
2.02299e-05
2.05706e-05
2.22044e-05
2.47588e-05
2.65754e-05
2.55202e-05
2.36011e-05
2.3075e-05
2.43331e-05
2.74232e-05
3.15055e-05
3.51112e-05
3.74543e-05
3.81291e-05
3.66243e-05
3.2732e-05
2.69715e-05
2.03092e-05
1.42371e-05
1.18555e-05
1.98881e-05
7.12097e-05
6.21025e-06
2.01313e-06
1.65823e-05
2.89529e-05
4.8023e-05
7.33805e-05
9.86436e-05
0.000115393
0.000120495
0.000114989
9.98394e-05
7.96243e-05
6.23917e-05
5.10954e-05
4.42381e-05
3.97967e-05
3.61606e-05
3.27261e-05
3.00625e-05
2.88046e-05
2.85028e-05
1.62224e-05
1.1592e-05
1.56382e-05
2.13088e-05
2.55901e-05
2.91524e-05
3.16966e-05
3.09846e-05
2.50688e-05
1.70175e-05
1.16653e-05
1.14202e-05
2.16134e-05
6.98173e-05
6.68875e-06
4.07473e-06
1.56568e-05
3.7179e-05
7.04442e-05
0.000100256
0.000110602
0.000109507
0.000104211
9.62729e-05
8.39777e-05
7.1253e-05
6.72536e-05
7.57518e-05
9.38461e-05
0.00010934
0.000106681
9.05461e-05
7.36673e-05
6.08902e-05
5.17272e-05
4.4595e-05
4.15227e-05
3.70861e-05
2.1739e-05
2.0608e-05
2.66538e-05
3.39803e-05
3.9646e-05
3.53708e-05
2.13397e-05
1.14115e-05
9.3321e-06
1.75548e-05
7.19141e-05
6.80316e-06
7.59295e-06
4.38978e-05
0.000134972
0.000160057
0.000162701
0.000162179
0.000154287
0.000131987
9.23666e-05
5.19837e-05
2.92853e-05
2.33014e-05
3.34995e-05
6.94357e-05
0.000133368
0.000177426
0.000160117
0.000105018
6.79284e-05
4.89062e-05
3.92683e-05
3.86505e-05
5.16987e-05
2.43882e-05
2.80033e-05
4.93581e-05
5.40282e-05
4.97568e-05
3.53027e-05
1.75967e-05
9.98019e-06
9.44713e-06
1.98052e-05
7.47283e-05
7.25707e-06
7.20878e-06
3.70419e-05
9.23254e-05
0.000132473
0.000144924
0.000136709
0.000117351
9.81687e-05
8.30399e-05
6.8248e-05
5.25068e-05
4.2207e-05
4.17879e-05
5.31078e-05
7.63977e-05
0.000104002
0.000116303
0.000101928
7.51072e-05
5.2315e-05
3.68617e-05
2.65715e-05
2.02274e-05
1.86405e-05
6.97172e-06
9.35468e-06
2.61204e-05
3.26868e-05
2.20457e-05
1.20913e-05
7.98737e-06
9.49815e-06
2.28213e-05
7.09564e-05
7.61751e-06
6.92119e-06
3.3689e-05
0.000103055
0.00014767
0.000138943
0.000115179
9.01633e-05
7.39548e-05
6.94484e-05
6.95697e-05
5.85668e-05
4.35903e-05
3.7377e-05
4.05982e-05
5.27451e-05
7.61856e-05
0.000118388
0.000183336
0.000220152
0.000217259
0.00013176
7.47245e-05
4.69152e-05
3.46294e-05
3.28236e-05
3.76655e-05
3.35994e-05
3.02862e-05
2.13462e-05
1.07177e-05
6.85053e-06
8.52377e-06
2.21674e-05
6.79226e-05
7.73853e-06
8.93265e-06
8.30296e-05
0.000140024
0.000130609
0.000116448
9.40621e-05
6.79735e-05
4.77349e-05
3.73789e-05
3.85893e-05
5.7194e-05
9.4235e-05
0.000121533
0.000118469
0.000107154
0.000102381
0.00010453
0.000111738
0.000122106
0.000132053
0.000132026
0.00011078
7.47946e-05
4.45212e-05
2.84529e-05
2.26543e-05
2.40895e-05
2.70347e-05
1.67909e-05
7.54753e-06
5.73725e-06
8.36573e-06
2.32746e-05
6.67218e-05
7.86327e-06
7.27457e-06
4.97087e-05
0.000128842
0.000145138
0.000133173
0.000109253
8.55115e-05
6.71072e-05
5.48527e-05
4.90214e-05
4.99714e-05
5.78958e-05
7.11214e-05
8.53736e-05
9.66522e-05
0.00010362
0.000106948
0.000108323
0.0001097
0.000112095
0.000114211
0.000110001
9.10107e-05
6.09691e-05
3.72953e-05
2.60892e-05
2.38158e-05
2.85366e-05
2.82698e-05
7.07739e-06
4.38782e-06
7.26447e-06
2.21632e-05
6.70924e-05
7.95263e-06
7.38277e-06
4.74165e-05
0.000147512
0.000169321
0.000155974
0.000138408
0.00012507
0.000111276
8.98045e-05
6.54739e-05
4.8716e-05
4.24931e-05
4.59481e-05
5.80813e-05
7.72349e-05
0.000100319
0.000123282
0.000142216
0.000154856
0.000162107
0.000166689
0.000167425
0.000153467
0.000113555
6.47193e-05
3.5318e-05
2.27756e-05
1.82016e-05
1.83192e-05
5.32093e-06
3.50831e-06
6.78197e-06
2.14483e-05
7.05208e-05
8.02059e-06
8.00049e-06
6.05761e-05
0.000156817
0.00016003
0.000135659
0.000112525
0.000102565
0.000103981
0.000106726
9.67616e-05
7.48375e-05
5.77305e-05
5.36632e-05
6.30394e-05
8.36447e-05
0.000109224
0.000131465
0.000145677
0.000152546
0.000155183
0.000155461
0.000152201
0.000142018
0.00012023
8.48852e-05
4.98335e-05
3.00414e-05
2.09172e-05
1.53129e-05
5.58486e-06
2.31699e-06
6.24333e-06
2.18705e-05
6.9933e-05
8.12398e-06
7.80384e-06
5.47892e-05
0.000151473
0.000161228
0.000139348
0.0001137
9.95869e-05
9.89528e-05
0.000107446
0.000113507
0.000100481
7.23067e-05
5.21883e-05
4.72153e-05
5.57308e-05
7.44767e-05
9.62097e-05
0.000112633
0.000121081
0.000123696
0.000124813
0.000133192
0.000160172
0.000195631
0.000179647
0.000112883
5.09679e-05
2.62908e-05
1.70835e-05
8.48613e-06
1.99674e-06
5.88622e-06
2.06766e-05
7.20235e-05
8.17373e-06
8.19141e-06
6.66169e-05
0.000168378
0.000163675
0.000130558
0.000108702
0.000104393
0.000110116
0.000118513
0.000125393
0.000125322
0.000109577
8.14247e-05
6.06842e-05
5.56363e-05
6.38124e-05
7.88222e-05
9.59054e-05
0.000110631
0.000110909
0.000100056
8.11976e-05
6.0496e-05
4.65284e-05
3.97376e-05
3.53813e-05
2.82411e-05
1.86233e-05
8.89145e-06
1.24206e-06
4.79023e-07
5.34308e-06
2.11813e-05
7.27988e-05
8.39163e-06
8.30283e-06
6.83106e-05
0.000168746
0.000144569
0.000102137
8.4139e-05
8.92061e-05
0.000109756
0.000134462
0.000149046
0.000145218
0.000123149
9.1664e-05
6.48331e-05
4.92919e-05
4.07414e-05
2.94006e-05
1.68053e-05
1.26727e-05
1.87341e-05
3.64856e-05
5.27076e-05
5.00435e-05
3.63591e-05
2.29695e-05
1.3975e-05
8.47232e-06
4.84442e-06
2.07685e-06
1.1974e-06
2.41435e-06
6.93468e-06
2.5731e-05
6.7101e-05
8.61464e-06
8.36528e-06
6.48319e-05
0.000159631
0.000135447
9.25719e-05
7.56062e-05
8.06901e-05
9.96501e-05
0.00012491
0.000149091
0.000164474
0.000161384
0.000132308
8.92514e-05
5.62648e-05
3.75522e-05
2.54891e-05
1.38788e-05
3.43037e-06
1.0417e-06
1.06999e-05
4.65017e-06
2.20445e-06
5.05049e-09
4.30616e-06
1.33457e-06
1.89053e-06
2.36004e-06
5.82393e-08
5.88817e-07
2.03882e-06
7.33445e-06
2.74415e-05
6.41803e-05
8.49836e-06
8.36359e-06
5.70828e-05
0.000136256
0.000115254
7.60321e-05
6.02133e-05
6.5126e-05
8.48922e-05
0.000112949
0.000141331
0.000165958
0.000186444
0.000198853
0.00018787
0.000141246
8.97258e-05
6.04598e-05
4.91031e-05
4.65381e-05
4.34616e-05
2.80123e-05
7.39133e-06
4.96576e-06
6.50207e-06
1.58582e-06
5.31347e-07
4.46411e-06
2.34098e-06
1.72532e-06
1.22596e-06
2.22096e-06
7.30502e-06
2.78934e-05
6.32322e-05
8.50051e-06
8.15264e-06
4.71702e-05
0.000117561
0.000112708
7.92339e-05
5.63602e-05
5.23882e-05
6.30774e-05
8.59465e-05
0.000117087
0.00014924
0.000176261
0.000196855
0.000211347
0.000212348
0.000179814
0.000118195
7.27744e-05
5.3582e-05
5.2294e-05
6.51962e-05
8.46216e-05
8.77542e-05
7.41445e-05
3.78537e-05
6.57063e-06
1.57234e-06
1.92008e-06
1.49001e-06
1.93769e-08
3.56688e-06
8.99871e-06
3.24878e-05
5.82253e-05
8.63913e-06
8.10824e-06
4.28058e-05
0.000109411
0.000116841
9.23087e-05
6.22501e-05
4.71928e-05
4.6707e-05
5.79734e-05
8.06989e-05
0.000113619
0.000151324
0.000186162
0.000212835
0.000229342
0.00023225
0.000209121
0.000152107
9.50109e-05
6.46385e-05
5.59785e-05
6.34598e-05
8.90404e-05
0.000123483
0.000119219
7.74731e-05
3.068e-05
5.71184e-06
3.56673e-06
8.78076e-07
3.16729e-06
1.11092e-05
4.21315e-05
5.33264e-05
8.41903e-06
8.13548e-06
4.24301e-05
0.000113055
0.000129502
0.000115428
8.46553e-05
5.64804e-05
4.31284e-05
4.24679e-05
5.25279e-05
7.37901e-05
0.000106077
0.000145317
0.000184075
0.000215291
0.000234039
0.000235737
0.000213688
0.000166133
0.000113408
7.89645e-05
6.45695e-05
6.4338e-05
7.4112e-05
8.75338e-05
8.83857e-05
4.77854e-05
1.20485e-05
1.62039e-06
3.34741e-07
2.85702e-07
6.80814e-06
2.57139e-05
6.18095e-05
8.24784e-06
8.14642e-06
4.43661e-05
0.00012352
0.000152001
0.000149498
0.000129018
9.1128e-05
5.79332e-05
4.22439e-05
4.01133e-05
4.88151e-05
6.8732e-05
0.000100306
0.000141105
0.000185841
0.000228616
0.000262789
0.000279135
0.000266242
0.00021901
0.000157049
0.000109663
8.41094e-05
7.23216e-05
5.91606e-05
2.38073e-05
4.03205e-06
1.68796e-06
5.13004e-06
3.58464e-07
7.34207e-07
3.61902e-06
2.21737e-05
6.23603e-05
8.7972e-06
8.11205e-06
4.45227e-05
0.000129263
0.000166225
0.000168226
0.000156705
0.000132708
9.45766e-05
6.09326e-05
4.42976e-05
4.15149e-05
5.00593e-05
7.05946e-05
0.000104521
0.000152339
0.000214321
0.000282013
0.000296622
0.000292702
0.000286298
0.000276862
0.000263512
0.00024372
0.000197371
0.000164586
8.21007e-05
1.69518e-05
2.53908e-06
1.04747e-06
2.10424e-06
7.47016e-06
1.44024e-05
4.21715e-05
4.76495e-05
8.70923e-06
8.0673e-06
4.22516e-05
0.000123381
0.00016129
0.000162332
0.000149629
0.000133281
0.00011631
9.23037e-05
6.56489e-05
4.93171e-05
4.55728e-05
5.34111e-05
7.39813e-05
0.000109174
0.000158427
0.000218547
0.000281251
0.000287941
0.000283622
0.000276848
0.000267065
0.000253431
0.000234856
0.000180781
0.000113759
4.82537e-05
1.21775e-05
3.90378e-06
5.45408e-06
1.5894e-05
6.70608e-05
6.49869e-05
2.69967e-05
7.53778e-06
7.98871e-06
3.89035e-05
0.00011206
0.000150184
0.000150304
0.000133366
0.000113418
0.000103574
0.000103305
9.80615e-05
7.83908e-05
5.93182e-05
5.13146e-05
5.47611e-05
6.97335e-05
9.66263e-05
0.000132127
0.000166837
0.000190408
0.000198261
0.000191337
0.000173447
0.000149845
0.000125003
0.000100884
7.80826e-05
5.66525e-05
3.61268e-05
1.72068e-05
8.49396e-06
1.02212e-05
1.93745e-05
5.10675e-05
3.50717e-05
6.41062e-06
8.00676e-06
3.75761e-05
0.000108876
0.000150442
0.000151364
0.000131539
0.000104184
8.76742e-05
8.84517e-05
0.000102761
0.000114552
0.000102854
7.84295e-05
6.26949e-05
5.97207e-05
6.834e-05
8.76382e-05
0.000114643
0.000142414
0.000162747
0.000170866
0.000167042
0.00015479
0.000138168
0.000119911
0.000101345
8.31105e-05
6.5498e-05
5.166e-05
4.7756e-05
5.11839e-05
2.7928e-05
8.6737e-06
1.52886e-05
6.37783e-06
8.18764e-06
3.9454e-05
0.00011883
0.000164952
0.000162241
0.000137312
0.000107731
8.87681e-05
8.55185e-05
9.83898e-05
0.000123366
0.000143282
0.000134521
0.000103592
7.90791e-05
7.02688e-05
7.58001e-05
9.43775e-05
0.000123504
0.000156069
0.000181444
0.000192049
0.000188267
0.000175414
0.000157419
0.000136888
0.000120565
0.000112774
9.93677e-05
5.15522e-05
2.87618e-05
1.16294e-05
3.75654e-06
1.33411e-05
9.34614e-06
8.63097e-06
4.47809e-05
0.000138693
0.000176011
0.000156972
0.00012188
9.83277e-05
9.11767e-05
9.63005e-05
0.0001129
0.000140831
0.000171598
0.000186423
0.000167776
0.000125748
9.25403e-05
7.91666e-05
8.32601e-05
0.000102474
0.000132787
0.000164277
0.000185026
0.000190106
0.000182843
0.000168339
0.000149822
0.000131705
0.000116371
5.76967e-05
1.8812e-05
1.55021e-05
1.45785e-05
1.55139e-05
5.71344e-05
9.42663e-06
9.22578e-06
5.43574e-05
0.00015691
0.000168958
0.000134667
9.89739e-05
8.58921e-05
9.38961e-05
0.000116938
0.000147375
0.000179114
0.000208243
0.00022887
0.000230392
0.000200354
0.000148244
0.00010761
9.1067e-05
9.51106e-05
0.000113315
0.000134065
0.000145588
0.000145366
0.000136601
0.000123435
0.000110108
0.000111053
0.000189027
0.000121475
1.34494e-05
5.68257e-06
1.04327e-05
2.92488e-05
0.000102743
9.78749e-06
9.56974e-06
6.41842e-05
0.00016134
0.000155244
0.000118024
8.9393e-05
8.48268e-05
0.000103642
0.00014259
0.000189328
0.000229846
0.000260206
0.00028103
0.000289571
0.000276534
0.000232309
0.000172856
0.000133296
0.000126305
0.000151903
0.00019719
0.000223187
0.000216444
0.000214177
0.000220732
0.000189129
3.88874e-05
1.17246e-05
9.47627e-06
1.12698e-05
1.52882e-05
3.23663e-05
9.64247e-05
4.70756e-05
9.3707e-06
9.60081e-06
6.87048e-05
0.00015979
0.00015153
0.000119843
9.58206e-05
9.14485e-05
0.000106882
0.000140021
0.000183955
0.00022891
0.000268281
0.000298694
0.000316129
0.000313621
0.000282041
0.000223607
0.000168175
0.000142759
0.000152246
0.000180634
0.000174338
0.000126025
5.75497e-05
1.56741e-05
6.98995e-06
1.12364e-05
2.73006e-05
6.59797e-05
9.81074e-05
9.42749e-05
9.14477e-05
4.95599e-05
1.80259e-05
4.48233e-06
9.42181e-06
6.44594e-05
0.000156247
0.000159771
0.000138612
0.000111237
9.33952e-05
9.17798e-05
0.000106605
0.000135764
0.000173469
0.000210907
0.000241228
0.000262044
0.000272902
0.000271625
0.000252101
0.000209692
0.000157711
0.000119227
9.93947e-05
9.03578e-05
8.24659e-05
7.03422e-05
5.0129e-05
2.55317e-05
1.26178e-05
1.16227e-05
1.84357e-05
3.34326e-05
5.47832e-05
5.87591e-05
3.35973e-05
1.90464e-05
1.26538e-06
9.19644e-06
5.84358e-05
0.000149574
0.000163939
0.00015347
0.000131335
0.000106654
9.14013e-05
9.05863e-05
0.000104148
0.000130914
0.000167636
0.000207572
0.000242678
0.000267097
0.00027839
0.000276708
0.000262815
0.000236611
0.000200727
0.000165059
0.000138533
0.000121255
0.000107356
9.09889e-05
7.51738e-05
7.03084e-05
7.02858e-05
6.52106e-05
4.86076e-05
4.08008e-05
8.30809e-05
9.0175e-05
9.10725e-06
3.81772e-06
9.03281e-06
5.61963e-05
0.000152147
0.000171905
0.000162841
0.000145621
0.000126518
0.000108489
9.76129e-05
9.90709e-05
0.000115198
0.000147199
0.000193948
0.000249938
0.00030679
0.000356319
0.000390429
0.000401359
0.000384856
0.000345291
0.000300976
0.000271887
0.00026583
0.00027271
0.000237242
8.14329e-05
3.61516e-05
3.98688e-05
6.2617e-05
7.64754e-05
6.19423e-05
4.2155e-05
3.29828e-05
5.34086e-05
1.00368e-05
9.05322e-06
5.66115e-05
0.000163686
0.000182676
0.000165053
0.000147735
0.00013934
0.000131028
0.000116529
0.000103922
0.000103094
0.0001182
0.000150614
0.000198268
0.000253174
0.000303824
0.000340536
0.000356837
0.000347799
0.000311456
0.000254533
0.000192461
0.000136028
8.62578e-05
4.61917e-05
2.60216e-05
2.66543e-05
4.69138e-05
8.63481e-05
0.000105195
9.70059e-05
9.01048e-05
8.12988e-05
3.56392e-05
6.68923e-06
9.20019e-06
5.65237e-05
0.000167698
0.000175469
0.000141966
0.000122782
0.00012538
0.000138821
0.000145582
0.000134692
0.000117996
0.000112291
0.000122826
0.000148304
0.000183857
0.00022124
0.000251131
0.000266894
0.000267178
0.000255578
0.000237019
0.000213961
0.000185928
0.000152806
0.000120299
9.39723e-05
7.66106e-05
6.97048e-05
6.55783e-05
6.13346e-05
7.79204e-05
0.000126367
9.20687e-05
4.25766e-05
2.16267e-06
9.55852e-06
5.93256e-05
0.000166875
0.000153394
0.000111789
9.91202e-05
0.000110769
0.000134803
0.00015659
0.000162811
0.000152789
0.000142144
0.000145382
0.000166157
0.000200676
0.000240891
0.000277629
0.000303531
0.000314429
0.000309229
0.00028958
0.00026258
0.000243637
0.000247181
0.000252459
0.00017547
9.84951e-05
7.09694e-05
7.3252e-05
9.05519e-05
0.000112814
7.7316e-05
4.14677e-05
4.34792e-05
8.44172e-06
9.98859e-06
6.67619e-05
0.000162466
0.00011578
7.98142e-05
8.12205e-05
0.000108302
0.000147909
0.000178924
0.000187571
0.000177474
0.000165844
0.000168914
0.000192877
0.000235514
0.000289248
0.00034492
0.000391302
0.000409836
0.000404052
0.000396182
0.000330384
0.000194325
8.34695e-05
4.99106e-05
7.17026e-05
0.000149343
0.000209446
0.00019009
0.000117591
6.18205e-05
4.13956e-05
5.61479e-05
0.000125788
1.02078e-05
9.97029e-06
6.52246e-05
0.000142023
8.35849e-05
5.87582e-05
6.89278e-05
0.000105318
0.000152123
0.000186175
0.000199141
0.000195416
0.000185726
0.000182722
0.000194126
0.000219753
0.00025258
0.000282595
0.000301791
0.000307418
0.000300888
0.000283071
0.00025121
0.000198613
0.000126652
6.86201e-05
5.23635e-05
7.13579e-05
0.000123501
0.000164052
0.000125893
8.04213e-05
7.1864e-05
0.000115701
6.42709e-05
8.9308e-06
9.3478e-06
4.98539e-05
0.000123632
7.22766e-05
4.51218e-05
5.16263e-05
8.61078e-05
0.000137795
0.000177642
0.00019366
0.000195169
0.000195534
0.000202909
0.00021864
0.000238993
0.000257758
0.000270163
0.000276347
0.000279567
0.000279567
0.000269607
0.000242632
0.000199626
0.000149626
0.000103716
7.07178e-05
5.52172e-05
5.59171e-05
6.94715e-05
8.82869e-05
0.000100002
0.000117282
0.000131369
4.0474e-05
6.78333e-06
8.81191e-06
3.98202e-05
0.000111784
8.13166e-05
3.65325e-05
3.23979e-05
5.58197e-05
0.000106934
0.000164414
0.000198584
0.000208293
0.000210514
0.000221036
0.00024481
0.000273938
0.000290851
0.00028181
0.000252483
0.000222453
0.000206412
0.000207487
0.000218338
0.000222755
0.00020609
0.000168725
0.000124644
8.73871e-05
6.26214e-05
5.1744e-05
5.65376e-05
7.90953e-05
0.000109493
0.000104826
3.10594e-05
6.0747e-06
8.93486e-06
4.12238e-05
0.000116681
8.84424e-05
3.40432e-05
2.42444e-05
4.2196e-05
9.09563e-05
0.000155254
0.000199502
0.000216692
0.00022239
0.000233186
0.000253281
0.000267355
0.000250214
0.000206674
0.000175106
0.000178139
0.000216624
0.000276116
0.000323831
0.000332422
0.000300224
0.000245125
0.000186485
0.000135589
9.63025e-05
6.99588e-05
5.86593e-05
6.5306e-05
9.03906e-05
0.000100958
3.20893e-05
7.05106e-06
9.47916e-06
5.32323e-05
0.000131709
7.03221e-05
3.3345e-05
2.67859e-05
4.69478e-05
0.000100737
0.000159898
0.000194762
0.000206905
0.000209678
0.000216066
0.000230645
0.000243075
0.000230704
0.000188739
0.000149879
0.000144646
0.000185954
0.000275406
0.000361093
0.000386801
0.000358359
0.000297215
0.00022437
0.00015834
0.000109042
7.7743e-05
6.33861e-05
6.74522e-05
9.21523e-05
0.000105893
3.61983e-05
7.78813e-06
9.77605e-06
6.99213e-05
0.000108562
5.46958e-05
3.52614e-05
3.6119e-05
5.84826e-05
0.000104506
0.000145613
0.000169657
0.000179902
0.000184061
0.000190213
0.000202581
0.000217295
0.000220788
0.000198728
0.00015764
0.000125608
0.000123236
0.000162311
0.000253298
0.000349779
0.000372168
0.000331646
0.000258346
0.000179265
0.000117896
8.16381e-05
6.78001e-05
7.56727e-05
0.000103161
0.000106737
3.59043e-05
7.45158e-06
9.40223e-06
6.30497e-05
0.000106077
6.68797e-05
4.35014e-05
3.80025e-05
4.75354e-05
7.44222e-05
0.000110068
0.000139714
0.000157777
0.000167913
0.000176794
0.000189414
0.000205814
0.000219205
0.000218096
0.000194347
0.000154925
0.000120965
0.000107864
0.000120487
0.000163851
0.000234829
0.000287623
0.000281044
0.000231882
0.000170943
0.00012435
0.000103142
0.000109229
0.000136509
0.000133215
4.09025e-05
7.00946e-06
8.74896e-06
4.80799e-05
0.000112298
0.000110551
6.95868e-05
3.79912e-05
3.00355e-05
3.90021e-05
6.34751e-05
9.80501e-05
0.000131005
0.000155337
0.000173479
0.000191017
0.000210945
0.000230815
0.00024296
0.000238443
0.000212809
0.000171796
0.000131322
0.000105247
9.73236e-05
0.000107014
0.000135311
0.000179469
0.000216934
0.000221879
0.00020359
0.000187081
0.000187629
0.000198536
0.000172728
4.9355e-05
6.51314e-06
8.49174e-06
4.56141e-05
0.00011526
0.000134354
0.000118488
6.83209e-05
3.47664e-05
2.64257e-05
3.32943e-05
5.35146e-05
8.57672e-05
0.000122747
0.000156473
0.000186134
0.000214685
0.000242723
0.000266014
0.000277136
0.000269903
0.000243013
0.000201278
0.000155465
0.000117654
9.40542e-05
8.48672e-05
8.89448e-05
0.000106613
0.000137609
0.000171601
0.000192189
0.000197952
0.000190166
0.000150064
4.69494e-05
6.43517e-06
8.48977e-06
4.83962e-05
0.000134828
0.000163874
0.000159109
0.000137577
8.55555e-05
4.4271e-05
2.99301e-05
3.08941e-05
4.42913e-05
7.18509e-05
0.000111529
0.00015493
0.000195852
0.000233288
0.000266033
0.000289801
0.000299255
0.000291543
0.000267466
0.000230382
0.000185853
0.000142027
0.000106817
8.39099e-05
7.32136e-05
7.41896e-05
8.80965e-05
0.000114434
0.000138923
0.000143856
0.000118729
4.07212e-05
6.65139e-06
8.37325e-06
4.42951e-05
0.000132747
0.000167418
0.000153131
0.000137171
0.000132291
0.000111035
6.72995e-05
4.0215e-05
3.10893e-05
3.55109e-05
5.61094e-05
9.62773e-05
0.000149695
0.0002033
0.000250075
0.00028744
0.000312162
0.000321225
0.000314084
0.000292611
0.000259681
0.000218557
0.000173793
0.000131734
9.82967e-05
7.6292e-05
6.61549e-05
6.88413e-05
8.58463e-05
0.000107251
0.000104694
3.80392e-05
6.7842e-06
8.51722e-06
4.05986e-05
0.000120736
0.000154132
0.00012501
9.56357e-05
8.66916e-05
0.000101259
0.000127904
0.000114796
6.63893e-05
3.86649e-05
3.28463e-05
4.73422e-05
8.779e-05
0.000153271
0.000226666
0.000290389
0.000336591
0.000362062
0.000366575
0.000353408
0.000327163
0.000291708
0.000250003
0.000204729
0.000159355
0.000118728
8.75865e-05
6.89868e-05
6.54623e-05
8.03713e-05
0.000102895
4.05133e-05
7.10519e-06
9.45525e-06
4.82522e-05
0.000145413
0.000138121
0.000101608
8.80487e-05
8.16825e-05
8.158e-05
0.000102229
0.000149054
0.000171681
0.000104193
5.09281e-05
3.80698e-05
5.4709e-05
0.000105533
0.00019284
0.000296476
0.000380329
0.000406001
0.000410601
0.000412919
0.00038797
0.000350127
0.000308709
0.000264809
0.000218477
0.000170582
0.000124793
8.8434e-05
6.94397e-05
7.44183e-05
0.000107364
4.67235e-05
7.43704e-06
1.05647e-05
7.69041e-05
0.000133608
7.31414e-05
6.38286e-05
8.07208e-05
0.000109535
0.000126122
0.00013233
0.000154394
0.000187655
0.000176248
9.99954e-05
5.55783e-05
5.36832e-05
9.11882e-05
0.00017622
0.000297576
0.00039516
0.000404067
0.00040957
0.000413212
0.000405013
0.000369663
0.000327907
0.000285349
0.00024157
0.000195191
0.000147763
0.000107123
8.4627e-05
8.98671e-05
0.000127714
5.47154e-05
7.74464e-06
1.05227e-05
0.000115044
6.01852e-05
4.28134e-05
5.99593e-05
0.000105935
0.000167138
0.000208244
0.000217185
0.000209416
0.000198103
0.000171101
0.000120115
7.71536e-05
6.78234e-05
9.93522e-05
0.000177574
0.000280526
0.000359717
0.000394263
0.000400466
0.000392778
0.000373642
0.000344395
0.000309159
0.000271595
0.000233114
0.000193843
0.0001554
0.000123934
0.000109673
0.000123485
0.0001602
6.32499e-05
8.03896e-06
9.54588e-06
9.34602e-05
4.39564e-05
4.79472e-05
9.07892e-05
0.000147688
0.000187867
0.000214223
0.000228132
0.000226489
0.000206686
0.00017004
0.000126444
9.46294e-05
8.96994e-05
0.000121836
0.000194607
0.000280167
0.0003413
0.000368338
0.000371962
0.000362078
0.000342616
0.000315446
0.000283037
0.000248439
0.000214483
0.000183438
0.000157581
0.000140951
0.000140741
0.000163254
0.000185878
6.89188e-05
8.27689e-06
8.70228e-06
6.77151e-05
9.35812e-05
5.91896e-05
5.15216e-05
6.28674e-05
9.22938e-05
0.000132901
0.000171909
0.000195039
0.000193189
0.000168622
0.000136853
0.000116987
0.000122501
0.000163386
0.000237581
0.000313469
0.000360009
0.000375026
0.000370167
0.000354081
0.000330392
0.000300782
0.0002671
0.00023211
0.000199511
0.000173254
0.000156583
0.000152257
0.00016312
0.000185817
0.000189571
6.80675e-05
8.31364e-06
8.2284e-06
3.87064e-05
8.63122e-05
6.14444e-05
2.45522e-05
1.98115e-05
3.241e-05
5.92611e-05
9.71499e-05
0.000133188
0.000150996
0.000149707
0.000144048
0.000150639
0.000180973
0.000237595
0.000304745
0.000356703
0.000381743
0.000384437
0.000373041
0.000352917
0.000326584
0.000295367
0.000260683
0.000224926
0.000191943
0.000166535
0.000152926
0.000153656
0.000168248
0.000186938
0.000180167
6.40171e-05
8.2386e-06
8.08846e-06
3.98159e-05
9.12437e-05
8.23241e-05
4.49028e-05
2.14647e-05
1.72406e-05
2.44225e-05
4.14922e-05
6.85571e-05
0.000100136
0.000130733
0.000162936
0.000198453
0.000234864
0.000270481
0.000303486
0.000329949
0.000346147
0.000351033
0.0003458
0.000332196
0.000311615
0.000285175
0.000254182
0.000220806
0.000188726
0.000163009
0.000148669
0.000148891
0.000162762
0.000179294
0.000170217
6.01926e-05
8.15893e-06
8.40502e-06
4.83711e-05
0.000122747
0.000141439
0.000124863
7.62988e-05
3.64963e-05
1.90989e-05
1.33356e-05
1.67791e-05
3.50612e-05
7.78205e-05
0.000134122
0.000175237
0.000204719
0.000234719
0.000266532
0.000294661
0.000314113
0.000323362
0.000323384
0.000315575
0.000300871
0.000279905
0.000253492
0.000223251
0.000192341
0.000165726
0.000149058
0.000146571
0.000158399
0.000174366
0.000166063
5.875e-05
8.15826e-06
8.77821e-06
4.62418e-05
0.000125806
0.000160785
0.000166082
0.000168857
0.000154623
9.66912e-05
4.0473e-05
9.58841e-06
4.76487e-06
6.18396e-06
3.2664e-05
8.87215e-05
0.00015848
0.000221929
0.000274628
0.000315006
0.000340802
0.000351986
0.000351042
0.000340942
0.000323796
0.000300809
0.000272828
0.000241074
0.000208076
0.000178413
0.000158086
0.000152191
0.000161647
0.00017665
0.00016826
5.96281e-05
8.23308e-06
8.98104e-06
4.72705e-05
0.000120964
0.000137379
0.000115612
8.75643e-05
8.1875e-05
0.000106251
0.000140527
6.31734e-05
9.59816e-06
6.1314e-07
8.59549e-06
4.47493e-05
0.000125391
0.000233314
0.00032061
0.000367009
0.000383476
0.000383576
0.000374739
0.000360001
0.000340355
0.000316098
0.000287549
0.000255595
0.000222446
0.000192386
0.000171345
0.000164507
0.000172537
0.000185266
0.000173779
6.08563e-05
8.35366e-06
8.72589e-06
5.08909e-05
0.000128252
0.000148058
0.00014148
0.000106636
6.53726e-05
4.5738e-05
4.08209e-05
3.50124e-05
1.14845e-05
2.17198e-06
1.75685e-05
6.43875e-05
0.000132348
0.000196074
0.000240756
0.000267602
0.000282956
0.00029171
0.000295917
0.000295546
0.000289829
0.000278212
0.000260798
0.000238631
0.000214155
0.000191615
0.000176495
0.000173414
0.0001825
0.00019362
0.000177648
6.03342e-05
8.42273e-06
8.49789e-06
5.04551e-05
0.000146394
0.000174277
0.000165957
0.000150156
0.000126588
8.94658e-05
6.1525e-05
4.6755e-05
2.85773e-05
7.11929e-06
4.64671e-06
2.52619e-05
7.4703e-05
0.000130757
0.00016885
0.00019229
0.000208402
0.000220446
0.000229787
0.000236628
0.000239914
0.000238216
0.000230794
0.000218261
0.000202889
0.0001886
0.000180217
0.00018151
0.00019169
0.000200381
0.000178273
5.85048e-05
8.384e-06
8.9137e-06
5.0987e-05
0.000145595
0.00015368
0.000118895
9.11687e-05
8.58464e-05
9.66751e-05
0.000102659
9.35563e-05
8.20494e-05
4.6753e-05
1.02183e-05
1.82493e-06
1.57788e-05
6.10082e-05
0.000127127
0.000170694
0.000189166
0.000197205
0.000202512
0.000207559
0.000212114
0.000214405
0.000212624
0.000206401
0.000197453
0.000189267
0.000185953
0.000190158
0.000199774
0.000204327
0.00017572
5.63764e-05
8.29779e-06
9.10845e-06
5.4884e-05
0.000151597
0.000152103
0.000118447
9.10627e-05
7.60901e-05
7.32993e-05
8.14985e-05
9.25036e-05
0.000101684
0.000111926
7.65927e-05
1.81746e-05
2.87993e-06
1.45359e-05
5.70566e-05
0.000124194
0.000171113
0.000188044
0.00019104
0.000190814
0.000191486
0.000193318
0.000194674
0.000193977
0.000191326
0.000188926
0.00018989
0.000195864
0.000204026
0.000204785
0.000171581
5.42928e-05
8.23353e-06
9.20181e-06
5.90002e-05
0.000163562
0.000126778
9.02455e-05
8.60546e-05
9.92649e-05
0.000109665
0.000109337
0.000107187
0.000104478
0.000102479
0.000100931
6.91366e-05
1.99213e-05
8.05092e-06
2.5233e-05
7.20359e-05
0.000129026
0.000163747
0.000175211
0.000176403
0.000175569
0.00017594
0.000177807
0.000180266
0.000182679
0.000185634
0.000190579
0.000197987
0.000204932
0.000203254
0.000167712
5.31995e-05
8.28323e-06
9.65525e-06
6.91993e-05
0.000149613
8.55877e-05
6.13246e-05
6.53341e-05
8.82496e-05
0.00012556
0.000157788
0.000169023
0.000165551
0.000152762
0.000128322
8.75814e-05
3.81421e-05
1.18696e-05
1.52933e-05
5.2044e-05
0.00011387
0.000155617
0.000167222
0.000165451
0.000161429
0.000159426
0.000160348
0.000163689
0.000168753
0.000175378
0.000183851
0.000193655
0.000201614
0.000200156
0.000163924
5.14771e-05
8.34085e-06
9.72238e-06
8.77855e-05
0.000104119
5.78703e-05
5.76373e-05
8.54463e-05
0.000124923
0.000157826
0.0001831
0.000199745
0.000206192
0.000202635
0.000183776
0.000138435
7.4772e-05
2.86317e-05
1.44983e-05
3.04471e-05
7.56272e-05
0.0001227
0.000146401
0.000151316
0.000149023
0.000146474
0.000146783
0.00015073
0.000157887
0.000167363
0.000178389
0.000189862
0.000198701
0.000197672
0.000161351
5.10761e-05
8.43476e-06
9.38321e-06
8.52624e-05
8.59418e-05
4.90054e-05
5.54575e-05
9.68578e-05
0.000157531
0.000196209
0.000210399
0.000214673
0.000215714
0.000212387
0.000198382
0.000163222
0.000105449
5.08462e-05
2.32248e-05
2.31873e-05
5.5326e-05
0.000102534
0.000131606
0.000140012
0.000138852
0.000135509
0.000133785
0.000135661
0.000141998
0.00015274
0.000166773
0.00018168
0.000193239
0.000194001
0.000158444
4.98155e-05
8.49717e-06
9.05074e-06
6.68229e-05
0.00010654
5.74936e-05
4.58428e-05
5.98407e-05
9.8837e-05
0.000155794
0.000205245
0.000235855
0.000252098
0.000258573
0.00025381
0.00022771
0.000168733
9.31614e-05
4.1608e-05
2.44856e-05
3.61081e-05
7.44576e-05
0.000112517
0.000129548
0.000132229
0.000130253
0.000128852
0.000130551
0.000136283
0.000146148
0.000159664
0.00017513
0.000188173
0.000190266
0.000154476
4.824e-05
8.42866e-06
8.60158e-06
4.79149e-05
0.000110963
8.63862e-05
4.21625e-05
3.12536e-05
4.54551e-05
8.8619e-05
0.000156694
0.000219378
0.000259626
0.000280408
0.000285182
0.00027023
0.000224341
0.000147248
7.40957e-05
3.68577e-05
3.18819e-05
5.69923e-05
9.76303e-05
0.000121935
0.000126517
0.000122973
0.000118996
0.000118594
0.000123909
0.000135587
0.000152406
0.00017088
0.000185344
0.000187506
0.00015093
4.70236e-05
8.43366e-06
8.50485e-06
4.16218e-05
0.0001004
0.000104133
5.77094e-05
2.13696e-05
1.99431e-05
4.32574e-05
0.00010205
0.000193055
0.0002783
0.000334654
0.000361356
0.000357464
0.000314248
0.000226819
0.000126134
6.03231e-05
3.68567e-05
4.39576e-05
7.66471e-05
0.000109797
0.000123073
0.000123064
0.000119471
0.000117482
0.000119899
0.000128326
0.000143042
0.000161593
0.00017755
0.000180949
0.000143953
4.39154e-05
8.23763e-06
8.86614e-06
4.8713e-05
0.000124346
0.000117736
7.59948e-05
2.94196e-05
1.59706e-05
3.18007e-05
8.36372e-05
0.000179074
0.000281957
0.000357933
0.000400784
0.000409438
0.000376793
0.000296064
0.000186839
9.71392e-05
5.22046e-05
4.30081e-05
6.25407e-05
9.54017e-05
0.000113353
0.000114549
0.000110526
0.00010866
0.000112363
0.000122936
0.000139892
0.000159985
0.000176464
0.000179431
0.000140255
4.27989e-05
8.23397e-06
9.13195e-06
5.78314e-05
0.000134258
9.58993e-05
5.32828e-05
3.06686e-05
2.08445e-05
3.70627e-05
9.65117e-05
0.00020048
0.000299648
0.000369293
0.000409316
0.000419412
0.000396188
0.000327363
0.000226301
0.000131832
7.23667e-05
4.89641e-05
5.39554e-05
8.12427e-05
0.000107128
0.000114732
0.000111097
0.000106293
0.000106267
0.00011411
0.000130449
0.000151725
0.00016936
0.000172404
0.000132186
3.97894e-05
8.0556e-06
9.052e-06
5.77742e-05
0.000120981
8.15148e-05
4.19852e-05
2.57643e-05
2.39292e-05
4.24096e-05
0.000100063
0.000193151
0.000277253
0.000337665
0.000377894
0.00039772
0.000389084
0.000341803
0.000259415
0.00016866
9.99546e-05
6.39682e-05
5.59994e-05
7.02833e-05
9.23826e-05
0.000104476
0.000106037
0.000104625
0.000105812
0.000112809
0.000127071
0.000146949
0.000165416
0.000170644
0.000131812
3.9656e-05
8.15523e-06
8.84255e-06
5.67715e-05
0.000119092
8.74344e-05
4.87041e-05
2.73326e-05
2.08489e-05
3.17038e-05
7.48792e-05
0.000166245
0.000263223
0.000332741
0.000376582
0.00039762
0.00039066
0.000348378
0.000274063
0.00018896
0.000119035
7.68092e-05
6.13304e-05
6.84937e-05
8.90498e-05
0.000103071
0.00010398
0.000100201
9.98343e-05
0.000107208
0.000123575
0.00014576
0.000164607
0.000167571
0.000123083
3.69595e-05
7.92236e-06
8.7571e-06
5.56055e-05
0.000128877
0.000107767
6.95024e-05
4.10511e-05
2.23948e-05
1.71993e-05
3.61562e-05
9.56852e-05
0.000198012
0.000296647
0.000365108
0.000403157
0.000409611
0.000380095
0.000316132
0.000232983
0.00015521
0.000100941
7.38389e-05
6.97122e-05
8.20809e-05
9.78804e-05
0.000106032
0.000107023
0.000106869
0.000111113
0.000123026
0.000141994
0.000160939
0.00016694
0.000128575
3.84058e-05
8.14252e-06
8.88117e-06
5.66261e-05
0.000133592
0.000107469
6.96466e-05
4.93383e-05
3.46273e-05
1.78266e-05
1.68858e-05
4.63667e-05
0.000128549
0.000252254
0.000355795
0.000413676
0.000423122
0.000398077
0.000335676
0.000256094
0.000179928
0.000122627
8.97011e-05
7.93275e-05
8.61573e-05
9.7759e-05
0.000102213
0.000101334
0.000102078
0.000108965
0.000123826
0.000144928
0.000164451
0.000168843
0.000123537
3.70063e-05
7.99198e-06
8.89654e-06
5.69525e-05
0.000131514
0.000101322
6.42391e-05
4.9156e-05
4.48543e-05
3.23156e-05
1.38336e-05
2.22037e-05
6.73347e-05
0.000173134
0.000301161
0.000387914
0.000413927
0.000400811
0.000348673
0.000277779
0.000205115
0.000144658
0.000104532
8.59329e-05
8.62235e-05
9.89718e-05
0.000111218
0.000114856
0.00011444
0.000117756
0.000129221
0.000147953
0.000165928
0.000169389
0.000125225
3.70009e-05
7.94917e-06
8.87117e-06
5.73464e-05
0.000131647
9.79421e-05
6.05894e-05
4.61197e-05
4.52741e-05
4.62874e-05
2.98314e-05
1.42722e-05
3.34826e-05
0.0001026
0.000223988
0.000334927
0.000391362
0.000392083
0.000353241
0.00029484
0.000233019
0.00017797
0.000135681
0.00010898
9.7338e-05
9.7043e-05
0.000102103
0.00010773
0.000113255
0.000121114
0.0001342
0.000152641
0.000170521
0.000175516
0.00013428
3.98968e-05
8.3029e-06
8.86015e-06
5.766e-05
0.000134276
9.54078e-05
6.00668e-05
4.8489e-05
4.83554e-05
4.88445e-05
3.92361e-05
2.03751e-05
1.9812e-05
5.79623e-05
0.000171967
0.000311074
0.000382989
0.00038155
0.00033627
0.000274214
0.000214161
0.000166123
0.000133533
0.000116264
0.000112205
0.000116343
0.000120812
0.000121812
0.000122867
0.000129013
0.000142564
0.000161352
0.000177447
0.000177788
0.000126349
3.7041e-05
7.93573e-06
8.94554e-06
5.84635e-05
0.000132843
8.4536e-05
5.22281e-05
4.57739e-05
5.22817e-05
6.0552e-05
5.48525e-05
3.14405e-05
1.47224e-05
2.88351e-05
9.29002e-05
0.000216186
0.00032918
0.000375369
0.000361426
0.000314209
0.000255881
0.000200413
0.000155818
0.00012588
0.000110916
0.000108728
0.000114885
0.000123452
0.000130975
0.000139108
0.000151141
0.000167082
0.000181189
0.000182335
0.00013766
4.04348e-05
8.31402e-06
8.93615e-06
5.98578e-05
0.000126204
7.13073e-05
4.58588e-05
4.46917e-05
5.51632e-05
6.51885e-05
5.96182e-05
3.71296e-05
1.93635e-05
2.19891e-05
6.4957e-05
0.000209761
0.000360152
0.000389318
0.000354102
0.000294393
0.000240306
0.000198326
0.000168538
0.000149096
0.000137218
0.000130172
0.000126599
0.000127017
0.000132551
0.000143724
0.00015979
0.000177616
0.000190647
0.000188213
0.000135197
3.97514e-05
8.2436e-06
8.82935e-06
5.86153e-05
0.000119702
6.22555e-05
4.1263e-05
4.49135e-05
6.23741e-05
7.69441e-05
6.87798e-05
4.10829e-05
1.96676e-05
1.77502e-05
4.43107e-05
0.000142058
0.000283297
0.000350828
0.000334533
0.000288338
0.000241174
0.000199758
0.000165789
0.000142048
0.000130727
0.000130959
0.000137866
0.000145133
0.000151163
0.000159247
0.000171771
0.000186644
0.000197155
0.000192417
0.000137375
3.98493e-05
8.17815e-06
8.70057e-06
5.82661e-05
0.000108583
5.13674e-05
3.4895e-05
4.10529e-05
6.10262e-05
7.75887e-05
6.66426e-05
3.7044e-05
1.91896e-05
2.12554e-05
5.5669e-05
0.000184296
0.000348562
0.000380222
0.000368573
0.000303514
0.000243084
0.000202817
0.000178839
0.000162222
0.000147025
0.000134773
0.000129983
0.000134119
0.000145103
0.000159797
0.000175909
0.000190901
0.000200025
0.000194327
0.000138963
4.06306e-05
8.36626e-06
8.62244e-06
5.56884e-05
0.000103599
4.71972e-05
3.19432e-05
4.0591e-05
6.48865e-05
8.64776e-05
8.63553e-05
5.85056e-05
2.68695e-05
1.69417e-05
3.40698e-05
0.000109833
0.000213974
0.000211476
0.000195125
0.00019443
0.000195063
0.000180512
0.000156523
0.000139824
0.000137014
0.000144032
0.000152115
0.000157363
0.000163428
0.000173796
0.000187691
0.000200894
0.000207231
0.000196964
0.000135275
3.98638e-05
8.13985e-06
8.59005e-06
5.34442e-05
9.72417e-05
4.09682e-05
2.43339e-05
3.04075e-05
5.60136e-05
8.54014e-05
9.18978e-05
7.41799e-05
4.49848e-05
2.33434e-05
2.10962e-05
4.64558e-05
0.000137576
0.000313046
0.000338064
0.000235258
0.00017179
0.000155845
0.000159994
0.000156186
0.000139608
0.000127006
0.000127362
0.000138786
0.000155178
0.000172606
0.000190098
0.000205488
0.000213628
0.000205335
0.000145135
4.16739e-05
8.34354e-06
8.63252e-06
4.97468e-05
0.000107077
5.31859e-05
2.55949e-05
2.39323e-05
4.01962e-05
7.35683e-05
0.000116674
0.000154298
0.000167501
0.000133272
6.666e-05
2.84687e-05
1.69426e-05
2.35027e-05
6.05181e-05
0.000159216
0.000207705
0.000157873
0.000122448
0.000118192
0.000131984
0.000144241
0.000147333
0.000151105
0.000161911
0.000177809
0.000194246
0.000207252
0.000211962
0.000198879
0.000132805
3.87136e-05
7.9819e-06
8.76012e-06
4.95693e-05
0.000108678
5.66496e-05
2.5043e-05
1.95506e-05
3.16741e-05
5.87763e-05
8.77768e-05
0.000106927
0.000118037
0.000129384
0.000142719
0.000135697
8.43124e-05
3.70592e-05
1.80593e-05
2.28298e-05
6.87066e-05
0.000176047
0.000183754
0.00013529
0.000111489
0.000113194
0.000127857
0.000143348
0.000158069
0.000175433
0.000193784
0.00020756
0.000211084
0.000196738
0.000134015
4.03418e-05
8.15455e-06
8.70556e-06
4.8953e-05
0.00011222
6.82642e-05
2.85074e-05
1.62687e-05
2.18254e-05
4.67101e-05
8.68923e-05
0.000126702
0.000154931
0.000169087
0.000171924
0.00016648
0.000148606
0.000109211
5.84319e-05
2.41509e-05
1.31974e-05
2.88533e-05
8.95774e-05
0.000155109
0.000141814
0.000122538
0.000124182
0.000142553
0.000165258
0.000184777
0.000200578
0.000211252
0.000212608
0.000196828
0.000132868
3.92589e-05
7.91336e-06
8.80152e-06
4.98003e-05
0.000118428
8.60561e-05
3.91825e-05
1.85529e-05
1.54559e-05
2.92649e-05
5.8752e-05
9.35748e-05
0.000124998
0.000152111
0.0001763
0.000196376
0.000206701
0.000196007
0.000152646
8.74812e-05
3.73722e-05
1.65952e-05
2.37075e-05
6.90296e-05
0.000129352
0.000129851
0.000118907
0.000123888
0.000143985
0.00016834
0.000188373
0.000201448
0.000204922
0.000190547
0.000124229
3.64523e-05
7.77427e-06
8.80936e-06
5.23714e-05
0.000120754
7.9898e-05
3.81953e-05
1.9473e-05
1.38931e-05
2.3739e-05
5.21011e-05
8.75933e-05
0.000119724
0.000148083
0.000175443
0.000202274
0.00022424
0.000230773
0.000207464
0.000150452
8.29796e-05
3.65662e-05
1.82472e-05
2.65998e-05
7.40576e-05
0.000140081
0.000141996
0.000132741
0.000140256
0.0001614
0.000183091
0.000196123
0.000197025
0.00017829
0.000111313
3.41579e-05
7.61314e-06
8.82669e-06
5.33997e-05
0.000125664
9.51649e-05
4.98298e-05
2.49713e-05
1.3867e-05
1.34196e-05
2.87945e-05
5.54515e-05
8.30861e-05
0.000110865
0.000142589
0.000180538
0.000222075
0.000256212
0.000263956
0.000228449
0.000157097
8.54476e-05
4.07901e-05
2.30015e-05
2.72255e-05
6.23409e-05
0.000123468
0.000141547
0.000144744
0.00015856
0.000179467
0.000194153
0.000195371
0.000178081
0.000116369
3.62627e-05
7.88685e-06
8.89042e-06
5.57767e-05
0.000128097
9.03382e-05
4.9133e-05
2.91547e-05
1.90448e-05
1.38841e-05
1.93303e-05
3.79686e-05
6.10544e-05
8.35441e-05
0.000109045
0.000141729
0.000183189
0.000230539
0.000271479
0.000283634
0.000247883
0.000173196
9.76807e-05
4.90881e-05
2.69355e-05
2.55768e-05
5.40231e-05
0.000115434
0.000142517
0.000149673
0.000160414
0.000175584
0.000185433
0.000177089
0.00011675
3.45269e-05
7.7328e-06
8.89134e-06
5.8145e-05
0.00013061
9.30954e-05
5.15117e-05
3.10817e-05
2.1906e-05
1.72076e-05
1.7791e-05
2.91644e-05
4.79998e-05
6.94615e-05
9.64301e-05
0.000134966
0.000188215
0.000253206
0.000316326
0.000353492
0.000341037
0.000274938
0.000180973
9.81202e-05
4.67976e-05
2.34015e-05
2.18529e-05
5.20398e-05
0.000120046
0.000152411
0.000163829
0.000174781
0.000182573
0.000174139
0.00011451
3.44163e-05
8.01617e-06
8.92699e-06
6.01241e-05
0.000132258
9.2208e-05
5.3323e-05
3.53286e-05
2.73746e-05
2.27492e-05
1.89071e-05
1.97557e-05
2.99258e-05
4.60217e-05
6.61166e-05
9.55137e-05
0.000141521
0.00020655
0.000282504
0.000347075
0.000372807
0.000345289
0.000271337
0.000176168
9.40621e-05
4.44097e-05
2.32808e-05
2.37967e-05
5.46805e-05
0.000123606
0.000161457
0.000173197
0.000176145
0.000167607
0.000119282
3.75085e-05
8.44882e-06
8.9587e-06
6.36456e-05
0.000130999
8.58732e-05
4.9912e-05
3.53069e-05
3.08091e-05
3.02029e-05
2.9287e-05
2.64178e-05
2.75362e-05
3.641e-05
5.17289e-05
7.50574e-05
0.000114154
0.000175266
0.000253069
0.000326089
0.000367362
0.000364752
0.000324119
0.000256631
0.000175191
0.000100534
5.16156e-05
2.96221e-05
2.94884e-05
5.58758e-05
0.000106882
0.000143733
0.000157322
0.000157597
0.000124806
4.07725e-05
8.91366e-06
8.9361e-06
6.57644e-05
0.000129062
8.3967e-05
5.08447e-05
3.84491e-05
3.58123e-05
3.66478e-05
3.68357e-05
3.25711e-05
2.62733e-05
2.62658e-05
3.49557e-05
5.1664e-05
8.04429e-05
0.000131945
0.000211191
0.000300062
0.000363819
0.000383473
0.000365259
0.00032078
0.000256252
0.000178602
0.000104471
5.29401e-05
2.95757e-05
3.06079e-05
5.5643e-05
9.96511e-05
0.000137412
0.000151048
0.000122602
3.87787e-05
8.90286e-06
8.91562e-06
6.86264e-05
0.000125928
8.04281e-05
4.9576e-05
3.95426e-05
4.08939e-05
4.70848e-05
5.13958e-05
4.87126e-05
3.85114e-05
2.7918e-05
2.62273e-05
3.48293e-05
5.36864e-05
8.95356e-05
0.000156801
0.000257111
0.000353588
0.000403733
0.00040805
0.00038136
0.000324647
0.000240633
0.000146283
7.08593e-05
3.19991e-05
2.42576e-05
4.40579e-05
8.8514e-05
0.000135135
0.00015781
0.000123581
3.62051e-05
8.73852e-06
8.81322e-06
6.89124e-05
0.000125512
8.52704e-05
5.43395e-05
4.28257e-05
4.37462e-05
5.23777e-05
6.19561e-05
6.44547e-05
5.61774e-05
3.99657e-05
2.61671e-05
2.36817e-05
3.2744e-05
5.38949e-05
9.71091e-05
0.000182441
0.000306088
0.00040196
0.000406303
0.000407726
0.000379534
0.000286354
0.000170762
7.96719e-05
3.34917e-05
1.99953e-05
3.35181e-05
8.46121e-05
0.000135979
0.000153958
0.00010751
3.26854e-05
8.37621e-06
8.73614e-06
6.88199e-05
0.00012761
9.2685e-05
6.08193e-05
4.6747e-05
4.55576e-05
5.37273e-05
6.70227e-05
7.7751e-05
7.86528e-05
6.62047e-05
4.39164e-05
2.52269e-05
1.97352e-05
2.72533e-05
4.72131e-05
8.86675e-05
0.00017199
0.000285519
0.0003634
0.000383006
0.000356135
0.00028957
0.00019305
0.00010039
4.46429e-05
2.3116e-05
2.64537e-05
6.84812e-05
0.000128421
0.000142253
0.000100218
3.21299e-05
8.4071e-06
8.61485e-06
6.68923e-05
0.00013193
0.000106185
7.37643e-05
5.44634e-05
4.78982e-05
5.12374e-05
6.23822e-05
7.69444e-05
8.78209e-05
8.86942e-05
7.50631e-05
4.9191e-05
2.65014e-05
1.73855e-05
2.19203e-05
3.85028e-05
7.31807e-05
0.000144048
0.000242502
0.000305122
0.000316422
0.000292726
0.000238067
0.000156062
7.907e-05
3.80734e-05
2.81531e-05
4.48598e-05
9.65327e-05
0.000138959
0.00010983
3.40177e-05
8.65786e-06
8.51574e-06
6.48979e-05
0.000136464
0.00011715
8.6693e-05
6.50913e-05
5.42623e-05
5.2473e-05
5.90022e-05
7.25273e-05
8.85827e-05
0.000100324
0.000101685
8.6777e-05
5.62649e-05
2.88471e-05
1.61672e-05
1.75171e-05
3.06216e-05
5.84751e-05
0.000116243
0.000202812
0.000257666
0.000260569
0.000231656
0.00018074
0.000114491
5.85179e-05
3.41299e-05
3.61342e-05
7.21462e-05
0.000133292
0.000108862
3.1717e-05
8.25461e-06
8.40491e-06
6.21355e-05
0.000138767
0.000122189
9.44999e-05
7.54146e-05
6.41561e-05
5.86151e-05
5.9767e-05
6.88903e-05
8.51083e-05
0.000103422
0.00011659
0.000118544
0.000102069
6.6056e-05
3.31832e-05
1.70809e-05
1.52129e-05
2.51016e-05
4.74259e-05
9.48059e-05
0.000176317
0.000231055
0.000217395
0.000164365
0.000106654
6.25938e-05
3.7956e-05
3.66137e-05
7.16203e-05
0.000141282
9.55259e-05
2.66192e-05
7.17991e-06
8.33897e-06
5.93282e-05
0.000137129
0.000116452
8.83413e-05
7.55793e-05
7.21712e-05
6.98696e-05
6.83287e-05
7.22224e-05
8.47962e-05
0.000105086
0.000126498
0.000140436
0.00014008
0.000117214
7.35517e-05
3.69116e-05
1.90071e-05
1.47108e-05
2.14467e-05
3.84306e-05
7.27244e-05
0.000133428
0.000169893
0.000128726
7.3711e-05
4.79175e-05
4.30166e-05
5.75369e-05
0.000110646
0.00015207
7.70257e-05
2.31712e-05
6.24024e-06
8.33242e-06
5.71608e-05
0.000131396
0.000104309
7.53684e-05
6.73235e-05
7.28002e-05
8.1e-05
8.42922e-05
8.55974e-05
9.25494e-05
0.000109373
0.000134158
0.00015857
0.000172846
0.000168669
0.00013591
8.2264e-05
4.20719e-05
2.28359e-05
1.62447e-05
1.9192e-05
3.03452e-05
5.1671e-05
8.71964e-05
0.000108884
7.66757e-05
4.55171e-05
4.00252e-05
6.45833e-05
0.000131021
0.000138811
6.45604e-05
2.10495e-05
5.68622e-06
8.41151e-06
5.76237e-05
0.000124735
9.13427e-05
6.35226e-05
5.83928e-05
6.87298e-05
8.64697e-05
0.000101299
0.000108519
0.000113833
0.000125407
0.000146376
0.000172529
0.000194013
0.000200515
0.000182838
0.000136541
8.19138e-05
4.59393e-05
2.81835e-05
2.02287e-05
1.89628e-05
2.39008e-05
3.44616e-05
5.01493e-05
6.40873e-05
6.23829e-05
5.9031e-05
8.02053e-05
0.000133656
0.000136338
6.18694e-05
1.99863e-05
5.51567e-06
8.53892e-06
6.16354e-05
0.000119366
8.28408e-05
5.80023e-05
5.50035e-05
6.76904e-05
9.02465e-05
0.000113232
0.000129049
0.00013858
0.000148407
0.000164484
0.000187811
0.000213267
0.00023115
0.000230043
0.000199475
0.000142077
8.64918e-05
5.31682e-05
3.68604e-05
2.79943e-05
2.25352e-05
2.14978e-05
2.50596e-05
3.23914e-05
4.47991e-05
6.91674e-05
0.000111721
0.00014505
0.000142091
7.04374e-05
2.23134e-05
6.03322e-06
8.64901e-06
6.8174e-05
0.00011784
8.14708e-05
5.83161e-05
5.5442e-05
6.7939e-05
9.14692e-05
0.000118265
0.000140667
0.000156431
0.000168274
0.0001804
0.000195031
0.000211073
0.000223866
0.000225641
0.000208274
0.00016979
0.000121279
8.10996e-05
5.73215e-05
4.55414e-05
3.81998e-05
3.06785e-05
2.44168e-05
2.21706e-05
2.45472e-05
3.44174e-05
6.4534e-05
0.000121004
0.000124408
7.76725e-05
2.76575e-05
6.98542e-06
8.68434e-06
7.47227e-05
0.000122835
8.92015e-05
6.49568e-05
5.91928e-05
6.84416e-05
8.93924e-05
0.000116133
0.000141944
0.000163415
0.000180492
0.000194365
0.000205943
0.00021532
0.000221611
0.000222584
0.000214335
0.000192127
0.000155329
0.000113493
8.07559e-05
6.24543e-05
5.47474e-05
5.13774e-05
4.67136e-05
3.86012e-05
3.05441e-05
2.71161e-05
3.18052e-05
5.19849e-05
9.98905e-05
0.000121243
4.1609e-05
8.36815e-06
8.63453e-06
7.90577e-05
0.000131932
0.000102537
7.60489e-05
6.53397e-05
6.94979e-05
8.65445e-05
0.000112587
0.000141551
0.000168746
0.000192374
0.000211905
0.000226635
0.000235764
0.000239007
0.000236519
0.000227223
0.000207243
0.000173014
0.000129858
9.27919e-05
7.16096e-05
6.3527e-05
6.20628e-05
6.22136e-05
6.18819e-05
5.94514e-05
5.04724e-05
3.55186e-05
2.78458e-05
3.69093e-05
7.85568e-05
6.0513e-05
9.70704e-06
8.54273e-06
8.25147e-05
0.000139847
0.000114317
8.87713e-05
7.53335e-05
7.51953e-05
8.81995e-05
0.000112755
0.000144461
0.000178253
0.000210812
0.00023985
0.000262943
0.000278052
0.000284595
0.000283703
0.000276712
0.000260112
0.000223466
0.000164923
0.000109808
8.09807e-05
7.3563e-05
7.61315e-05
7.75381e-05
7.02471e-05
5.50677e-05
3.69265e-05
2.38899e-05
2.2404e-05
4.08723e-05
0.000112153
4.80279e-05
9.4674e-06
8.40993e-06
8.62895e-05
0.000142905
0.000116578
9.52497e-05
8.56267e-05
8.59993e-05
9.71295e-05
0.000119948
0.000152642
0.00019157
0.000233651
0.00027554
0.000308619
0.000306542
0.000303935
0.000300903
0.000297591
0.000294192
0.000290949
0.000193677
0.000109344
7.47316e-05
6.66762e-05
6.52103e-05
5.72447e-05
4.61118e-05
3.8179e-05
3.06135e-05
2.73258e-05
3.85377e-05
8.99004e-05
0.00013233
3.10936e-05
7.84285e-06
8.23161e-06
8.82596e-05
0.000140834
0.000110655
9.37564e-05
9.15204e-05
9.73579e-05
0.000109809
0.000130814
0.000161086
0.000199332
0.000244218
0.00029164
0.000308432
0.000306092
0.000303198
0.000299827
0.000296109
0.000292238
0.000288482
0.000184015
9.76757e-05
7.07884e-05
6.72591e-05
6.11116e-05
4.37189e-05
3.13872e-05
3.06212e-05
3.53804e-05
4.2828e-05
7.121e-05
0.00014388
9.57106e-05
2.48347e-05
6.43512e-06
7.98891e-06
8.43695e-05
0.000131352
9.57401e-05
8.27171e-05
8.84499e-05
0.000103035
0.000120771
0.000141688
0.000167828
0.000199948
0.000237842
0.000279948
0.000309486
0.000307249
0.000304414
0.000301023
0.00029718
0.000293051
0.000288876
0.000182302
8.85977e-05
5.60334e-05
5.13907e-05
5.31143e-05
4.38736e-05
3.08771e-05
2.82269e-05
3.99707e-05
7.08769e-05
0.000121764
0.000159228
9.43903e-05
2.69106e-05
6.60584e-06
7.71495e-06
7.20929e-05
0.000116332
7.68979e-05
6.58721e-05
7.60954e-05
9.81793e-05
0.000123806
0.000148759
0.000173864
0.000201304
0.000232177
0.000266151
0.00029929
0.000308659
0.000306027
0.000302841
0.000299172
0.00029517
0.000291052
0.000193825
0.000104522
6.27234e-05
5.16255e-05
5.31947e-05
5.00935e-05
3.74442e-05
2.90531e-05
3.38301e-05
6.10295e-05
0.0001214
0.000155133
0.00010392
3.12794e-05
7.21026e-06
7.4874e-06
5.56562e-05
0.000100265
5.9104e-05
4.75256e-05
5.73693e-05
8.23561e-05
0.000116053
0.000150207
0.000180965
0.000209414
0.000238039
0.000268473
0.00029872
0.000311061
0.000308578
0.000305473
0.000301797
0.000297657
0.000293269
0.000212153
0.000113432
6.03098e-05
4.42688e-05
4.71465e-05
5.41207e-05
4.99683e-05
3.98814e-05
3.8872e-05
5.61803e-05
0.000104216
0.000154013
0.000126431
3.81395e-05
8.02097e-06
7.42019e-06
4.35244e-05
9.13856e-05
4.81638e-05
3.36831e-05
4.00788e-05
6.25945e-05
0.000100531
0.000146517
0.000190247
0.000227932
0.000261499
0.000293869
0.000315417
0.000314156
0.000312191
0.000309532
0.000306192
0.000302213
0.000297687
0.000283466
0.000175091
8.67497e-05
4.97764e-05
4.46081e-05
5.4423e-05
5.68603e-05
4.29846e-05
3.50343e-05
4.43952e-05
8.53072e-05
0.000150995
0.00013221
3.6688e-05
7.66401e-06
7.6288e-06
4.01249e-05
9.33448e-05
4.39131e-05
2.61512e-05
2.95674e-05
4.8454e-05
8.71964e-05
0.000145253
0.000208299
0.00026366
0.000308353
0.000316803
0.000317281
0.00031693
0.000315803
0.000313931
0.000311318
0.00030794
0.000303782
0.000253435
0.000171716
9.9676e-05
5.39343e-05
3.64372e-05
3.78876e-05
4.99137e-05
5.63573e-05
5.0564e-05
5.47911e-05
8.95082e-05
0.00015405
0.000124294
3.23139e-05
6.96981e-06
8.14319e-06
4.7329e-05
9.74722e-05
3.97227e-05
2.3711e-05
2.74291e-05
4.67823e-05
8.85132e-05
0.000153559
0.0002243
0.000283758
0.000314104
0.000316398
0.000317921
0.000318704
0.000318791
0.000318212
0.000316986
0.000291632
0.000248889
0.000211525
0.000181894
0.00015312
0.000111858
6.55724e-05
3.90313e-05
3.12729e-05
3.30018e-05
3.95921e-05
5.73759e-05
0.000105009
0.000162342
0.000122715
3.17698e-05
6.70508e-06
8.68615e-06
7.13449e-05
7.14175e-05
3.09847e-05
2.47768e-05
3.54414e-05
6.53301e-05
0.000115226
0.000166379
0.000204857
0.000232571
0.000253183
0.000267573
0.000275413
0.000276447
0.000270762
0.00025865
0.000240749
0.000218839
0.000196174
0.000176436
0.000160705
0.000145025
0.000122504
9.1021e-05
6.0138e-05
4.05945e-05
3.32318e-05
3.48284e-05
4.74063e-05
8.46335e-05
0.000149858
0.000139857
3.58787e-05
6.98879e-06
8.76947e-06
0.000107413
4.43215e-05
2.58679e-05
3.36241e-05
6.3968e-05
0.000110381
0.000146497
0.000168603
0.000183978
0.00019592
0.00020454
0.000209615
0.000211284
0.000209769
0.000204942
0.000196699
0.00018655
0.000178902
0.000178253
0.000181854
0.000169949
0.000136055
0.000108227
9.64871e-05
8.94279e-05
7.13103e-05
4.69841e-05
3.31083e-05
3.3632e-05
5.25565e-05
0.000106049
0.000151039
4.53144e-05
8.42364e-06
8.29236e-06
0.000108627
3.60174e-05
2.73108e-05
4.89439e-05
9.53934e-05
0.000136112
0.000165505
0.000189779
0.000210036
0.00022457
0.000232873
0.00023521
0.000231281
0.000221134
0.000207949
0.000194933
0.000179549
0.000149309
0.000106959
8.16825e-05
7.88365e-05
9.16231e-05
0.000109126
0.000113496
9.22702e-05
6.19696e-05
4.40012e-05
4.04601e-05
5.23617e-05
9.25139e-05
0.000163139
0.000144169
3.5006e-05
7.85164e-06
7.69196e-06
8.14088e-05
4.47096e-05
3.00444e-05
4.013e-05
6.91073e-05
0.000113153
0.000165333
0.000222959
0.000281018
0.00028271
0.000283403
0.000283279
0.000282673
0.000282063
0.000257345
0.000130546
7.05381e-05
6.00459e-05
7.50111e-05
9.97093e-05
0.000111518
0.000115664
0.000118906
0.00010477
7.41975e-05
5.25681e-05
4.79387e-05
5.97574e-05
9.37079e-05
0.000153582
0.000179367
7.90739e-05
2.19435e-05
5.54376e-06
7.37449e-06
5.36375e-05
6.84252e-05
3.19812e-05
2.47398e-05
3.54508e-05
6.89627e-05
0.000124315
0.000178269
0.000219196
0.00025148
0.000275517
0.000274828
0.000273192
0.000252595
0.000121608
6.01279e-05
4.6406e-05
5.8375e-05
9.70129e-05
0.000128487
0.000103928
7.59868e-05
6.77823e-05
7.50014e-05
8.63674e-05
9.43906e-05
0.000107228
0.000133743
0.000166756
0.000172902
0.00011507
4.65336e-05
1.61899e-05
2.62605e-06
7.4475e-06
4.75301e-05
9.27254e-05
4.39641e-05
2.11161e-05
1.98771e-05
3.66088e-05
8.16441e-05
0.000140418
0.000176511
0.000191872
0.000196481
0.000194699
0.00018958
0.000177649
0.000135191
7.40997e-05
4.35576e-05
3.89179e-05
5.21814e-05
8.51394e-05
0.000120649
0.000120024
9.97624e-05
8.49936e-05
8.11332e-05
8.81916e-05
0.000107596
0.000135309
0.000153577
0.000144386
9.75044e-05
4.4187e-05
1.64881e-05
2.33551e-06
7.8471e-06
6.24161e-05
8.79051e-05
4.66758e-05
2.4724e-05
1.90683e-05
3.00796e-05
7.07748e-05
0.00014387
0.000203756
0.000232777
0.00024067
0.000234781
0.000219311
0.000198966
0.000177474
0.000143924
8.88402e-05
5.05171e-05
3.85261e-05
4.11397e-05
5.22707e-05
6.90127e-05
9.15367e-05
0.000121967
0.000155343
0.000178765
0.000189507
0.000192353
0.000188277
0.000169517
0.000116689
5.05345e-05
1.78715e-05
2.1214e-06
8.08281e-06
9.7101e-05
4.71853e-05
3.02028e-05
2.81299e-05
3.0613e-05
4.78588e-05
9.67889e-05
0.000159348
0.000209971
0.000245792
0.000266305
0.000270598
0.000259757
0.000237282
0.000208283
0.000177704
0.0001468
0.000111369
7.47075e-05
5.12501e-05
4.21182e-05
4.17973e-05
4.71308e-05
5.76633e-05
7.47041e-05
0.000100764
0.00013627
0.00016682
0.000172713
0.00015395
0.000109014
5.58073e-05
2.37432e-05
2.84613e-06
7.79132e-06
8.13257e-05
2.73372e-05
2.50624e-05
4.57476e-05
7.30599e-05
9.1177e-05
0.000108912
0.000127462
0.000145662
0.000162606
0.000176759
0.000186559
0.000191007
0.000189861
0.000183623
0.000173217
0.000159751
0.000144282
0.000127014
0.000106426
8.35199e-05
6.45145e-05
5.3277e-05
4.94161e-05
5.1567e-05
5.89124e-05
7.15161e-05
8.99809e-05
0.000114444
0.000135198
0.000124276
8.92827e-05
4.36797e-05
5.3956e-06
7.28835e-06
8.21866e-05
3.04348e-05
3.07601e-05
5.83522e-05
8.9107e-05
0.000102395
0.000108192
0.000116344
0.000127524
0.00013903
0.000148699
0.000155525
0.000159143
0.000159536
0.000156949
0.000151826
0.000144779
0.000136644
0.000127804
0.000118209
0.000107878
9.68723e-05
8.59143e-05
7.65112e-05
7.055e-05
7.01858e-05
7.86547e-05
0.000101232
0.000142078
0.000178612
9.1304e-05
6.87366e-05
7.66746e-05
9.06826e-06
7.14899e-06
7.1192e-05
6.59203e-05
3.77375e-05
3.36777e-05
4.29184e-05
6.31213e-05
9.13924e-05
0.000121998
0.000150295
0.000172944
0.000188028
0.000195771
0.000197344
0.000193893
0.00018667
0.000177101
0.000166322
0.000153965
0.000139441
0.000126861
0.000124792
0.000142654
0.000186368
0.000238152
0.000228837
0.000149648
9.58441e-05
6.82304e-05
4.32093e-05
2.81268e-05
3.10719e-05
5.7508e-05
8.92403e-05
9.83136e-06
7.23217e-06
5.92899e-05
9.12798e-05
5.34974e-05
3.17735e-05
2.82997e-05
3.89031e-05
6.9035e-05
0.0001267
0.000203405
0.000253618
0.000259738
0.000265172
0.000269788
0.000273549
0.000276482
0.000272592
0.000245861
0.000226751
0.000220091
0.000205702
0.000133485
8.2903e-05
7.0029e-05
6.90343e-05
6.51375e-05
6.10818e-05
5.80505e-05
5.28351e-05
4.91261e-05
5.83223e-05
0.000100164
0.000131504
2.93329e-05
6.39546e-06
7.24825e-06
7.02209e-05
8.2576e-05
5.26704e-05
3.60345e-05
2.99879e-05
3.78402e-05
6.98701e-05
0.000139265
0.000226215
0.000249486
0.000255695
0.000261185
0.000265722
0.000269194
0.000271599
0.000273057
0.000273834
0.000274335
0.000117291
5.59501e-05
4.92369e-05
6.41406e-05
7.44644e-05
6.40834e-05
5.79339e-05
6.52901e-05
8.12118e-05
9.88728e-05
0.000125152
0.000169378
0.000152224
5.15777e-05
1.6082e-05
2.80383e-06
7.09523e-06
8.98964e-05
4.86363e-05
3.49778e-05
3.64445e-05
4.12564e-05
5.55755e-05
9.54626e-05
0.000159227
0.000221885
0.000247013
0.00025237
0.000257158
0.000261088
0.000263968
0.000265717
0.000266411
0.00020219
9.73126e-05
5.22321e-05
3.86041e-05
4.33272e-05
6.89671e-05
0.000107899
0.000108482
9.43824e-05
9.29242e-05
0.00010603
0.000128032
0.000150664
0.000150865
9.41605e-05
3.63271e-05
1.27719e-05
1.54282e-06
6.84477e-06
8.27629e-05
3.62483e-05
3.10236e-05
4.42815e-05
5.9454e-05
7.42875e-05
0.000100643
0.000137652
0.000174502
0.000207838
0.000237684
0.000258043
0.000261861
0.000264756
0.000243207
0.000201865
0.000150927
9.94797e-05
6.01515e-05
4.01439e-05
3.63837e-05
4.59028e-05
6.81511e-05
9.57658e-05
0.000118069
0.000135177
0.000149167
0.000159553
0.000163286
0.000151898
0.000106276
4.73844e-05
1.8794e-05
2.22902e-06
6.79142e-06
7.9019e-05
3.43885e-05
3.08153e-05
4.96098e-05
7.72091e-05
9.28643e-05
0.000103309
0.000117171
0.000133895
0.00014941
0.00016144
0.000169388
0.000173106
0.000172446
0.000167472
0.000158127
0.000143802
0.000123344
9.69895e-05
6.98852e-05
5.09736e-05
4.39025e-05
4.64017e-05
5.55438e-05
7.02146e-05
9.10381e-05
0.000115655
0.000135685
0.00014265
0.000127653
8.82276e-05
5.24869e-05
2.88701e-05
3.43045e-06
6.81984e-06
9.31844e-05
5.19704e-05
4.08475e-05
4.71542e-05
6.11339e-05
7.67364e-05
9.17695e-05
0.00010512
0.000116203
0.000124913
0.000131306
0.000135491
0.000137632
0.000137891
0.000136388
0.000133366
0.000128895
0.000122758
0.000114869
0.000105108
9.33943e-05
8.08875e-05
7.05737e-05
6.45743e-05
6.35645e-05
6.94282e-05
8.52278e-05
0.000109501
0.000127602
0.000133773
0.000146554
0.000131228
7.87261e-05
7.75182e-06
6.81061e-06
0.000103696
4.82445e-05
3.80684e-05
4.7926e-05
6.80203e-05
8.92428e-05
0.000105791
0.000116357
0.00012198
0.000124141
0.000124003
0.000122368
0.00011982
0.000116817
0.000113723
0.000110531
0.00010704
0.000103388
0.000100129
9.82823e-05
9.89174e-05
0.000101523
0.000104026
0.000108928
0.000130211
0.000191243
0.000276621
0.000273893
0.000165176
5.25055e-05
4.30103e-05
6.27088e-05
8.01782e-05
7.6223e-06
6.77174e-06
0.000108766
7.16739e-05
5.15679e-05
5.04836e-05
5.78049e-05
6.9546e-05
8.41153e-05
9.96228e-05
0.000113546
0.000123741
0.000129522
0.000131451
0.000130522
0.00012847
0.000129371
0.000140251
0.000166559
0.000199924
0.00021338
0.000194693
0.000155055
0.000123205
0.000112061
0.000110588
0.000101088
7.79278e-05
5.66401e-05
4.64223e-05
4.64948e-05
6.00123e-05
0.000103676
7.01024e-05
1.65084e-05
2.25793e-06
6.8049e-06
0.000111048
6.11773e-05
5.02321e-05
6.24376e-05
8.32109e-05
9.83463e-05
0.000108237
0.000119871
0.000135101
0.000150491
0.000161956
0.000167225
0.000162921
0.000144925
0.000116649
9.09599e-05
7.65568e-05
7.37747e-05
8.01469e-05
8.99111e-05
9.25601e-05
8.55269e-05
7.6437e-05
7.00205e-05
6.7183e-05
6.84157e-05
7.60583e-05
9.5772e-05
0.000133778
0.000110991
4.20737e-05
1.7604e-05
7.33303e-06
1.97661e-07
6.70002e-06
0.000105821
6.1602e-05
4.89335e-05
5.4407e-05
7.08315e-05
9.3129e-05
0.000117172
0.000142687
0.000172318
0.000205426
0.000226832
0.000214048
0.000158814
0.00010696
7.22705e-05
5.5128e-05
5.45648e-05
7.03771e-05
0.000100126
0.00011964
0.000111486
9.60054e-05
8.88974e-05
9.28788e-05
0.000106885
0.000130125
0.00016019
0.00017712
0.000123995
5.61451e-05
2.76419e-05
1.61103e-05
1.09936e-05
7.31986e-07
6.15078e-06
9.41058e-05
7.17857e-05
8.91296e-05
0.000116732
0.000133124
0.000146278
0.000154492
0.000148686
0.000129944
0.000106948
8.52605e-05
6.8299e-05
5.95305e-05
5.96408e-05
6.75889e-05
8.28453e-05
0.000104096
0.000124012
0.00013177
0.000126807
0.000118926
0.000115744
0.00011924
0.000127424
0.000134994
0.000134629
0.000117806
8.3221e-05
4.97293e-05
2.90159e-05
1.82123e-05
1.39274e-05
1.55488e-05
1.2949e-06
5.94238e-06
4.71762e-05
4.5792e-05
5.41697e-05
6.33634e-05
7.06805e-05
7.7538e-05
8.25716e-05
8.5799e-05
8.88686e-05
9.37827e-05
0.000100751
0.000109705
0.000120396
0.000130018
0.000136345
0.000139158
0.000138409
0.000134366
0.000128061
0.000120829
0.000113915
0.000107977
0.000103055
9.87584e-05
9.43512e-05
8.873e-05
7.99597e-05
6.5902e-05
4.78705e-05
3.12391e-05
2.12397e-05
2.1601e-05
5.09337e-05
2.82472e-06
4.60435e-06
2.98068e-05
3.09194e-05
3.52154e-05
3.88247e-05
4.20762e-05
4.53162e-05
4.85264e-05
5.1355e-05
5.327e-05
5.45846e-05
5.55505e-05
5.60218e-05
5.62352e-05
5.62538e-05
5.60747e-05
5.56757e-05
5.50334e-05
5.41739e-05
5.31638e-05
5.20996e-05
5.11022e-05
5.02912e-05
4.97547e-05
4.95082e-05
4.97614e-05
5.0719e-05
5.22079e-05
5.40752e-05
5.56521e-05
5.5096e-05
5.26906e-05
4.18096e-05
2.93664e-05
2.87685e-06
)
;
boundaryField
{
frontAndBack
{
type nutUWallFunction;
blending stepwise;
Cmu 0.09;
kappa 0.41;
E 9.8;
value nonuniform List<scalar>
1050
(
6.25193e-05
2.53395e-05
0
7.95627e-07
9.1031e-06
8.29322e-06
0
0
0
0
0
0
0
0
0
4.37305e-05
1.0727e-05
0
3.05027e-06
1.13364e-05
1.12319e-05
1.01402e-06
0
0
0
0
0
0
0
0
3.32931e-05
6.14054e-07
4.91502e-07
3.86568e-06
1.1648e-05
1.20386e-05
1.607e-06
0
0
0
0
0
0
0
0
2.69583e-05
1.63527e-06
1.30891e-06
4.0645e-06
1.15046e-05
1.22758e-05
1.75556e-06
0
0
0
0
0
0
0
0
2.37507e-05
3.38219e-06
1.95236e-06
3.84388e-06
1.12735e-05
1.22409e-05
1.67581e-06
0
0
0
0
0
0
0
0
2.29303e-05
4.49385e-06
2.3809e-06
3.38353e-06
1.1046e-05
1.20621e-05
1.45926e-06
0
0
0
0
0
0
0
0
2.09718e-05
4.94222e-06
2.71254e-06
2.79387e-06
1.07781e-05
1.17967e-05
1.15543e-06
0
0
0
0
0
0
0
0
1.81914e-05
5.19382e-06
2.98123e-06
2.13236e-06
1.04391e-05
1.1469e-05
7.99547e-07
0
0
0
0
0
0
0
0
1.45977e-05
5.57941e-06
3.22892e-06
1.41561e-06
1.00331e-05
1.10901e-05
4.06042e-07
0
0
0
0
0
0
0
0
1.14522e-05
6.06408e-06
3.50175e-06
7.09427e-07
9.59155e-06
1.06613e-05
4.12143e-08
0
0
0
0
0
0
0
0
8.90535e-06
6.49766e-06
3.8305e-06
2.56064e-07
9.16302e-06
1.01579e-05
0
0
0
0
0
0
0
0
0
7.84776e-06
6.88304e-06
4.21398e-06
3.24889e-07
8.77109e-06
9.52218e-06
0
0
0
0
0
0
0
0
0
7.15437e-06
7.20334e-06
4.64358e-06
9.06688e-07
8.37264e-06
8.78162e-06
0
0
0
0
0
0
0
0
0
7.42585e-06
7.4064e-06
5.12834e-06
1.66303e-06
7.92329e-06
7.85496e-06
0
0
0
0
0
0
0
0
0
7.43272e-06
7.51404e-06
5.67476e-06
2.36867e-06
7.25542e-06
6.72448e-06
0
0
0
0
0
0
0
0
0
7.71278e-06
7.55727e-06
6.32339e-06
2.92221e-06
6.16353e-06
5.39588e-06
0
0
0
0
0
0
0
0
0
7.91375e-06
7.54133e-06
7.13652e-06
3.26626e-06
4.61924e-06
3.98539e-06
0
0
0
0
0
0
0
0
0
8.31775e-06
7.45905e-06
8.19004e-06
3.34384e-06
2.85304e-06
2.93281e-06
0
0
0
0
0
0
0
0
3.87637e-08
8.58474e-06
7.3325e-06
9.4773e-06
3.07792e-06
1.2951e-06
2.34734e-06
0
0
0
0
0
0
0
0
1.16261e-07
8.71588e-06
7.17998e-06
1.08024e-05
2.38142e-06
2.94562e-07
1.87506e-06
0
0
0
0
0
0
0
0
1.47814e-07
8.84843e-06
7.01882e-06
1.17838e-05
1.23193e-06
0
1.29832e-06
0
0
0
0
0
0
0
0
1.3753e-07
8.87028e-06
6.82766e-06
1.18768e-05
0
0
7.60804e-07
0
0
0
0
0
0
0
0
7.34322e-08
8.94466e-06
6.54034e-06
1.02738e-05
0
0
2.82469e-07
0
0
0
0
0
0
0
0
0
8.79837e-06
6.13093e-06
6.96685e-06
0
0
0
0
0
0
0
0
0
0
0
0
8.75669e-06
5.71779e-06
3.57042e-06
0
0
0
0
0
0
0
0
0
0
0
0
8.378e-06
5.36262e-06
1.48986e-06
0
0
0
0
0
0
0
0
0
0
0
0
8.29828e-06
5.10444e-06
4.60846e-07
0
0
0
0
0
0
0
0
0
0
0
0
7.831e-06
5.01134e-06
0
0
0
0
0
0
0
0
0
0
0
0
0
7.62792e-06
4.85644e-06
0
0
0
0
0
0
0
0
0
0
0
0
0
7.35843e-06
5.32373e-06
0
0
0
0
0
0
0
0
0
0
0
0
0
7.79643e-06
5.4881e-06
0
0
0
0
0
0
0
0
0
0
0
0
0
8.1474e-06
5.6125e-06
1.6879e-06
0
0
0
0
0
0
0
0
0
0
0
0
1.03937e-05
1.05976e-05
4.52153e-06
0
0
0
0
0
0
0
0
0
0
0
0
1.54641e-05
1.60053e-05
1.11533e-05
0
0
0
0
0
0
0
0
0
0
0
0
8.66668e-06
1.7671e-05
1.17039e-05
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1.27537e-06
0
0
0
0
0
0
0
0
0
0
1.05505e-06
1.46545e-06
0
0
3.91824e-06
0
1.80835e-08
0
0
0
0
0
0
0
0
1.67572e-07
1.14009e-06
0
0
0
3.16449e-08
0
0
0
0
0
0
0
0
0
0
1.23764e-07
0
4.95226e-07
0
6.99758e-07
0
0
0
0
0
0
0
0
0
0
0
0
9.77358e-07
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1.28721e-06
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
)
;
}
topAndBottom
{
type nutUWallFunction;
blending stepwise;
Cmu 0.09;
kappa 0.41;
E 9.8;
value nonuniform List<scalar>
10500
(
0
2.60787e-06
1.53958e-05
6.91275e-07
8.95909e-07
0
1.2975e-05
2.71828e-05
2.17294e-05
9.03301e-06
3.59872e-06
0
7.23863e-06
1.95101e-05
1.73756e-05
2.02032e-05
2.65178e-05
1.94706e-05
1.90162e-05
2.08938e-05
2.09296e-05
2.14752e-05
2.24175e-05
2.22425e-05
2.30462e-05
2.32926e-05
2.36915e-05
2.43531e-05
2.45658e-05
2.48153e-05
2.49938e-05
2.48663e-05
2.51484e-05
2.61209e-05
2.82387e-05
3.08604e-05
3.23727e-05
3.18329e-05
3.00083e-05
2.86602e-05
2.79838e-05
2.77204e-05
2.8344e-05
3.03379e-05
3.28333e-05
3.40176e-05
3.28842e-05
3.15846e-05
3.25243e-05
3.54308e-05
3.71624e-05
3.4971e-05
3.06682e-05
2.79355e-05
2.66564e-05
2.56861e-05
2.62036e-05
3.01387e-05
3.6811e-05
4.04769e-05
3.67949e-05
3.13801e-05
2.93314e-05
2.80182e-05
2.55366e-05
2.60237e-05
3.00515e-05
3.01861e-05
2.76155e-05
2.90781e-05
3.00654e-05
3.03169e-05
3.30113e-05
3.37789e-05
3.22891e-05
2.99395e-05
2.71527e-05
2.6812e-05
2.90167e-05
3.14664e-05
3.16069e-05
3.00538e-05
2.87368e-05
2.88847e-05
2.9206e-05
2.9201e-05
2.90886e-05
2.95544e-05
3.01302e-05
3.04179e-05
3.0621e-05
3.02549e-05
2.96721e-05
2.88324e-05
2.91996e-05
2.92752e-05
2.96188e-05
3.03021e-05
3.0115e-05
3.0387e-05
3.03424e-05
3.01705e-05
3.02091e-05
2.98896e-05
2.95954e-05
2.88754e-05
2.81055e-05
2.72977e-05
2.67525e-05
2.65733e-05
2.68234e-05
2.74218e-05
2.81726e-05
2.86472e-05
2.85e-05
2.76426e-05
2.65111e-05
2.55479e-05
2.48605e-05
2.4259e-05
2.38134e-05
2.36731e-05
2.39021e-05
2.45429e-05
2.57986e-05
2.7865e-05
3.00048e-05
3.04043e-05
2.84402e-05
2.61983e-05
2.50335e-05
2.50902e-05
2.63311e-05
2.68815e-05
2.42856e-05
2.03429e-05
1.90604e-05
2.03857e-05
2.18526e-05
2.16459e-05
1.96053e-05
1.68821e-05
1.52571e-05
1.39627e-05
1.45145e-05
1.56219e-05
1.77105e-05
1.53439e-05
1.33709e-05
0
0
9.75437e-06
1.78774e-05
3.39498e-06
1.24406e-05
1.04954e-05
2.36878e-05
3.13713e-05
2.05194e-05
9.93804e-06
1.19648e-05
4.99972e-06
2.12928e-05
2.89307e-05
2.55119e-05
3.05162e-05
3.12949e-05
2.60519e-05
2.73376e-05
2.703e-05
2.79579e-05
2.7375e-05
2.829e-05
2.85621e-05
3.02102e-05
3.1985e-05
3.33907e-05
3.4475e-05
3.45616e-05
3.49292e-05
3.56255e-05
3.62952e-05
3.72981e-05
3.82303e-05
3.95365e-05
4.06588e-05
4.07806e-05
3.9547e-05
3.80619e-05
3.74612e-05
3.72145e-05
3.71176e-05
3.79034e-05
3.95987e-05
4.11092e-05
4.21471e-05
4.27949e-05
4.38491e-05
4.51076e-05
4.56367e-05
4.45663e-05
4.23753e-05
4.03403e-05
3.86817e-05
3.6883e-05
3.67219e-05
3.85959e-05
4.14979e-05
4.46196e-05
4.49305e-05
4.08255e-05
3.81864e-05
4.05099e-05
3.93761e-05
3.52624e-05
3.61503e-05
4.00346e-05
3.94956e-05
3.70761e-05
3.87133e-05
3.92277e-05
3.89496e-05
4.06108e-05
3.9572e-05
3.79316e-05
3.67149e-05
3.60604e-05
3.73276e-05
3.85002e-05
3.95417e-05
3.93472e-05
3.78447e-05
3.68117e-05
3.68812e-05
3.70609e-05
3.69866e-05
3.6869e-05
3.72302e-05
3.75746e-05
3.78916e-05
3.80586e-05
3.78616e-05
3.75282e-05
3.72527e-05
3.7729e-05
3.80107e-05
3.83526e-05
3.87087e-05
3.84121e-05
3.83897e-05
3.8025e-05
3.75794e-05
3.71788e-05
3.6514e-05
3.58322e-05
3.4926e-05
3.40562e-05
3.33447e-05
3.29642e-05
3.30499e-05
3.36029e-05
3.44595e-05
3.51933e-05
3.52082e-05
3.43458e-05
3.28357e-05
3.13065e-05
3.00245e-05
2.89998e-05
2.81684e-05
2.77935e-05
2.82198e-05
2.96229e-05
3.18513e-05
3.42275e-05
3.57973e-05
3.56867e-05
3.37753e-05
3.12458e-05
3.01481e-05
3.07947e-05
3.18412e-05
3.16961e-05
2.96344e-05
2.58206e-05
2.2189e-05
2.23785e-05
2.47078e-05
2.53823e-05
2.36377e-05
2.10329e-05
1.77774e-05
1.6269e-05
1.46613e-05
1.56675e-05
1.65754e-05
1.86487e-05
1.49274e-05
1.30562e-05
0
0
1.29625e-05
1.66104e-05
5.38068e-06
1.67999e-05
1.54373e-05
2.73772e-05
2.92603e-05
1.65062e-05
1.0823e-05
1.55083e-05
1.3044e-05
2.74149e-05
3.03886e-05
2.80269e-05
3.30501e-05
3.13087e-05
2.72074e-05
2.88395e-05
2.78739e-05
2.90153e-05
2.81789e-05
2.8887e-05
2.93213e-05
3.11365e-05
3.33712e-05
3.52242e-05
3.64926e-05
3.6687e-05
3.71322e-05
3.79963e-05
3.90226e-05
4.03302e-05
4.11499e-05
4.18871e-05
4.22747e-05
4.18826e-05
4.04712e-05
3.92139e-05
3.89635e-05
3.88622e-05
3.87785e-05
3.95434e-05
4.1032e-05
4.20494e-05
4.28199e-05
4.38026e-05
4.57167e-05
4.72977e-05
4.67779e-05
4.46e-05
4.26046e-05
4.18892e-05
4.11289e-05
3.91456e-05
3.92244e-05
4.16526e-05
4.38063e-05
4.49446e-05
4.34295e-05
3.80401e-05
3.76872e-05
4.27369e-05
4.16876e-05
3.73273e-05
3.85675e-05
4.20393e-05
4.12689e-05
3.89605e-05
4.04138e-05
4.06926e-05
4.00533e-05
4.11277e-05
3.92219e-05
3.73132e-05
3.67361e-05
3.74628e-05
3.96425e-05
4.01495e-05
4.03475e-05
4.00916e-05
3.86583e-05
3.78512e-05
3.78877e-05
3.79651e-05
3.7836e-05
3.76756e-05
3.79417e-05
3.80733e-05
3.83307e-05
3.83333e-05
3.82068e-05
3.79024e-05
3.80841e-05
3.86374e-05
3.90042e-05
3.95294e-05
3.96019e-05
3.94195e-05
3.92544e-05
3.87936e-05
3.8289e-05
3.77031e-05
3.69462e-05
3.61376e-05
3.52234e-05
3.44031e-05
3.38119e-05
3.35428e-05
3.36981e-05
3.42741e-05
3.51137e-05
3.57501e-05
3.5573e-05
3.45081e-05
3.29034e-05
3.13771e-05
3.00788e-05
2.89421e-05
2.80015e-05
2.75729e-05
2.80639e-05
2.97164e-05
3.23638e-05
3.50291e-05
3.62949e-05
3.51532e-05
3.19854e-05
2.88516e-05
2.85844e-05
3.05086e-05
3.23081e-05
3.15293e-05
2.7819e-05
2.22428e-05
1.89644e-05
2.17406e-05
2.46707e-05
2.47643e-05
2.19031e-05
1.85451e-05
1.49139e-05
1.44615e-05
1.26643e-05
1.44141e-05
1.4853e-05
1.69188e-05
1.27825e-05
1.11809e-05
0
1.18317e-06
1.42325e-05
1.30093e-05
7.21734e-06
1.8371e-05
1.72707e-05
2.79492e-05
2.55919e-05
1.54531e-05
1.12213e-05
1.66292e-05
1.85397e-05
2.98544e-05
3.03077e-05
2.90097e-05
3.33502e-05
3.05386e-05
2.73264e-05
2.9035e-05
2.76442e-05
2.89292e-05
2.79046e-05
2.83805e-05
2.88288e-05
3.06048e-05
3.31268e-05
3.53157e-05
3.68064e-05
3.72135e-05
3.76964e-05
3.85722e-05
3.97156e-05
4.11324e-05
4.18304e-05
4.21977e-05
4.21721e-05
4.14728e-05
3.99888e-05
3.90128e-05
3.90503e-05
3.901e-05
3.88687e-05
3.94947e-05
4.06947e-05
4.11502e-05
4.13922e-05
4.24937e-05
4.51976e-05
4.69128e-05
4.53997e-05
4.21219e-05
4.07817e-05
4.19518e-05
4.19074e-05
3.97151e-05
3.9729e-05
4.21719e-05
4.35961e-05
4.26895e-05
3.787e-05
3.15328e-05
3.49304e-05
4.27077e-05
4.18215e-05
3.804e-05
3.92167e-05
4.21361e-05
4.16315e-05
3.93146e-05
4.03593e-05
4.05132e-05
3.9395e-05
3.9563e-05
3.60326e-05
3.33521e-05
3.4275e-05
3.71421e-05
4.00662e-05
3.99384e-05
3.94029e-05
3.9055e-05
3.77827e-05
3.73121e-05
3.72436e-05
3.7187e-05
3.69871e-05
3.67455e-05
3.67936e-05
3.65571e-05
3.65764e-05
3.61646e-05
3.60175e-05
3.56422e-05
3.67382e-05
3.74065e-05
3.80644e-05
3.88974e-05
3.86716e-05
3.87482e-05
3.839e-05
3.79069e-05
3.73301e-05
3.6539e-05
3.56934e-05
3.47544e-05
3.39363e-05
3.32781e-05
3.29463e-05
3.28431e-05
3.30516e-05
3.35501e-05
3.4234e-05
3.4636e-05
3.41967e-05
3.29804e-05
3.14713e-05
3.01653e-05
2.89912e-05
2.77771e-05
2.66859e-05
2.60518e-05
2.63555e-05
2.79423e-05
3.07415e-05
3.34871e-05
3.41279e-05
3.10596e-05
2.53385e-05
2.14738e-05
2.31723e-05
2.74532e-05
3.07954e-05
2.93105e-05
2.28754e-05
1.47225e-05
1.24066e-05
1.86556e-05
2.31305e-05
2.25917e-05
1.78739e-05
1.36485e-05
9.53645e-06
1.07802e-05
8.43591e-06
1.15969e-05
1.1222e-05
1.36323e-05
1.07625e-05
9.46776e-06
2.46983e-06
2.55741e-06
1.41151e-05
7.18469e-06
8.44492e-06
1.87337e-05
1.77635e-05
2.70986e-05
2.20612e-05
1.45081e-05
1.00024e-05
1.70462e-05
2.19946e-05
3.04119e-05
2.98053e-05
2.92468e-05
3.27501e-05
2.92241e-05
2.6848e-05
2.8624e-05
2.67295e-05
2.81682e-05
2.68556e-05
2.68566e-05
2.71455e-05
2.86502e-05
3.1614e-05
3.4363e-05
3.63009e-05
3.71011e-05
3.76164e-05
3.84053e-05
3.95458e-05
4.10089e-05
4.15819e-05
4.15665e-05
4.10542e-05
3.99323e-05
3.84064e-05
3.79493e-05
3.84008e-05
3.84024e-05
3.81213e-05
3.83934e-05
3.89494e-05
3.81412e-05
3.70196e-05
3.78485e-05
4.16233e-05
4.35786e-05
4.04732e-05
3.61439e-05
3.65688e-05
4.06499e-05
4.18318e-05
3.96152e-05
3.92954e-05
4.14069e-05
4.18379e-05
3.83241e-05
3.18308e-05
2.7293e-05
3.06392e-05
3.90204e-05
4.02039e-05
3.83034e-05
3.92095e-05
4.11497e-05
4.12939e-05
3.89742e-05
3.92074e-05
3.92194e-05
3.70932e-05
3.54456e-05
3.01863e-05
2.68568e-05
2.87927e-05
3.44649e-05
3.92204e-05
3.85059e-05
3.65165e-05
3.5756e-05
3.50445e-05
3.53777e-05
3.50119e-05
3.46474e-05
3.42573e-05
3.38262e-05
3.32586e-05
3.22472e-05
3.16684e-05
3.03398e-05
2.99087e-05
2.88318e-05
3.16689e-05
3.27231e-05
3.43985e-05
3.62031e-05
3.54584e-05
3.62851e-05
3.5539e-05
3.5111e-05
3.4433e-05
3.32738e-05
3.23616e-05
3.12473e-05
3.07771e-05
3.05172e-05
3.07792e-05
3.10263e-05
3.134e-05
3.15977e-05
3.18386e-05
3.16731e-05
3.07846e-05
2.94776e-05
2.83635e-05
2.76109e-05
2.68115e-05
2.56148e-05
2.43539e-05
2.33333e-05
2.3039e-05
2.3813e-05
2.58119e-05
2.7851e-05
2.75922e-05
2.34319e-05
1.81733e-05
1.61297e-05
1.78801e-05
2.10966e-05
2.52702e-05
2.46036e-05
1.73507e-05
1.02129e-05
8.90634e-06
1.39808e-05
1.89814e-05
1.89288e-05
1.37411e-05
1.02265e-05
6.11402e-06
7.348e-06
4.78675e-06
8.42055e-06
7.97629e-06
1.01641e-05
9.1543e-06
8.03158e-06
4.78803e-06
3.57734e-06
1.32724e-05
1.51071e-06
8.33984e-06
1.81224e-05
1.76538e-05
2.54386e-05
1.88043e-05
1.24147e-05
8.81238e-06
1.70771e-05
2.40654e-05
2.99755e-05
2.90505e-05
2.88786e-05
3.14587e-05
2.72731e-05
2.57312e-05
2.77e-05
2.51065e-05
2.66874e-05
2.50175e-05
2.42367e-05
2.41713e-05
2.50137e-05
2.83822e-05
3.20054e-05
3.48739e-05
3.64386e-05
3.7048e-05
3.76382e-05
3.86304e-05
4.00872e-05
4.05158e-05
3.99471e-05
3.86509e-05
3.69264e-05
3.55308e-05
3.59145e-05
3.70168e-05
3.71189e-05
3.6635e-05
3.62667e-05
3.58876e-05
3.37286e-05
3.14069e-05
3.08991e-05
3.29603e-05
3.40432e-05
3.12499e-05
2.83761e-05
3.03299e-05
3.65743e-05
4.03712e-05
3.90302e-05
3.80889e-05
3.932e-05
3.89219e-05
3.38687e-05
2.78228e-05
2.47257e-05
2.5703e-05
3.1357e-05
3.51638e-05
3.77266e-05
3.8933e-05
3.88798e-05
4.00587e-05
3.80864e-05
3.67618e-05
3.66872e-05
3.35931e-05
3.01561e-05
2.54339e-05
2.24116e-05
2.27422e-05
2.77959e-05
3.46658e-05
3.52223e-05
3.10747e-05
2.93323e-05
2.9653e-05
3.16522e-05
3.1074e-05
3.02475e-05
2.95078e-05
2.90846e-05
2.79072e-05
2.65053e-05
2.57041e-05
2.37405e-05
2.317e-05
2.03822e-05
2.31397e-05
2.42065e-05
2.62639e-05
2.98246e-05
2.8982e-05
3.09885e-05
3.01877e-05
2.98357e-05
2.93703e-05
2.79135e-05
2.72016e-05
2.60224e-05
2.59742e-05
2.61614e-05
2.71533e-05
2.79701e-05
2.85615e-05
2.85366e-05
2.81401e-05
2.72089e-05
2.58907e-05
2.45957e-05
2.39438e-05
2.38087e-05
2.36033e-05
2.27057e-05
2.15043e-05
2.02756e-05
1.94399e-05
1.91635e-05
1.96558e-05
2.01828e-05
1.92334e-05
1.6026e-05
1.36907e-05
1.36142e-05
1.44924e-05
1.49604e-05
1.65039e-05
1.61409e-05
1.13629e-05
7.6677e-06
7.05635e-06
9.72781e-06
1.3028e-05
1.35606e-05
9.87733e-06
7.83452e-06
4.32802e-06
4.80589e-06
2.40556e-06
5.68392e-06
5.74128e-06
7.33955e-06
7.54567e-06
6.87139e-06
6.90887e-06
4.40906e-06
1.21458e-05
7.94316e-08
6.6188e-06
1.64068e-05
1.72204e-05
2.3137e-05
1.54465e-05
9.55172e-06
7.83926e-06
1.69819e-05
2.5127e-05
2.89449e-05
2.80129e-05
2.78887e-05
2.94522e-05
2.44183e-05
2.3879e-05
2.63745e-05
2.29079e-05
2.45428e-05
2.27306e-05
2.12738e-05
2.08636e-05
2.08656e-05
2.3868e-05
2.78936e-05
3.20159e-05
3.49711e-05
3.59867e-05
3.63021e-05
3.68952e-05
3.81798e-05
3.84586e-05
3.71848e-05
3.49229e-05
3.2716e-05
3.16635e-05
3.27684e-05
3.471e-05
3.51663e-05
3.46434e-05
3.36364e-05
3.25315e-05
2.9873e-05
2.72768e-05
2.58304e-05
2.54395e-05
2.45496e-05
2.23792e-05
2.15781e-05
2.36902e-05
2.94724e-05
3.5797e-05
3.75826e-05
3.64657e-05
3.59989e-05
3.52346e-05
3.0362e-05
2.52571e-05
2.26853e-05
2.16396e-05
2.36837e-05
2.77274e-05
3.45985e-05
3.86172e-05
3.54303e-05
3.71424e-05
3.67237e-05
3.32972e-05
3.29338e-05
3.01617e-05
2.55101e-05
2.21404e-05
1.98958e-05
1.83856e-05
1.98657e-05
2.39329e-05
2.58929e-05
2.28478e-05
2.08637e-05
2.16076e-05
2.59134e-05
2.63507e-05
2.55208e-05
2.43439e-05
2.41525e-05
2.29703e-05
2.17358e-05
2.13701e-05
1.92052e-05
1.88515e-05
1.51039e-05
1.61603e-05
1.68497e-05
1.76066e-05
2.13152e-05
2.06878e-05
2.33658e-05
2.3564e-05
2.33062e-05
2.34632e-05
2.21643e-05
2.19289e-05
2.10038e-05
2.11163e-05
2.13974e-05
2.2632e-05
2.39029e-05
2.49482e-05
2.49671e-05
2.42197e-05
2.27809e-05
2.12652e-05
1.99951e-05
1.95219e-05
1.96171e-05
1.9846e-05
1.944e-05
1.8592e-05
1.74867e-05
1.64548e-05
1.55106e-05
1.47896e-05
1.39387e-05
1.26365e-05
1.10857e-05
1.12001e-05
1.20424e-05
1.24218e-05
1.12099e-05
9.74207e-06
8.04502e-06
5.79683e-06
5.45702e-06
5.56284e-06
6.60523e-06
7.74251e-06
8.11236e-06
6.2404e-06
5.61454e-06
2.95957e-06
2.86172e-06
7.98982e-07
3.48293e-06
4.01453e-06
5.13964e-06
5.89199e-06
5.97906e-06
8.77071e-06
5.16561e-06
1.09355e-05
2.28165e-06
4.17918e-06
1.39307e-05
1.64561e-05
2.02427e-05
1.16834e-05
7.038e-06
6.41384e-06
1.63075e-05
2.54749e-05
2.74855e-05
2.65793e-05
2.62472e-05
2.67542e-05
2.03753e-05
2.12383e-05
2.47598e-05
2.05244e-05
2.20849e-05
2.04276e-05
1.87536e-05
1.80657e-05
1.74542e-05
1.94983e-05
2.28388e-05
2.74879e-05
3.20333e-05
3.41931e-05
3.44634e-05
3.443e-05
3.51338e-05
3.52708e-05
3.35878e-05
3.08536e-05
2.86584e-05
2.78101e-05
2.8842e-05
3.13394e-05
3.24652e-05
3.23292e-05
3.10807e-05
2.95756e-05
2.70163e-05
2.44935e-05
2.27063e-05
2.1102e-05
1.93029e-05
1.77778e-05
1.76124e-05
1.86153e-05
2.19704e-05
2.81346e-05
3.35773e-05
3.46635e-05
3.24151e-05
3.06717e-05
2.72326e-05
2.32504e-05
2.08109e-05
1.85523e-05
1.77332e-05
1.99792e-05
2.87537e-05
3.77127e-05
3.2228e-05
3.2063e-05
3.44612e-05
2.98868e-05
2.83205e-05
2.70275e-05
2.21634e-05
1.95152e-05
1.80436e-05
1.5667e-05
1.46527e-05
1.44781e-05
1.44776e-05
1.21832e-05
1.17613e-05
1.23102e-05
1.74058e-05
2.05623e-05
2.12669e-05
2.01061e-05
1.98934e-05
1.92238e-05
1.81974e-05
1.84385e-05
1.62485e-05
1.61024e-05
1.21157e-05
1.18244e-05
1.21271e-05
1.20003e-05
1.4871e-05
1.42187e-05
1.6298e-05
1.72984e-05
1.74776e-05
1.82476e-05
1.74661e-05
1.7711e-05
1.726e-05
1.74276e-05
1.75101e-05
1.83851e-05
1.95652e-05
2.08597e-05
2.12395e-05
2.06443e-05
1.91447e-05
1.76719e-05
1.64505e-05
1.59692e-05
1.59956e-05
1.63307e-05
1.62909e-05
1.58574e-05
1.50535e-05
1.40845e-05
1.28863e-05
1.15385e-05
9.91783e-06
8.54018e-06
8.17672e-06
9.50278e-06
1.07903e-05
1.10486e-05
9.22039e-06
6.29047e-06
3.72278e-06
2.80078e-06
3.5027e-06
3.99985e-06
4.42294e-06
4.27243e-06
4.51659e-06
3.84369e-06
3.77827e-06
1.62558e-06
1.27541e-06
0
1.74914e-06
2.46295e-06
3.32531e-06
4.25308e-06
5.39138e-06
1.03834e-05
5.8942e-06
9.72933e-06
3.79744e-06
1.87113e-06
1.10681e-05
1.52234e-05
1.68466e-05
7.77864e-06
5.65631e-06
4.9059e-06
1.49474e-05
2.52336e-05
2.56719e-05
2.45095e-05
2.40154e-05
2.3785e-05
1.52981e-05
1.78664e-05
2.27468e-05
1.82549e-05
1.97476e-05
1.82775e-05
1.67892e-05
1.58834e-05
1.49343e-05
1.60725e-05
1.81297e-05
2.21201e-05
2.73303e-05
3.10385e-05
3.20774e-05
3.16964e-05
3.14624e-05
3.12788e-05
2.97441e-05
2.73649e-05
2.56104e-05
2.47066e-05
2.49802e-05
2.72736e-05
2.89654e-05
2.95473e-05
2.86781e-05
2.703e-05
2.47393e-05
2.23222e-05
2.04187e-05
1.83955e-05
1.62702e-05
1.49737e-05
1.48084e-05
1.49648e-05
1.61502e-05
2.0216e-05
2.66875e-05
3.15397e-05
2.97092e-05
2.61167e-05
2.37465e-05
2.12641e-05
1.89485e-05
1.60303e-05
1.33602e-05
1.28092e-05
2.08732e-05
3.50085e-05
3.03713e-05
2.62091e-05
3.05083e-05
2.69324e-05
2.38027e-05
2.37186e-05
1.96722e-05
1.72588e-05
1.62922e-05
1.37348e-05
1.16921e-05
9.36689e-06
8.19507e-06
6.60176e-06
6.63796e-06
5.7398e-06
7.4382e-06
1.09866e-05
1.54429e-05
1.62192e-05
1.60091e-05
1.6087e-05
1.51471e-05
1.59073e-05
1.36607e-05
1.39358e-05
9.91514e-06
9.17098e-06
8.76196e-06
8.49907e-06
1.065e-05
1.01097e-05
1.14626e-05
1.25203e-05
1.29455e-05
1.42219e-05
1.40011e-05
1.4653e-05
1.46073e-05
1.4881e-05
1.47806e-05
1.51321e-05
1.58083e-05
1.68616e-05
1.74685e-05
1.73139e-05
1.61321e-05
1.48802e-05
1.37694e-05
1.32671e-05
1.3196e-05
1.35022e-05
1.36384e-05
1.34788e-05
1.29442e-05
1.21277e-05
1.09137e-05
9.35126e-06
7.45703e-06
6.1162e-06
6.28898e-06
8.12176e-06
9.70211e-06
1.00523e-05
8.07204e-06
4.6349e-06
1.72286e-06
1.09921e-06
1.773e-06
2.37125e-06
2.80623e-06
2.27979e-06
2.59401e-06
2.44798e-06
2.43844e-06
3.59002e-07
0
0
3.85785e-07
1.01802e-06
1.72371e-06
2.63478e-06
5.21097e-06
1.16935e-05
6.60077e-06
8.58552e-06
3.82993e-06
2.03696e-07
7.94829e-06
1.33953e-05
1.32783e-05
5.0658e-06
5.13455e-06
3.3303e-06
1.28501e-05
2.43857e-05
2.35006e-05
2.12364e-05
2.12201e-05
2.11077e-05
1.0258e-05
1.40673e-05
1.99403e-05
1.60043e-05
1.76772e-05
1.63039e-05
1.51545e-05
1.41569e-05
1.30178e-05
1.35636e-05
1.44275e-05
1.71147e-05
2.17343e-05
2.62727e-05
2.87076e-05
2.89681e-05
2.81128e-05
2.73938e-05
2.61847e-05
2.45741e-05
2.34157e-05
2.23776e-05
2.17673e-05
2.32677e-05
2.49849e-05
2.60589e-05
2.60874e-05
2.46151e-05
2.25945e-05
2.03059e-05
1.8325e-05
1.62243e-05
1.39735e-05
1.26923e-05
1.23538e-05
1.19964e-05
1.18565e-05
1.37009e-05
1.88768e-05
2.59021e-05
2.73463e-05
2.29643e-05
2.03285e-05
1.90135e-05
1.69659e-05
1.36963e-05
9.90412e-06
6.72337e-06
1.16449e-05
2.9283e-05
2.91284e-05
2.09439e-05
2.55586e-05
2.37269e-05
1.98948e-05
2.0216e-05
1.74166e-05
1.5229e-05
1.44865e-05
1.20805e-05
9.71162e-06
6.67029e-06
5.09755e-06
3.91526e-06
3.99165e-06
2.65157e-06
1.94583e-06
1.50371e-06
4.08792e-06
9.29789e-06
1.09852e-05
1.24539e-05
1.14682e-05
1.27711e-05
1.01286e-05
1.15382e-05
7.6955e-06
7.47343e-06
5.84627e-06
5.91311e-06
7.47108e-06
7.03879e-06
7.91138e-06
8.93443e-06
9.24074e-06
1.08826e-05
1.11171e-05
1.2248e-05
1.25604e-05
1.30051e-05
1.28651e-05
1.28349e-05
1.29926e-05
1.35289e-05
1.39712e-05
1.41125e-05
1.34184e-05
1.25144e-05
1.15925e-05
1.11228e-05
1.10282e-05
1.13283e-05
1.1559e-05
1.15348e-05
1.11497e-05
1.04568e-05
9.31452e-06
7.74269e-06
5.82851e-06
4.54071e-06
4.8701e-06
6.90712e-06
8.72916e-06
9.27736e-06
7.32003e-06
3.74334e-06
6.0951e-07
0
2.06573e-07
7.69409e-07
1.50654e-06
1.11767e-06
1.48811e-06
1.49097e-06
1.40499e-06
0
0
0
0
0
2.49924e-07
1.01043e-06
5.5612e-06
1.27151e-05
7.27556e-06
7.55273e-06
2.76744e-06
0
4.7343e-06
1.0943e-05
1.02062e-05
3.73026e-06
4.85854e-06
1.60448e-06
1.00543e-05
2.2755e-05
2.08777e-05
1.58915e-05
1.75776e-05
1.84646e-05
6.72634e-06
1.04249e-05
1.60157e-05
1.33434e-05
1.56347e-05
1.44691e-05
1.36037e-05
1.27071e-05
1.14645e-05
1.16697e-05
1.17232e-05
1.31411e-05
1.64934e-05
2.07565e-05
2.40917e-05
2.58291e-05
2.53683e-05
2.42927e-05
2.32875e-05
2.23216e-05
2.17087e-05
2.05852e-05
1.92581e-05
1.98539e-05
2.11328e-05
2.20331e-05
2.28848e-05
2.19843e-05
2.02429e-05
1.81802e-05
1.61355e-05
1.40843e-05
1.18037e-05
1.04637e-05
9.91468e-06
9.23499e-06
8.39561e-06
8.68844e-06
1.17248e-05
1.83917e-05
2.35282e-05
2.08723e-05
1.76131e-05
1.65176e-05
1.46918e-05
1.12309e-05
6.69187e-06
1.68403e-06
2.50161e-06
1.81286e-05
2.39283e-05
1.55315e-05
2.03452e-05
2.03567e-05
1.63556e-05
1.67015e-05
1.51167e-05
1.32994e-05
1.26266e-05
1.04915e-05
8.07032e-06
4.91015e-06
3.19905e-06
2.19083e-06
2.19828e-06
8.28394e-07
0
0
0
0
1.43966e-07
5.82374e-06
5.07495e-06
7.2945e-06
3.48757e-06
7.46074e-06
4.72997e-06
6.29574e-06
2.99878e-06
3.65691e-06
4.6609e-06
4.24086e-06
4.69546e-06
5.71366e-06
5.71422e-06
7.57736e-06
8.09034e-06
9.79986e-06
1.06331e-05
1.13811e-05
1.13792e-05
1.11669e-05
1.09823e-05
1.10513e-05
1.11308e-05
1.12236e-05
1.08875e-05
1.03568e-05
9.68187e-06
9.30683e-06
9.26556e-06
9.62324e-06
9.94426e-06
9.98685e-06
9.65128e-06
9.01641e-06
7.94654e-06
6.44362e-06
4.6146e-06
3.37706e-06
3.68716e-06
5.80623e-06
7.83397e-06
8.5907e-06
6.77412e-06
3.23724e-06
0
0
0
0
3.88149e-07
3.25752e-07
6.92341e-07
7.09684e-07
5.36741e-07
0
0
0
0
0
0
0
6.46339e-06
1.35056e-05
7.90751e-06
6.67511e-06
1.46992e-06
0
1.80425e-06
7.9855e-06
8.15421e-06
2.44665e-06
4.37365e-06
0
7.05481e-06
2.01849e-05
1.79788e-05
8.88701e-06
1.27223e-05
1.45994e-05
4.90307e-06
7.38988e-06
1.13448e-05
9.90561e-06
1.30865e-05
1.26177e-05
1.19229e-05
1.13503e-05
1.01489e-05
1.01324e-05
9.73394e-06
1.02263e-05
1.23089e-05
1.56558e-05
1.88713e-05
2.17469e-05
2.2714e-05
2.18937e-05
2.1056e-05
2.04693e-05
2.02625e-05
1.91254e-05
1.72665e-05
1.71437e-05
1.78722e-05
1.80666e-05
1.90719e-05
1.89074e-05
1.74936e-05
1.57887e-05
1.37807e-05
1.17928e-05
9.53998e-06
8.11665e-06
7.35913e-06
6.44864e-06
5.25802e-06
4.67649e-06
5.9109e-06
1.04577e-05
1.69558e-05
1.82799e-05
1.52325e-05
1.37597e-05
1.18814e-05
8.28547e-06
3.21818e-06
0
0
5.18142e-06
9.98271e-06
4.2693e-06
1.29309e-05
1.71798e-05
1.34392e-05
1.31812e-05
1.27227e-05
1.13827e-05
1.07252e-05
8.89136e-06
6.51054e-06
3.46939e-06
1.714e-06
7.85528e-07
7.01524e-07
0
0
0
0
0
0
0
0
0
0
0
0
5.20993e-06
2.39243e-07
1.45391e-06
1.94427e-06
1.43008e-06
1.42945e-06
2.34427e-06
1.9396e-06
3.86233e-06
4.4894e-06
6.68651e-06
8.28341e-06
9.607e-06
1.00106e-05
9.82669e-06
9.49214e-06
9.26395e-06
9.0378e-06
8.90477e-06
8.65351e-06
8.37092e-06
7.92783e-06
7.68907e-06
7.75845e-06
8.23229e-06
8.66668e-06
8.75588e-06
8.40916e-06
7.77617e-06
6.74736e-06
5.32556e-06
3.62042e-06
2.41523e-06
2.63829e-06
4.78886e-06
6.98615e-06
7.91109e-06
6.32424e-06
2.96427e-06
0
0
0
0
0
0
4.08145e-08
0
0
0
0
0
0
0
0
0
7.78176e-06
1.40414e-05
8.48673e-06
5.95485e-06
5.84236e-07
0
0
4.82607e-06
6.97711e-06
3.10154e-06
3.65464e-06
0
4.5308e-06
1.68114e-05
1.52805e-05
3.14258e-06
7.53664e-06
9.09988e-06
3.65916e-06
5.03913e-06
6.87168e-06
6.05182e-06
9.56896e-06
1.04262e-05
9.90038e-06
9.83943e-06
8.99527e-06
8.7996e-06
8.18361e-06
8.09697e-06
9.22852e-06
1.15996e-05
1.4034e-05
1.69575e-05
1.94274e-05
1.96833e-05
1.92207e-05
1.88904e-05
1.89638e-05
1.78695e-05
1.55991e-05
1.50002e-05
1.5313e-05
1.46793e-05
1.51921e-05
1.55703e-05
1.44798e-05
1.313e-05
1.13505e-05
9.4123e-06
7.20017e-06
5.66901e-06
4.70548e-06
3.58591e-06
2.19498e-06
1.16953e-06
1.32373e-06
3.59991e-06
8.38232e-06
1.25739e-05
1.19844e-05
1.02076e-05
8.09838e-06
4.44286e-06
0
0
0
0
0
0
0
1.13368e-05
1.12117e-05
9.93977e-06
1.01412e-05
9.39996e-06
8.7467e-06
7.24022e-06
4.92273e-06
2.09811e-06
3.4874e-07
0
0
0
0
0
0
0
0
0
0
0
0
0
0
3.40624e-06
0
0
0
0
0
0
0
0
7.24212e-08
2.53739e-06
4.95419e-06
7.15424e-06
8.40429e-06
8.55584e-06
8.27525e-06
7.91316e-06
7.51703e-06
7.18879e-06
6.85132e-06
6.62725e-06
6.31112e-06
6.20454e-06
6.4193e-06
7.05269e-06
7.62747e-06
7.76808e-06
7.37979e-06
6.70842e-06
5.68965e-06
4.33487e-06
2.74073e-06
1.53359e-06
1.66841e-06
3.83104e-06
6.16067e-06
7.2091e-06
5.86802e-06
2.82017e-06
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
9.34584e-06
1.43306e-05
9.00581e-06
5.36597e-06
0
0
0
1.87796e-06
6.13031e-06
5.17366e-06
2.85866e-06
0
2.83345e-06
1.30487e-05
1.2917e-05
5.85879e-07
3.54325e-06
3.3723e-06
2.29487e-06
3.21338e-06
3.25716e-06
2.63363e-06
5.60259e-06
7.62689e-06
7.38998e-06
7.79521e-06
7.88725e-06
7.59773e-06
6.88354e-06
6.46668e-06
6.98723e-06
8.61254e-06
1.01587e-05
1.22582e-05
1.5317e-05
1.70292e-05
1.74099e-05
1.74398e-05
1.77397e-05
1.67288e-05
1.4124e-05
1.32319e-05
1.33287e-05
1.20089e-05
1.17645e-05
1.24368e-05
1.16071e-05
1.04127e-05
8.98356e-06
7.12865e-06
4.92527e-06
3.25818e-06
2.0889e-06
7.3864e-07
0
0
0
0
4.09727e-07
3.26372e-06
5.06188e-06
4.57789e-06
2.69586e-06
0
0
0
0
0
0
0
0
0
7.2913e-06
6.91824e-06
7.11533e-06
7.12257e-06
6.5392e-06
5.44929e-06
3.22412e-06
6.64152e-07
0
0
0
0
0
0
0
0
0
0
8.51802e-08
8.57615e-08
2.91756e-06
0
9.19591e-07
0
0
0
0
0
0
0
0
0
0
0
2.55806e-07
3.43474e-06
6.01759e-06
7.02329e-06
7.10907e-06
6.78944e-06
6.34247e-06
5.92111e-06
5.46849e-06
5.18406e-06
4.85268e-06
4.82085e-06
5.19171e-06
6.0117e-06
6.74148e-06
6.92908e-06
6.50808e-06
5.78197e-06
4.7547e-06
3.44611e-06
1.9066e-06
6.72076e-07
7.39995e-07
2.91409e-06
5.33076e-06
6.43359e-06
5.28914e-06
2.69558e-06
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1.09589e-05
1.43953e-05
9.45837e-06
4.88384e-06
0
0
0
0
4.93702e-06
5.64445e-06
2.05253e-06
0
1.79516e-06
9.48954e-06
1.06195e-05
0
1.10167e-06
0
7.444e-07
1.70456e-06
5.89265e-07
3.9938e-08
2.1995e-06
4.67431e-06
4.60944e-06
4.82729e-06
6.56364e-06
6.47075e-06
5.72106e-06
5.13035e-06
5.30035e-06
6.44952e-06
7.28947e-06
8.28106e-06
1.09296e-05
1.35623e-05
1.51547e-05
1.5911e-05
1.65059e-05
1.56187e-05
1.27607e-05
1.16783e-05
1.17368e-05
9.92504e-06
8.94209e-06
9.77965e-06
9.14621e-06
7.88706e-06
6.76301e-06
5.04913e-06
2.7746e-06
9.67002e-07
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1.41341e-06
5.70875e-07
0
0
0
2.00143e-06
2.66281e-06
3.86345e-06
3.64525e-06
3.24903e-06
1.24711e-06
0
0
0
0
0
0
0
0
0
0
0
1.73647e-06
2.17374e-06
4.42324e-06
1.83911e-06
4.34609e-06
0
0
0
0
0
0
0
0
0
0
0
0
0
2.20607e-06
4.68779e-06
5.67937e-06
5.70082e-06
5.3305e-06
4.92007e-06
4.38853e-06
4.02206e-06
3.56169e-06
3.5171e-06
4.03206e-06
5.05209e-06
5.92415e-06
6.15965e-06
5.71543e-06
4.94091e-06
3.90251e-06
2.61314e-06
1.0857e-06
0
0
2.02401e-06
4.46473e-06
5.52459e-06
4.43258e-06
2.43037e-06
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1.22027e-06
1.24912e-05
1.42458e-05
9.84027e-06
4.48938e-06
0
0
0
0
2.53974e-06
5.79182e-06
1.24374e-06
0
1.04316e-06
6.85133e-06
8.06619e-06
0
0
0
0
3.65371e-07
0
0
0
2.20807e-06
2.12695e-06
1.19981e-06
4.54487e-06
5.28104e-06
4.62498e-06
3.95505e-06
3.96451e-06
4.86553e-06
5.1939e-06
5.20366e-06
6.9474e-06
9.62062e-06
1.2073e-05
1.39732e-05
1.51205e-05
1.4426e-05
1.14483e-05
1.02227e-05
1.03858e-05
8.23414e-06
6.62616e-06
7.60216e-06
7.1048e-06
5.64479e-06
4.6925e-06
3.13808e-06
6.37543e-07
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
7.68172e-07
3.45919e-06
2.63794e-06
1.06261e-06
2.28684e-06
5.81396e-07
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
5.24688e-07
3.05062e-06
3.64048e-06
5.57316e-06
3.62995e-06
5.50551e-06
5.82327e-07
0
0
0
0
0
0
0
0
0
0
0
0
0
9.12028e-07
3.43771e-06
4.35845e-06
4.30354e-06
4.03138e-06
3.47811e-06
3.06741e-06
2.4192e-06
2.27356e-06
2.90381e-06
4.13024e-06
5.12643e-06
5.42355e-06
4.95174e-06
4.12852e-06
3.07954e-06
1.79711e-06
2.65363e-07
0
0
1.15062e-06
3.52716e-06
4.40175e-06
2.88805e-06
1.7605e-06
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
5.58647e-06
1.38923e-05
1.39118e-05
1.01481e-05
4.16661e-06
0
0
0
2.03962e-06
0
5.88326e-06
4.92279e-07
0
2.83437e-07
5.79658e-06
5.09873e-06
0
0
0
0
0
0
0
0
2.61436e-07
0
0
1.52354e-06
3.6879e-06
3.50677e-06
2.84736e-06
2.84775e-06
3.67693e-06
3.62001e-06
2.8784e-06
3.70292e-06
5.90682e-06
8.4138e-06
1.12857e-05
1.33558e-05
1.29773e-05
1.01001e-05
8.78141e-06
9.16461e-06
6.77379e-06
4.64579e-06
5.79784e-06
5.37774e-06
3.63408e-06
2.73079e-06
1.28887e-06
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
2.53978e-06
5.07239e-06
4.41718e-06
3.10366e-06
4.48845e-06
5.26435e-06
3.14261e-06
1.40015e-06
0
0
0
0
0
0
0
0
0
0
0
0
0
4.31797e-07
1.9197e-06
4.42094e-06
5.05186e-06
6.74204e-06
5.75294e-06
6.25267e-06
6.85319e-06
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
2.22737e-06
2.97954e-06
3.08466e-06
2.60419e-06
2.22468e-06
1.3779e-06
1.06628e-06
1.7771e-06
3.21493e-06
4.33248e-06
4.69855e-06
4.20321e-06
3.31833e-06
2.25536e-06
9.86447e-07
0
0
0
2.85646e-07
2.4789e-06
2.72577e-06
0
1.59476e-07
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
9.49107e-06
1.51329e-05
1.34209e-05
1.03775e-05
3.90044e-06
0
0
0
4.17316e-06
0
5.79948e-06
0
0
0
6.26545e-06
1.9644e-06
0
0
0
0
0
0
0
0
0
0
0
0
1.15856e-06
2.16384e-06
1.71442e-06
1.85324e-06
2.68446e-06
2.3978e-06
1.06087e-06
1.15924e-06
2.87248e-06
4.91956e-06
8.06095e-06
1.10617e-05
1.10836e-05
8.54466e-06
7.28947e-06
7.98417e-06
5.42123e-06
2.84097e-06
4.25851e-06
3.84909e-06
1.75232e-06
8.4595e-07
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1.12529e-07
1.11997e-06
1.26304e-06
1.53112e-06
4.19569e-06
6.51588e-06
6.08764e-06
5.06299e-06
6.19374e-06
7.57941e-06
7.2615e-06
7.18815e-06
4.9602e-06
2.48576e-06
0
0
0
0
0
0
0
0
0
0
1.7038e-07
2.26477e-06
3.45248e-06
6.02457e-06
6.6377e-06
8.10547e-06
8.0384e-06
7.40067e-06
9.44374e-06
7.21875e-06
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
8.49704e-07
1.78805e-06
1.58824e-06
1.37057e-06
3.57288e-07
0
6.23412e-07
2.28847e-06
3.51891e-06
3.95392e-06
3.45036e-06
2.49802e-06
1.41786e-06
1.67367e-07
0
0
0
0
1.28963e-06
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1.26649e-05
1.62195e-05
1.28108e-05
1.05293e-05
3.67859e-06
0
0
0
4.48745e-06
3.39196e-06
5.39137e-06
0
0
0
7.316e-06
0
0
0
0
0
0
0
0
0
0
0
0
0
0
2.14051e-07
4.11395e-07
8.9727e-07
1.7653e-06
1.37164e-06
0
0
5.6413e-07
2.1086e-06
5.05461e-06
8.63011e-06
8.85706e-06
6.49686e-06
5.67872e-06
6.77249e-06
4.07054e-06
1.08103e-06
2.90699e-06
2.39852e-06
0
0
0
0
0
0
0
0
0
0
0
0
3.97823e-07
8.94127e-07
9.70137e-07
1.13109e-06
1.79034e-06
2.66479e-06
2.9362e-06
3.38862e-06
5.74845e-06
7.90289e-06
7.7238e-06
7.00304e-06
7.88577e-06
9.2538e-06
9.60414e-06
9.84346e-06
8.98959e-06
8.15917e-06
6.42162e-06
4.26561e-06
1.06354e-06
0
0
0
0
0
0
9.59972e-07
2.29935e-06
4.55375e-06
5.27161e-06
7.9756e-06
8.51289e-06
9.84132e-06
1.02993e-05
9.4694e-06
1.07851e-05
1.29599e-05
7.34089e-06
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1.27146e-07
3.08261e-07
0
0
0
1.33462e-06
2.65923e-06
3.14906e-06
2.66388e-06
1.64987e-06
5.51483e-07
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
3.64933e-07
5.35183e-06
1.52532e-05
1.7185e-05
1.21166e-05
1.0593e-05
3.49172e-06
0
0
0
2.95382e-06
5.26044e-06
4.79367e-06
0
0
0
7.80164e-06
1.0099e-06
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
8.86716e-07
4.33129e-07
0
0
0
3.59431e-08
2.74456e-06
6.70093e-06
6.92481e-06
3.7679e-06
3.84835e-06
5.46867e-06
2.60528e-06
0
1.70521e-06
9.3393e-07
0
0
0
0
1.0259e-06
0
0
0
0
0
0
3.1134e-07
1.82161e-06
2.40314e-06
2.5394e-06
2.71384e-06
3.31283e-06
4.12898e-06
4.51908e-06
5.10575e-06
7.23482e-06
9.2777e-06
9.3477e-06
8.93115e-06
9.68837e-06
1.08588e-05
1.14457e-05
1.17012e-05
1.13694e-05
1.10187e-05
1.06306e-05
1.01337e-05
9.00544e-06
6.96107e-06
5.05807e-06
2.78877e-06
2.70484e-06
1.96782e-06
3.08965e-06
4.13024e-06
4.96961e-06
7.44426e-06
7.52915e-06
1.0334e-05
1.07531e-05
1.20084e-05
1.26261e-05
1.2226e-05
1.25886e-05
1.48614e-05
1.56354e-05
7.60848e-06
3.60857e-06
0
0
0
0
0
2.09796e-07
2.39547e-07
5.7547e-07
1.58183e-06
2.21439e-06
3.09088e-07
0
0
0
0
0
0
0
0
2.95385e-07
1.72812e-06
2.23248e-06
1.79744e-06
7.47385e-07
0
0
0
0
0
0
0
0
2.01021e-06
3.89542e-06
0
0
0
0
0
0
0
0
0
0
0
0
0
4.20739e-06
9.22058e-06
1.74669e-05
1.80592e-05
1.13746e-05
1.05765e-05
3.34242e-06
0
0
0
8.12696e-07
5.91961e-06
4.21546e-06
0
0
0
7.03234e-06
3.93981e-06
1.71269e-06
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
2.14566e-08
0
0
0
0
0
1.08943e-06
5.38877e-06
5.66219e-06
7.63148e-07
1.68808e-06
4.0396e-06
8.82165e-07
0
6.58409e-07
0
0
0
0
1.89153e-06
3.79191e-06
4.14195e-06
1.54097e-06
0
0
0
1.16436e-07
1.74718e-06
3.16016e-06
3.82268e-06
4.00075e-06
4.2039e-06
4.77879e-06
5.56824e-06
6.05485e-06
6.74289e-06
8.68869e-06
1.06557e-05
1.09593e-05
1.08387e-05
1.15933e-05
1.25844e-05
1.32292e-05
1.34445e-05
1.33127e-05
1.31286e-05
1.31787e-05
1.32428e-05
1.32717e-05
1.25431e-05
1.17682e-05
9.59607e-06
9.14615e-06
7.58872e-06
7.90277e-06
8.3368e-06
8.3019e-06
1.09724e-05
1.03675e-05
1.30919e-05
1.34271e-05
1.45221e-05
1.52738e-05
1.49869e-05
1.55102e-05
1.62548e-05
1.96819e-05
1.68768e-05
1.25039e-05
5.89075e-06
1.96015e-06
5.02359e-07
5.82956e-07
1.3783e-06
1.63541e-06
1.60342e-06
1.874e-06
3.09918e-06
4.53078e-06
4.8772e-06
1.94925e-06
0
0
0
0
0
0
0
0
5.30308e-07
9.46655e-07
5.85711e-07
0
0
0
0
0
0
0
0
7.17074e-07
5.00486e-06
9.2941e-06
4.68754e-06
0
0
0
0
0
0
0
0
0
0
1.04361e-06
0
7.54403e-06
1.19522e-05
1.95333e-05
1.88572e-05
1.06203e-05
1.04572e-05
3.25022e-06
0
0
0
0
5.38814e-06
3.70534e-06
0
0
0
5.06029e-06
6.74641e-06
4.7622e-06
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
4.45241e-06
4.87545e-06
0
0
2.54007e-06
0
0
0
0
0
0
0
3.6842e-06
5.53627e-06
7.07507e-06
5.97985e-06
3.23622e-06
1.6397e-06
1.24935e-06
1.83761e-06
3.18399e-06
4.46302e-06
5.17626e-06
5.40937e-06
5.66136e-06
6.23678e-06
7.01657e-06
7.57847e-06
8.34135e-06
1.0136e-05
1.20442e-05
1.25565e-05
1.27113e-05
1.35496e-05
1.44634e-05
1.51137e-05
1.531e-05
1.52429e-05
1.51275e-05
1.53035e-05
1.55181e-05
1.59453e-05
1.58183e-05
1.59043e-05
1.46452e-05
1.46191e-05
1.32564e-05
1.31048e-05
1.32971e-05
1.22553e-05
1.49321e-05
1.38279e-05
1.61472e-05
1.65516e-05
1.72466e-05
1.83603e-05
1.76069e-05
1.91493e-05
1.84813e-05
2.1503e-05
2.21017e-05
2.16747e-05
1.44555e-05
7.33889e-06
3.91875e-06
2.84253e-06
3.10272e-06
3.10931e-06
2.93242e-06
3.09566e-06
4.35602e-06
6.08143e-06
7.38806e-06
6.89441e-06
3.72463e-06
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
3.99729e-06
7.71582e-06
1.25585e-05
1.06223e-05
3.44732e-06
0
0
0
0
0
6.80991e-06
4.89374e-06
1.23444e-06
0
2.87028e-06
3.00442e-07
1.03283e-05
1.43517e-05
2.15859e-05
1.95579e-05
9.88784e-06
1.02457e-05
3.22883e-06
0
0
0
0
4.59981e-06
3.39594e-06
0
0
0
2.98552e-06
7.96988e-06
6.0878e-06
3.33508e-06
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
3.70026e-06
4.24969e-06
0
0
1.10166e-06
0
0
0
0
0
0
2.11118e-06
5.23727e-06
6.86556e-06
8.76862e-06
9.61741e-06
7.25062e-06
4.67752e-06
3.51073e-06
3.63084e-06
4.66085e-06
5.77407e-06
6.49078e-06
6.80005e-06
7.12432e-06
7.72162e-06
8.50364e-06
9.12311e-06
9.93578e-06
1.15996e-05
1.34529e-05
1.41453e-05
1.45428e-05
1.55043e-05
1.6451e-05
1.71276e-05
1.73586e-05
1.73188e-05
1.72441e-05
1.74387e-05
1.76868e-05
1.8192e-05
1.8307e-05
1.86879e-05
1.80898e-05
1.8403e-05
1.77075e-05
1.75202e-05
1.8053e-05
1.64653e-05
1.88654e-05
1.77043e-05
1.93353e-05
1.99688e-05
2.01396e-05
2.16292e-05
2.04211e-05
2.252e-05
2.18403e-05
2.35163e-05
2.44723e-05
2.68578e-05
2.34374e-05
1.51269e-05
9.36943e-06
6.22315e-06
5.27676e-06
4.76392e-06
4.32721e-06
4.3049e-06
5.56474e-06
7.38771e-06
9.05636e-06
9.62636e-06
9.12963e-06
5.20409e-06
1.46018e-06
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
3.21541e-06
7.35192e-06
1.15598e-05
1.50707e-05
1.56321e-05
8.51105e-06
2.89672e-07
0
1.31511e-07
0
4.68796e-06
1.34677e-05
1.22299e-05
6.54276e-06
6.79824e-07
4.64331e-06
1.62639e-06
1.28847e-05
1.68627e-05
2.35926e-05
2.00982e-05
9.20739e-06
9.92938e-06
3.29924e-06
4.36734e-07
0
0
0
4.17187e-06
3.31087e-06
0
0
0
1.54579e-06
7.25568e-06
5.52438e-06
5.56078e-06
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
2.98835e-06
3.24778e-06
0
0
0
0
0
0
0
0
0
4.24447e-06
6.7669e-06
8.10348e-06
9.96184e-06
1.20623e-05
1.11988e-05
8.18872e-06
6.09144e-06
5.57051e-06
6.21832e-06
7.14627e-06
7.82589e-06
8.2202e-06
8.63411e-06
9.27257e-06
1.00657e-05
1.07268e-05
1.15632e-05
1.31053e-05
1.48991e-05
1.57425e-05
1.63433e-05
1.74269e-05
1.84763e-05
1.92283e-05
1.9556e-05
1.95675e-05
1.95492e-05
1.97307e-05
2.00181e-05
2.04716e-05
2.07249e-05
2.11114e-05
2.08855e-05
2.12996e-05
2.10874e-05
2.09735e-05
2.18792e-05
2.04334e-05
2.2373e-05
2.15581e-05
2.25155e-05
2.3331e-05
2.32161e-05
2.46753e-05
2.36143e-05
2.53698e-05
2.55831e-05
2.63047e-05
2.67943e-05
2.90227e-05
2.94551e-05
2.42209e-05
1.77613e-05
1.18258e-05
8.43234e-06
6.83682e-06
5.98127e-06
5.68635e-06
6.89753e-06
8.6712e-06
1.05169e-05
1.13334e-05
1.25084e-05
1.11781e-05
7.40793e-06
2.32658e-06
0
0
0
0
0
0
0
0
0
0
0
0
0
0
6.41653e-06
1.0461e-05
1.66261e-05
1.77701e-05
1.95358e-05
1.38874e-05
4.11472e-06
3.22967e-07
1.39104e-06
1.50992e-06
8.94994e-06
1.67907e-05
1.75066e-05
1.21441e-05
3.62527e-06
6.32e-06
3.57926e-06
1.55101e-05
1.95635e-05
2.5417e-05
2.03864e-05
8.59998e-06
9.47575e-06
3.49059e-06
1.87721e-06
0
1.0936e-07
1.20904e-07
4.1261e-06
3.41961e-06
0
0
0
6.91962e-07
5.93175e-06
4.08787e-06
5.4702e-06
1.75482e-06
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
2.10851e-06
4.75606e-07
0
0
0
0
0
0
4.74168e-07
0
1.05899e-06
6.57251e-06
8.4646e-06
9.44724e-06
1.10731e-05
1.36383e-05
1.45627e-05
1.2019e-05
9.10776e-06
7.75307e-06
7.90473e-06
8.60807e-06
9.24455e-06
9.7191e-06
1.02385e-05
1.09387e-05
1.17507e-05
1.24375e-05
1.32694e-05
1.46874e-05
1.64101e-05
1.73756e-05
1.81386e-05
1.93175e-05
2.04828e-05
2.1346e-05
2.18177e-05
2.1925e-05
2.20183e-05
2.21893e-05
2.25823e-05
2.29396e-05
2.33418e-05
2.36334e-05
2.35925e-05
2.40154e-05
2.39753e-05
2.39868e-05
2.49233e-05
2.39561e-05
2.54303e-05
2.50239e-05
2.56149e-05
2.63544e-05
2.63701e-05
2.73666e-05
2.68984e-05
2.80074e-05
2.88678e-05
2.94673e-05
2.96827e-05
3.10911e-05
3.20183e-05
3.10223e-05
2.81183e-05
2.0655e-05
1.35378e-05
9.82865e-06
8.28485e-06
7.64457e-06
8.64931e-06
1.01057e-05
1.20554e-05
1.28805e-05
1.46543e-05
1.57364e-05
1.40964e-05
8.15468e-06
4.18567e-06
0
0
0
0
0
0
0
0
0
0
0
0
8.15241e-07
9.05548e-06
1.31489e-05
2.15432e-05
2.09901e-05
2.22993e-05
1.88139e-05
8.45571e-06
3.11286e-06
2.29074e-06
5.60849e-06
1.30566e-05
1.90231e-05
2.09166e-05
1.70705e-05
6.96526e-06
7.95178e-06
5.77631e-06
1.82958e-05
2.2239e-05
2.6901e-05
2.03194e-05
8.07089e-06
8.87683e-06
3.82065e-06
3.33914e-06
0
1.44962e-06
1.00162e-06
4.34307e-06
3.69778e-06
7.47538e-08
0
0
2.56464e-07
4.87237e-06
3.82287e-06
3.15629e-06
2.75403e-06
1.80596e-06
0
0
0
0
4.85374e-07
0
0
0
0
0
0
0
0
0
0
0
0
0
0
9.07671e-07
0
1.79138e-06
0
0
8.0153e-07
0
7.80369e-08
9.46232e-06
6.19113e-06
5.75683e-06
9.39899e-06
1.0523e-05
1.10991e-05
1.23592e-05
1.48625e-05
1.70612e-05
1.58161e-05
1.25832e-05
1.02942e-05
9.7858e-06
1.01901e-05
1.07763e-05
1.13371e-05
1.19858e-05
1.27758e-05
1.36179e-05
1.43152e-05
1.51121e-05
1.63931e-05
1.80255e-05
1.90814e-05
1.99632e-05
2.11976e-05
2.24453e-05
2.34161e-05
2.40475e-05
2.4276e-05
2.45511e-05
2.47282e-05
2.53149e-05
2.55922e-05
2.61785e-05
2.64055e-05
2.64234e-05
2.68844e-05
2.6755e-05
2.69545e-05
2.76317e-05
2.71079e-05
2.82345e-05
2.80249e-05
2.85735e-05
2.90072e-05
2.9355e-05
2.97939e-05
2.98433e-05
3.05363e-05
3.16053e-05
3.22304e-05
3.27671e-05
3.36321e-05
3.40526e-05
3.37215e-05
3.53111e-05
3.10596e-05
2.15014e-05
1.47427e-05
1.21417e-05
1.10883e-05
1.15082e-05
1.20275e-05
1.38889e-05
1.47879e-05
1.68554e-05
1.89386e-05
2.04359e-05
1.52146e-05
9.78452e-06
3.93451e-06
2.14186e-06
0
0
0
3.06362e-06
2.02488e-06
4.29569e-06
2.56477e-06
5.11211e-06
0
0
3.28545e-06
1.15932e-05
1.61149e-05
2.54804e-05
2.44963e-05
2.40258e-05
2.28372e-05
1.28272e-05
6.05371e-06
3.03821e-06
9.79553e-06
1.80862e-05
2.14297e-05
2.331e-05
2.10185e-05
1.04538e-05
9.46422e-06
7.99756e-06
2.11755e-05
2.46258e-05
2.79186e-05
1.9788e-05
7.60617e-06
8.13339e-06
4.29357e-06
4.76825e-06
2.00113e-06
3.08324e-06
2.05659e-06
4.72845e-06
4.14118e-06
8.99925e-07
0
0
2.02083e-07
4.18108e-06
4.0546e-06
1.79032e-06
2.79795e-06
3.21131e-06
9.01926e-07
0
0
0
2.16672e-06
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
9.42346e-06
6.13328e-06
0
0
8.77573e-06
2.89614e-06
1.24436e-06
1.36902e-05
1.30641e-05
1.13542e-05
1.29926e-05
1.31383e-05
1.33125e-05
1.4102e-05
1.61313e-05
1.88012e-05
1.91553e-05
1.63692e-05
1.32932e-05
1.19545e-05
1.19439e-05
1.24522e-05
1.3109e-05
1.39165e-05
1.48322e-05
1.57237e-05
1.64218e-05
1.71553e-05
1.82797e-05
1.9794e-05
2.08988e-05
2.18472e-05
2.30868e-05
2.43565e-05
2.53905e-05
2.6161e-05
2.6497e-05
2.69984e-05
2.72045e-05
2.80364e-05
2.83035e-05
2.90732e-05
2.93466e-05
2.93513e-05
2.99177e-05
2.95668e-05
2.99571e-05
3.02786e-05
2.99935e-05
3.0906e-05
3.06581e-05
3.12944e-05
3.13728e-05
3.19644e-05
3.19961e-05
3.22938e-05
3.27927e-05
3.39233e-05
3.43876e-05
3.53718e-05
3.62116e-05
3.62032e-05
3.55991e-05
3.7743e-05
3.78123e-05
3.09318e-05
2.29098e-05
1.94346e-05
1.7977e-05
1.7035e-05
1.52964e-05
1.64209e-05
1.76164e-05
2.0474e-05
2.22671e-05
2.58675e-05
2.2938e-05
1.66575e-05
8.43478e-06
6.21508e-06
2.85435e-06
5.85423e-06
8.11682e-06
1.07249e-05
8.41463e-06
9.59802e-06
7.63525e-06
1.19086e-05
6.78619e-06
5.18395e-06
6.03851e-06
1.47741e-05
2.04193e-05
2.87484e-05
2.78215e-05
2.50618e-05
2.57517e-05
1.677e-05
8.92319e-06
4.00337e-06
1.40385e-05
2.31662e-05
2.40747e-05
2.507e-05
2.38846e-05
1.37463e-05
1.04978e-05
1.04336e-05
2.40017e-05
2.65659e-05
2.83588e-05
1.86619e-05
7.17437e-06
7.26211e-06
4.90495e-06
6.13243e-06
3.99881e-06
4.88226e-06
3.32377e-06
5.27673e-06
4.77409e-06
1.9151e-06
0
0
5.93334e-07
3.8863e-06
4.43426e-06
1.73995e-06
2.38139e-06
3.23007e-06
2.03173e-06
1.50351e-06
1.0655e-06
0
3.29185e-06
0
0
0
9.63438e-07
0
0
1.06716e-06
2.29839e-06
0
0
0
0
0
0
0
2.09481e-05
1.3605e-05
2.32902e-06
4.4941e-06
1.58175e-05
6.65111e-06
4.99447e-06
1.56038e-05
1.72846e-05
1.68457e-05
1.73749e-05
1.64788e-05
1.63506e-05
1.66609e-05
1.77655e-05
2.01479e-05
2.17046e-05
2.01191e-05
1.67543e-05
1.45292e-05
1.39593e-05
1.4334e-05
1.50784e-05
1.60517e-05
1.71125e-05
1.8076e-05
1.87803e-05
1.94383e-05
2.03932e-05
2.17541e-05
2.28471e-05
2.37911e-05
2.49729e-05
2.61936e-05
2.72239e-05
2.80858e-05
2.84882e-05
2.92055e-05
2.94652e-05
3.05148e-05
3.08629e-05
3.17624e-05
3.21811e-05
3.21742e-05
3.28537e-05
3.2324e-05
3.28195e-05
3.28538e-05
3.26172e-05
3.33783e-05
3.2987e-05
3.36592e-05
3.34619e-05
3.41234e-05
3.39003e-05
3.42787e-05
3.46375e-05
3.58022e-05
3.60539e-05
3.73166e-05
3.82578e-05
3.81627e-05
3.74329e-05
3.92009e-05
4.00235e-05
3.70861e-05
3.27205e-05
3.09665e-05
2.99369e-05
2.72513e-05
2.17614e-05
2.07247e-05
2.20867e-05
2.69254e-05
2.78683e-05
3.08209e-05
3.02894e-05
2.47649e-05
1.35861e-05
9.96615e-06
7.09848e-06
1.2681e-05
1.78583e-05
2.07221e-05
1.68545e-05
1.5759e-05
1.31005e-05
1.71064e-05
1.53831e-05
1.24249e-05
9.82044e-06
1.94659e-05
2.60201e-05
3.1587e-05
3.04576e-05
2.57153e-05
2.75031e-05
1.99846e-05
1.13718e-05
5.76139e-06
1.81118e-05
2.71795e-05
2.63724e-05
2.63231e-05
2.56668e-05
1.63247e-05
1.09592e-05
1.35794e-05
2.65653e-05
2.79665e-05
2.80498e-05
1.67479e-05
6.68696e-06
6.25882e-06
5.64435e-06
7.41836e-06
5.80086e-06
6.70083e-06
4.85179e-06
6.06734e-06
5.66663e-06
3.18436e-06
1.27893e-06
2.83335e-07
1.61912e-06
4.10598e-06
5.02432e-06
2.58491e-06
2.34145e-06
2.83305e-06
2.32877e-06
2.71977e-06
2.48498e-06
1.95148e-06
3.78452e-06
0
0
0
4.678e-07
0
0
4.35966e-06
2.08583e-06
2.68593e-07
7.79541e-07
0
0
0
0
3.87551e-06
2.6394e-05
2.13424e-05
4.42278e-06
1.08676e-05
1.95525e-05
9.7688e-06
9.58687e-06
1.70032e-05
1.9598e-05
2.1536e-05
2.22534e-05
2.06121e-05
2.03274e-05
2.02504e-05
2.00068e-05
2.14313e-05
2.34148e-05
2.33383e-05
2.04795e-05
1.76105e-05
1.63878e-05
1.65454e-05
1.73117e-05
1.83742e-05
1.95235e-05
2.05533e-05
2.12869e-05
2.18953e-05
2.26994e-05
2.38751e-05
2.48742e-05
2.57251e-05
2.6779e-05
2.7886e-05
2.88505e-05
2.97489e-05
3.01757e-05
3.10524e-05
3.13812e-05
3.25639e-05
3.30459e-05
3.40032e-05
3.45759e-05
3.46149e-05
3.53311e-05
3.47703e-05
3.52607e-05
3.51255e-05
3.48664e-05
3.54672e-05
3.49563e-05
3.55675e-05
3.51927e-05
3.58207e-05
3.5416e-05
3.58231e-05
3.60431e-05
3.7196e-05
3.72998e-05
3.87043e-05
3.96509e-05
3.9579e-05
3.91124e-05
4.0501e-05
4.08901e-05
3.98886e-05
3.88193e-05
3.88524e-05
4.01438e-05
3.91093e-05
3.22227e-05
2.87807e-05
2.92254e-05
3.49871e-05
3.61146e-05
3.6046e-05
3.58044e-05
3.28446e-05
1.98192e-05
1.36887e-05
1.23957e-05
2.00336e-05
2.58539e-05
2.95563e-05
2.62861e-05
2.32897e-05
2.0569e-05
2.23846e-05
2.33744e-05
2.02607e-05
1.59267e-05
2.56443e-05
3.13129e-05
3.3748e-05
3.20874e-05
2.60989e-05
2.81847e-05
2.22885e-05
1.30235e-05
8.43746e-06
2.2117e-05
3.02234e-05
2.80156e-05
2.71206e-05
2.65048e-05
1.77763e-05
1.09945e-05
1.78029e-05
2.85866e-05
2.87383e-05
2.66216e-05
1.37291e-05
6.03253e-06
5.16796e-06
6.50967e-06
8.63407e-06
7.40752e-06
8.41455e-06
6.6158e-06
7.21808e-06
6.96367e-06
4.8561e-06
3.5685e-06
2.70647e-06
3.72301e-06
5.17525e-06
6.33774e-06
4.70229e-06
3.69959e-06
3.45953e-06
2.82883e-06
3.19847e-06
3.175e-06
3.64076e-06
3.78622e-06
1.13187e-06
0
0
0
0
0
9.06008e-07
4.39351e-06
1.3986e-05
5.32092e-06
1.57335e-06
0
0
0
1.65074e-05
2.82282e-05
2.62402e-05
6.20207e-06
1.47354e-05
2.15637e-05
1.275e-05
1.31724e-05
1.85577e-05
2.13267e-05
2.51127e-05
2.69097e-05
2.52675e-05
2.49429e-05
2.4443e-05
2.27246e-05
2.27622e-05
2.4522e-05
2.55793e-05
2.39824e-05
2.11559e-05
1.94226e-05
1.92712e-05
1.98691e-05
2.07871e-05
2.18399e-05
2.28614e-05
2.36421e-05
2.42615e-05
2.49788e-05
2.59662e-05
2.67973e-05
2.74789e-05
2.83541e-05
2.93118e-05
3.01783e-05
3.10719e-05
3.14965e-05
3.24659e-05
3.28588e-05
3.40925e-05
3.46976e-05
3.56618e-05
3.63271e-05
3.64559e-05
3.71191e-05
3.66435e-05
3.70653e-05
3.68416e-05
3.6587e-05
3.70113e-05
3.64536e-05
3.69574e-05
3.64736e-05
3.70467e-05
3.6492e-05
3.6923e-05
3.70146e-05
3.81063e-05
3.81317e-05
3.96153e-05
4.04774e-05
4.04022e-05
4.03688e-05
4.15438e-05
4.13897e-05
4.11972e-05
4.19672e-05
4.27155e-05
4.40565e-05
4.42006e-05
4.01498e-05
3.84401e-05
3.85719e-05
4.17432e-05
4.23854e-05
4.03237e-05
3.852e-05
3.82447e-05
2.64625e-05
1.82284e-05
1.97708e-05
2.85614e-05
3.24901e-05
3.43946e-05
3.23261e-05
2.96543e-05
2.8412e-05
2.82563e-05
2.97866e-05
2.73441e-05
2.41318e-05
3.19004e-05
3.50809e-05
3.50011e-05
3.27432e-05
2.61862e-05
2.80372e-05
2.35716e-05
1.37217e-05
1.19427e-05
2.63416e-05
3.24565e-05
2.89463e-05
2.74543e-05
2.65232e-05
1.80577e-05
1.0816e-05
2.26922e-05
2.9767e-05
2.86322e-05
2.33403e-05
9.04514e-06
5.07654e-06
4.00346e-06
7.508e-06
9.80773e-06
8.88053e-06
1.00377e-05
8.59902e-06
8.85482e-06
8.95084e-06
7.28596e-06
6.87631e-06
6.28066e-06
7.72197e-06
8.00528e-06
9.869e-06
9.47994e-06
8.36681e-06
8.04169e-06
6.89115e-06
6.5741e-06
6.44918e-06
6.5677e-06
6.93788e-06
8.24129e-06
6.85304e-06
6.30338e-06
9.41978e-06
1.05592e-05
3.07043e-06
3.68638e-06
1.85652e-05
3.04164e-05
1.42121e-05
2.86213e-06
2.43941e-06
8.96454e-06
7.87983e-06
2.55864e-05
2.97573e-05
2.79655e-05
8.85376e-06
1.7849e-05
2.2977e-05
1.5299e-05
1.56185e-05
2.10565e-05
2.35595e-05
2.77077e-05
3.02035e-05
2.93979e-05
2.9171e-05
2.80209e-05
2.5138e-05
2.39433e-05
2.52303e-05
2.67962e-05
2.65809e-05
2.47322e-05
2.3054e-05
2.25407e-05
2.26109e-05
2.30179e-05
2.374e-05
2.46488e-05
2.54624e-05
2.61369e-05
2.68398e-05
2.76827e-05
2.83332e-05
2.88272e-05
2.95221e-05
3.03374e-05
3.11093e-05
3.19788e-05
3.23892e-05
3.34014e-05
3.38358e-05
3.5072e-05
3.5756e-05
3.67009e-05
3.73971e-05
3.76134e-05
3.81775e-05
3.78229e-05
3.81599e-05
3.78882e-05
3.76846e-05
3.79416e-05
3.73995e-05
3.77995e-05
3.72495e-05
3.77815e-05
3.70981e-05
3.75616e-05
3.75373e-05
3.8542e-05
3.85327e-05
4.006e-05
4.07843e-05
4.06889e-05
4.10584e-05
4.21242e-05
4.15937e-05
4.18518e-05
4.34811e-05
4.45756e-05
4.55953e-05
4.55594e-05
4.33822e-05
4.37914e-05
4.41309e-05
4.501e-05
4.45188e-05
4.20388e-05
3.95237e-05
3.98289e-05
3.14324e-05
2.4801e-05
2.93085e-05
3.64694e-05
3.7265e-05
3.67032e-05
3.46166e-05
3.28671e-05
3.29255e-05
3.23241e-05
3.30954e-05
3.16943e-05
3.10693e-05
3.60874e-05
3.70825e-05
3.53269e-05
3.2517e-05
2.58642e-05
2.72007e-05
2.36923e-05
1.37856e-05
1.73317e-05
3.04413e-05
3.37274e-05
2.91152e-05
2.72405e-05
2.56665e-05
1.72501e-05
1.18341e-05
2.7107e-05
2.97983e-05
2.6656e-05
1.71674e-05
1.88576e-06
3.68971e-06
2.98782e-06
8.63376e-06
1.10005e-05
1.04281e-05
1.18288e-05
1.11049e-05
1.13749e-05
1.21792e-05
1.12064e-05
1.18813e-05
1.18206e-05
1.42776e-05
1.42723e-05
1.68363e-05
1.78817e-05
1.74876e-05
1.76238e-05
1.71498e-05
1.67993e-05
1.73921e-05
1.72968e-05
1.79806e-05
2.01548e-05
2.05939e-05
2.12062e-05
2.31493e-05
2.48764e-05
2.10491e-05
2.28207e-05
2.68715e-05
3.51254e-05
2.24239e-05
2.67126e-06
6.54765e-06
1.73859e-05
2.34938e-05
3.25425e-05
3.07285e-05
2.72418e-05
1.05915e-05
2.11444e-05
2.40069e-05
1.58502e-05
1.72429e-05
2.52057e-05
2.6598e-05
2.94616e-05
3.17564e-05
3.18022e-05
3.17037e-05
2.99426e-05
2.64639e-05
2.46448e-05
2.55401e-05
2.72463e-05
2.79313e-05
2.74038e-05
2.64076e-05
2.55762e-05
2.48655e-05
2.46002e-05
2.49392e-05
2.5707e-05
2.65268e-05
2.72501e-05
2.79719e-05
2.87377e-05
2.92548e-05
2.95965e-05
3.01486e-05
3.08546e-05
3.15522e-05
3.23922e-05
3.27825e-05
3.38063e-05
3.42558e-05
3.5471e-05
3.61906e-05
3.70995e-05
3.77886e-05
3.80664e-05
3.85155e-05
3.8282e-05
3.85305e-05
3.82373e-05
3.8117e-05
3.82222e-05
3.77408e-05
3.80524e-05
3.74659e-05
3.79719e-05
3.71747e-05
3.76884e-05
3.75479e-05
3.84605e-05
3.84434e-05
3.99772e-05
4.05204e-05
4.04165e-05
4.1104e-05
4.20953e-05
4.137e-05
4.19692e-05
4.40223e-05
4.52999e-05
4.599e-05
4.56602e-05
4.43437e-05
4.54768e-05
4.56474e-05
4.56837e-05
4.46076e-05
4.20638e-05
3.95292e-05
3.93499e-05
3.36484e-05
3.20669e-05
3.72375e-05
4.05436e-05
3.89926e-05
3.72927e-05
3.50742e-05
3.39446e-05
3.44485e-05
3.37486e-05
3.40159e-05
3.32668e-05
3.44083e-05
3.78278e-05
3.77486e-05
3.45531e-05
3.11916e-05
2.48552e-05
2.55109e-05
2.24416e-05
1.46924e-05
2.44491e-05
3.31948e-05
3.38556e-05
2.82553e-05
2.61896e-05
2.34901e-05
1.58143e-05
1.56822e-05
2.9807e-05
2.73938e-05
2.09261e-05
7.20311e-06
0
1.90736e-06
2.44687e-06
9.99061e-06
1.23446e-05
1.24378e-05
1.40994e-05
1.45677e-05
1.53911e-05
1.67385e-05
1.65889e-05
1.76651e-05
1.83688e-05
2.08806e-05
2.21356e-05
2.45174e-05
2.54775e-05
2.57269e-05
2.59337e-05
2.60565e-05
2.61024e-05
2.68008e-05
2.72228e-05
2.79611e-05
2.91674e-05
2.93668e-05
3.00849e-05
3.13423e-05
3.12194e-05
3.03786e-05
3.47511e-05
3.34601e-05
3.39705e-05
2.6546e-05
7.37206e-06
1.56097e-05
2.62424e-05
3.26638e-05
3.5518e-05
2.93702e-05
2.32495e-05
8.87655e-06
2.46534e-05
2.41339e-05
1.43602e-05
2.00192e-05
2.94099e-05
2.85588e-05
2.99703e-05
3.19175e-05
3.24736e-05
3.24245e-05
3.03001e-05
2.66455e-05
2.46606e-05
2.52823e-05
2.69765e-05
2.81884e-05
2.85262e-05
2.80698e-05
2.70688e-05
2.58862e-05
2.52265e-05
2.53218e-05
2.59754e-05
2.67728e-05
2.75147e-05
2.8261e-05
2.9e-05
2.94299e-05
2.96561e-05
3.01007e-05
3.07244e-05
3.13601e-05
3.21637e-05
3.25248e-05
3.35363e-05
3.3975e-05
3.5148e-05
3.58626e-05
3.67081e-05
3.73521e-05
3.76644e-05
3.79597e-05
3.78755e-05
3.7999e-05
3.77231e-05
3.77262e-05
3.76517e-05
3.73053e-05
3.75119e-05
3.69169e-05
3.74017e-05
3.64814e-05
3.70891e-05
3.67865e-05
3.76181e-05
3.76109e-05
3.90771e-05
3.93486e-05
3.92883e-05
4.02212e-05
4.11328e-05
4.03906e-05
4.13327e-05
4.36147e-05
4.49485e-05
4.52036e-05
4.46538e-05
4.38993e-05
4.52836e-05
4.52275e-05
4.45304e-05
4.2807e-05
4.03028e-05
3.8073e-05
3.74287e-05
3.39163e-05
3.60717e-05
4.01204e-05
4.12638e-05
3.86239e-05
3.64271e-05
3.42787e-05
3.37033e-05
3.44189e-05
3.35763e-05
3.35522e-05
3.325e-05
3.53455e-05
3.80708e-05
3.6944e-05
3.15073e-05
2.76559e-05
2.2216e-05
2.20617e-05
1.96624e-05
1.7428e-05
2.95568e-05
3.39767e-05
3.18418e-05
2.51245e-05
2.31587e-05
1.90513e-05
1.43283e-05
1.96801e-05
2.9966e-05
2.06149e-05
1.0463e-05
0
2.57671e-06
0
3.18385e-06
1.15442e-05
1.36275e-05
1.42903e-05
1.57004e-05
1.65964e-05
1.77911e-05
1.88264e-05
1.86982e-05
1.9573e-05
2.0491e-05
2.28392e-05
2.47534e-05
2.66304e-05
2.71297e-05
2.73503e-05
2.73813e-05
2.75479e-05
2.77416e-05
2.83789e-05
2.90765e-05
2.96968e-05
3.04314e-05
3.05851e-05
3.13626e-05
3.21875e-05
3.1527e-05
3.22891e-05
3.64033e-05
3.38638e-05
3.01171e-05
2.36856e-05
1.84946e-05
2.74544e-05
3.17337e-05
3.51413e-05
3.53287e-05
2.30389e-05
1.23045e-05
1.01409e-05
2.78191e-05
2.17691e-05
1.09515e-05
2.36923e-05
3.11249e-05
2.83678e-05
2.8307e-05
2.98232e-05
3.09669e-05
3.09592e-05
2.85157e-05
2.50726e-05
2.32638e-05
2.35825e-05
2.51312e-05
2.67916e-05
2.78112e-05
2.77585e-05
2.6783e-05
2.5455e-05
2.46054e-05
2.44925e-05
2.49749e-05
2.56686e-05
2.63838e-05
2.71649e-05
2.78973e-05
2.82239e-05
2.83058e-05
2.86201e-05
2.91375e-05
2.96821e-05
3.03984e-05
3.07001e-05
3.1637e-05
3.20074e-05
3.306e-05
3.36638e-05
3.43427e-05
3.48135e-05
3.51213e-05
3.50718e-05
3.53029e-05
3.51147e-05
3.49678e-05
3.52356e-05
3.47716e-05
3.48375e-05
3.47931e-05
3.42557e-05
3.46913e-05
3.35909e-05
3.44051e-05
3.37533e-05
3.45607e-05
3.45711e-05
3.5691e-05
3.54503e-05
3.56198e-05
3.66241e-05
3.74068e-05
3.7037e-05
3.8558e-05
4.08455e-05
4.18853e-05
4.11963e-05
4.05264e-05
4.05467e-05
4.18239e-05
4.08304e-05
3.8533e-05
3.57477e-05
3.34018e-05
3.19447e-05
3.21772e-05
3.22483e-05
3.65188e-05
3.96498e-05
3.85525e-05
3.41906e-05
3.18837e-05
3.05585e-05
3.11076e-05
3.19269e-05
3.06037e-05
3.03417e-05
3.09712e-05
3.43137e-05
3.57707e-05
3.13818e-05
2.27341e-05
1.89591e-05
1.50693e-05
1.44711e-05
1.50918e-05
1.90587e-05
3.13708e-05
3.09912e-05
2.38033e-05
1.63946e-05
1.49666e-05
1.13916e-05
1.28019e-05
2.17093e-05
2.30605e-05
7.48152e-06
0
0
7.39866e-06
0
2.28512e-06
1.19839e-05
1.31019e-05
1.32359e-05
1.41365e-05
1.49136e-05
1.59227e-05
1.65093e-05
1.60883e-05
1.66495e-05
1.7542e-05
1.94466e-05
2.1467e-05
2.2895e-05
2.26842e-05
2.24595e-05
2.22968e-05
2.23142e-05
2.26592e-05
2.31181e-05
2.38099e-05
2.44474e-05
2.44793e-05
2.42195e-05
2.4874e-05
2.50011e-05
2.38877e-05
2.54419e-05
2.95144e-05
2.55022e-05
1.59351e-05
1.26528e-05
1.8091e-05
2.77391e-05
2.9117e-05
3.08589e-05
2.61467e-05
4.52922e-06
0
1.35669e-05
2.76192e-05
1.14022e-05
4.09913e-06
2.26518e-05
2.86176e-05
2.08429e-05
1.66414e-05
1.68805e-05
1.92981e-05
1.99215e-05
1.75391e-05
1.5196e-05
1.41562e-05
1.40357e-05
1.50636e-05
1.69734e-05
1.88087e-05
1.96565e-05
1.94061e-05
1.8575e-05
1.78472e-05
1.73983e-05
1.73411e-05
1.75454e-05
1.80183e-05
1.88052e-05
1.95253e-05
1.96049e-05
1.93055e-05
1.92429e-05
1.94427e-05
1.97772e-05
2.01345e-05
2.03411e-05
2.08537e-05
2.09943e-05
2.1557e-05
2.16111e-05
2.18438e-05
2.16645e-05
2.18581e-05
2.11494e-05
2.18151e-05
2.12031e-05
2.12288e-05
2.20606e-05
2.09575e-05
2.18218e-05
2.13963e-05
2.10628e-05
2.12918e-05
2.02243e-05
2.10759e-05
2.00444e-05
2.08825e-05
2.08039e-05
2.09932e-05
2.01361e-05
2.06964e-05
2.10065e-05
2.15125e-05
2.21143e-05
2.44315e-05
2.5873e-05
2.55466e-05
2.345e-05
2.2967e-05
2.39926e-05
2.39756e-05
2.09267e-05
1.74093e-05
1.46859e-05
1.31959e-05
1.28813e-05
1.49425e-05
2.0888e-05
2.807e-05
2.80333e-05
2.15211e-05
1.51114e-05
1.3983e-05
1.50844e-05
1.77754e-05
1.7692e-05
1.53661e-05
1.4335e-05
1.67504e-05
2.27016e-05
2.05843e-05
1.14024e-05
1.67148e-06
0
0
0
4.52101e-06
1.6111e-05
2.56479e-05
1.51446e-05
3.31214e-06
0
0
0
9.81196e-06
1.43778e-05
2.82795e-06
0
0
0
6.27913e-06
0
0.000136392
6.97994e-05
4.15153e-05
7.31223e-06
1.42839e-05
1.68196e-06
1.15317e-05
2.49772e-05
2.61036e-05
0
0
2.41554e-06
0
7.73427e-06
9.9595e-06
1.73585e-05
4.0254e-06
1.27842e-05
1.51648e-05
1.32777e-05
1.43326e-05
1.71256e-05
2.11181e-05
2.39832e-05
2.35746e-05
2.12084e-05
2.11778e-05
2.43652e-05
2.69997e-05
2.53055e-05
2.2039e-05
2.2032e-05
2.51146e-05
2.7205e-05
2.64152e-05
2.59292e-05
2.72064e-05
2.77533e-05
2.70201e-05
2.79517e-05
2.85315e-05
2.74322e-05
2.70825e-05
2.62314e-05
2.54596e-05
2.58105e-05
2.63441e-05
2.72389e-05
2.83218e-05
3.09992e-05
3.31331e-05
3.27815e-05
3.27206e-05
3.09953e-05
2.95529e-05
2.99236e-05
2.91832e-05
2.753e-05
2.54659e-05
2.40975e-05
2.50554e-05
2.9393e-05
3.66831e-05
4.08415e-05
3.59574e-05
2.86172e-05
2.60276e-05
2.73076e-05
2.84326e-05
2.81032e-05
2.84164e-05
3.01086e-05
3.18115e-05
3.28264e-05
3.29822e-05
3.15266e-05
2.88834e-05
2.77252e-05
2.89381e-05
2.91354e-05
2.79926e-05
2.86546e-05
2.95243e-05
2.91018e-05
2.94905e-05
3.01848e-05
3.01925e-05
3.0439e-05
3.07417e-05
3.05061e-05
3.05792e-05
3.03835e-05
3.00197e-05
2.97812e-05
2.95803e-05
2.95066e-05
2.94112e-05
2.92041e-05
2.9022e-05
2.87402e-05
2.8294e-05
2.76454e-05
2.6877e-05
2.60905e-05
2.53031e-05
2.45304e-05
2.38521e-05
2.33521e-05
2.32525e-05
2.36638e-05
2.5063e-05
2.77398e-05
3.09274e-05
3.3028e-05
3.27716e-05
3.03617e-05
2.7447e-05
2.55862e-05
2.52749e-05
2.56352e-05
2.64811e-05
2.75525e-05
2.83619e-05
2.84438e-05
2.78185e-05
2.70252e-05
2.6287e-05
2.58171e-05
2.50601e-05
2.38636e-05
2.2064e-05
2.00606e-05
1.8205e-05
1.70413e-05
1.64663e-05
1.6739e-05
1.78553e-05
1.97451e-05
2.14944e-05
2.19952e-05
2.1067e-05
2.00722e-05
1.95974e-05
1.80984e-05
1.60816e-05
1.36356e-05
1.38603e-05
1.21624e-05
9.83097e-06
0
9.63149e-05
2.89959e-05
1.62903e-05
1.57727e-05
2.50665e-05
1.15404e-05
1.4392e-05
2.55094e-05
2.93614e-05
7.20284e-06
0
8.05461e-06
1.87414e-05
1.05987e-05
0
1.45395e-05
1.31053e-05
2.14725e-05
2.31911e-05
2.29306e-05
2.46787e-05
2.72362e-05
3.00529e-05
3.10004e-05
3.0713e-05
3.00296e-05
3.06522e-05
3.23715e-05
3.40286e-05
3.33319e-05
3.27226e-05
3.45014e-05
3.6787e-05
3.72884e-05
3.65228e-05
3.6288e-05
3.56869e-05
3.52941e-05
3.57802e-05
3.6057e-05
3.62009e-05
3.57932e-05
3.54172e-05
3.53343e-05
3.55721e-05
3.68189e-05
3.74195e-05
3.80737e-05
3.86812e-05
3.91903e-05
3.91551e-05
3.76595e-05
3.64398e-05
3.47337e-05
3.48569e-05
3.6774e-05
3.77331e-05
3.78024e-05
3.70989e-05
3.70516e-05
3.84276e-05
4.24477e-05
4.73718e-05
4.77117e-05
4.19603e-05
3.65517e-05
3.56214e-05
3.6921e-05
3.73514e-05
3.6982e-05
3.76874e-05
3.90443e-05
3.99671e-05
4.05673e-05
4.04064e-05
3.86607e-05
3.63274e-05
3.57441e-05
3.67521e-05
3.66197e-05
3.61323e-05
3.71035e-05
3.7806e-05
3.78384e-05
3.84056e-05
3.88668e-05
3.89421e-05
3.90406e-05
3.90859e-05
3.87782e-05
3.86163e-05
3.83381e-05
3.79667e-05
3.7714e-05
3.75222e-05
3.72924e-05
3.6987e-05
3.65117e-05
3.59958e-05
3.52903e-05
3.43863e-05
3.3302e-05
3.21114e-05
3.09315e-05
2.97868e-05
2.89219e-05
2.8467e-05
2.89429e-05
3.05086e-05
3.29457e-05
3.57159e-05
3.81945e-05
3.95551e-05
3.91641e-05
3.68929e-05
3.34833e-05
3.03705e-05
2.90689e-05
2.97001e-05
3.09837e-05
3.27995e-05
3.45093e-05
3.54515e-05
3.52745e-05
3.42513e-05
3.30935e-05
3.16615e-05
3.03617e-05
2.87625e-05
2.68224e-05
2.43153e-05
2.17123e-05
1.93974e-05
1.79837e-05
1.73937e-05
1.79836e-05
1.99537e-05
2.28691e-05
2.50098e-05
2.49218e-05
2.33859e-05
2.22522e-05
2.14669e-05
1.91381e-05
1.68139e-05
1.37841e-05
1.41934e-05
1.11131e-05
8.58174e-06
0
7.33218e-05
4.2337e-05
1.85007e-05
6.13724e-06
2.63382e-05
1.40937e-05
1.36146e-05
1.97643e-05
2.77649e-05
1.1496e-05
0
5.62872e-06
2.49045e-08
2.1108e-05
1.80176e-05
4.18959e-06
1.70081e-05
2.3392e-05
2.45907e-05
2.56398e-05
2.74173e-05
2.974e-05
3.1946e-05
3.18182e-05
3.15015e-05
3.13655e-05
3.23026e-05
3.35106e-05
3.4686e-05
3.42443e-05
3.47671e-05
3.76144e-05
3.93236e-05
3.89751e-05
3.85021e-05
3.85354e-05
3.73171e-05
3.64706e-05
3.74535e-05
3.74572e-05
3.73014e-05
3.71836e-05
3.68039e-05
3.71075e-05
3.78299e-05
3.9324e-05
3.99855e-05
4.02651e-05
4.05553e-05
4.03122e-05
3.94423e-05
3.75709e-05
3.58164e-05
3.39007e-05
3.46506e-05
3.69763e-05
3.83397e-05
3.94256e-05
3.96482e-05
4.03643e-05
4.21592e-05
4.61574e-05
4.96263e-05
4.80111e-05
4.20408e-05
3.74443e-05
3.7509e-05
3.88382e-05
3.89569e-05
3.86923e-05
3.95137e-05
4.06212e-05
4.11158e-05
4.14312e-05
4.11115e-05
3.93529e-05
3.72247e-05
3.69562e-05
3.78609e-05
3.74499e-05
3.7215e-05
3.83034e-05
3.87905e-05
3.89317e-05
3.96359e-05
3.99019e-05
4.00033e-05
4.01173e-05
3.99546e-05
3.96505e-05
3.9391e-05
3.90412e-05
3.87376e-05
3.85164e-05
3.84126e-05
3.81953e-05
3.78625e-05
3.73426e-05
3.67272e-05
3.58838e-05
3.48205e-05
3.35832e-05
3.22198e-05
3.08842e-05
2.95669e-05
2.86321e-05
2.82322e-05
2.90832e-05
3.13286e-05
3.462e-05
3.79291e-05
4.01291e-05
4.0443e-05
3.87843e-05
3.51478e-05
3.06062e-05
2.73135e-05
2.69723e-05
2.85008e-05
3.03114e-05
3.26229e-05
3.46093e-05
3.56084e-05
3.54787e-05
3.45202e-05
3.33783e-05
3.17219e-05
3.00243e-05
2.79698e-05
2.55632e-05
2.26454e-05
1.9817e-05
1.74936e-05
1.61183e-05
1.55492e-05
1.60107e-05
1.80873e-05
2.13102e-05
2.35854e-05
2.33029e-05
2.17905e-05
2.09853e-05
2.02046e-05
1.72451e-05
1.51595e-05
1.18145e-05
1.27523e-05
8.4006e-06
6.37798e-06
0
5.9973e-05
3.73015e-05
2.43278e-05
1.25214e-05
2.84566e-05
1.51292e-05
1.63447e-05
1.509e-05
2.44555e-05
1.27018e-05
0
1.42142e-06
7.79171e-06
2.20232e-05
2.90362e-05
1.01838e-05
1.71244e-05
2.37434e-05
2.47366e-05
2.67728e-05
2.81671e-05
3.03047e-05
3.22465e-05
3.15365e-05
3.12129e-05
3.13836e-05
3.23827e-05
3.32046e-05
3.3983e-05
3.37139e-05
3.51677e-05
3.84485e-05
3.97151e-05
3.91003e-05
3.88945e-05
3.90882e-05
3.75997e-05
3.65318e-05
3.7744e-05
3.75314e-05
3.72604e-05
3.73001e-05
3.68753e-05
3.74603e-05
3.83871e-05
3.99586e-05
4.06122e-05
4.06172e-05
4.06648e-05
3.99019e-05
3.82007e-05
3.54894e-05
3.26734e-05
3.03149e-05
3.22203e-05
3.50844e-05
3.70561e-05
3.9443e-05
4.04178e-05
4.14617e-05
4.3216e-05
4.70856e-05
4.97832e-05
4.70141e-05
4.0713e-05
3.7102e-05
3.80443e-05
3.91025e-05
3.91117e-05
3.89894e-05
3.97638e-05
4.06486e-05
4.08487e-05
4.0909e-05
4.04269e-05
3.86654e-05
3.67625e-05
3.67677e-05
3.75027e-05
3.68342e-05
3.67931e-05
3.78746e-05
3.81086e-05
3.83046e-05
3.90671e-05
3.91177e-05
3.92604e-05
3.93688e-05
3.89664e-05
3.86463e-05
3.82175e-05
3.77714e-05
3.76007e-05
3.74927e-05
3.76086e-05
3.74873e-05
3.72187e-05
3.67148e-05
3.60362e-05
3.50787e-05
3.38623e-05
3.24679e-05
3.08998e-05
2.93678e-05
2.78086e-05
2.67444e-05
2.63057e-05
2.74734e-05
3.02826e-05
3.42707e-05
3.79011e-05
3.97526e-05
3.89424e-05
3.51767e-05
2.86003e-05
2.24085e-05
1.92757e-05
2.00774e-05
2.26661e-05
2.55537e-05
2.89879e-05
3.16011e-05
3.28773e-05
3.32689e-05
3.28562e-05
3.20517e-05
3.02805e-05
2.80624e-05
2.5333e-05
2.2275e-05
1.90663e-05
1.64229e-05
1.45569e-05
1.34045e-05
1.27884e-05
1.23759e-05
1.31094e-05
1.50062e-05
1.68123e-05
1.65855e-05
1.6038e-05
1.64852e-05
1.6503e-05
1.30271e-05
1.23943e-05
8.76898e-06
1.03814e-05
5.70029e-06
4.53206e-06
0
5.24155e-05
3.16632e-05
1.43543e-05
1.19862e-05
3.04435e-05
1.66734e-05
1.37705e-05
9.1763e-06
2.03328e-05
1.27746e-05
0
0
3.38414e-06
1.92769e-05
3.1635e-05
1.3018e-05
1.69564e-05
2.31773e-05
2.43384e-05
2.73452e-05
2.82305e-05
3.01249e-05
3.18944e-05
3.06924e-05
3.02825e-05
3.06927e-05
3.16177e-05
3.17892e-05
3.18738e-05
3.19799e-05
3.48041e-05
3.84151e-05
3.92338e-05
3.85384e-05
3.86082e-05
3.89491e-05
3.73322e-05
3.60881e-05
3.74197e-05
3.69876e-05
3.66826e-05
3.68364e-05
3.62972e-05
3.7176e-05
3.82239e-05
3.983e-05
4.04527e-05
4.01744e-05
3.9893e-05
3.83553e-05
3.52782e-05
3.14918e-05
2.81919e-05
2.5945e-05
2.80581e-05
3.0988e-05
3.409e-05
3.83928e-05
4.04445e-05
4.17599e-05
4.32681e-05
4.68677e-05
4.89276e-05
4.48884e-05
3.78448e-05
3.58923e-05
3.80882e-05
3.85838e-05
3.85539e-05
3.86465e-05
3.92577e-05
3.98654e-05
3.97266e-05
3.93994e-05
3.86427e-05
3.68249e-05
3.51553e-05
3.55808e-05
3.60747e-05
3.49082e-05
3.50865e-05
3.60495e-05
3.57359e-05
3.59061e-05
3.66762e-05
3.62732e-05
3.64643e-05
3.65347e-05
3.56003e-05
3.51797e-05
3.43037e-05
3.36024e-05
3.37707e-05
3.40242e-05
3.48177e-05
3.50794e-05
3.51147e-05
3.47739e-05
3.40773e-05
3.2999e-05
3.15911e-05
3.00365e-05
2.82502e-05
2.65544e-05
2.47878e-05
2.36383e-05
2.29909e-05
2.41074e-05
2.70389e-05
3.18095e-05
3.60018e-05
3.73303e-05
3.45691e-05
2.82893e-05
2.1028e-05
1.69009e-05
1.52083e-05
1.53616e-05
1.60942e-05
1.78017e-05
2.1086e-05
2.40823e-05
2.55602e-05
2.7213e-05
2.83593e-05
2.86078e-05
2.72569e-05
2.467e-05
2.15562e-05
1.84662e-05
1.57753e-05
1.37414e-05
1.24386e-05
1.14719e-05
1.08431e-05
9.83225e-06
9.1118e-06
8.78095e-06
8.92437e-06
8.35901e-06
8.66167e-06
9.75485e-06
1.12994e-05
8.94906e-06
9.9377e-06
6.44274e-06
7.99644e-06
4.169e-06
3.22854e-06
0
4.93743e-05
1.89631e-05
5.22669e-06
9.95492e-06
3.12197e-05
1.85325e-05
1.30663e-05
4.71048e-06
1.66405e-05
1.26712e-05
0
0
4.6114e-06
2.35122e-05
3.17033e-05
1.36397e-05
1.71463e-05
2.16851e-05
2.33854e-05
2.74886e-05
2.78804e-05
2.939e-05
3.10357e-05
2.93441e-05
2.86637e-05
2.92175e-05
2.99129e-05
2.89091e-05
2.79671e-05
2.88753e-05
3.34432e-05
3.76666e-05
3.80527e-05
3.73336e-05
3.77403e-05
3.82094e-05
3.66377e-05
3.52594e-05
3.65953e-05
3.59442e-05
3.56804e-05
3.59203e-05
3.51519e-05
3.63361e-05
3.74663e-05
3.90946e-05
3.96885e-05
3.9067e-05
3.8301e-05
3.57575e-05
3.14678e-05
2.76314e-05
2.49694e-05
2.31368e-05
2.45064e-05
2.66906e-05
3.02715e-05
3.60282e-05
3.96766e-05
4.15162e-05
4.26442e-05
4.57637e-05
4.70924e-05
4.12955e-05
3.31493e-05
3.38347e-05
3.77622e-05
3.73929e-05
3.72677e-05
3.77587e-05
3.80833e-05
3.82984e-05
3.77806e-05
3.69269e-05
3.57824e-05
3.38264e-05
3.22318e-05
3.31924e-05
3.34773e-05
3.14278e-05
3.18027e-05
3.24878e-05
3.12484e-05
3.12006e-05
3.17766e-05
3.06708e-05
3.07851e-05
3.08224e-05
2.93088e-05
2.88177e-05
2.76099e-05
2.64889e-05
2.68457e-05
2.73335e-05
2.89483e-05
3.00405e-05
3.08007e-05
3.10109e-05
3.05377e-05
2.95072e-05
2.80403e-05
2.65151e-05
2.47452e-05
2.3163e-05
2.14923e-05
2.05137e-05
1.96865e-05
2.02896e-05
2.21416e-05
2.62201e-05
3.02793e-05
3.11709e-05
2.71342e-05
2.07772e-05
1.59239e-05
1.44089e-05
1.33698e-05
1.28285e-05
1.2302e-05
1.26284e-05
1.47509e-05
1.70543e-05
1.77006e-05
1.92965e-05
2.11364e-05
2.23576e-05
2.2358e-05
2.03669e-05
1.76611e-05
1.52246e-05
1.3388e-05
1.18852e-05
1.09497e-05
1.01437e-05
9.53253e-06
8.33316e-06
6.89374e-06
5.38339e-06
4.55215e-06
4.01791e-06
4.63859e-06
5.10584e-06
6.77508e-06
5.76499e-06
7.7726e-06
4.69135e-06
5.88719e-06
3.10844e-06
2.24906e-06
9.15569e-07
4.44683e-05
7.21538e-06
5.70995e-06
7.64673e-06
3.10855e-05
2.02934e-05
1.06987e-05
5.0514e-06
1.46854e-05
1.26715e-05
9.84983e-08
0
6.38361e-06
2.48835e-05
3.13456e-05
1.37844e-05
1.75579e-05
1.92535e-05
2.17354e-05
2.70828e-05
2.72235e-05
2.8096e-05
2.96663e-05
2.75471e-05
2.63709e-05
2.69399e-05
2.75073e-05
2.5424e-05
2.34785e-05
2.46777e-05
3.03413e-05
3.57917e-05
3.60582e-05
3.53198e-05
3.62609e-05
3.67639e-05
3.5471e-05
3.41126e-05
3.53238e-05
3.4447e-05
3.42907e-05
3.46483e-05
3.35135e-05
3.49268e-05
3.60838e-05
3.77135e-05
3.8316e-05
3.73359e-05
3.60465e-05
3.26763e-05
2.79818e-05
2.4853e-05
2.28538e-05
2.12864e-05
2.19263e-05
2.32319e-05
2.64863e-05
3.26445e-05
3.78192e-05
4.0691e-05
4.14264e-05
4.36408e-05
4.39818e-05
3.60692e-05
2.73417e-05
3.10448e-05
3.69587e-05
3.56771e-05
3.51195e-05
3.62967e-05
3.63137e-05
3.59747e-05
3.51779e-05
3.38675e-05
3.23541e-05
3.0239e-05
2.84383e-05
2.97374e-05
3.0074e-05
2.71344e-05
2.75909e-05
2.80255e-05
2.60862e-05
2.57166e-05
2.592e-05
2.438e-05
2.41707e-05
2.40659e-05
2.24246e-05
2.18473e-05
2.09127e-05
1.97164e-05
1.99298e-05
2.01746e-05
2.15757e-05
2.30103e-05
2.43341e-05
2.53106e-05
2.54565e-05
2.48786e-05
2.3717e-05
2.25026e-05
2.10771e-05
1.9886e-05
1.85628e-05
1.79331e-05
1.71006e-05
1.72179e-05
1.76913e-05
1.97792e-05
2.21267e-05
2.22948e-05
1.86695e-05
1.47872e-05
1.28895e-05
1.24703e-05
1.15775e-05
1.06502e-05
9.59406e-06
9.2281e-06
1.08354e-05
1.29071e-05
1.29281e-05
1.38939e-05
1.49662e-05
1.55354e-05
1.60784e-05
1.53121e-05
1.38296e-05
1.24788e-05
1.14846e-05
1.04397e-05
9.71298e-06
9.09038e-06
8.50343e-06
7.28624e-06
5.53268e-06
3.59956e-06
2.42015e-06
2.00007e-06
2.66891e-06
2.72328e-06
3.95342e-06
3.28231e-06
5.65183e-06
3.05223e-06
3.9365e-06
2.12249e-06
1.46193e-06
2.00756e-06
3.87359e-05
3.14863e-06
8.0146e-06
0
2.89817e-05
2.13175e-05
6.72614e-06
6.01401e-06
1.43937e-05
1.26974e-05
5.31573e-07
0
7.26429e-06
2.52272e-05
3.08257e-05
1.40491e-05
1.80215e-05
1.60806e-05
1.92851e-05
2.58263e-05
2.63174e-05
2.62319e-05
2.76778e-05
2.5415e-05
2.36759e-05
2.40851e-05
2.48387e-05
2.24953e-05
1.99833e-05
2.03114e-05
2.51757e-05
3.16676e-05
3.26689e-05
3.2133e-05
3.40287e-05
3.45213e-05
3.35851e-05
3.25961e-05
3.36686e-05
3.25365e-05
3.2458e-05
3.3092e-05
3.15552e-05
3.29875e-05
3.40281e-05
3.55521e-05
3.62143e-05
3.50046e-05
3.33592e-05
2.9567e-05
2.51484e-05
2.28425e-05
2.12043e-05
1.97993e-05
1.99268e-05
2.05058e-05
2.3065e-05
2.87753e-05
3.48527e-05
3.90659e-05
3.96624e-05
4.02551e-05
3.9184e-05
3.00002e-05
2.23531e-05
2.78468e-05
3.53666e-05
3.37746e-05
3.22723e-05
3.41293e-05
3.4123e-05
3.31365e-05
3.22161e-05
3.07543e-05
2.90249e-05
2.68195e-05
2.47176e-05
2.59355e-05
2.64956e-05
2.3156e-05
2.35959e-05
2.38472e-05
2.18175e-05
2.12108e-05
2.1008e-05
1.95576e-05
1.90816e-05
1.87378e-05
1.7279e-05
1.64278e-05
1.57074e-05
1.47909e-05
1.48649e-05
1.49951e-05
1.5799e-05
1.6852e-05
1.79786e-05
1.91007e-05
1.97031e-05
1.97703e-05
1.92674e-05
1.85491e-05
1.7637e-05
1.69589e-05
1.60544e-05
1.58004e-05
1.50951e-05
1.49464e-05
1.4515e-05
1.48557e-05
1.52545e-05
1.47914e-05
1.27102e-05
1.16153e-05
1.10913e-05
1.07106e-05
9.69181e-06
8.55058e-06
7.27899e-06
6.52393e-06
7.59505e-06
9.87096e-06
1.01655e-05
1.09475e-05
1.13683e-05
1.0893e-05
1.08577e-05
1.06148e-05
1.03198e-05
1.01542e-05
9.83364e-06
9.211e-06
8.59332e-06
8.17346e-06
7.61762e-06
6.42653e-06
4.51678e-06
2.44228e-06
1.12924e-06
7.66078e-07
1.39029e-06
1.25582e-06
2.16899e-06
1.39216e-06
3.63714e-06
1.34407e-06
1.98355e-06
1.08527e-06
7.91537e-07
2.92093e-06
3.17462e-05
1.23399e-05
7.29863e-06
0
2.42264e-05
2.12967e-05
3.43e-06
6.60897e-06
1.48326e-05
1.26052e-05
1.10811e-06
0
8.04112e-06
2.52863e-05
3.02255e-05
1.45265e-05
1.84195e-05
1.2555e-05
1.61261e-05
2.34707e-05
2.50846e-05
2.39421e-05
2.48824e-05
2.2977e-05
2.09446e-05
2.09772e-05
2.20007e-05
2.01259e-05
1.76176e-05
1.68044e-05
1.93147e-05
2.52488e-05
2.72685e-05
2.73384e-05
3.0605e-05
3.16486e-05
3.07419e-05
3.03527e-05
3.15957e-05
3.02976e-05
3.00266e-05
3.11723e-05
2.94946e-05
3.07345e-05
3.14236e-05
3.25743e-05
3.32131e-05
3.20278e-05
3.03699e-05
2.65349e-05
2.27684e-05
2.12025e-05
1.9727e-05
1.84292e-05
1.82312e-05
1.82644e-05
2.00808e-05
2.48449e-05
3.10885e-05
3.65279e-05
3.75081e-05
3.60585e-05
3.31729e-05
2.44724e-05
1.90017e-05
2.4756e-05
3.26262e-05
3.19021e-05
2.94458e-05
3.12118e-05
3.16123e-05
3.02015e-05
2.91445e-05
2.78019e-05
2.6045e-05
2.3855e-05
2.16397e-05
2.24975e-05
2.31233e-05
1.98391e-05
2.03387e-05
2.03833e-05
1.86246e-05
1.79472e-05
1.73599e-05
1.62329e-05
1.56549e-05
1.51376e-05
1.39112e-05
1.2797e-05
1.19772e-05
1.12221e-05
1.11822e-05
1.13541e-05
1.18711e-05
1.25601e-05
1.33202e-05
1.41761e-05
1.47641e-05
1.50971e-05
1.51905e-05
1.49815e-05
1.45386e-05
1.4364e-05
1.38483e-05
1.39316e-05
1.34137e-05
1.31709e-05
1.23062e-05
1.16629e-05
1.08378e-05
1.01652e-05
9.51869e-06
9.745e-06
9.4864e-06
9.03373e-06
7.82311e-06
6.57682e-06
5.22845e-06
4.30893e-06
4.64234e-06
6.50876e-06
7.61342e-06
8.88229e-06
9.2778e-06
8.27774e-06
7.56222e-06
7.33963e-06
7.65076e-06
8.32866e-06
8.41106e-06
8.1236e-06
7.56065e-06
7.33786e-06
6.83142e-06
5.66129e-06
3.65435e-06
1.52509e-06
1.40282e-07
0
3.52511e-07
1.2646e-07
8.56142e-07
0
1.85457e-06
0
0
0
1.90076e-07
3.66318e-06
2.58223e-05
1.70758e-05
5.82968e-06
5.48844e-06
2.11528e-05
2.066e-05
4.69284e-07
7.54826e-06
1.51997e-05
1.2265e-05
2.24915e-06
5.35413e-07
8.7937e-06
2.50414e-05
2.96047e-05
1.51522e-05
1.86922e-05
9.08094e-06
1.25415e-05
2.01116e-05
2.32895e-05
2.15918e-05
2.13329e-05
2.00913e-05
1.83451e-05
1.7899e-05
1.894e-05
1.78436e-05
1.58017e-05
1.43105e-05
1.44402e-05
1.8435e-05
2.10046e-05
2.139e-05
2.53158e-05
2.81805e-05
2.732e-05
2.69388e-05
2.86595e-05
2.77685e-05
2.69211e-05
2.85394e-05
2.73593e-05
2.84745e-05
2.86687e-05
2.9161e-05
2.94684e-05
2.83937e-05
2.71519e-05
2.36328e-05
2.06198e-05
1.97009e-05
1.83241e-05
1.70874e-05
1.66995e-05
1.63354e-05
1.75071e-05
2.11292e-05
2.69002e-05
3.32252e-05
3.5207e-05
3.23383e-05
2.76188e-05
1.97574e-05
1.65322e-05
2.18253e-05
2.86878e-05
2.97491e-05
2.7241e-05
2.79668e-05
2.86857e-05
2.74371e-05
2.61788e-05
2.4962e-05
2.33279e-05
2.12804e-05
1.92094e-05
1.97037e-05
2.01293e-05
1.70461e-05
1.77359e-05
1.75897e-05
1.61415e-05
1.55282e-05
1.46042e-05
1.37852e-05
1.31982e-05
1.25795e-05
1.1527e-05
1.0246e-05
9.24515e-06
8.43597e-06
8.25432e-06
8.43137e-06
8.90706e-06
9.42161e-06
9.94135e-06
1.05437e-05
1.10114e-05
1.12883e-05
1.16393e-05
1.1801e-05
1.16795e-05
1.19504e-05
1.17919e-05
1.21854e-05
1.18849e-05
1.16529e-05
1.06273e-05
9.55496e-06
8.19179e-06
7.51884e-06
7.54416e-06
8.03187e-06
7.59635e-06
7.21873e-06
5.92855e-06
4.70894e-06
3.35392e-06
2.46633e-06
2.22966e-06
3.12228e-06
4.37165e-06
6.45146e-06
7.49567e-06
6.64644e-06
5.48311e-06
5.16842e-06
5.69928e-06
6.89855e-06
7.20879e-06
7.1398e-06
6.60335e-06
6.55408e-06
6.12494e-06
4.95943e-06
2.87069e-06
7.03308e-07
0
0
0
0
0
0
3.1745e-07
0
0
0
0
4.24525e-06
2.07858e-05
2.28662e-05
3.86272e-06
9.28092e-06
1.94267e-05
1.98277e-05
0
8.73761e-06
1.5013e-05
1.16296e-05
4.02643e-06
1.51014e-06
9.46975e-06
2.44972e-05
2.89849e-05
1.58673e-05
1.88149e-05
5.93802e-06
8.85517e-06
1.60524e-05
2.07215e-05
1.95065e-05
1.77527e-05
1.68135e-05
1.58262e-05
1.50274e-05
1.57187e-05
1.52988e-05
1.4019e-05
1.24048e-05
1.10093e-05
1.2727e-05
1.53497e-05
1.58018e-05
1.86214e-05
2.32953e-05
2.37953e-05
2.30092e-05
2.42569e-05
2.4567e-05
2.33958e-05
2.48736e-05
2.47716e-05
2.63214e-05
2.61921e-05
2.59784e-05
2.5715e-05
2.44565e-05
2.38232e-05
2.10174e-05
1.86133e-05
1.8216e-05
1.69675e-05
1.57474e-05
1.52604e-05
1.46138e-05
1.52741e-05
1.77645e-05
2.25305e-05
2.92483e-05
3.27201e-05
2.96038e-05
2.31555e-05
1.51886e-05
1.46261e-05
1.87057e-05
2.37913e-05
2.66117e-05
2.55088e-05
2.50909e-05
2.53813e-05
2.47431e-05
2.34726e-05
2.22159e-05
2.07447e-05
1.89588e-05
1.71605e-05
1.7466e-05
1.75789e-05
1.46657e-05
1.55347e-05
1.52939e-05
1.40737e-05
1.35821e-05
1.23782e-05
1.17772e-05
1.12164e-05
1.05302e-05
9.58556e-06
8.2024e-06
7.08284e-06
6.09586e-06
5.75392e-06
5.82163e-06
6.32711e-06
6.7822e-06
7.16194e-06
7.5487e-06
7.90691e-06
8.02545e-06
8.35052e-06
8.71572e-06
8.76531e-06
9.42457e-06
9.65344e-06
1.03945e-05
1.03735e-05
1.02374e-05
9.19509e-06
7.98242e-06
6.43916e-06
5.76101e-06
5.8484e-06
5.86432e-06
4.83344e-06
4.79813e-06
3.74109e-06
2.81839e-06
1.54438e-06
8.27022e-07
3.49966e-07
4.0642e-07
1.02823e-06
3.11685e-06
4.97307e-06
5.13554e-06
3.91663e-06
3.52128e-06
4.11517e-06
5.67082e-06
6.16087e-06
6.22609e-06
5.70181e-06
5.7986e-06
5.47898e-06
4.31012e-06
2.13177e-06
0
0
0
0
0
0
0
0
0
0
0
0
4.68241e-06
1.8715e-05
1.74076e-05
1.24342e-05
1.34194e-05
1.77247e-05
1.89721e-05
0
9.91069e-06
1.39524e-05
1.08401e-05
5.29016e-06
1.29101e-06
1.01373e-05
2.35305e-05
2.83606e-05
1.66393e-05
1.86836e-05
3.26155e-06
5.33073e-06
1.16457e-05
1.73509e-05
1.76003e-05
1.50052e-05
1.37425e-05
1.3379e-05
1.24324e-05
1.25255e-05
1.24376e-05
1.19337e-05
1.06237e-05
8.60221e-06
8.56053e-06
1.06177e-05
1.12041e-05
1.2128e-05
1.65934e-05
1.93411e-05
1.96389e-05
1.95332e-05
2.00293e-05
1.9663e-05
2.0693e-05
2.11787e-05
2.39626e-05
2.41098e-05
2.34223e-05
2.26821e-05
2.09259e-05
2.05709e-05
1.87773e-05
1.67711e-05
1.66998e-05
1.56428e-05
1.4408e-05
1.38736e-05
1.3035e-05
1.33055e-05
1.48024e-05
1.81159e-05
2.42516e-05
2.92603e-05
2.70242e-05
1.87363e-05
1.08471e-05
1.2962e-05
1.53768e-05
1.84784e-05
2.21211e-05
2.351e-05
2.28759e-05
2.21468e-05
2.18633e-05
2.09705e-05
1.96355e-05
1.82569e-05
1.67618e-05
1.51814e-05
1.55315e-05
1.54388e-05
1.2677e-05
1.35543e-05
1.33249e-05
1.22676e-05
1.18864e-05
1.04522e-05
9.98064e-06
9.45167e-06
8.70321e-06
7.80971e-06
6.34148e-06
5.20979e-06
4.00331e-06
3.52541e-06
3.391e-06
3.89703e-06
4.32825e-06
4.6255e-06
4.8009e-06
5.01859e-06
4.95838e-06
5.0592e-06
5.43978e-06
5.4971e-06
6.40962e-06
7.07188e-06
8.26317e-06
8.67678e-06
8.77006e-06
7.82545e-06
6.61699e-06
5.0313e-06
4.24361e-06
3.81952e-06
2.46576e-06
5.26178e-07
9.41166e-07
6.57502e-07
6.11349e-07
0
0
0
0
0
0
1.2659e-06
2.7859e-06
2.30085e-06
1.97245e-06
2.63025e-06
4.47124e-06
5.17166e-06
5.33508e-06
4.82573e-06
5.04548e-06
4.86907e-06
3.70666e-06
1.42141e-06
0
0
0
0
0
0
0
0
0
0
0
0
5.01028e-06
1.78027e-05
1.58571e-05
4.37666e-07
1.01594e-05
1.55129e-05
1.80734e-05
0
1.08302e-05
1.09011e-05
9.97515e-06
5.22868e-06
5.35176e-07
1.07524e-05
2.19514e-05
2.77115e-05
1.74321e-05
1.81732e-05
1.10676e-06
2.14508e-06
7.25461e-06
1.32705e-05
1.54107e-05
1.31651e-05
1.1401e-05
1.11778e-05
1.01531e-05
9.57852e-06
9.44533e-06
9.47408e-06
8.62113e-06
6.6184e-06
5.74873e-06
6.62528e-06
7.14015e-06
6.79817e-06
9.73513e-06
1.29827e-05
1.6152e-05
1.62374e-05
1.53593e-05
1.54301e-05
1.67965e-05
1.68679e-05
2.07409e-05
2.21153e-05
2.14293e-05
2.04999e-05
1.83015e-05
1.76238e-05
1.6842e-05
1.51245e-05
1.51665e-05
1.43335e-05
1.30773e-05
1.25141e-05
1.15558e-05
1.15352e-05
1.22571e-05
1.39865e-05
1.8079e-05
2.2786e-05
2.186e-05
1.26158e-05
7.7551e-06
1.10384e-05
1.21277e-05
1.35409e-05
1.6728e-05
2.02644e-05
2.09838e-05
1.94755e-05
1.88058e-05
1.84237e-05
1.72268e-05
1.58812e-05
1.45874e-05
1.30121e-05
1.36041e-05
1.35804e-05
1.10468e-05
1.17336e-05
1.15513e-05
1.06493e-05
1.03281e-05
8.69589e-06
8.28085e-06
7.77399e-06
6.94842e-06
6.05166e-06
4.46853e-06
3.436e-06
2.0147e-06
1.46857e-06
1.1069e-06
1.56751e-06
1.96267e-06
2.20873e-06
2.18501e-06
2.20332e-06
1.97129e-06
1.76127e-06
1.97408e-06
1.87707e-06
2.74133e-06
3.68808e-06
5.33263e-06
6.39675e-06
6.96905e-06
6.30623e-06
5.20549e-06
3.59535e-06
2.46104e-06
6.05559e-07
0
0
0
0
0
0
0
0
0
0
0
0
0
0
4.84634e-08
9.78426e-07
3.09104e-06
4.10493e-06
4.38567e-06
3.92909e-06
4.25892e-06
4.26149e-06
3.13766e-06
7.33055e-07
0
0
0
0
0
0
0
0
0
0
0
0
5.2298e-06
1.87976e-05
1.98926e-05
1.55125e-05
1.67702e-05
1.32739e-05
1.71857e-05
2.65642e-07
1.13808e-05
5.64856e-06
1.05056e-05
3.64945e-06
6.83269e-09
1.12361e-05
1.94008e-05
2.70118e-05
1.82017e-05
1.73604e-05
0
0
3.25805e-06
8.70631e-06
1.23958e-05
1.16808e-05
9.73189e-06
9.3544e-06
8.22817e-06
7.05255e-06
6.57508e-06
6.81548e-06
6.25781e-06
4.54657e-06
3.83009e-06
3.25176e-06
2.88074e-06
2.20624e-06
4.02652e-06
5.69589e-06
1.06432e-05
1.38211e-05
1.23555e-05
1.11869e-05
1.32318e-05
1.26751e-05
1.65048e-05
1.94713e-05
1.96284e-05
1.88554e-05
1.65601e-05
1.51718e-05
1.51082e-05
1.36579e-05
1.36672e-05
1.30271e-05
1.1764e-05
1.11685e-05
1.01459e-05
9.91055e-06
1.00882e-05
1.05578e-05
1.21541e-05
1.4124e-05
1.2407e-05
4.91337e-06
5.74192e-06
8.7228e-06
9.17973e-06
9.45929e-06
1.14489e-05
1.56317e-05
1.85775e-05
1.74046e-05
1.59412e-05
1.56327e-05
1.48422e-05
1.35991e-05
1.23791e-05
1.05008e-05
1.14011e-05
1.17699e-05
9.67466e-06
1.00901e-05
9.89234e-06
9.17612e-06
8.85504e-06
7.03961e-06
6.61775e-06
6.11574e-06
5.18418e-06
4.22821e-06
2.45753e-06
1.59908e-06
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1.34548e-06
2.9516e-06
4.25662e-06
4.20726e-06
3.35904e-06
1.63815e-06
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1.13223e-06
2.68457e-06
3.20578e-06
2.92434e-06
3.37505e-06
3.60599e-06
2.58049e-06
6.64607e-08
0
0
0
0
0
0
0
0
0
0
0
0
5.35357e-06
1.9461e-05
1.49383e-05
2.58686e-05
1.61775e-05
1.07983e-05
1.64241e-05
1.06299e-06
1.13914e-05
9.04445e-06
1.24193e-05
1.05389e-06
0
1.14991e-05
1.63789e-05
2.61969e-05
1.89521e-05
1.6348e-05
0
0
3.19791e-08
4.12954e-06
8.30502e-06
9.77702e-06
8.35441e-06
7.83649e-06
6.63278e-06
5.01835e-06
4.04267e-06
4.19422e-06
3.63829e-06
2.04292e-06
2.28127e-06
5.24106e-07
0
0
0
0
3.45005e-06
1.00119e-05
1.05846e-05
7.92061e-06
9.98391e-06
8.97556e-06
1.18785e-05
1.55281e-05
1.7253e-05
1.72644e-05
1.53909e-05
1.32745e-05
1.35375e-05
1.23257e-05
1.22504e-05
1.17223e-05
1.0474e-05
9.83195e-06
8.78313e-06
8.39196e-06
8.20951e-06
7.86944e-06
7.65503e-06
6.7794e-06
3.14444e-06
0
3.81092e-06
6.26761e-06
6.52253e-06
6.19033e-06
7.07127e-06
1.05759e-05
1.48356e-05
1.54429e-05
1.35782e-05
1.27372e-05
1.22941e-05
1.13326e-05
1.01202e-05
7.65781e-06
8.73307e-06
9.60574e-06
8.37083e-06
8.64705e-06
8.31418e-06
7.81382e-06
7.43766e-06
5.45239e-06
4.95594e-06
4.44196e-06
3.3704e-06
2.30878e-06
2.74732e-07
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
6.71108e-07
2.69479e-07
0
0
0
5.2865e-07
2.0788e-06
1.68555e-06
5.56591e-07
0
0
0
0
0
0
0
0
0
0
0
0
0
2.74431e-07
1.38972e-06
1.60387e-06
2.2484e-06
2.80431e-06
1.99152e-06
0
0
0
0
0
0
0
0
0
0
0
0
0
5.3868e-06
2.06218e-05
1.71586e-05
1.4267e-05
1.17468e-05
8.28495e-06
1.61784e-05
9.25465e-07
9.84522e-06
1.40145e-05
1.14953e-05
0
0
1.14243e-05
1.55284e-05
2.52436e-05
1.97112e-05
1.49959e-05
0
0
0
3.00778e-07
3.45309e-06
6.45606e-06
6.69442e-06
6.37667e-06
5.23953e-06
3.40843e-06
1.96224e-06
1.79882e-06
9.58229e-07
0
5.72913e-07
0
0
0
0
0
0
3.49217e-06
8.5211e-06
5.54091e-06
7.24597e-06
5.83595e-06
7.51758e-06
1.06572e-05
1.31683e-05
1.47906e-05
1.43813e-05
1.18353e-05
1.21488e-05
1.10829e-05
1.09386e-05
1.04303e-05
9.20942e-06
8.50471e-06
7.45145e-06
6.94951e-06
6.53279e-06
5.71432e-06
4.46356e-06
1.86869e-06
0
0
1.80176e-06
3.87307e-06
4.02858e-06
3.43413e-06
3.6662e-06
6.12976e-06
1.00903e-05
1.26967e-05
1.1596e-05
1.01138e-05
9.59338e-06
8.9985e-06
7.79452e-06
4.62989e-06
5.62381e-06
6.50084e-06
6.75518e-06
7.35043e-06
6.80179e-06
6.52218e-06
6.02754e-06
3.92853e-06
3.26833e-06
2.73322e-06
1.49761e-06
3.21232e-07
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
8.86681e-08
2.79872e-06
3.60727e-06
3.76982e-06
4.06745e-06
2.55354e-06
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
5.0892e-07
1.60166e-06
1.27477e-06
0
0
0
0
0
0
0
0
0
0
0
0
0
5.33705e-06
2.16108e-05
1.59663e-05
2.26328e-05
1.46362e-05
6.45624e-06
1.69199e-05
1.43129e-07
6.65449e-06
1.41996e-05
6.40457e-06
0
5.69887e-08
1.08708e-05
1.6943e-05
2.41841e-05
2.04237e-05
1.30886e-05
0
0
0
0
0
1.53408e-06
3.6822e-06
4.50611e-06
3.80579e-06
2.05024e-06
3.06983e-07
0
0
0
0
0
0
0
0
0
0
0
3.86036e-06
3.09981e-06
4.87223e-06
3.26818e-06
3.70919e-06
5.92102e-06
7.6992e-06
9.84238e-06
1.26476e-05
1.05899e-05
1.09441e-05
9.89935e-06
9.72588e-06
9.16771e-06
7.96974e-06
7.18812e-06
6.13805e-06
5.55952e-06
4.98896e-06
3.88715e-06
2.06364e-06
0
0
0
0
1.55221e-06
1.56694e-06
8.89785e-07
8.64841e-07
2.61111e-06
5.47347e-06
8.52945e-06
9.3976e-06
7.89566e-06
6.99464e-06
6.59211e-06
5.33844e-06
1.58304e-06
2.31228e-06
2.14237e-06
3.99196e-06
5.95273e-06
5.28788e-06
5.22034e-06
4.48669e-06
2.46464e-06
1.52179e-06
9.61658e-07
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
2.88404e-06
4.17313e-06
4.61964e-06
5.07556e-06
5.61888e-06
6.35898e-06
2.93774e-06
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1.78133e-07
0
0
0
0
0
0
0
0
0
0
0
0
0
5.21177e-06
2.29115e-05
1.71515e-05
2.04357e-05
1.16186e-05
5.97668e-06
1.85635e-05
0
3.33019e-06
8.04926e-06
3.4334e-06
0
1.4206e-07
9.65972e-06
1.8296e-05
2.2995e-05
2.10887e-05
1.07363e-05
0
0
0
0
0
0
0
1.32865e-06
1.87178e-06
6.88315e-07
0
0
0
0
0
0
0
0
0
0
0
0
0
0
2.12425e-06
1.12356e-06
4.15472e-07
1.88052e-06
2.63052e-06
3.53721e-06
7.83607e-06
8.88412e-06
9.79261e-06
8.73841e-06
8.57489e-06
7.94391e-06
6.75062e-06
5.87918e-06
4.82939e-06
4.19803e-06
3.52226e-06
2.23939e-06
6.74157e-08
0
0
0
0
0
0
0
0
0
1.74522e-06
3.72039e-06
5.93181e-06
5.72939e-06
4.62946e-06
4.17443e-06
2.61646e-06
0
0
0
0
3.73249e-06
3.51078e-06
3.70144e-06
2.4322e-06
9.90341e-07
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1.76156e-06
4.49608e-06
5.21436e-06
5.4968e-06
6.1178e-06
6.73355e-06
7.95889e-06
7.58096e-06
3.92514e-06
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
5.01933e-06
2.38979e-05
1.62e-05
2.06671e-05
1.23419e-05
6.39657e-06
2.01876e-05
0
8.54413e-07
1.73623e-06
2.79434e-06
0
2.67947e-07
7.99749e-06
1.86113e-05
2.12955e-05
2.14656e-05
8.62626e-06
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
2.89653e-08
0
0
0
0
0
0
0
0
1.61e-06
4.33027e-06
8.21304e-06
7.47379e-06
7.39135e-06
6.73729e-06
5.53609e-06
4.56323e-06
3.50557e-06
2.8332e-06
2.07628e-06
6.53851e-07
0
0
0
0
0
0
0
0
0
0
0
0
8.23045e-07
2.66539e-06
2.21796e-06
1.70563e-06
0
0
0
0
0
0
6.11222e-07
1.40709e-06
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1.00036e-06
3.8158e-06
5.69029e-06
6.171e-06
6.36207e-06
7.05048e-06
7.78815e-06
8.99076e-06
9.82434e-06
9.11344e-06
5.37785e-06
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1.36845e-07
4.76935e-06
2.45745e-05
1.60049e-05
1.91658e-05
1.18241e-05
7.55411e-06
2.0964e-05
0
0
0
2.61411e-06
0
4.26283e-07
6.19146e-06
1.75198e-05
1.8578e-05
2.20419e-05
7.67906e-06
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1.51957e-06
1.86992e-07
8.43361e-07
1.29119e-06
1.05227e-06
2.06073e-06
2.51559e-06
2.26687e-06
0
0
0
0
0
0
0
0
4.23023e-06
5.67191e-06
5.94588e-06
5.44935e-06
4.27795e-06
3.20254e-06
2.13277e-06
1.41706e-06
5.83413e-07
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
2.84502e-06
5.18287e-06
6.76022e-06
7.12047e-06
7.23437e-06
7.93273e-06
8.84845e-06
9.94108e-06
1.1185e-05
1.17841e-05
1.13329e-05
6.90641e-06
1.56474e-06
0
0
0
0
0
0
0
0
0
0
4.02614e-07
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1.38344e-06
4.47334e-06
2.51909e-05
1.62509e-05
1.85124e-05
1.23796e-05
8.74736e-06
2.05697e-05
0
0
0
2.1113e-06
0
5.72482e-07
4.6034e-06
1.52472e-05
1.59184e-05
2.5096e-05
7.43869e-06
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1.7879e-06
3.59853e-06
2.43614e-06
2.92887e-06
3.24647e-06
3.16119e-06
3.75654e-06
4.73332e-06
4.77425e-06
3.66017e-06
0
0
0
0
0
0
0
0
1.72819e-06
3.64276e-06
3.79837e-06
2.846e-06
1.71512e-06
6.52733e-07
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
3.33339e-07
1.10241e-06
1.26326e-06
2.29767e-07
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1.31707e-06
4.15825e-06
6.32682e-06
7.78513e-06
8.0688e-06
8.11915e-06
8.79703e-06
9.91084e-06
1.09382e-05
1.23272e-05
1.33635e-05
1.45552e-05
1.3589e-05
9.3719e-06
3.98117e-06
9.55873e-07
0
1.17026e-07
1.11308e-06
7.154e-07
0
0
0
2.2551e-06
3.87298e-06
5.09909e-06
3.12551e-06
0
0
0
0
0
0
0
0
0
2.79735e-06
0
0
2.775e-06
4.14478e-06
2.55508e-05
1.72761e-05
1.68032e-05
1.25623e-05
1.01478e-05
1.92532e-05
0
0
0
1.52613e-06
3.6483e-07
6.72632e-07
3.47325e-06
1.28509e-05
1.47863e-05
2.90431e-05
6.46309e-06
3.16633e-07
0
0
0
0
0
0
0
0
0
0
0
0
0
1.32581e-06
4.242e-06
5.44928e-06
4.48753e-06
4.81766e-06
5.04384e-06
5.06802e-06
5.38132e-06
6.48528e-06
6.54905e-06
6.54126e-06
3.98129e-06
0
0
0
0
0
0
0
0
0
1.01104e-06
8.90856e-07
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1.17814e-06
0
3.86932e-06
1.77223e-06
0
1.22956e-06
0
0
5.63003e-07
8.33086e-07
2.64264e-06
3.7737e-06
4.46133e-06
4.06988e-06
3.57455e-06
3.01742e-06
2.32891e-06
7.221e-07
0
0
0
0
0
0
0
0
0
0
2.57528e-06
5.28615e-06
7.39879e-06
8.78719e-06
9.02964e-06
9.05229e-06
9.6892e-06
1.09799e-05
1.20053e-05
1.34779e-05
1.46931e-05
1.63502e-05
1.74043e-05
1.64569e-05
1.2139e-05
7.94604e-06
4.37828e-06
2.6441e-06
2.97822e-06
2.42502e-06
7.37806e-07
0
5.27981e-07
4.06061e-06
5.97822e-06
7.49136e-06
8.92573e-06
4.11859e-06
0
0
0
0
0
0
4.94234e-07
0
5.8198e-06
0
0
4.20522e-06
3.79815e-06
2.59561e-05
1.85604e-05
1.56118e-05
1.31542e-05
1.0826e-05
1.89642e-05
1.66703e-06
0
0
1.36823e-06
9.02675e-07
7.72605e-07
2.79561e-06
1.0672e-05
1.49111e-05
2.63427e-05
5.04871e-06
9.61933e-07
2.32586e-07
2.42709e-07
4.89076e-07
3.71098e-07
6.55822e-07
3.88998e-07
0
0
0
0
0
7.79349e-07
1.2178e-06
3.32614e-06
6.18575e-06
7.11702e-06
6.36894e-06
6.60158e-06
6.79231e-06
6.89004e-06
7.04593e-06
8.08207e-06
8.07363e-06
8.44218e-06
7.80993e-06
5.47485e-06
0
0
6.28559e-07
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
5.12338e-07
9.48398e-07
9.12154e-07
6.86421e-07
1.01971e-06
2.67616e-06
3.55913e-06
2.27794e-06
6.89678e-07
2.86464e-06
1.87941e-06
5.10226e-06
4.1698e-06
6.85549e-06
8.83266e-06
4.51103e-06
1.16425e-05
8.49096e-06
5.92786e-06
4.43357e-06
3.49824e-06
4.91453e-06
6.15974e-06
7.18272e-06
7.28302e-06
7.55282e-06
8.13678e-06
8.90475e-06
8.03136e-06
5.59548e-06
2.67083e-06
4.93603e-07
0
0
0
0
0
0
1.28725e-06
3.8171e-06
6.38408e-06
8.43263e-06
9.78232e-06
1.00417e-05
1.01146e-05
1.06907e-05
1.20915e-05
1.31495e-05
1.47128e-05
1.60905e-05
1.7849e-05
1.94319e-05
2.07688e-05
1.95334e-05
1.61254e-05
1.04705e-05
5.95855e-06
5.07197e-06
4.20499e-06
2.44779e-06
0
1.99428e-06
5.67287e-06
7.79278e-06
9.14991e-06
1.2576e-05
1.10031e-05
5.9218e-07
0
0
0
0
0
2.22474e-06
0
8.28699e-06
0
2.45184e-06
5.56559e-06
3.44846e-06
2.59082e-05
2.06585e-05
1.38128e-05
1.30666e-05
1.30594e-05
1.587e-05
4.84977e-06
1.52577e-06
0
1.73664e-06
1.33918e-06
9.46978e-07
2.48259e-06
8.59965e-06
1.50468e-05
1.71435e-05
4.50061e-06
1.65903e-06
1.03779e-06
1.00018e-06
1.08213e-06
9.73641e-07
1.58466e-06
1.76578e-06
4.10539e-07
0
6.54864e-07
1.53332e-06
2.64899e-06
3.51883e-06
3.46622e-06
5.18887e-06
7.84815e-06
8.64625e-06
8.09055e-06
8.29472e-06
8.52381e-06
8.69372e-06
8.79821e-06
9.68644e-06
9.60137e-06
1.00271e-05
9.82509e-06
1.08299e-05
5.9222e-06
5.53036e-06
6.51816e-06
2.97725e-06
2.31195e-06
6.45558e-07
7.87394e-07
0
0
0
0
0
0
0
0
0
0
2.28073e-07
1.24352e-06
8.88567e-07
0
0
2.43182e-07
1.779e-06
2.98093e-06
3.75027e-06
4.55717e-06
5.22041e-06
5.58729e-06
5.96644e-06
6.57524e-06
7.44783e-06
8.8022e-06
8.79352e-06
6.46437e-06
6.99156e-06
4.80393e-06
7.89193e-06
7.8543e-06
8.8075e-06
1.25439e-05
9.71872e-06
1.53999e-05
1.62422e-05
1.36853e-05
9.91243e-06
6.92446e-06
7.34163e-06
8.42618e-06
9.60152e-06
1.00616e-05
1.09579e-05
1.24502e-05
1.44311e-05
1.53093e-05
1.3774e-05
9.90556e-06
5.87296e-06
3.31294e-06
1.95395e-06
1.29694e-06
5.18707e-07
3.17307e-07
1.0283e-06
2.98645e-06
5.20202e-06
7.56185e-06
9.48489e-06
1.08237e-05
1.11683e-05
1.14296e-05
1.19274e-05
1.33222e-05
1.44019e-05
1.60729e-05
1.76832e-05
1.95194e-05
2.1122e-05
2.30378e-05
2.42972e-05
2.3269e-05
1.73778e-05
1.02199e-05
7.51898e-06
6.07008e-06
4.32407e-06
1.03264e-06
4.27401e-06
7.37425e-06
9.81383e-06
1.12367e-05
1.5116e-05
1.71498e-05
6.68264e-06
7.00046e-07
0
0
0
0
3.48722e-06
0
1.01585e-05
0
5.16311e-06
6.75376e-06
3.11084e-06
2.60164e-05
2.34832e-05
1.29104e-05
1.28121e-05
2.50984e-05
1.58312e-05
8.20823e-06
4.06333e-06
2.67824e-07
2.50517e-06
1.80613e-06
1.26441e-06
2.4331e-06
6.46994e-06
1.46719e-05
1.04456e-05
4.72529e-06
2.44597e-06
1.81382e-06
1.74579e-06
1.64609e-06
1.52309e-06
2.39649e-06
2.91382e-06
2.06623e-06
2.39693e-06
3.57317e-06
4.52785e-06
5.55942e-06
5.99376e-06
5.66724e-06
6.95859e-06
9.36337e-06
1.00878e-05
9.67906e-06
9.8938e-06
1.02303e-05
1.0501e-05
1.06586e-05
1.13857e-05
1.12663e-05
1.15743e-05
1.14969e-05
1.32718e-05
1.16701e-05
1.10313e-05
1.19583e-05
8.82598e-06
7.58008e-06
4.73835e-06
4.42636e-06
3.15905e-06
2.57718e-06
0
0
0
0
0
0
0
1.76557e-06
3.70532e-06
4.4976e-06
4.12289e-06
2.99295e-06
2.60924e-06
3.76405e-06
5.1593e-06
6.48281e-06
7.40141e-06
8.43315e-06
9.39366e-06
1.0102e-05
1.08934e-05
1.18495e-05
1.24354e-05
1.39905e-05
1.47829e-05
1.322e-05
1.26116e-05
8.5307e-06
1.06255e-05
1.09568e-05
1.06466e-05
1.48926e-05
1.33871e-05
1.72446e-05
1.94425e-05
1.95841e-05
1.62675e-05
1.14646e-05
1.01817e-05
1.07113e-05
1.18465e-05
1.26005e-05
1.41135e-05
1.65018e-05
1.92036e-05
2.12119e-05
2.16113e-05
1.88539e-05
1.37277e-05
9.06383e-06
6.07439e-06
4.88351e-06
4.17284e-06
4.1192e-06
4.36542e-06
5.42189e-06
6.9778e-06
8.98726e-06
1.0674e-05
1.20031e-05
1.2509e-05
1.31907e-05
1.36167e-05
1.48104e-05
1.58495e-05
1.76316e-05
1.95227e-05
2.15877e-05
2.31298e-05
2.48604e-05
2.68436e-05
2.79661e-05
2.36198e-05
1.51201e-05
1.04359e-05
7.93259e-06
6.46115e-06
5.43705e-06
8.49723e-06
9.55857e-06
1.22007e-05
1.48685e-05
1.77657e-05
2.2354e-05
1.34199e-05
5.30625e-06
0
0
0
0
4.552e-06
8.0188e-07
1.15307e-05
0
7.52166e-06
7.68328e-06
2.79844e-06
2.54752e-05
2.65119e-05
1.13965e-05
1.19879e-05
4.04312e-05
3.17387e-05
9.53364e-06
6.21038e-06
2.29657e-06
3.53541e-06
2.41143e-06
1.81849e-06
2.60029e-06
4.39477e-06
1.3343e-05
8.22786e-06
5.16221e-06
3.26203e-06
2.57311e-06
2.48059e-06
2.19664e-06
2.05772e-06
3.13063e-06
3.89475e-06
3.58993e-06
4.63669e-06
6.36346e-06
7.50523e-06
8.25611e-06
8.32054e-06
7.85963e-06
8.71188e-06
1.08246e-05
1.15034e-05
1.11926e-05
1.14251e-05
1.19114e-05
1.2318e-05
1.26284e-05
1.32341e-05
1.31563e-05
1.32506e-05
1.32641e-05
1.47581e-05
1.53035e-05
1.50502e-05
1.60233e-05
1.38765e-05
1.34353e-05
1.02933e-05
8.9199e-06
7.10677e-06
6.75732e-06
5.57552e-06
4.08922e-06
2.06102e-07
0
6.3193e-07
2.67795e-06
4.8551e-06
6.56037e-06
7.98717e-06
8.44849e-06
7.92072e-06
6.85597e-06
6.38615e-06
7.34136e-06
8.56064e-06
9.96038e-06
1.10082e-05
1.22087e-05
1.33971e-05
1.43175e-05
1.53756e-05
1.66874e-05
1.71831e-05
1.89604e-05
1.96879e-05
1.93044e-05
1.93533e-05
1.38069e-05
1.41292e-05
1.4321e-05
1.28979e-05
1.68171e-05
1.63265e-05
1.89362e-05
2.11722e-05
2.29512e-05
2.20678e-05
1.7054e-05
1.37561e-05
1.31648e-05
1.40009e-05
1.50397e-05
1.72725e-05
2.06702e-05
2.39599e-05
2.62975e-05
2.7556e-05
2.70359e-05
2.32686e-05
1.73662e-05
1.21522e-05
9.97228e-06
9.68466e-06
1.03122e-05
1.00931e-05
9.48761e-06
9.66527e-06
1.09766e-05
1.22079e-05
1.34515e-05
1.42486e-05
1.56912e-05
1.61012e-05
1.67909e-05
1.76616e-05
1.9555e-05
2.16634e-05
2.40791e-05
2.57751e-05
2.69938e-05
2.85836e-05
3.04612e-05
2.83545e-05
1.99975e-05
1.38027e-05
9.61735e-06
9.05793e-06
1.28675e-05
1.55574e-05
1.30296e-05
1.48079e-05
2.03718e-05
2.16663e-05
2.66419e-05
2.0012e-05
1.08276e-05
2.69472e-06
1.63139e-06
2.21091e-07
2.34112e-06
5.61443e-06
3.69581e-06
1.25082e-05
0
9.52453e-06
8.28078e-06
2.51625e-06
2.54696e-05
2.95417e-05
9.68522e-06
1.55574e-05
4.00431e-05
2.9909e-05
7.64014e-06
7.93429e-06
4.77254e-06
4.84906e-06
3.22167e-06
2.72867e-06
3.0361e-06
2.91556e-06
1.04522e-05
7.26725e-06
5.72109e-06
4.09768e-06
3.33012e-06
3.20442e-06
2.75503e-06
2.63025e-06
3.82319e-06
4.76846e-06
5.02658e-06
6.48763e-06
8.52354e-06
1.01902e-05
1.08958e-05
1.06968e-05
1.01744e-05
1.05744e-05
1.2331e-05
1.29804e-05
1.27307e-05
1.2974e-05
1.36245e-05
1.41864e-05
1.47091e-05
1.52724e-05
1.53365e-05
1.52165e-05
1.53053e-05
1.62189e-05
1.77201e-05
1.79482e-05
1.90147e-05
1.75967e-05
1.82902e-05
1.6676e-05
1.48843e-05
1.2216e-05
1.08877e-05
9.70144e-06
9.73732e-06
8.14905e-06
7.82822e-06
8.25265e-06
9.76525e-06
1.15972e-05
1.28843e-05
1.36517e-05
1.35554e-05
1.26186e-05
1.13343e-05
1.05562e-05
1.12198e-05
1.222e-05
1.36593e-05
1.48327e-05
1.61993e-05
1.75558e-05
1.85873e-05
1.96807e-05
2.12565e-05
2.16435e-05
2.36759e-05
2.40684e-05
2.38286e-05
2.53639e-05
2.04353e-05
1.9163e-05
1.8684e-05
1.61752e-05
1.88728e-05
1.89751e-05
2.10404e-05
2.2953e-05
2.49806e-05
2.63864e-05
2.30741e-05
1.83173e-05
1.59895e-05
1.61482e-05
1.7509e-05
2.06645e-05
2.50575e-05
2.88081e-05
3.11811e-05
3.23041e-05
3.25491e-05
3.14619e-05
2.71193e-05
2.06588e-05
1.69936e-05
1.70418e-05
1.88727e-05
1.89442e-05
1.64504e-05
1.42954e-05
1.42374e-05
1.45143e-05
1.5464e-05
1.6747e-05
1.92611e-05
1.97548e-05
1.95945e-05
2.0094e-05
2.20966e-05
2.42622e-05
2.67908e-05
2.8913e-05
2.96021e-05
3.02649e-05
3.17215e-05
3.15648e-05
2.42783e-05
1.7348e-05
1.10848e-05
1.23121e-05
2.061e-05
2.36825e-05
1.8475e-05
1.79273e-05
2.61735e-05
2.68563e-05
2.99756e-05
2.57058e-05
1.69086e-05
6.16884e-06
4.07564e-06
1.20513e-06
5.71799e-06
6.85053e-06
6.97523e-06
1.31234e-05
1.23793e-06
1.11596e-05
8.47131e-06
2.25155e-06
2.47446e-05
3.26697e-05
7.54104e-06
1.90164e-05
2.76131e-05
2.17574e-05
6.44972e-06
9.34298e-06
7.55879e-06
6.68795e-06
4.41199e-06
4.31045e-06
3.85456e-06
2.16898e-06
7.73939e-06
7.22136e-06
6.52048e-06
4.97683e-06
4.08555e-06
3.90166e-06
3.36852e-06
3.34826e-06
4.55097e-06
5.61614e-06
6.41736e-06
8.07968e-06
1.00988e-05
1.2177e-05
1.33306e-05
1.32477e-05
1.28266e-05
1.27668e-05
1.4041e-05
1.46725e-05
1.44757e-05
1.47316e-05
1.55454e-05
1.62533e-05
1.6959e-05
1.75564e-05
1.78525e-05
1.76497e-05
1.77864e-05
1.81448e-05
1.97955e-05
2.03505e-05
2.15518e-05
2.07472e-05
2.18503e-05
2.21312e-05
2.15955e-05
1.89983e-05
1.63124e-05
1.40001e-05
1.37508e-05
1.35019e-05
1.41865e-05
1.52419e-05
1.68762e-05
1.87555e-05
2.0205e-05
2.07685e-05
2.01764e-05
1.86408e-05
1.68528e-05
1.55359e-05
1.57574e-05
1.64667e-05
1.7889e-05
1.91533e-05
2.06967e-05
2.21999e-05
2.33408e-05
2.43147e-05
2.5992e-05
2.62805e-05
2.82641e-05
2.83677e-05
2.77008e-05
2.94077e-05
2.64561e-05
2.54837e-05
2.43879e-05
2.11099e-05
2.16571e-05
2.16193e-05
2.38083e-05
2.549e-05
2.69144e-05
2.90804e-05
2.85252e-05
2.3747e-05
1.94224e-05
1.8444e-05
2.02319e-05
2.45762e-05
2.96842e-05
3.34405e-05
3.54871e-05
3.63298e-05
3.62112e-05
3.62493e-05
3.47667e-05
3.00375e-05
2.57862e-05
2.54368e-05
2.76145e-05
2.88876e-05
2.61641e-05
2.19335e-05
2.00016e-05
1.85391e-05
1.87484e-05
2.06214e-05
2.3998e-05
2.4557e-05
2.34325e-05
2.33581e-05
2.53717e-05
2.7433e-05
2.94616e-05
3.18793e-05
3.22173e-05
3.1978e-05
3.24719e-05
3.35623e-05
2.76293e-05
2.05448e-05
1.25607e-05
1.61723e-05
2.61397e-05
2.92957e-05
2.47211e-05
2.25117e-05
3.10242e-05
3.17441e-05
3.23054e-05
2.95618e-05
2.28419e-05
1.02038e-05
7.13839e-06
2.43467e-06
9.98223e-06
8.46818e-06
1.05725e-05
1.33251e-05
3.08807e-06
1.23702e-05
8.16096e-06
1.96378e-06
2.45122e-05
3.56233e-05
4.91064e-06
2.28416e-05
1.61787e-05
1.81596e-05
6.65467e-06
1.03993e-05
1.02133e-05
9.27463e-06
6.49532e-06
7.32908e-06
5.22897e-06
1.79908e-06
6.57416e-06
7.87743e-06
7.48771e-06
5.89567e-06
4.88507e-06
4.53293e-06
4.21143e-06
4.56373e-06
5.57125e-06
6.59509e-06
7.88193e-06
9.70531e-06
1.14889e-05
1.35732e-05
1.53376e-05
1.59527e-05
1.6048e-05
1.56758e-05
1.62704e-05
1.69027e-05
1.68167e-05
1.71281e-05
1.80879e-05
1.88663e-05
1.95848e-05
2.02121e-05
2.07361e-05
2.06909e-05
2.08848e-05
2.09528e-05
2.22168e-05
2.28471e-05
2.41255e-05
2.40298e-05
2.53185e-05
2.63848e-05
2.72439e-05
2.63059e-05
2.34592e-05
1.9721e-05
1.80914e-05
1.79138e-05
1.91706e-05
2.09219e-05
2.30444e-05
2.51189e-05
2.68054e-05
2.76571e-05
2.7242e-05
2.55435e-05
2.33953e-05
2.156e-05
2.12523e-05
2.15964e-05
2.28756e-05
2.41043e-05
2.57001e-05
2.72393e-05
2.85229e-05
2.93785e-05
3.09601e-05
3.12077e-05
3.26785e-05
3.22963e-05
3.13833e-05
3.22155e-05
3.02753e-05
3.09737e-05
3.02054e-05
2.72749e-05
2.57209e-05
2.46631e-05
2.71546e-05
2.88858e-05
2.93866e-05
3.08528e-05
3.22943e-05
2.91801e-05
2.35374e-05
2.12152e-05
2.36761e-05
2.92689e-05
3.44164e-05
3.74761e-05
3.87216e-05
3.92312e-05
3.87406e-05
3.88828e-05
3.86494e-05
3.66813e-05
3.40554e-05
3.38219e-05
3.50297e-05
3.6198e-05
3.47771e-05
3.09856e-05
2.85231e-05
2.54168e-05
2.45012e-05
2.64523e-05
2.9411e-05
2.95384e-05
2.77813e-05
2.71619e-05
2.887e-05
3.06872e-05
3.17464e-05
3.4079e-05
3.41888e-05
3.34511e-05
3.29966e-05
3.47037e-05
2.99216e-05
2.27465e-05
1.43293e-05
2.05235e-05
3.06036e-05
3.23383e-05
2.9695e-05
2.81394e-05
3.46595e-05
3.47962e-05
3.3743e-05
3.09557e-05
2.78673e-05
1.44898e-05
1.10694e-05
4.87511e-06
1.50187e-05
1.0628e-05
1.40503e-05
1.29848e-05
5.62598e-06
1.30775e-05
7.19246e-06
1.56618e-06
2.42279e-05
3.92694e-05
3.64732e-06
2.72618e-05
6.8568e-06
1.88839e-05
8.0035e-06
1.12549e-05
1.24035e-05
1.2222e-05
1.01281e-05
1.24635e-05
7.26114e-06
1.7412e-06
6.33878e-06
8.20055e-06
8.10369e-06
7.52638e-06
6.25886e-06
5.18344e-06
5.96546e-06
7.65772e-06
7.83598e-06
8.17534e-06
9.84028e-06
1.19823e-05
1.32687e-05
1.48616e-05
1.69932e-05
1.86881e-05
1.98052e-05
1.97457e-05
1.96041e-05
2.03044e-05
2.0548e-05
2.10569e-05
2.20625e-05
2.2647e-05
2.29918e-05
2.34568e-05
2.40022e-05
2.42742e-05
2.45748e-05
2.48127e-05
2.55353e-05
2.60153e-05
2.71977e-05
2.77779e-05
2.93984e-05
3.05282e-05
3.1478e-05
3.17919e-05
3.05167e-05
2.68206e-05
2.39804e-05
2.31167e-05
2.43812e-05
2.64167e-05
2.87986e-05
3.08373e-05
3.23129e-05
3.29498e-05
3.26578e-05
3.12804e-05
2.94649e-05
2.77333e-05
2.7195e-05
2.72707e-05
2.82384e-05
2.92193e-05
3.05862e-05
3.18663e-05
3.31694e-05
3.39766e-05
3.5323e-05
3.55384e-05
3.62675e-05
3.52359e-05
3.42909e-05
3.42646e-05
3.24973e-05
3.41933e-05
3.40133e-05
3.24045e-05
3.0486e-05
2.84708e-05
3.072e-05
3.22554e-05
3.20509e-05
3.2365e-05
3.41719e-05
3.3069e-05
2.78549e-05
2.50344e-05
2.8518e-05
3.45577e-05
3.86413e-05
4.04306e-05
4.07576e-05
4.09187e-05
4.0272e-05
4.04058e-05
4.0403e-05
3.99311e-05
3.91643e-05
3.96793e-05
4.02422e-05
4.03454e-05
3.93469e-05
3.71153e-05
3.59839e-05
3.33688e-05
3.22692e-05
3.32596e-05
3.41948e-05
3.31526e-05
3.11635e-05
3.03398e-05
3.15124e-05
3.30135e-05
3.32295e-05
3.53831e-05
3.53244e-05
3.44445e-05
3.3349e-05
3.52407e-05
3.11748e-05
2.36208e-05
1.64039e-05
2.55739e-05
3.50419e-05
3.45188e-05
3.28055e-05
3.21891e-05
3.66647e-05
3.59837e-05
3.43618e-05
3.07245e-05
3.13452e-05
1.8555e-05
1.61531e-05
1.08223e-05
2.04072e-05
1.30811e-05
1.6783e-05
1.19149e-05
8.53806e-06
1.3139e-05
5.10776e-06
8.91235e-07
2.51896e-05
4.22291e-05
7.12824e-06
3.23104e-05
0
2.19517e-05
1.05402e-05
1.22537e-05
1.45407e-05
1.47066e-05
1.48631e-05
1.85892e-05
9.65146e-06
2.09679e-06
5.88735e-06
8.45371e-06
7.98344e-06
9.91956e-06
1.00075e-05
7.39258e-06
9.98133e-06
1.44737e-05
1.37509e-05
1.19367e-05
1.36993e-05
1.64351e-05
1.66402e-05
1.68995e-05
1.89012e-05
2.15272e-05
2.35665e-05
2.45827e-05
2.44144e-05
2.53913e-05
2.63492e-05
2.73174e-05
2.81148e-05
2.79824e-05
2.74004e-05
2.72754e-05
2.74581e-05
2.78482e-05
2.82607e-05
2.89245e-05
2.94997e-05
2.9934e-05
3.08718e-05
3.17175e-05
3.34049e-05
3.43171e-05
3.47192e-05
3.49198e-05
3.4663e-05
3.26464e-05
3.0525e-05
2.95828e-05
3.05242e-05
3.21781e-05
3.40861e-05
3.5515e-05
3.63545e-05
3.638e-05
3.581e-05
3.45338e-05
3.31903e-05
3.20326e-05
3.17415e-05
3.18569e-05
3.25215e-05
3.316e-05
3.41577e-05
3.5039e-05
3.62055e-05
3.69733e-05
3.80845e-05
3.82501e-05
3.83844e-05
3.68806e-05
3.5938e-05
3.54387e-05
3.3822e-05
3.57057e-05
3.57966e-05
3.51356e-05
3.40002e-05
3.23182e-05
3.38247e-05
3.45665e-05
3.39342e-05
3.35105e-05
3.49644e-05
3.47013e-05
3.13582e-05
3.0127e-05
3.4402e-05
3.92027e-05
4.14509e-05
4.20452e-05
4.17264e-05
4.16378e-05
4.09543e-05
4.11329e-05
4.11424e-05
4.13028e-05
4.15634e-05
4.24634e-05
4.27555e-05
4.22095e-05
4.11413e-05
3.98297e-05
3.95255e-05
3.81633e-05
3.7804e-05
3.76539e-05
3.68103e-05
3.48601e-05
3.2796e-05
3.20326e-05
3.2836e-05
3.4123e-05
3.38715e-05
3.59381e-05
3.57332e-05
3.48983e-05
3.34782e-05
3.5255e-05
3.14198e-05
2.33025e-05
1.92717e-05
3.13089e-05
3.87468e-05
3.60196e-05
3.42694e-05
3.39654e-05
3.73271e-05
3.59955e-05
3.41681e-05
2.97567e-05
3.23225e-05
2.17891e-05
2.25733e-05
1.97331e-05
2.48717e-05
1.49148e-05
1.83848e-05
1.00269e-05
1.09955e-05
1.1945e-05
4.61308e-07
0
2.62751e-05
4.79187e-05
1.81498e-05
3.74677e-05
7.82076e-06
2.64567e-05
1.42793e-05
1.43925e-05
1.7735e-05
1.71628e-05
1.90786e-05
2.30082e-05
1.15567e-05
2.45838e-06
6.41956e-06
1.23975e-05
9.12578e-06
1.16821e-05
1.33621e-05
1.15389e-05
1.52706e-05
2.16748e-05
2.22914e-05
1.96757e-05
2.13597e-05
2.43214e-05
2.31767e-05
2.13927e-05
2.23018e-05
2.47569e-05
2.67894e-05
2.84205e-05
2.91234e-05
3.04787e-05
3.19434e-05
3.33448e-05
3.38475e-05
3.29101e-05
3.13862e-05
3.05165e-05
3.02004e-05
3.03794e-05
3.0863e-05
3.17399e-05
3.25202e-05
3.32147e-05
3.395e-05
3.4623e-05
3.58862e-05
3.64719e-05
3.64631e-05
3.63436e-05
3.61753e-05
3.53101e-05
3.46412e-05
3.45428e-05
3.52806e-05
3.62355e-05
3.73252e-05
3.80303e-05
3.83303e-05
3.79347e-05
3.71439e-05
3.58541e-05
3.47239e-05
3.39103e-05
3.38591e-05
3.41041e-05
3.46423e-05
3.51001e-05
3.58807e-05
3.65285e-05
3.75948e-05
3.83319e-05
3.92896e-05
3.94354e-05
3.91734e-05
3.7397e-05
3.64451e-05
3.57244e-05
3.44204e-05
3.61912e-05
3.63908e-05
3.6225e-05
3.55531e-05
3.46823e-05
3.56126e-05
3.55924e-05
3.47039e-05
3.39778e-05
3.5032e-05
3.48642e-05
3.34334e-05
3.47723e-05
3.88213e-05
4.17143e-05
4.25889e-05
4.24716e-05
4.17709e-05
4.1526e-05
4.08603e-05
4.11102e-05
4.11385e-05
4.16463e-05
4.24256e-05
4.34272e-05
4.35284e-05
4.2659e-05
4.15341e-05
4.06475e-05
4.06271e-05
3.98828e-05
3.98058e-05
3.90807e-05
3.75812e-05
3.52836e-05
3.32403e-05
3.26091e-05
3.31742e-05
3.4344e-05
3.38251e-05
3.58332e-05
3.54329e-05
3.47735e-05
3.32406e-05
3.4627e-05
3.04913e-05
2.22257e-05
2.46729e-05
3.61385e-05
4.03832e-05
3.63552e-05
3.45393e-05
3.44941e-05
3.69709e-05
3.47444e-05
3.28153e-05
2.81117e-05
3.1445e-05
2.39402e-05
2.79487e-05
2.53251e-05
2.6714e-05
1.54638e-05
1.89503e-05
7.523e-06
1.24442e-05
8.3826e-06
0
0
3.15459e-05
5.24261e-05
3.31612e-05
4.11292e-05
2.30704e-05
3.05168e-05
1.93701e-05
1.94328e-05
2.19835e-05
2.02403e-05
2.16437e-05
2.44475e-05
1.25289e-05
2.51575e-06
9.95412e-06
1.88201e-05
1.45238e-05
1.52301e-05
1.65321e-05
1.65961e-05
2.0491e-05
2.5358e-05
2.67074e-05
2.63741e-05
2.82332e-05
3.00363e-05
2.88376e-05
2.69728e-05
2.64981e-05
2.73871e-05
2.86038e-05
3.01318e-05
3.14705e-05
3.2895e-05
3.41941e-05
3.5417e-05
3.56189e-05
3.44708e-05
3.28025e-05
3.17651e-05
3.1298e-05
3.13192e-05
3.18606e-05
3.27505e-05
3.37067e-05
3.45989e-05
3.52015e-05
3.56846e-05
3.65744e-05
3.69092e-05
3.66956e-05
3.63881e-05
3.6179e-05
3.58471e-05
3.58766e-05
3.62187e-05
3.68525e-05
3.74817e-05
3.82011e-05
3.85654e-05
3.86116e-05
3.80232e-05
3.7138e-05
3.58439e-05
3.48185e-05
3.41633e-05
3.42434e-05
3.4581e-05
3.50967e-05
3.54999e-05
3.61883e-05
3.6725e-05
3.77455e-05
3.84551e-05
3.9283e-05
3.94037e-05
3.87264e-05
3.6754e-05
3.58064e-05
3.50028e-05
3.42194e-05
3.57431e-05
3.60386e-05
3.61968e-05
3.57102e-05
3.54047e-05
3.60519e-05
3.5471e-05
3.44233e-05
3.35269e-05
3.42015e-05
3.40697e-05
3.41615e-05
3.70075e-05
4.0488e-05
4.22438e-05
4.22789e-05
4.16141e-05
4.06045e-05
4.02669e-05
3.96899e-05
4.00559e-05
4.01787e-05
4.10133e-05
4.21357e-05
4.30917e-05
4.29195e-05
4.17884e-05
4.07265e-05
4.01658e-05
4.03313e-05
3.99117e-05
3.99607e-05
3.89468e-05
3.70666e-05
3.4625e-05
3.27576e-05
3.23559e-05
3.25818e-05
3.36307e-05
3.27972e-05
3.47157e-05
3.39341e-05
3.36691e-05
3.2092e-05
3.2628e-05
2.77069e-05
2.18655e-05
3.08494e-05
3.81441e-05
3.98812e-05
3.5069e-05
3.35587e-05
3.38987e-05
3.46881e-05
3.04948e-05
2.85635e-05
2.47576e-05
2.88159e-05
2.45721e-05
2.95169e-05
2.63577e-05
2.62344e-05
1.45832e-05
1.84007e-05
4.3161e-06
1.28299e-05
2.61875e-06
0
0
4.32746e-05
5.73908e-05
4.14983e-05
4.09945e-05
2.88109e-05
3.08959e-05
2.16602e-05
2.22715e-05
2.34575e-05
2.1441e-05
2.23048e-05
2.32073e-05
1.35207e-05
6.92474e-06
1.43511e-05
2.0537e-05
1.93607e-05
2.02431e-05
1.98816e-05
2.00688e-05
2.2896e-05
2.60737e-05
2.72406e-05
2.79761e-05
2.96656e-05
3.04245e-05
2.93145e-05
2.80295e-05
2.74342e-05
2.76959e-05
2.84037e-05
2.98072e-05
3.14544e-05
3.27813e-05
3.37199e-05
3.45166e-05
3.4372e-05
3.32307e-05
3.18059e-05
3.09465e-05
3.05465e-05
3.04824e-05
3.10805e-05
3.18929e-05
3.29783e-05
3.40048e-05
3.44928e-05
3.4783e-05
3.51272e-05
3.50195e-05
3.45269e-05
3.4036e-05
3.38902e-05
3.41544e-05
3.47207e-05
3.53406e-05
3.59039e-05
3.63025e-05
3.67006e-05
3.66893e-05
3.64542e-05
3.56876e-05
3.47746e-05
3.35378e-05
3.26956e-05
3.2269e-05
3.25508e-05
3.30309e-05
3.35606e-05
3.3939e-05
3.45259e-05
3.49375e-05
3.58991e-05
3.65176e-05
3.70459e-05
3.69901e-05
3.53878e-05
3.32053e-05
3.23894e-05
3.17489e-05
3.22179e-05
3.31026e-05
3.36289e-05
3.41741e-05
3.38466e-05
3.42966e-05
3.45961e-05
3.31239e-05
3.1901e-05
3.07577e-05
3.10235e-05
3.14152e-05
3.32272e-05
3.68832e-05
3.98316e-05
4.02275e-05
3.88695e-05
3.7325e-05
3.60176e-05
3.57378e-05
3.54783e-05
3.60957e-05
3.65637e-05
3.79877e-05
3.9432e-05
3.99432e-05
3.89494e-05
3.74838e-05
3.69145e-05
3.69527e-05
3.74085e-05
3.74245e-05
3.75708e-05
3.59278e-05
3.34692e-05
3.12481e-05
3.01029e-05
3.02633e-05
2.957e-05
3.00697e-05
2.83911e-05
3.01529e-05
2.866e-05
2.92079e-05
2.71506e-05
2.60431e-05
2.20474e-05
2.24678e-05
3.3674e-05
3.65631e-05
3.38895e-05
2.89989e-05
2.93132e-05
2.96202e-05
2.65425e-05
1.94935e-05
1.77629e-05
1.68943e-05
2.27787e-05
2.30978e-05
2.80634e-05
2.41135e-05
2.16186e-05
1.04476e-05
1.46593e-05
0
1.11249e-05
0
3.05625e-06
0
3.12917e-05
4.45891e-05
3.39213e-05
2.93032e-05
2.32311e-05
2.44995e-05
1.79277e-05
2.01029e-05
2.00265e-05
1.82797e-05
1.82683e-05
1.48337e-05
9.53359e-06
9.50109e-06
1.46929e-05
1.71897e-05
1.66675e-05
1.76787e-05
1.71362e-05
1.76983e-05
2.01681e-05
2.06422e-05
2.03001e-05
2.18634e-05
2.31473e-05
2.18307e-05
2.04141e-05
2.10312e-05
2.18152e-05
2.14704e-05
2.10141e-05
2.17731e-05
2.37012e-05
2.47833e-05
2.43893e-05
2.33872e-05
2.22487e-05
2.14504e-05
2.13046e-05
2.14426e-05
2.1658e-05
2.16037e-05
2.21157e-05
2.26556e-05
2.36712e-05
2.50161e-05
2.5396e-05
2.49149e-05
2.35846e-05
2.21444e-05
2.10164e-05
2.04259e-05
2.06727e-05
2.20403e-05
2.35797e-05
2.45854e-05
2.48708e-05
2.4641e-05
2.42384e-05
2.3471e-05
2.27743e-05
2.19383e-05
2.12618e-05
2.0414e-05
2.0042e-05
2.01184e-05
2.07887e-05
2.1517e-05
2.20622e-05
2.2359e-05
2.26054e-05
2.27138e-05
2.34114e-05
2.37055e-05
2.35237e-05
2.28913e-05
2.00022e-05
1.77049e-05
1.74283e-05
1.74175e-05
2.04005e-05
2.01583e-05
2.05031e-05
2.2121e-05
2.18531e-05
2.3778e-05
2.37147e-05
2.03777e-05
1.84045e-05
1.70436e-05
1.71794e-05
1.90198e-05
2.39333e-05
2.87565e-05
2.95438e-05
2.60721e-05
2.23238e-05
1.99801e-05
1.89424e-05
1.89911e-05
1.93554e-05
2.00998e-05
2.10508e-05
2.33589e-05
2.49011e-05
2.40621e-05
2.13236e-05
1.97235e-05
2.03571e-05
2.15011e-05
2.22049e-05
2.27371e-05
2.25975e-05
1.97724e-05
1.6836e-05
1.58427e-05
1.70014e-05
1.80724e-05
1.58028e-05
1.42073e-05
1.20964e-05
1.32322e-05
1.17448e-05
1.21261e-05
8.09743e-06
6.53645e-06
8.92456e-06
1.9877e-05
3.02103e-05
2.17258e-05
1.26658e-05
1.09419e-05
1.39056e-05
1.11938e-05
4.42493e-06
0
0
1.45485e-06
8.16303e-06
1.38078e-05
1.49291e-05
8.41895e-06
3.52972e-06
0
0
0
0
0
3.34033e-06
0
)
;
}
hot
{
type nutUWallFunction;
blending stepwise;
Cmu 0.09;
kappa 0.41;
E 9.8;
value uniform 0;
}
cold
{
type nutUWallFunction;
blending stepwise;
Cmu 0.09;
kappa 0.41;
E 9.8;
value nonuniform List<scalar>
2250
(
6.67233e-06
2.83818e-07
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
)
;
}
}
// ************************************************************************* //
|
|
894f12e14abba32bb49593a3bb46c5287aa00bab
|
b301ab714ad4d4625d4a79005a1bda6456a283ec
|
/leetcode/165.cpp
|
59aa8c26452b50abbf9619ad4f9fe9bf4c71970d
|
[] |
no_license
|
askeySnip/OJ_records
|
220fd83d406709328e8450df0f6da98ae57eb2d9
|
4b77e3bb5cf19b98572fa6583dff390e03ff1a7c
|
refs/heads/master
| 2022-06-26T02:14:34.957580
| 2022-06-11T13:56:33
| 2022-06-11T13:56:33
| 117,955,514
| 1
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 835
|
cpp
|
165.cpp
|
class Solution {
public:
// string::size_type next1 = 0, next2 = 0;
int get(string& s, string::size_type& next){
if(next == string::npos) return 0;
string::size_type t = s.find('.', next);
int ret = stoi(s.substr(next, t-next));
next = (t == string::npos)? string::npos:t+1;
return ret;
}
int compareVersion(string version1, string version2) {
int v1=0, v2 = 0;
string::size_type next1 = 0, next2 = 0;
while(v1 == v2){
v1 = get(version1, next1);
v2 = get(version2, next2);
if(next1 == string::npos && next2 == string::npos) break;
// cout << v1 << " " << v2 << " " << next1 << " " << next2 << endl;
}
if(v1 < v2) return -1;
else if(v1 == v2) return 0;
else return 1;
}
};
|
352b4a5b0447f3d7ddc84cb9f22c627cabba1d4e
|
deb541defe31d46d588e97050889da36a4b40dc2
|
/ALDS/ALDS_1_10_A.cpp
|
628f68aa55981c510ee1cc95268e8a3e4e61d5f9
|
[] |
no_license
|
kironbot/AOJ
|
6af31b47c4c78a1e9ec90850cd1a410ffcebf165
|
dadcd054ff426aa76a0784a757f6dd37f302f987
|
refs/heads/master
| 2020-04-03T00:46:13.729945
| 2017-10-25T13:13:28
| 2017-10-25T13:13:28
| 62,116,618
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 373
|
cpp
|
ALDS_1_10_A.cpp
|
#include <iostream>
using namespace std;
const int MAX = 44;
int F[MAX];
int fib(int n){
if(n==0 || n==1) return F[n];
if(F[n] != -1) return F[n];
return F[n] = fib(n-1) + fib(n-2);
}
int main() {
ios::sync_with_stdio(false);
F[0] = F[1] = 1;
for(int i=2; i<=MAX; i++) F[i] = -1;
int n;
cin >> n;
cout << fib(n) << endl;
return 0;
}
|
7c4f1312585ef7e6b87d21b6d0370df1987e4dfd
|
b4881b5b71c66b5210bf05cf10bfd1cc1bf2822d
|
/gps_odometry/src/gps_angle_estimation.cpp
|
f612b05a52f4ac6ac64610b9e8ca5138779c3dad
|
[] |
no_license
|
grvcPerception/gps_measurements
|
679798f0ef804453061a462dd0542f74235c5dc9
|
2a0ac64e7d11b5109fd8967a6b4f5d83c9607f1a
|
refs/heads/master
| 2021-04-15T18:05:27.122187
| 2018-07-19T09:27:48
| 2018-07-19T09:27:48
| 126,209,958
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 2,657
|
cpp
|
gps_angle_estimation.cpp
|
// Jenifer Delgado Rich
// jedelrich@hotmail.com
// Odometria sacada de datos de GPS diferencial (< 2cm de error). El (0,0,0) del eje de referencia es la
// primera posicion que se obtiene del GPS y este eje de referencia esta orientado en Este --> X, Norte --> Y
#include <ros/ros.h>
#include <sensor_msgs/NavSatFix.h>
#include <math.h>
#include <nav_msgs/Odometry.h>
#include <tf/transform_broadcaster.h>
#include <eigen3/Eigen/Dense>
#include <eigen3/Eigen/LU>
#include <eigen3/Eigen/Core>
#include <vector>
#include <termios.h>
#define N_NODOS 1
#define pi 3.14159265359
using namespace Eigen;
double x, y, ang;
bool once = 0;
std::string gps_frame_id;
int getch()
{
static struct termios oldt, newt;
tcgetattr( STDIN_FILENO, &oldt); // save old settings
newt = oldt;
newt.c_lflag &= ~(ICANON); // disable buffering
tcsetattr( STDIN_FILENO, TCSANOW, &newt); // apply new settings
int c = getchar(); // read character (non-blocking)
tcsetattr( STDIN_FILENO, TCSANOW, &oldt); // restore old settings
return c;
}
void gps_odom_callback(const nav_msgs::Odometry& message)
{
once = 1;
x = message.pose.pose.position.x;
y = message.pose.pose.position.y;
}
int main ( int argc, char** argv )
{
ros::init ( argc, argv, "gps_angle_estimation" );
ros::NodeHandle node("~");
std::string gps_topic;
if(!node.getParam("gps_odom_Topic", gps_topic))
{
ROS_ERROR("No port given to 'gpsTopic'");
exit(0);
}
ROS_INFO_STREAM("Subscribed to topic " << gps_topic);
ROS_INFO_STREAM("Este programa se encarga de estimar el angulo necesario (angle_to_north), medido desde el eje y hasta el norte en sentido +, para que el eje x de la odometria gps mire hacia delante del dron.");
ROS_INFO_STREAM("Por favor, procure que el gps este en narrow int en todo momento. Pulse 'y' cuando haya movido el dron en linea recta hacia delante, y cualquier otra tecla para leer la posicion actual");
ros::Subscriber sub = node.subscribe(gps_topic.c_str(), 1, gps_odom_callback);
while(ros::ok())
{
ros::spinOnce();
int c = getch();
if(c == 'y')
{
if(once)
{
ang = atan(-y/x);
if(x*cos(ang+pi) - y*sin(ang+pi) >= 0)
ang = ang+pi;
ROS_INFO("Boton pulsado, angulo %lf, distancia movida %lf",ang*180/pi,x*cos(ang) - y*sin(ang));
ROS_INFO("Saliendo del programa de medida de angulo, pulse Ctrl+c (o espere) para salir de la odometria");
break;
}
else
{
ROS_INFO("Boton pulsado, pero todavia no hay medidas gps");
}
}
}
return 0;
}
|
91f158b7680193b2e10cbcc353f04b1812bfcc8d
|
c55300dde68bcf6e06699e52db6f616ecefa6934
|
/Classes/PlayScene/CharacterLayer/Phoenix.h
|
23b426859b4c9b72e78062f09daf93d2f2e8432b
|
[] |
no_license
|
Crasader/CrayRun
|
40300b0d763c69bc32b6a05936b1deaa00943f73
|
535fcdd14ad9eddc68017b3bc2978098b330a574
|
refs/heads/master
| 2020-11-29T04:14:18.838476
| 2017-07-27T05:34:19
| 2017-07-27T05:34:19
| null | 0
| 0
| null | null | null | null |
SHIFT_JIS
|
C++
| false
| false
| 309
|
h
|
Phoenix.h
|
/* ---- 多重インクルードの防止 ---------- */
#pragma once
/* ---- インクルード ---------- */
#include "cocos2d.h"
#include "Character.h"
class Phoenix : public Character
{
public:
bool init();
CREATE_FUNC(Phoenix);
void Animation();
private:
const float SCORECORRECTION = 1.5f;
};
|
656ef4674efefaeb7dd760c8912ded67a599aa30
|
58321bfca0f7e034beb59dfd9d788257119d687b
|
/dialog.h
|
ea7269549a38532a7c7d5f1a9289a0bc647ba6c2
|
[] |
no_license
|
Siumauricio/Zip-Explorer
|
88550d428cd7604378e357226b966fb013da3a42
|
3c0fd6a185e30b1287db5e75971759b8b0e4764a
|
refs/heads/master
| 2022-11-30T10:43:54.323372
| 2020-07-25T02:38:17
| 2020-07-25T02:38:17
| 247,225,755
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 397
|
h
|
dialog.h
|
#ifndef DIALOG_H
#define DIALOG_H
#include <QDialog>
#include <QString>
namespace Ui {
class Dialog;
}
QString getTexto(QString);
class Dialog : public QDialog
{
Q_OBJECT
public:
Ui::Dialog *ui;
Dialog(QWidget *parent,QString&,QString&,QString&);
Dialog(QString&);
~Dialog();
private slots:
void on_textBrowser_historyChanged();
private:
};
#endif // DIALOG_H
|
bf16611e0488093f107f7d600c8e8cfad2a7e66b
|
5480d3bfbe5c2007dfca3fbfe4c19b963cad2cf5
|
/Array/MaximumSumSubarray.cpp
|
90912f1121d73a49ecf7befe5c05d60850dcb174
|
[] |
no_license
|
akey-/codes
|
4995c5e0c445ded3ec7154fe751b718333654330
|
ba12bba02fbf517eb4ece4259c27fa8212c7bbbd
|
refs/heads/master
| 2021-01-15T22:34:46.709617
| 2013-10-09T12:15:38
| 2013-10-09T12:15:38
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 732
|
cpp
|
MaximumSumSubarray.cpp
|
/* Program To find the maximum sum subarray of an array
Algorithm : Kaden's algorithm for finding maximum sum subarray
Written By : Akey
*/
#include<iostream>
#include<cstdio>
#include<cmath>
#include<cstring>
using namespace std;
int main()
{
int n;
scanf("%d",&n);
int a[n];
for(int i=0;i<n;i++) scanf("%d",a+i);
int currSum=0;
int maxSum=0;
int start,end;
for(int i=0;i<n;i++)
{
if(currSum<=0)
{
currSum=0;
start=i;
}
currSum+=a[i];
if(maxSum<currSum)
{
maxSum=currSum;
end=i;
}
}
printf("Sum :%d and between %d to %d indexes\n",maxSum,start,end);
return 0;
}
|
f6ef78b89dd05a043698d9ee96e559b83588a12b
|
31a457260e60e50ddd3bbf3d3d9a7afe1f6594e3
|
/Src/GPIOGuard.cpp
|
3bf2050149093ed3d4be9a5e6be221121ef8c650
|
[] |
no_license
|
yxwsbobo/stm32Test
|
b02c678afabf41ae20a7afb2c7b25996399b8b7d
|
726583fc3a0eda7de9acae7959a7c6358f91d240
|
refs/heads/master
| 2020-05-20T12:39:51.370659
| 2019-05-21T02:19:41
| 2019-05-21T02:19:41
| 185,578,258
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 267
|
cpp
|
GPIOGuard.cpp
|
//
// Created by kin on 19-5-7.
//
#include "GPIOGuard.h"
GPIOGuard::GPIOGuard(const GPIOInfo &info) : info(info) {
HAL_GPIO_WritePin(info.Port, info.Pin, GPIO_PIN_RESET);
}
GPIOGuard::~GPIOGuard() {
HAL_GPIO_WritePin(info.Port, info.Pin, GPIO_PIN_SET);
}
|
46cf32a20322e47ca657c9238d98577312971775
|
b9843c7be60b65f4cd489e4e91efb305bcaef4e8
|
/pilha2.cpp
|
d95f25063ada17f33e667f02ece8c633f4a17757
|
[
"MIT"
] |
permissive
|
brunoorlandin/cc4652
|
f19c2374b508d5b0fdcca98b643b5d6c961437f6
|
4bd782ff59cf044daf99d5d4d97f28a2961784e1
|
refs/heads/main
| 2023-06-04T17:10:57.070170
| 2021-06-28T23:04:16
| 2021-06-28T23:04:16
| 381,179,518
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 2,505
|
cpp
|
pilha2.cpp
|
/**
* @author : Guilherme Wachs Lopes (gwachs@fei.edu.br)
* @file : Pilha
* @created : quarta mai 05, 2021 19:58:32 -03
*/
#include <iostream>
using namespace std;
//classe pilha estatica
template <typename T> class Pilha {
public:
virtual bool empilha(T valor) = 0;
virtual T desempilha() = 0;
virtual int tamanho() = 0;
virtual ~Pilha() {}
};
template <typename T, int MAX> class PilhaEstatica : public Pilha<T> {
private:
T v[MAX];
int n;
public:
PilhaEstatica() {
n=0;
}
int getn () {
return n;
}
bool empilha(T valor) {
if (n < MAX) {
v[n] = valor;
n++;
}
else {
cout << "pilha cheia" << endl;
}
return false;
}
T desempilha() {
if (n > 0) {
n--;
return v[n];
}
return -1;
}
int tamanho() {
return n;
}
~PilhaEstatica() {}
};
//No da pilha dinâmica (não alterar)
template <typename T> class No {
private:
public:
No(){
cout << "#No Criado#" << endl;
}
~No(){
cout << "#No Destruido#" << endl;
}
T valor;
No<T> *proximo;
};
//Pilha dinamica
template <typename T> class PilhaDinamica : public Pilha<T>{
private:
No<T> *ultimo;
int n;
public:
PilhaDinamica() {
ultimo = nullptr;
n = 0;
}
bool empilha(T value){
No<T> *novo = new No<T>;
if (novo == nullptr){
return false;
}
novo->valor = value;
novo->proximo = ultimo;
ultimo = novo;
n++;
return true;
}
T desempilha(){
No<T> *temp = ultimo;
T ret = temp->valor;
ultimo = ultimo->proximo;
delete temp;
n--;
return ret;
}
int tamanho(){
return n;
};
~PilhaDinamica() {
int tam = n;
for (int i = 0; i < tam; i++){
this->desempilha();
}
}
};
//Não alterar o teste
void testaPilha(Pilha<int> &p) {
for (int i = 0; i < 5; i++) {
p.empilha(i);
}
cout << p.desempilha() << endl;
cout << p.desempilha() << endl;
cout << p.desempilha() << endl;
for (int i = 0; i < 3; i++) {
p.empilha(i);
}
while (p.tamanho() > 2) {
cout << p.desempilha() << endl;
}
}
//Implementar as classes PilhaEstatica<T,MAX> e PilhaDinamica<T> herdando de Pilha<T>
//não alterar o main
int main() {
PilhaEstatica<int, 20> pe;
testaPilha(pe);
PilhaDinamica<int> pd;
testaPilha(pd);
return 0;
}
|
9e78f519931ea9372ffb415ebae93a37e1f002b9
|
8a11dceabdf2286777d30c32a02e8d045feac907
|
/Arrays-primary/283-movezeros.cpp
|
a2555b8554b5c365035635bac7555f06050c8236
|
[] |
no_license
|
warmthless/LeetCode
|
192cb83dcb33005c0a583ba293efd39684e556fc
|
7d3a29162a3bde61f5a20d01ce42c76dbc52c5f7
|
refs/heads/master
| 2020-03-22T12:53:02.794513
| 2018-07-25T12:35:05
| 2018-07-25T12:35:05
| 140,061,654
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 712
|
cpp
|
283-movezeros.cpp
|
//16ms
class Solution {
public:
void moveZeroes(vector<int>& nums) {
int n = nums.size();
if(!n) return;
int i = 0,count=0;
for(int p = 0; p<n; ++p){
if(nums[p]!=0) count++;
}
if(!count) return;
while (i < count){
if(nums[i]==0){
nums.erase(nums.begin()+i);
nums.push_back(0);
}
else {
++i;
}
}
}
};
//16ms
class Solution {
public:
void moveZeroes(vector<int>& nums) {
for (int i = 0, j = 0; i < nums.size(); ++i) {
if (nums[i]) {
swap(nums[i], nums[j++]);
}
}
}
};
|
c7c39521c7c5f1cdfa88f1ada8145f0f97310959
|
62d74675721d939baae340864c0e79d3037df189
|
/sample program/vector_cpp.cpp
|
b9ba5189bb304e1499f9a91e69a6d23a2b62b79d
|
[] |
no_license
|
shubhamkanade/cpp-program
|
c5fe1c85d2adac7c67ebd934c34e9b69509466d4
|
0cf279bd9cd473541a8a72bfee1f4b948d7fdaba
|
refs/heads/master
| 2021-07-12T08:49:14.479420
| 2021-07-06T03:24:06
| 2021-07-06T03:24:06
| 172,293,386
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 317
|
cpp
|
vector_cpp.cpp
|
#include<bits/stdc++.h>
using namespace std;
int main()
{
vector<int> v;
int n = 0;
cin >> n;
for(int i = 0;i < n;i++)
{
int a;
cin >> a;
v.push_back(a);
}
for(int i = 0;i < n;i++)
cout << v[i] << " ";
//v.push_back(10);
//v.push_back(20);
//v.push_back(30);
//for(int i : v)
//cout<<i;
}
|
19e236e4e9d632b8a3c82849a7152af7e653b6fc
|
73325ee0dd580465a70a361b895a13e8fa175a3f
|
/Wondercraft/Wondercraft/TileType.hpp
|
819dad4aa69ffb190373f71b53cd5cf565a66310
|
[] |
no_license
|
MitchellBlanchard/Wondercraft
|
354e3a131b10e10b15ba3a2071e2a76920078775
|
1d2f21a0c0a36080dd2ce3e7c005846e1ebf6b51
|
refs/heads/master
| 2021-03-24T10:05:06.744916
| 2017-04-03T15:22:35
| 2017-04-03T15:22:35
| 81,681,175
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 81
|
hpp
|
TileType.hpp
|
#pragma once
namespace TileType {
enum TileType {
NONE,
STONE,
THIN
};
}
|
912b2967918ac5e3154a0ab2d557961fc232c72e
|
828723f5586b09d8c1fcbe8f1d5e8e1b8ef7d4a8
|
/2048_Carlos/board.cpp
|
5be7c309f81d27cb31e64e34fc97fd6bf68b4c17
|
[] |
no_license
|
Carlos-yyt/2048_simple
|
dca9f662dec8c2856214b5b5ae3477ec176faeeb
|
608264e74e854be98820f6acce241a9ca3f01639
|
refs/heads/master
| 2020-03-28T17:26:42.086464
| 2018-09-16T01:12:06
| 2018-09-16T01:12:06
| 148,790,721
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 3,299
|
cpp
|
board.cpp
|
#include "board.h"
board::board()
{
}
board::~board()
{
}
int board::checkBoard()
{
int maxCell_pur = 0; //当前单个格子最大值
int score_pur = 0; //当前总得分
int BlankCell = 16; //空格子的个数
step++;
//遍历当前棋盘
for (int i = 0; i < 4; i++)
{
for (int j = 0; j < 4; j++)
{
if (BOARD[i][j] != 0)
{
score_pur += BOARD[i][j];
if (BOARD[i][j] > maxCell_pur)
{
maxCell_pur = BOARD[i][j];
}
BlankCell--;
}
}
}
//更新玩家得分数据
maxCell = maxCell_pur;
score = score_pur;
//判断游戏状态(输、赢、继续)
if (maxCell == MAX_NUM)
{
return WIN;
}
else if (BlankCell == 0)
{
return LOSS;//没有2048,又满格了,那就是输了
}
return CONTINUE;
}
inline void board::lineMove(int * line)
{
int i = 0;
int j = 0;
int k = 0;
int fullZero = 1;//剩下的全是零
//消除空格 归并相同项
for (i = 1; i < 4; i++)
{
fullZero = 1;
for (k = i; k < 4; k++)
{
if (line[k] != 0)
{
fullZero = 0;
}
}
if (fullZero)
{
return ;//全是零
}
if (line[i - 1] == line[i] && line[i] != 0)//归并相同的 0不归并
{
line[i - 1] = line[i] + line[i - 1];
line[i] = 0;
}
if (line[i - 1] == 0)//消除空格
{
for (j = i - 1; j < 3 ; j++)
{
line[j] = line[j + 1];
}
line[3] = 0;//最后一位补0
i-=2;//消除完空格之后 要再来一轮
}
}
return ;//不全是零
}
void board::leftMove()
{
int i = 0;
int j = 0;
int line[4] = { 0 };
for (i = 0; i < 4; i++)
{
for (j = 0; j < 4; j++)
{
line[j] = BOARD[i][j];
}
lineMove(line);
for (j = 0; j < 4; j++)
{
BOARD[i][j] = line[j];
}
}
}
void board::rightMove()
{
int i = 0;
int j = 0;
int line[4] = { 0 };
for (i = 0; i < 4; i++)
{
for (j = 3; j >= 0; j--)
{
line[3 - j] = BOARD[i][j];
}
lineMove(line);
for (j = 3; j >= 0; j--)
{
BOARD[i][j] = line[3 - j];
}
}
}
void board::upMove()
{
int i = 0;
int j = 0;
int line[4] = { 0 };
for (j = 0; j < 4; j++)
{
for (i = 0; i < 4; i++)
{
line[i] = BOARD[i][j];
}
lineMove(line);
for (i = 0; i < 4; i++)
{
BOARD[i][j] = line[i];
}
}
}
void board::downMove()
{
int i = 0;
int j = 0;
int line[4] = { 0 };
for (j = 0; j < 4; j++)
{
for (i = 3; i >= 0; i--)
{
line[3 - i] = BOARD[i][j];
}
lineMove(line);
for (i = 3; i >= 0; i--)
{
BOARD[i][j] = line[3 - i];
}
}
}
void board::Usermove(int choice)
{
switch (choice)
{
case 1:upMove(); break;
case 2:downMove(); break;
case 3:leftMove(); break;
case 4:rightMove(); break;
default:
break;
}
}
void board::showBoard()
{
system("CLS");//清屏
int i = 0;
int j = 0;
for (i = 0; i < 4; i++)
{
for (j = 0; j < 4; j++)
{
printf("%d\t", BOARD[i][j]);
}
printf("\n");
}
printf("\n\n\n");
printf("当前单格最大值:%d\n", maxCell);
printf("当前总分:%d\n\n", score);
printf("请使用小写英文wsad(对应上下左右)控制游戏。\n");
}
void board::newNumber()
{
int x = 0;
int y = 0;
int newNumber = 0;
do
{
x = rand() % 4;
y = rand() % 4;
} while (BOARD[x][y] != 0);
while (1)
{
newNumber = (rand() % 5) / 2;
if (newNumber != 0 && newNumber!=1)
{
BOARD[x][y] = newNumber;
break;
}
}
}
|
b4dc9e9678805a9252dab288c4bb40ebdd9b6f91
|
3818e4ff82a096218578e4e7a60caaaddcd6756d
|
/Test/Data/taskstatesim.h
|
5a56bc959d277d0baa3829463437a357595f354c
|
[
"MIT"
] |
permissive
|
ccicconetti/serverlessonedge
|
bb47e1f419457c8a37f0ab8f37b16eda135d362c
|
f7493651aa2c83eb0735d1b8631096efcad62433
|
refs/heads/master
| 2023-02-25T13:17:39.384292
| 2022-12-27T11:42:29
| 2022-12-27T11:42:29
| 243,232,342
| 38
| 7
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 5,916
|
h
|
taskstatesim.h
|
// generated with:
//
// mkdir output && ./spar --duration 0.001388888888888889 output
//
// https://github.com/All-less/trace-generator
//
// clang-format off
const std::string theTasks =
"0.5944444444444444,j_1,task_NDg2ODM2NDIyMDczNDQ4NzMzOA==,5729,500.0,1.91,50\n"
"0.5944444444444444,j_1,task_ODI0NzAxNTU2MTczMTI5NTMz,5725,300.0,0.96,1\n"
"0.5944444444444444,j_1,task_NzkwNTc4MjA2ODI2MzE3NzU4MQ==,5736,300.0,3.82,30\n"
"1.4180555555555556,j_2,M1,1,50.0,0.2,1\n"
"1.5819444444444446,j_3,M1,7,100.0,0.2,351\n"
"1.8527777777777779,j_4,M7,5,100.0,0.3,1\n"
"1.8527777777777779,j_4,J14_12_13,21,100.0,0.59,25\n"
"1.8527777777777779,j_4,M4,10,100.0,0.3,3\n"
"1.8527777777777779,j_4,M13,4,100.0,0.3,1\n"
"1.8527777777777779,j_4,M1,2,100.0,0.3,8\n"
"1.8527777777777779,j_4,J10_6_9,14,100.0,0.59,11\n"
"1.8527777777777779,j_4,M6,2,100.0,0.3,4\n"
"1.8527777777777779,j_4,R18_17,27,100.0,0.39,1\n"
"1.8527777777777779,j_4,R17_16,26,100.0,0.49,35\n"
"1.8527777777777779,j_4,M5,3,100.0,0.3,1\n"
"1.8527777777777779,j_4,J12_3_4_11,19,100.0,0.59,23\n"
"1.8527777777777779,j_4,M2,1,100.0,0.3,1\n"
"1.8527777777777779,j_4,J11_5_10,16,100.0,0.59,13\n"
"1.8527777777777779,j_4,J16_1_15,25,100.0,0.59,35\n"
"1.8527777777777779,j_4,J15_2_14,24,100.0,0.59,27\n"
"1.8527777777777779,j_4,M3,4,100.0,0.3,7\n"
"1.8527777777777779,j_4,J9_7_8,12,100.0,0.59,7\n"
"1.8527777777777779,j_4,M8,9,100.0,0.3,5\n"
"2.2375000000000003,j_5,M1,1,100.0,0.2,1\n"
"2.263888888888889,j_6,R2_1,0,100.0,0.39,1\n"
"2.263888888888889,j_6,M1,0,100.0,0.3,1\n"
"2.345833333333333,j_7,R3_2,3,50.0,0.2,1\n"
"2.345833333333333,j_7,R2_1,3,50.0,0.2,1\n"
"2.345833333333333,j_7,M1,3,50.0,0.2,1\n"
"2.601388888888889,j_8,M1,5,100.0,0.3,1\n"
"2.601388888888889,j_8,M2,11,100.0,0.3,1318\n"
"2.601388888888889,j_8,J4_1_2_3,165,100.0,0.59,1111\n"
"2.601388888888889,j_8,R5_4,32,100.0,0.39,25\n"
"2.601388888888889,j_8,M3,235,100.0,0.3,10396\n"
"2.6083333333333334,j_9,M3_2,4,100.0,0.2,1\n"
"2.6083333333333334,j_9,R2_1,4,100.0,0.39,1\n"
"2.6083333333333334,j_9,M1,4,100.0,0.3,1\n"
"3.026388888888889,j_10,M1,0,50.0,0.2,1\n"
"3.0361111111111114,j_11,M4,8,50.0,0.2,37\n"
"3.0361111111111114,j_11,M6,11,50.0,0.3,36\n"
"3.0361111111111114,j_11,R5_4,46,50.0,0.2,1\n"
"3.0361111111111114,j_11,R8_5_7,71,50.0,0.2,1\n"
"3.0361111111111114,j_11,R9_3_8,110,50.0,0.3,1\n"
"3.0361111111111114,j_11,M2,12,50.0,0.3,1\n"
"3.0361111111111114,j_11,R7_6,40,50.0,0.2,1\n"
"3.0361111111111114,j_11,M1,19,50.0,0.39,1\n"
"3.0361111111111114,j_11,J10_1_2_9,165,50.0,0.3,1\n"
"3.0361111111111114,j_11,M3,28,50.0,0.2,1\n"
"3.0708333333333333,j_12,task_ODk2MzU0ODg1MTY5MTExNTUwMg==,7,10.0,0.05,1\n"
"3.0708333333333333,j_12,task_LTE4NjUxMjg5NDY5MDI4NjAzNzU=,20,5.0,0.03,1\n"
"3.0708333333333333,j_12,task_MTM0ODUxMTY0NjQzMTI1NTc1MQ==,14,30.0,0.05,1\n"
"3.0875,j_13,R2_1,23,100.0,0.49,1\n"
"3.0875,j_13,M16_15,28,100.0,0.3,1\n"
"3.0875,j_13,R20_19,40,100.0,0.49,13\n"
"3.0875,j_13,M7,40,100.0,0.3,6\n"
"3.0875,j_13,R3_2,23,100.0,0.39,1\n"
"3.0875,j_13,R19_18,40,100.0,0.49,13\n"
"3.0875,j_13,M11,17,100.0,0.3,1\n"
"3.0875,j_13,M14,20,100.0,0.3,1\n"
"3.0875,j_13,J13_6_7_10_12,40,100.0,0.59,9\n"
"3.0875,j_13,J18_3_5_13_17,40,100.0,0.59,13\n"
"3.0875,j_13,M6,38,100.0,0.3,1\n"
"3.0875,j_13,M8,17,100.0,0.3,1\n"
"3.0875,j_13,R17_16,28,100.0,0.49,1\n"
"3.0875,j_13,R5_4,18,100.0,0.39,1\n"
"3.0875,j_13,R12_11,18,100.0,0.39,1\n"
"3.0875,j_13,M10_9,23,100.0,0.3,1\n"
"3.0875,j_13,M1,23,100.0,0.3,1\n"
"3.0875,j_13,R21_20,40,100.0,0.39,1\n"
"3.0875,j_13,R9_8,18,100.0,0.39,1\n"
"3.0875,j_13,M4,17,100.0,0.3,1\n"
"3.0875,j_13,R15_14,21,100.0,0.39,1\n"
"3.155555555555556,j_14,R2_1,1,50.0,0.2,1\n"
"3.155555555555556,j_14,M1,1,50.0,0.2,1\n"
"3.155555555555556,j_14,M3_2,6,50.0,0.2,1\n"
"3.1722222222222225,j_15,R13_12,4,100.0,0.39,1\n"
"3.1722222222222225,j_15,M1,60,100.0,0.3,1\n"
"3.1722222222222225,j_15,R12_11,40,100.0,0.49,1\n"
"3.1722222222222225,j_15,M6,34,100.0,0.3,12\n"
"3.1722222222222225,j_15,R11_10,62,100.0,0.49,1\n"
"3.1722222222222225,j_15,J10_1_9,294,100.0,0.59,1\n"
"3.1722222222222225,j_15,M4,16,100.0,0.35,1\n"
"3.1722222222222225,j_15,R5_4,11,100.0,0.39,1\n"
"3.1722222222222225,j_15,M3,84,100.0,0.3,1\n"
"3.1722222222222225,j_15,M7,106,100.0,0.3,1104\n"
"3.1722222222222225,j_15,M2,46,100.0,0.3,1\n"
"3.1722222222222225,j_15,J8_5_6_7,111,100.0,0.64,1111\n"
"3.1722222222222225,j_15,J9_2_3_8,52,100.0,0.59,25\n"
"3.6458333333333335,j_16,M1,30,50.0,0.39,1\n"
"3.7416666666666667,j_17,M1,18,50.0,0.3,2\n"
"3.7416666666666667,j_17,R2_1,33,50.0,0.2,1\n"
"3.823611111111111,j_18,M3,4,50.0,0.2,1\n"
"3.823611111111111,j_18,J5_1_2_4,25,50.0,0.2,1\n"
"3.823611111111111,j_18,M1,8,50.0,0.2,2\n"
"3.823611111111111,j_18,M2,6,50.0,0.3,1\n"
"3.823611111111111,j_18,R4_3,10,50.0,0.2,1\n"
"3.8472222222222223,j_19,R4_3,25,100.0,0.39,1\n"
"3.8472222222222223,j_19,R2_1,24,100.0,0.49,3\n"
"3.8472222222222223,j_19,R3_2,24,100.0,0.49,1\n"
"3.8472222222222223,j_19,M1,24,100.0,0.3,3\n"
"4.084722222222222,j_20,M1,6,50.0,0.39,4\n"
"4.402777777777778,j_21,M2,24,100.0,0.2,1\n"
"4.402777777777778,j_21,M1,24,100.0,0.2,1\n"
"4.904166666666667,j_22,R2_1,5,100.0,0.39,1\n"
"4.904166666666667,j_22,M1,4,100.0,0.3,1\n"
"4.904166666666667,j_22,M3_2,42,100.0,0.25,1\n"
"4.923611111111112,j_23,R2_1,4,100.0,0.39,1\n"
"4.923611111111112,j_23,M3_2,56,100.0,0.25,1\n"
"4.923611111111112,j_23,M1,3,100.0,0.3,1\n"
"4.966666666666667,j_24,R2_1,3,100.0,0.39,1\n"
"4.966666666666667,j_24,M1,3,100.0,0.3,1\n"
"4.966666666666667,j_24,M3_2,54,100.0,0.25,1\n";
// clang-format on
|
af0fa9a4cb89296c3e88e5c5564409da48bb3503
|
73e9ad425e832d45b5915d2e5a20f8bec3c6340c
|
/lib/data/batch_dataset.h
|
2a0ebc691e66bfc444a30927f84ac7a9ed086941
|
[
"Apache-2.0",
"MIT"
] |
permissive
|
dmellosanjay/runtime
|
d7efab102eb5df28103f5ededb53b5d8fb40f6f7
|
17fadbfa00cffddd6abb6c558b4ffa2099814de8
|
refs/heads/master
| 2023-04-07T21:32:33.463175
| 2021-04-06T19:39:46
| 2021-04-06T19:41:41
| 355,342,402
| 0
| 1
|
Apache-2.0
| 2021-04-06T22:10:41
| 2021-04-06T22:10:41
| null |
UTF-8
|
C++
| false
| false
| 20,141
|
h
|
batch_dataset.h
|
/*
* Copyright 2020 The TensorFlow Runtime Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
//===- batch_dataset.h ------------------------------------------*- C++ -*-===//
//
// This file declares BatchDataset class which wraps around another Dataset
// instance and batches the underlying elements before returning them via
// GetNext().
//
//===----------------------------------------------------------------------===//
#ifndef TFRT_DATA_BATCH_DATASET_H_
#define TFRT_DATA_BATCH_DATASET_H_
#include "llvm/ADT/SmallVector.h"
#include "tfrt/data/dataset.h"
#include "tfrt/host_context/execution_context.h"
#include "tfrt/support/error_util.h"
#include "tfrt/support/forward_decls.h"
#include "tfrt/support/ref_count.h"
#include "tfrt/support/string_util.h"
#include "tfrt/support/template_util.h"
#include "tfrt/tensor/dense_host_tensor.h"
#include "tfrt/tensor/dense_host_tensor_view.h"
#include "tfrt/tensor/tensor_metadata.h"
namespace tfrt {
namespace data {
template <typename... T>
class BatchDatasetIterator;
template <typename T>
TensorMetadata GetMetadataFromValue(T& value) {
return TensorMetadata(GetDType<T>(), {});
}
template <>
inline TensorMetadata GetMetadataFromValue<DenseHostTensor>(
DenseHostTensor& value) {
return value.metadata();
}
// Recursive base case
template <size_t N>
static void GetInputMetadataHelper(
const SmallVector<RCReference<AsyncValue>, 4>& input,
const SmallVector<AsyncValueRef<TensorMetadata>, 4>& results) {}
// For every component in input, copy its metadata into the corresponding index
// in results when it is available.
template <size_t N, typename T, typename... RemainingT>
static void GetInputMetadataHelper(
const SmallVector<RCReference<AsyncValue>, 4>& input,
const SmallVector<AsyncValueRef<TensorMetadata>, 4>& results) {
auto index = N - (sizeof...(RemainingT) + 1);
// Emplace index-th metadata
input[index]->AndThen([component = input[index].CopyRef(),
result = results[index].CopyRef()]() {
if (component->IsError()) {
result.SetError(component->GetError());
return;
}
result.emplace(GetMetadataFromValue(component->get<T>()));
});
GetInputMetadataHelper<N, RemainingT...>(input, results);
}
template <typename... T>
SmallVector<AsyncValueRef<TensorMetadata>, 4> GetInputMetadata(
const SmallVector<RCReference<AsyncValue>, 4>& input, HostContext* host) {
SmallVector<AsyncValueRef<TensorMetadata>, 4> metadatas;
metadatas.resize(sizeof...(T));
for (size_t i = 0; i < sizeof...(T); ++i) {
metadatas[i] = MakeUnconstructedAsyncValueRef<TensorMetadata>(host);
}
GetInputMetadataHelper<sizeof...(T), T...>(input, metadatas);
return metadatas;
}
// Copy bytes of `src` to the index-th element of `dst`. This is useful to batch
// multiple scalar values into a DenseHostTenor.
template <typename T>
void CopyDataHelper(T* src, DenseHostTensor* dst, int index) {
int data_size = sizeof(*src);
char* dst_ptr = static_cast<char*>(dst->data()) + index * data_size;
std::memcpy(dst_ptr, src, data_size);
}
// Copy bytes of `src` to the index-th element of `dst`. This is useful to batch
// multiple DenseHostTensors into a DenseHostTenor.
template <>
inline void CopyDataHelper<DenseHostTensor>(DenseHostTensor* src,
DenseHostTensor* dst, int index) {
int data_size = src->DataSizeInBytes();
char* dst_ptr = static_cast<char*>(dst->data()) + index * data_size;
std::memcpy(dst_ptr, src->data(), data_size);
}
struct CounterAndError {
explicit CounterAndError(uint32_t size)
: unavailable_num(size), eof_num(0), initial_batch_size(size) {}
// The number of inputs in the batch whose value or eof is not available.
std::atomic<uint32_t> unavailable_num;
// The number of inputs in the batch whose eof is true.
std::atomic<uint32_t> eof_num;
// The number of inputs in the batch.
const uint32_t initial_batch_size;
std::atomic<AsyncValue*> error{nullptr};
};
// Truncate the `input_tensor` to reduce its outermost dimension to
// `batch_size`. The content of the buffer of the `input_tensor` that
// corresponds the outermost `batch_size` rows will be copied to the output
// tensor.
static llvm::Expected<DenseHostTensor> TruncateTensor(
const DenseHostTensor& input_tensor, ssize_t batch_size,
const ExecutionContext& exec_ctx) {
auto& input_metadata = input_tensor.metadata();
SmallVector<ssize_t, 4> output_dims;
input_metadata.shape.GetDimensions(&output_dims);
output_dims[0] = batch_size;
TensorMetadata output_metadata(input_metadata.dtype, output_dims);
auto dht =
DenseHostTensor::CreateUninitialized(output_metadata, exec_ctx.host());
if (!dht) {
return MakeStringError("out of memory");
}
auto output_tensor = std::move(dht.getValue());
std::memcpy(output_tensor.data(), input_tensor.data(),
output_tensor.DataSizeInBytes());
return std::move(output_tensor);
}
// Copies buffer from `input_value` (which is a DenseHostTensor) into
// the `slice_index`-th slice of `result_buffer` when it is ready and decrements
// the counter or forwards an error to `counter_and_error`. Additionally checks
// that the metadata of `input_value` matches `expected_metadata`. When the
// unavailable_num of `counter_and_error` reaches 0, which means that all slices
// have been copied, move the the first (initial_batch_size - eof_num) rows of
// the `result_buffer` to `result` and make `result` available.
template <typename T>
void CopySlice(RCReference<AsyncValue> input_value,
AsyncValueRef<bool> input_eof,
AsyncValueRef<TensorMetadata> expected_metadata,
AsyncValueRef<DenseHostTensor> result_buffer,
RCReference<AsyncValue> result,
CounterAndError* counter_and_error, size_t slice_index,
const ExecutionContext& exec_ctx) {
// `result_buffer` is an allocated DenseHostTensor.
assert(result_buffer.IsAvailable());
SmallVector<AsyncValue*, 2> async_value_ptrs;
async_value_ptrs.push_back(input_value.get());
async_value_ptrs.push_back(input_eof.GetAsyncValue());
auto callback = [input_value = std::move(input_value),
input_eof = std::move(input_eof),
expected_metadata = std::move(expected_metadata),
result_buffer = std::move(result_buffer),
result = std::move(result), slice_index, counter_and_error,
exec_ctx]() mutable {
if (!input_eof.IsError() && input_eof.get()) {
counter_and_error->eof_num.fetch_add(1);
} else if (input_eof.IsError() || input_value->IsError()) {
AsyncValue* null_value = nullptr;
AsyncValue* error_value =
input_eof.IsError() ? input_eof.release() : input_value.release();
// Set error if it hasn't already been set.
//
// Use memory_order_release for the success case so that error_value is
// visible to other threads when they load with memory_order_acquire. For
// the failure case, we do not care about expected_value, so we can use
// memory_order_relaxed.
if (!counter_and_error->error.compare_exchange_strong(
null_value, error_value, std::memory_order_release,
std::memory_order_relaxed)) {
error_value->DropRef();
}
} else {
// Verify that the input_value's metadata equals the expected_metadata.
// IDEA(donglin): Do this check only in DEBUG mode.
assert(GetMetadataFromValue(input_value->get<T>()) ==
expected_metadata.get());
CopyDataHelper<T>(&input_value->get<T>(), &result_buffer.get(),
slice_index);
}
auto unavailable_num = counter_and_error->unavailable_num.fetch_sub(1) - 1;
if (unavailable_num == 0) {
// Use memory_order_consume so that writes to this atomic variable from
// other threads are visible to this thread.
auto* error_value =
counter_and_error->error.load(std::memory_order_consume);
auto eof_num = counter_and_error->eof_num.load(std::memory_order_consume);
auto batch_size = counter_and_error->initial_batch_size - eof_num;
// Forward the error if any, otherwise move `result_buffer` to `result`.
if (error_value != nullptr) {
result->SetError(error_value->GetError());
error_value->DropRef();
} else if (batch_size == 0) {
auto error =
MakeErrorAsyncValueRef(exec_ctx.host(), "iterator reached end");
result->SetError(error->GetError());
} else if (eof_num == 0) {
result->emplace<DenseHostTensor>(std::move(result_buffer.get()));
} else {
auto output_tensor =
TruncateTensor(result_buffer.get(), batch_size, exec_ctx);
if (!output_tensor) {
auto error = EmitError(exec_ctx, StrCat(output_tensor.takeError()));
result->SetError(error);
} else {
result->emplace<DenseHostTensor>(std::move(*output_tensor));
}
}
delete counter_and_error;
}
};
RunWhenReady(async_value_ptrs, std::move(callback));
}
template <typename T>
void CopyComponent(SmallVector<RCReference<AsyncValue>, 4> input_values,
SmallVector<AsyncValueRef<bool>, 4> input_eofs,
AsyncValueRef<TensorMetadata> expected_metadata,
AsyncValueRef<DenseHostTensor> result_buffer,
RCReference<AsyncValue> result,
const ExecutionContext& exec_ctx) {
result_buffer.AndThen([input_values = std::move(input_values),
input_eofs = std::move(input_eofs),
expected_metadata = std::move(expected_metadata),
result_buffer = result_buffer.CopyRef(),
result = std::move(result), exec_ctx]() mutable {
// If there was an error in tensor allocation, forward it to the result.
if (result_buffer.IsError()) {
result->SetError(result_buffer.GetError());
return;
}
auto* counter_and_error = new CounterAndError(input_values.size());
// Otherwise, when each input is ready, copy it to `result_buffer`. When all
// inputs are copied, move `result_buffer` to `result`.
for (size_t i = 0, e = input_values.size(); i < e; ++i) {
CopySlice<T>(std::move(input_values[i]), std::move(input_eofs[i]),
expected_metadata.CopyRef(), result_buffer.CopyRef(),
result.CopyRef(), counter_and_error, /*slice_index=*/i,
exec_ctx);
}
});
}
// Recursive base case.
template <size_t N>
void CopyToBatchHelper(
SmallVector<IterationResult, 4> inputs,
SmallVector<AsyncValueRef<TensorMetadata>, 4> expected_metadata,
SmallVector<AsyncValueRef<DenseHostTensor>, 4> temp_batched_values,
IterationResult result, const ExecutionContext& exec_ctx) {}
// Copy inputs to batch when they are ready. This function applies recursively
// to one component (with type T) at a time.
template <size_t N, typename T, typename... RemainingT>
void CopyToBatchHelper(
SmallVector<IterationResult, 4> inputs,
SmallVector<AsyncValueRef<TensorMetadata>, 4> expected_metadata,
SmallVector<AsyncValueRef<DenseHostTensor>, 4> temp_batched_values,
IterationResult result, const ExecutionContext& exec_ctx) {
auto index = N - (sizeof...(RemainingT) + 1);
SmallVector<RCReference<AsyncValue>, 4> input_values;
SmallVector<AsyncValueRef<bool>, 4> input_eofs;
input_values.reserve(inputs.size());
for (size_t i = 0, e = inputs.size(); i < e; ++i) {
input_values.push_back(std::move(inputs[i].values[index]));
input_eofs.push_back(inputs[i].eof.CopyRef());
}
CopyComponent<T>(std::move(input_values), std::move(input_eofs),
std::move(expected_metadata[index]),
std::move(temp_batched_values[index]),
result.values[index].CopyRef(), exec_ctx);
CopyToBatchHelper<N, RemainingT...>(
std::move(inputs), std::move(expected_metadata),
std::move(temp_batched_values), std::move(result), exec_ctx);
}
template <typename... T>
void CopyToBatch(
SmallVector<IterationResult, 4>&& inputs,
SmallVector<AsyncValueRef<TensorMetadata>, 4>&& expected_metadata,
SmallVector<AsyncValueRef<DenseHostTensor>, 4>&& temp_batched_values,
IterationResult result, const ExecutionContext& exec_ctx) {
CopyToBatchHelper<sizeof...(T), T...>(
std::move(inputs), std::move(expected_metadata),
std::move(temp_batched_values), std::move(result), exec_ctx);
}
// For each component in the batch, when the metadata is available, allocate a
// DenseHostTensor with the corresponding batch shape and dtype.
static SmallVector<AsyncValueRef<DenseHostTensor>, 4> AllocateOutputTensors(
const SmallVector<AsyncValueRef<TensorMetadata>, 4>& metadatas,
size_t batch_size, const ExecutionContext& exec_ctx) {
SmallVector<AsyncValueRef<DenseHostTensor>, 4> results;
results.reserve(metadatas.size());
for (size_t i = 0; i < metadatas.size(); ++i) {
auto result =
MakeUnconstructedAsyncValueRef<DenseHostTensor>(exec_ctx.host());
metadatas[i].AndThen([exec_ctx, batch_size,
metadata = metadatas[i].CopyRef(),
result = result.CopyRef()]() {
if (metadata.IsError()) {
result.SetError(metadata.GetError());
return;
}
SmallVector<ssize_t, 4> output_dims;
output_dims.resize(metadata->shape.GetRank() + 1);
output_dims[0] = batch_size;
for (size_t i = 0; i < output_dims.size() - 1; ++i) {
output_dims[i + 1] = metadata->shape.GetDimensionSize(i);
}
TensorMetadata batched_metadata(metadata->dtype, output_dims);
auto dht = DenseHostTensor::CreateUninitialized(batched_metadata,
exec_ctx.host());
if (!dht) {
result.SetError(
EmitError(exec_ctx, "failed to create uninitialized tensor"));
return;
}
result.emplace(std::move(*dht));
});
results.push_back(std::move(result));
}
return results;
}
// BatchDataset wraps around another Dataset instance and batches the underlying
// elements before returning them via GetNext().
//
// If the underlying dataset element type is a tensor, GetNext() should return a
// tensor with +1 dimension. If the underlying dataset element type is a scalar,
// GetNext() should return a 1-D tensor of the same scalar type.
template <typename... T>
class BatchDataset : public Dataset {
public:
// If `same_input_metadata` is true, all values from the `input_dataset`
// must have the DType and TensorShape.
explicit BatchDataset(RCReference<Dataset> input_dataset, int64_t batch_size,
bool same_input_metadata, HostContext* host)
: input_dataset_(std::move(input_dataset)),
batch_size_(batch_size),
same_input_metadata_(same_input_metadata),
host_(host),
allocator_(host->allocator()) {}
// This class is not copyable or movable.
BatchDataset(const BatchDataset&) = delete;
BatchDataset& operator=(const BatchDataset&) = delete;
RCReference<Iterator> MakeIterator(const IteratorContext& context) override;
private:
// Allow iterator to rely on private data members of this dataset.
friend class BatchDatasetIterator<T...>;
void Destroy() override {
internal::DestroyImpl<BatchDataset>(this, allocator_);
}
RCReference<Dataset> input_dataset_;
const int64_t batch_size_;
const bool same_input_metadata_;
HostContext* host_;
HostAllocator* allocator_;
};
template <typename... T>
class BatchDatasetIterator : public Iterator {
public:
explicit BatchDatasetIterator(RCReference<BatchDataset<T...>> parent_dataset,
const IteratorContext& context)
: Iterator(),
parent_dataset_(std::move(parent_dataset)),
input_iterator_(parent_dataset_->input_dataset_->MakeIterator(context)),
is_initialized_(false) {}
// This class is not copyable or movable.
BatchDatasetIterator(const BatchDatasetIterator&) = delete;
BatchDatasetIterator& operator=(const BatchDatasetIterator&) = delete;
IterationResult GetNext(const ExecutionContext& exec_ctx) override;
private:
void Destroy() override {
internal::DestroyImpl<BatchDatasetIterator>(this,
parent_dataset_->allocator_);
}
RCReference<BatchDataset<T...>> parent_dataset_;
RCReference<Iterator> input_iterator_;
// input_metadata_ contains TensorMetadata from each of the components of the
// first element from input_iterator_. When same_input_metadata_ is true, we
// can use input_metadata_ to allocate output tensors before inputs are
// available.
SmallVector<AsyncValueRef<TensorMetadata>, 4> input_metadata_;
bool is_initialized_;
};
template <typename... T>
RCReference<Iterator> BatchDataset<T...>::MakeIterator(
const IteratorContext& context) {
return TakeRef(
host_->Construct<BatchDatasetIterator<T...>>(FormRef(this), context));
}
// IDEA(donglin): Consider scheduling the batch operation to the background
// threadpool explicitly. This can prevent GetNext() from doing memory copy
// synchronously regardless of whether the input values are available.
template <typename... T>
IterationResult BatchDatasetIterator<T...>::GetNext(
const ExecutionContext& exec_ctx) {
HostContext* host = exec_ctx.host();
SmallVector<IterationResult, 4> inputs;
// Get up to batch_size values from the underlying iterator.
for (int i = 0; i < parent_dataset_->batch_size_; ++i) {
auto input = input_iterator_->GetNext(exec_ctx);
inputs.push_back(std::move(input));
}
SmallVector<AsyncValueRef<TensorMetadata>, 4> metadata;
if (parent_dataset_->same_input_metadata_) {
// If all input values have the same metadata, record the metadata of the
// the first input and re-use it to allocate output tensor for every batch.
// This allows us to allocate output tensor before input values are
// available except for the first input.
//
// This improves L1/L2 cache affinity of the data copying from the input
// values to the output tensor because the same thread that computes the
// input value can copy this value to the output tensor.
if (!is_initialized_) {
input_metadata_ = GetInputMetadata<T...>(inputs[0].values, host);
is_initialized_ = true;
}
metadata.reserve(input_metadata_.size());
for (const auto& m : input_metadata_) {
metadata.push_back(m.CopyRef());
}
} else {
metadata = GetInputMetadata<T...>(inputs[0].values, host);
}
auto temp_batched_values =
AllocateOutputTensors(metadata, inputs.size(), exec_ctx);
SmallVector<RCReference<AsyncValue>, 4> result_values;
result_values.reserve(sizeof...(T));
for (size_t i = 0; i < sizeof...(T); ++i) {
result_values.push_back(
MakeUnconstructedAsyncValueRef<DenseHostTensor>(host));
}
// result's eof should be exactly the same as the eof of the first input.
auto result = IterationResult::Pending(std::move(result_values),
inputs[0].eof.CopyRef());
CopyToBatch<T...>(std::move(inputs), std::move(metadata),
std::move(temp_batched_values), result.CopyRef(), exec_ctx);
return result;
}
} // namespace data
} // namespace tfrt
#endif // TFRT_DATA_BATCH_DATASET_H_
|
7ff245199ff33db0709ebb6e3750a2eccbef967c
|
50058dde9e89385e183b66080a4fd15c1bb0425a
|
/q2_tcp_server_client/q2_server.cpp
|
fdaded513c3feae73d03344904cb141d95f1e03d
|
[] |
no_license
|
bmsohwinc/cn_assignment
|
8be60383427d92c9dc887d658d81b6b06838e9ee
|
44a4ac0d07dbe70b2d02582ad53c0419cb1d4eb7
|
refs/heads/master
| 2022-04-19T20:17:42.564453
| 2020-04-12T05:32:21
| 2020-04-12T05:32:21
| 255,013,777
| 1
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 2,193
|
cpp
|
q2_server.cpp
|
#include <arpa/inet.h>
#include <bits/stdc++.h>
#include <chrono>
#include <netinet/in.h>
#include <sys/socket.h>
#include <sys/types.h>
#include <unistd.h>
#define BFSZ 1024
#define MX_RQSTS 10
#define PORT 7070
using namespace std;
// simple function to output error messages
void display_error(char *err_msg) {
perror(err_msg);
exit(1);
}
// the main guy
int main(int argc, char const *argv[]) {
// creating socket
int server_socket = socket(AF_INET, SOCK_STREAM, 0);
if (server_socket < 0) {
display_error((char *)"Socket creation failed!\n");
}
// set socket options to reuse the PORT
int opt = 1;
if (setsockopt(server_socket, SOL_SOCKET, SO_REUSEADDR | SO_REUSEPORT, &opt, sizeof(opt)) < 0) {
display_error((char *)"Set sock opt failed!\n");
}
// create address object and set parameters
struct sockaddr_in server_address;
int adrln = sizeof(server_address);
server_address.sin_family = AF_INET;
server_address.sin_addr.s_addr = INADDR_ANY;
server_address.sin_port = htons(PORT);
// bind the socket to the PORT
if (bind(server_socket, (struct sockaddr * ) &server_address, sizeof(server_address)) < 0) {
display_error((char *)"Bind Socket failed!\n");
}
// listen on the PORT
if (listen(server_socket, MX_RQSTS) < 0) {
display_error((char *)"Listen failed!\n");
}
printf("[ I ] Waiting for a connection...\n");
// accept the incoming connection
int client_socket = accept(server_socket, (struct sockaddr * ) &server_address, (socklen_t *) &adrln);
if (client_socket < 0) {
display_error((char *)"Accept failed!\n");
}
printf("[ I ] Connection Successful!\n");
// create read buffer
char buffer[BFSZ];
// talk to the client
while(1) {
// clear previous buffer
memset(buffer, 0, BFSZ);
// read the client's message
memset(buffer, 0, BFSZ);
read(client_socket, buffer, BFSZ);
printf("[ I ] Client says: %s\n", buffer);
if (buffer[0] == '*') {
printf("[ Q ] Quitting...\n");
// close the socket
close(server_socket);
close(client_socket);
break;
}
// send ACK to client
memset(buffer, 0, BFSZ);
strcpy(buffer, "Message Received!");
send(client_socket, buffer, BFSZ, 0);
}
return 0;
}
|
c9509ee11405a7bc051a0f6638779c636412b80f
|
ebead5e79fce60a3f8d1b4ee700d87a04506b316
|
/radio.h
|
c303628761a9349d071a0886d1bccf60fb69d62c
|
[] |
no_license
|
charleyhuman/smarthome_gw
|
1fe0e1819c833d0c69779f3a54b7ad7323992248
|
797c58c4b2926dc7514ed10def3163e0f9fecdb5
|
refs/heads/master
| 2016-08-11T17:29:44.612459
| 2016-01-11T05:47:26
| 2016-01-11T05:47:26
| 48,928,595
| 2
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 320
|
h
|
radio.h
|
#ifndef RADIO_H
#define RADIO_H
#include <mutex>
#include <condition_variable>
#include "msg.h"
class radio
{
public:
radio(){}
virtual ~radio(){}
virtual void stop() = 0;
virtual void send(sensor_msg& tx) = 0;
virtual signed char recv(sensor_msg& rx) = 0;
//virtual void send() = 0;
};
#endif
|
5f566bf90dbcbe4ce5ca4e1cf8179eb8cdb27cae
|
c9b75f1f03df7339c7e350f980b9cddc5b2a3bbf
|
/main.cpp
|
e3f7711859c924382cd744c43ac120b2f0549089
|
[] |
no_license
|
anxieuse/oop_exercise_06
|
3430716a736353a8e304816c3974b350edb89f7b
|
66406e3e149842d6dde8dace07e65e361d98b863
|
refs/heads/main
| 2023-01-23T14:33:32.855104
| 2020-12-01T21:16:52
| 2020-12-01T21:16:52
| 317,621,799
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 2,627
|
cpp
|
main.cpp
|
/*
Короткевич Л. В.
М8О-208Б-19
github.com/anxieuse/oop_exercise_06
Вариант 21:
Фигура: ромб
Контейнер: очередь
Аллокатор: дин. массив
*/
#include <iostream>
#include <utility>
#include "Rhombus.h"
#include <algorithm>
#include "Queue.h"
const int BLOCK_SIZE = 10000;
double sqDist(std::pair<int, int> a, std::pair<int, int> b)
{
return (a.first - b.first) * (a.first - b.first) + (a.second - b.second) * (a.second - b.second);
}
bool isRhombus(std::pair<int, int> coors[4])
{
// a-x-b
// | |
// w y
// | |
// d-z-c
std::pair<int, int> w, x, y, z;
w = coors[0], x = coors[1], y = coors[2], z = coors[3];
double a, b, c, d;
a = sqDist(x, w), b = sqDist(w, z), c = sqDist(z, y), d = sqDist(y, x);
if (a == b and b == c and c == d)
return true;
return false;
}
void Add(TQueue<TRhombus<int>, TAllocator<TRhombus<int>, BLOCK_SIZE>> &q)
{
std::pair<int, int> coors[4];
for (int i = 0; i < 4; ++i)
{
int x, y;
std::cin >> x >> y;
coors[i] = std::make_pair(x, y);
}
if (isRhombus(coors))
{
q.Push(TRhombus<int>(coors[0], coors[1], coors[2], coors[3]));
std::cout << "Rhombus successfully added\n";
}
else
std::cout << "This isn't rhombus\n";
}
void Erase(TQueue<TRhombus<int>, TAllocator<TRhombus<int>, BLOCK_SIZE>> &q)
{
int64_t idx;
std::cin >> idx;
if (idx >= q.Size())
{
if(q.Size())
std::cout << "Out of range\n";
else
std::cout << "Queue is empty\n";
}
else
{
auto it = q.begin();
std::advance(it, idx);
q.EraseByPos(it);
std::cout << "Rhombus with index " << idx << " was successfully deleted\n";
}
}
void Print(TQueue<TRhombus<int>, TAllocator<TRhombus<int>, BLOCK_SIZE>> &q)
{
if(!q.Size()) {
std::cout << "Queue is empty\n";
return;
}
std::for_each(
q.begin(),
q.end(),
[](const TRhombus<int> &rmb) {
Print(rmb);
std::cout << "\n";
});
}
int main()
{
TQueue<TRhombus<int>, TAllocator<TRhombus<int>, BLOCK_SIZE>> q;
std::string cmd;
while (std::cin >> cmd)
{
if (cmd == "add")
{
Add(q);
}
else if (cmd == "erase")
{
Erase(q);
}
else if (cmd == "print")
{
Print(q);
}
else
{
std::cout << "Unknown command\n";
continue;
}
}
return 0;
}
|
02917029cafa7ba78daffce8162979cdab5eb934
|
202b96b76fc7e3270b7a4eec77d6e1fd7d080b12
|
/modules/dom/src/extensions/domextensionurlfilter.cpp
|
3842659aa75a2d32284ede7e5b92f8cfefc9f232
|
[] |
no_license
|
prestocore/browser
|
4a28dc7521137475a1be72a6fbb19bbe15ca9763
|
8c5977d18f4ed8aea10547829127d52bc612a725
|
refs/heads/master
| 2016-08-09T12:55:21.058966
| 1995-06-22T00:00:00
| 1995-06-22T00:00:00
| 51,481,663
| 98
| 66
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 13,807
|
cpp
|
domextensionurlfilter.cpp
|
/* -*- Mode: c++; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*-
**
** Copyright (C) 1995-2011 Opera Software ASA. All rights reserved.
**
** This file is part of the Opera web browser. It may not be distributed
** under any circumstances.
*/
#include <core/pch.h>
#ifdef EXTENSION_SUPPORT
#ifdef URL_FILTER
#include "modules/dom/src/extensions/domextensionurlfilter.h"
#include "modules/content_filter/content_filter.h"
#include "modules/logdoc/htm_elm.h"
#include "modules/dom/src/domcore/node.h"
DOM_ExtensionURLFilter::DOM_ExtensionURLFilter()
: m_owner(NULL),
m_block(NULL),
m_allow(NULL),
m_allow_rules(FALSE),
m_allow_events(FALSE)
{ }
/* static */ OP_STATUS
DOM_ExtensionURLFilter::Make(DOM_ExtensionURLFilter *&new_obj, OpGadget *extension_owner, DOM_Runtime *runtime, BOOL allow_rules, BOOL allow_events)
{
// Enabled only on extensions with feature "opera:urlfilter"
new_obj = OP_NEW(DOM_ExtensionURLFilter, ());
RETURN_IF_ERROR(DOMSetObjectRuntime(new_obj, runtime, runtime->GetPrototype(DOM_Runtime::EXTENSION_URLFILTER_PROTOTYPE), "URLFilter"));
new_obj->m_owner = extension_owner;
new_obj->m_allow_rules = allow_rules;
new_obj->m_allow_events = allow_events;
if (new_obj->m_allow_rules)
{
// Create the block list
RETURN_IF_ERROR(DOM_ExtensionRuleList::Make(new_obj->m_block, runtime, extension_owner, TRUE));
// Create the allow list
RETURN_IF_ERROR(DOM_ExtensionRuleList::Make(new_obj->m_allow, runtime, extension_owner, FALSE));
}
return OpStatus::OK;
}
void DOM_ExtensionURLFilter::ConstructExtensionURLFilterL(ES_Object *object, DOM_Runtime *runtime)
{
PutNumericConstantL(object, "RESOURCE_OTHER", RESOURCE_OTHER, runtime);
PutNumericConstantL(object, "RESOURCE_SCRIPT", RESOURCE_SCRIPT, runtime);
PutNumericConstantL(object, "RESOURCE_IMAGE", RESOURCE_IMAGE, runtime);
PutNumericConstantL(object, "RESOURCE_STYLESHEET", RESOURCE_STYLESHEET, runtime);
PutNumericConstantL(object, "RESOURCE_OBJECT", RESOURCE_OBJECT, runtime);
PutNumericConstantL(object, "RESOURCE_SUBDOCUMENT", RESOURCE_SUBDOCUMENT, runtime);
PutNumericConstantL(object, "RESOURCE_DOCUMENT", RESOURCE_DOCUMENT, runtime);
PutNumericConstantL(object, "RESOURCE_REFRESH", RESOURCE_REFRESH, runtime);
PutNumericConstantL(object, "RESOURCE_XMLHTTPREQUEST", RESOURCE_XMLHTTPREQUEST, runtime);
PutNumericConstantL(object, "RESOURCE_OBJECT_SUBREQUEST", RESOURCE_OBJECT_SUBREQUEST, runtime);
PutNumericConstantL(object, "RESOURCE_MEDIA", RESOURCE_MEDIA, runtime);
PutNumericConstantL(object, "RESOURCE_FONT", RESOURCE_FONT, runtime);
}
/* virtual */ ES_GetState
DOM_ExtensionURLFilter::GetName(OpAtom property_name, ES_Value *value, ES_Runtime *origining_runtime)
{
switch (property_name)
{
case OP_ATOM_block:
{
if (!m_allow_rules)
return DOM_Object::GetName(property_name, value, origining_runtime);
DOMSetObject(value, m_block);
return GET_SUCCESS;
}
case OP_ATOM_allow:
{
if (!m_allow_rules)
return DOM_Object::GetName(property_name, value, origining_runtime);
DOMSetObject(value, m_allow);
return GET_SUCCESS;
}
default:
return DOM_Object::GetName(property_name, value, origining_runtime);
}
}
void DOM_ExtensionURLFilterEventTarget::AddListener(DOM_EventListener *listener)
{
DOM_EventTarget::AddListener(listener);
if ( ( listener->HandlesEvent(ONCONTENTBLOCKED, NULL, ES_PHASE_AT_TARGET)
|| listener->HandlesEvent(ONCONTENTUNBLOCKED, NULL, ES_PHASE_AT_TARGET)
#ifdef SELFTEST
|| listener->HandlesEvent(ONCONTENTALLOWED, NULL, ES_PHASE_AT_TARGET)
#endif // SELFTEST
) && g_urlfilter)
OpStatus::Ignore(g_urlfilter->AddExtensionListener(GetDOMExtensionURLFilter()->GetExtensionGadget(), GetDOMExtensionURLFilter()));
}
void DOM_ExtensionURLFilterEventTarget::RemoveListener(DOM_EventListener *listener)
{
BOOL maybe_remove_listener = HasListeners(ONCONTENTBLOCKED, NULL, ES_PHASE_AT_TARGET)
|| HasListeners(ONCONTENTUNBLOCKED, NULL, ES_PHASE_AT_TARGET)
#ifdef SELFTEST
|| HasListeners(ONCONTENTALLOWED, NULL, ES_PHASE_AT_TARGET)
#endif // SELFTEST
;
DOM_EventTarget::RemoveListener(listener);
BOOL has_listeners = HasListeners(ONCONTENTBLOCKED, NULL, ES_PHASE_AT_TARGET)
|| HasListeners(ONCONTENTUNBLOCKED, NULL, ES_PHASE_AT_TARGET)
#ifdef SELFTEST
|| HasListeners(ONCONTENTALLOWED, NULL, ES_PHASE_AT_TARGET)
#endif // SELFTEST
;
if (maybe_remove_listener && !has_listeners && g_urlfilter)
g_urlfilter->RemoveExtensionListener(GetDOMExtensionURLFilter()->GetExtensionGadget(), GetDOMExtensionURLFilter());
}
/* virtual */ OP_STATUS
DOM_ExtensionURLFilter::CreateEventTarget()
{
if (!event_target)
RETURN_OOM_IF_NULL(event_target = OP_NEW(DOM_ExtensionURLFilterEventTarget, (this)));
return OpStatus::OK;
}
/* virtual */ ES_GetState
DOM_ExtensionURLFilter::GetName(const uni_char* property_name, int property_code, ES_Value* value, ES_Runtime* origining_runtime)
{
ES_GetState result = GetEventProperty(property_name, value, static_cast<DOM_Runtime *>(origining_runtime));
if (result != GET_FAILED)
return result;
return DOM_Object::GetName(property_name, property_code, value, origining_runtime);
}
/* virtual */ ES_PutState
DOM_ExtensionURLFilter::PutName(OpAtom property_name, ES_Value *value, ES_Runtime *origining_runtime)
{
switch (property_name)
{
case OP_ATOM_block:
return PUT_READ_ONLY;
case OP_ATOM_allow:
return PUT_READ_ONLY;
default:
return DOM_Object::PutName(property_name, value, origining_runtime);
}
}
/* virtual */ ES_PutState
DOM_ExtensionURLFilter::PutName(const uni_char *property_name, int property_code, ES_Value *value, ES_Runtime *origining_runtime)
{
return DOM_Object::PutName(property_name, property_code, value, origining_runtime);
}
/* virtual */ void
DOM_ExtensionURLFilter::GCTrace()
{
GCMark(m_block);
GCMark(m_allow);
GCMark(event_target);
}
/* static */ OP_STATUS
DOM_ExtensionRuleList::Make(DOM_ExtensionRuleList *&new_obj, DOM_Runtime *runtime, OpGadget *ext_ptr, BOOL exclude)
{
new_obj = OP_NEW(DOM_ExtensionRuleList, (ext_ptr, exclude));
RETURN_IF_ERROR(DOMSetObjectRuntime(new_obj, runtime, runtime->GetPrototype(DOM_Runtime::EXTENSION_RULELIST_PROTOTYPE), "RuleList"));
return OpStatus::OK;
}
OP_STATUS DOM_ExtensionRuleList::DOMGetDictionaryStringArray(ES_Object *dictionary, const uni_char *name, OpVector<uni_char> *vector)
{
OP_ASSERT(vector);
ES_Value value;
OP_BOOLEAN result = GetRuntime()->GetName(dictionary, name, &value);
if (result == OpBoolean::IS_TRUE)
{
if (value.type == VALUE_STRING) // The value is a single string
return vector->Add(const_cast<uni_char *> (value.value.string));
else if (value.type == VALUE_OBJECT) // The should be an array of strings
{
ES_Object *obj = value.value.object;
unsigned int len = 0;
if (DOMGetArrayLength(obj, len))
{
for (unsigned int i = 0; i < len; i++)
{
ES_Value array_value;
if (GetRuntime()->GetIndex(obj, i, &array_value) == OpBoolean::IS_TRUE)
{
RETURN_IF_ERROR(vector->Add(const_cast<uni_char *> (array_value.value.string)));
}
else
return OpStatus::ERR_NOT_SUPPORTED;
}
return OpStatus::OK;
}
}
return OpStatus::ERR_NOT_SUPPORTED;
}
else
return OpStatus::OK;
}
/* static */ int
DOM_ExtensionRuleList::add(DOM_Object *this_object, ES_Value *argv, int argc, ES_Value *return_value, DOM_Runtime *origining_runtime)
{
OP_STATUS status = OpStatus::OK;
if (g_urlfilter)
{
DOM_THIS_OBJECT(rule_list, DOM_TYPE_EXTENSION_RULELIST, DOM_ExtensionRuleList);
DOM_CHECK_ARGUMENTS("s|o");
FilterURLnode *node = OP_NEW(FilterURLnode, ());
if (!node)
return ES_NO_MEMORY;
node->SetIsExclude(rule_list->m_exclude);
// Add all the rules specified by the user
if (OpStatus::IsSuccess(status = node->SetURL(argv[0].value.string)))
{
BOOL node_acquired;
ES_Object *options = (argc >= 2 && argv[1].type == VALUE_OBJECT) ? argv[1].value.object : NULL;
if (options)
{
OpVector<uni_char> domains;
OpVector<uni_char> exclude_domains;
UINT32 resources = RESOURCE_UNKNOWN;
BOOL third_party = FALSE;
BOOL not_third_party = FALSE;
ES_Value value;
OP_BOOLEAN third_party_present = rule_list->GetRuntime()->GetName(options, UNI_L("thirdParty"), &value);
OP_BOOLEAN domains_present = rule_list->GetRuntime()->GetName(options, UNI_L("includeDomains"), NULL);
OP_BOOLEAN exclude_domains_present = rule_list->GetRuntime()->GetName(options, UNI_L("excludeDomains"), NULL);
// We support 3 values:
// third_party == TRUE: the url should be from a third party site
// third_party == FALSE: the url should not be from a third party site
// third_party not specified: urls from both third party and not third party servers are acceptable
if (third_party_present == OpBoolean::IS_TRUE)
{
if (value.type != VALUE_NULL && value.type != VALUE_UNDEFINED)
{
if (value.value.boolean)
third_party = TRUE;
else
not_third_party = TRUE;
}
}
OP_STATUS ops;
if (OpStatus::IsError(ops = rule_list->DOMGetDictionaryStringArray(options, UNI_L("includeDomains"), &domains)) ||
OpStatus::IsError(ops = rule_list->DOMGetDictionaryStringArray(options, UNI_L("excludeDomains"), &exclude_domains))
)
{
if (ops == OpStatus::ERR_NOT_SUPPORTED)
return DOM_CALL_INTERNALEXCEPTION(WRONG_ARGUMENTS_ERR);
CALL_FAILED_IF_ERROR(ops);
}
double resources_dbl = rule_list->DOMGetDictionaryNumber(options, UNI_L("resources"), 0.0);
if (resources_dbl != 0.0)
resources = TruncateDoubleToInt(resources_dbl + 0.5);
if (third_party)
status = node->AddRuleThirdParty();
else if (not_third_party && OpStatus::IsSuccess(status))
status = node->AddRuleNotThirdParty();
if (domains_present == OpBoolean::IS_TRUE && OpStatus::IsSuccess(status))
status = node->AddRuleInDomains(domains);
if (exclude_domains_present == OpBoolean::IS_TRUE && OpStatus::IsSuccess(status))
status = node->AddRuleNotInDomains(exclude_domains);
if (resources != 0 && OpStatus::IsSuccess(status))
status = node->AddRuleResources(resources);
CALL_FAILED_IF_ERROR(status);
}
if (OpStatus::IsSuccess(status = g_urlfilter->AddURL(node, rule_list->m_ext_ptr, &node_acquired)))
{
if (!node_acquired)
OP_DELETE(node); // Duplicated node
return ES_FAILED;
}
}
OP_DELETE(node);
}
CALL_FAILED_IF_ERROR(status);
return ES_FAILED;
}
/* static */ int
DOM_ExtensionRuleList::remove(DOM_Object *this_object, ES_Value *argv, int argc, ES_Value *return_value, DOM_Runtime *origining_runtime)
{
if (g_urlfilter)
{
DOM_THIS_OBJECT(rule_list, DOM_TYPE_EXTENSION_RULELIST, DOM_ExtensionRuleList);
DOM_CHECK_ARGUMENTS("s");
FilterURLnode node;
if (OpStatus::IsSuccess(node.SetURL(argv[0].value.string)))
{
g_urlfilter->DeleteURL(&node, rule_list->m_exclude, rule_list->m_ext_ptr);
return ES_FAILED;
}
}
return ES_FAILED;
}
/* static */ int
DOM_ExtensionURLFilter::accessEventListener(DOM_Object* this_object, ES_Value* argv, int argc, ES_Value* return_value, DOM_Runtime* origining_runtime, int data)
{
DOM_THIS_OBJECT(url_filter, DOM_TYPE_EXTENSION_URLFILTER, DOM_ExtensionURLFilter);
if (!url_filter->m_allow_events)
return DOM_CALL_DOMEXCEPTION(NOT_SUPPORTED_ERR);
return DOM_Node::accessEventListener(url_filter, argv, argc, return_value, origining_runtime, data);
}
DOM_ExtensionURLFilter::~DOM_ExtensionURLFilter()
{
if (g_urlfilter)
g_urlfilter->RemoveExtensionListener(m_owner, this);
}
OP_STATUS DOM_ExtensionURLFilter::SendEvent(ExtensionList::EventType evt_type, const uni_char* url, OpWindowCommander* wic, DOMLoadContext *dom_ctx)
{
DOM_ExtensionURLFilterEvent *evt = OP_NEW(DOM_ExtensionURLFilterEvent, ());
DOM_Runtime *runtime = GetRuntime();
RETURN_IF_ERROR(DOMSetObjectRuntime(evt, runtime, runtime->GetPrototype(DOM_Runtime::EXTENSION_URLFILTER_EVENT_PROTOTYPE), "URLFilterEvent"));
ES_Value value;
DOM_EventType dom_evt_type = ONCONTENTBLOCKED;
if (evt_type == ExtensionList::BLOCKED)
dom_evt_type = ONCONTENTBLOCKED;
else if (evt_type == ExtensionList::UNBLOCKED)
dom_evt_type = ONCONTENTUNBLOCKED;
#ifdef SELFTEST
else if (evt_type == ExtensionList::ALLOWED)
dom_evt_type = ONCONTENTALLOWED;
#endif // SELFTEST
ES_Value value_url;
DOMSetString(&value_url, url);
evt->PutL("url", value_url);
if (dom_ctx)
{
DOM_Object *elem;
if (OpStatus::IsSuccess(dom_ctx->GetDOMObject(elem, m_owner)))
{
ES_Value value_element;
DOMSetObject(&value_element, elem);
evt->PutL("element", value_element);
}
}
evt->InitEvent(dom_evt_type, this);
evt->SetCurrentTarget(this);
evt->SetEventPhase(ES_PHASE_ANY);
return runtime->GetEnvironment()->SendEvent(evt);
}
OP_STATUS DOMLoadContext::GetDOMObject(DOM_Object *&obj, OpGadget *owner)
{
if (!element || !env)
return OpStatus::ERR_NULL_POINTER;
RETURN_IF_ERROR(env->ConstructNode(obj, element));
return OpStatus::OK;
}
#include "modules/dom/src/domglobaldata.h"
DOM_FUNCTIONS_WITH_DATA_START(DOM_ExtensionURLFilter)
DOM_FUNCTIONS_WITH_DATA_FUNCTION(DOM_ExtensionURLFilter, DOM_ExtensionURLFilter::accessEventListener, 0, "addEventListener", "s-b-")
DOM_FUNCTIONS_WITH_DATA_FUNCTION(DOM_ExtensionURLFilter, DOM_ExtensionURLFilter::accessEventListener, 1, "removeEventListener", "s-b-")
DOM_FUNCTIONS_WITH_DATA_END(DOM_ExtensionURLFilter)
DOM_FUNCTIONS_START(DOM_ExtensionRuleList)
DOM_FUNCTIONS_FUNCTION(DOM_ExtensionRuleList, DOM_ExtensionRuleList::add, "add", "s?{includeDomains:(s|[s]),excludeDomains:(s|[s]),thirdParty:b,resources:n}-")
DOM_FUNCTIONS_FUNCTION(DOM_ExtensionRuleList, DOM_ExtensionRuleList::remove, "remove", "s-")
DOM_FUNCTIONS_END(DOM_ExtensionRuleList)
#endif // URL_FILTER
#endif // EXTENSION_SUPPORT
|
44da92228b2e341a7c2d5e699b79ddf39f95be8f
|
b0e31e3b8dc5815e48f20d0b9495e03408faad1c
|
/complex.h
|
d49a13731f3d8149cd10726405d21548cfc3555f
|
[] |
no_license
|
mclayton7/FourierTransform
|
91165c98727b8a2a1a49b931dc1dd224e83b3d57
|
57b6ab31845aa4f7b2c2bfe4753cf300d26edc47
|
refs/heads/master
| 2021-01-18T17:28:09.013431
| 2016-11-06T16:46:49
| 2016-11-06T16:46:49
| 9,220,647
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,017
|
h
|
complex.h
|
// Complex Number Class decaration
// Mac Clayton, 2012
#include <iostream>
#include <string>
class Complex {
public:
//Default Constructor
Complex();
//Double Constructor
Complex(const double& r, const double& i);
Complex(const double& r);
//Member functions:
double magCalc() const; //Gives the magnitude of the two numbers
double angleCalc() const; //Gives the angle between the real and imaginary
void Print() const; //Print the complex number
Complex conjCreate() const; //Create the complex conjugate
//Plus and minus overload operators:
Complex operator+(const Complex& rhs);
Complex operator-(const Complex& rhs);
//Multiplication and division operators:
Complex operator*(const Complex& rhs);
Complex operator/(const Complex& rhs);
public:
double real;
double imag;
bool NaN;
};
// Overload << operator
std::ostream& operator << (std::ostream &os, const Complex& c);
|
1b3b05faa62df8361535e1ddf7ac25804a68d974
|
ba8871c14b3835835eb43199253f9b25a6cf6019
|
/src/cc/CanopyHydrology_decl.hh
|
b789cec14c7cde17448e711f13b58851fb3ef21a
|
[
"BSD-3-Clause"
] |
permissive
|
him-28/ELM-Kernels
|
b855deca3502268c0909e1c40c805ca9ec987af8
|
c617c03679b0efce31730fdab8561838cba1a1ab
|
refs/heads/master
| 2023-03-05T17:30:13.646934
| 2019-11-25T15:26:57
| 2019-11-25T15:26:57
| 339,632,483
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 2,361
|
hh
|
CanopyHydrology_decl.hh
|
#ifndef ELM_CANOPY_HYDROLOGY_DECL_HH_
#define ELM_CANOPY_HYDROLOGY_DECL_HH_
#ifndef NATURE
#define NATURE
#endif
namespace ELM {
NATURE void CanopyHydrology_Interception(double dtime,
const double& forc_rain,
const double& forc_snow,
const double& irrig_rate,
const int& ltype, const int& ctype,
const bool& urbpoi, const bool& do_capsnow,
const double& elai, const double& esai,
const double& dewmx, const int& frac_veg_nosno,
double& h2ocan,
int n_irrig_steps_left, // need to be fixed
double& qflx_prec_intr,
double& qflx_irrig,
double& qflx_prec_grnd,
double& qflx_snwcp_liq,
double& qflx_snwcp_ice,
double& qflx_snow_grnd_patch,
double& qflx_rain_grnd) ;
NATURE void CanopyHydrology_FracWet(const int& frac_veg_nosno,
const double& h2ocan,
const double& elai,
const double& esai,
const double& dewmx,
double& fwet,
double& fdry) ;
template<typename Array_d>
NATURE void CanopyHydrology_SnowWater(const double& dtime,
const double& qflx_floodg,
const int& ltype,
const int& ctype,
const bool& urbpoi,
const bool& do_capsnow,
const int& oldfflag,
const double& forc_air_temp,
const double& t_grnd,
const double& qflx_snow_grnd_col,
const double& qflx_snow_melt,
const double& n_melt,
const double& frac_h2osfc,
double& snow_depth,
double& h2osno,
double& integrated_snow,
Array_d swe_old,
Array_d h2osoi_liq,
Array_d h2osoi_ice,
Array_d t_soisno,
Array_d frac_iceold,
int& snow_level,
Array_d dz,
Array_d z,
Array_d zi,
int& newnode,
double& qflx_floodc,
double& qflx_snow_h2osfc,
double& frac_sno_eff,
double& frac_sno) ;
NATURE void CanopyHydrology_FracH2OSfc(const double& dtime,
const double& min_h2osfc,
const int& ltype,
const double& micro_sigma,
const double& h2osno,
double& h2osfc,
double& h2osoi_liq,
double& frac_sno,
double& frac_sno_eff,
double& qflx_h2osfc2topsoi,
double& frac_h2osfc) ;
} // namespace
#endif
|
dc6bc378401aceeaa4267566effd08b6ad4e5cb6
|
b9cf8cfb238bdbf2c94a8d8c4a454a88b5da7abf
|
/include/runtime/metaspace/method.h
|
20ba8751c72400bb6c199d62d7a90df89c27da87
|
[] |
no_license
|
qaralotte/simple-jvm
|
cd475226f6bfb7c5e205c24a878178ddd09281ac
|
702198a7743a09c934063faff38c035101531a66
|
refs/heads/master
| 2023-06-25T03:10:52.313184
| 2021-07-23T19:10:52
| 2021-07-23T19:10:52
| 320,275,854
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,444
|
h
|
method.h
|
#ifndef JVM_RUNTIME_METHOD_H
#define JVM_RUNTIME_METHOD_H
#include <string>
#include <vector>
#include "include/std.h"
#include "include/classfile/method.h"
namespace runtime {
struct MethodDescriptor {
private:
string descriptor;
uint offset;
public:
vector<string> parameter_types;
string return_type;
private:
char nextChar();
void parseParam();
void parseReturn();
string parseType(char);
string parseObject();
public:
MethodDescriptor(string _descriptor) : descriptor(_descriptor), offset(0) {};
void parse();
};
class Clazz;
class Method : public enable_shared_from_this<Method> {
public:
uint16 access_flags;
string name;
string descriptor;
uint16 max_stack;
uint16 max_locals;
vector<uint8> code;
uint32 arg_slot_count;
shared_ptr<Clazz> clazz = nullptr;
private:
shared_ptr<Method> init(shared_ptr<Clazz>, classfile::method_info);
uint32 getArgSlotCount();
public:
static vector<shared_ptr<Method>> arrayOf(shared_ptr<Clazz>, vector<classfile::method_info>);
public:
Method() = default;
bool haveAccess(uint16);
bool isAccessTo(Clazz);
public:
bool operator==(const Method &) const;
bool operator!=(const Method &) const;
};
}
#endif //JVM_RUNTIME_METHOD_H
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.