blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
3
264
content_id
stringlengths
40
40
detected_licenses
listlengths
0
85
license_type
stringclasses
2 values
repo_name
stringlengths
5
140
snapshot_id
stringlengths
40
40
revision_id
stringlengths
40
40
branch_name
stringclasses
905 values
visit_date
timestamp[us]date
2015-08-09 11:21:18
2023-09-06 10:45:07
revision_date
timestamp[us]date
1997-09-14 05:04:47
2023-09-17 19:19:19
committer_date
timestamp[us]date
1997-09-14 05:04:47
2023-09-06 06:22:19
github_id
int64
3.89k
681M
star_events_count
int64
0
209k
fork_events_count
int64
0
110k
gha_license_id
stringclasses
22 values
gha_event_created_at
timestamp[us]date
2012-06-07 00:51:45
2023-09-14 21:58:39
gha_created_at
timestamp[us]date
2008-03-27 23:40:48
2023-08-21 23:17:38
gha_language
stringclasses
141 values
src_encoding
stringclasses
34 values
language
stringclasses
1 value
is_vendor
bool
1 class
is_generated
bool
2 classes
length_bytes
int64
3
10.4M
extension
stringclasses
115 values
content
stringlengths
3
10.4M
authors
listlengths
1
1
author_id
stringlengths
0
158
0bb43129d94f03d67d8e7d4eb150896631171397
11e65430e08a401b27977c263f1523b9c0e9c7f8
/main.cpp
3a46bed3abf61d59c8e0689aaf5cc39c028ea064
[]
no_license
Ga-vin/CanRegConfigurationTool
c5089e2e8a6880db28ad056e1bd53b8d16039027
b783bd2243d8f3ca498e850d1815a1055cef977d
refs/heads/master
2021-01-20T19:52:43.779993
2016-08-01T16:09:45
2016-08-01T16:09:45
64,231,138
1
0
null
null
null
null
UTF-8
C++
false
false
316
cpp
#include <QApplication> #include <QTextCodec> #include "canregdlg.h" int main(int argc, char *argv[]) { QApplication app(argc, argv); QTextCodec::setCodecForTr(QTextCodec::codecForName("utf-8")); /* Todo here */ CanRegDlg *p_window = new CanRegDlg; p_window->show(); return app.exec(); }
[ "gavin_8724@163.com" ]
gavin_8724@163.com
17b25422643da83450aae79c7035761ed73156f5
edcfa044f904b2e79a3924972e805694d3e143db
/Mosquitto_esp8266_NodeRED_AWS_With_BLENO_Uploading_Only_11_Aug_/Mosquitto_esp8266_NodeRED_AWS_With_BLENO_Uploading_Only_11_Aug_.ino
6148a2bafcb2b1b0f57b9c40b40c91ddee6a544b
[]
no_license
xidameng/Arduino-Projects
6eb18ed15f5775c812068ab102760518d59447dd
18bb8178b09d6b6ac22843d7f2ee41339e517768
refs/heads/master
2020-04-07T01:28:46.522381
2018-11-17T02:50:03
2018-11-17T02:50:03
157,942,687
1
1
null
2018-11-17T02:50:04
2018-11-17T02:18:14
C++
UTF-8
C++
false
false
4,444
ino
/***** All the resources for this project: http://randomnerdtutorials.com/ THIS IS THE FIRST WORKING PROJECT CREATED BY XI MENG for real-time uploading sensor data to the cloud *****/ #include <ESP8266WiFi.h> #include <PubSubClient.h> #include <Wire.h> // Change the credentials below, so your ESP8266 connects to your router const char* ssid = "SimonMiix320"; const char* password = "82517802"; // Change the variable to your Raspberry Pi IP address, so it connects to your MQTT broker const char* mqttServer = "13.229.143.144"; //127.0.0.1 is the localhost const int mqttPort = 1883; //const char* mqttServer = "m10.cloudmqtt.com"; //const int mqttPort = 18647; //const char* mqttUser = "xjerpjsc"; //use to access the mqtt account //const char* mqttPassword = "Fg5cFpOtwf2F"; //^^^^^^^^^^^^^^^^^^^^^^^^^^^ WiFiClient espClient; PubSubClient client(espClient); // Don't change the function below. This functions connects your ESP8266 to your router void setup_wifi() { delay(10); // We start by connecting to a WiFi network Serial.println(); Serial.print("Connecting to "); Serial.println(ssid); WiFi.begin(ssid, password); while (WiFi.status() != WL_CONNECTED) { delay(500); Serial.print("."); } Serial.println(""); Serial.print("WiFi connected - ESP IP address: "); Serial.println(WiFi.localIP()); } //In "Callback" function, ESP listening for command via WIFI // This functions is executed when some device publishes a message to a topic that your ESP8266 is subscribed to // Change the function below to add logic to your program, so when a device publishes a message to a topic that // your ESP8266 is subscribed you can actually do something void initialise_MQTT() { client.setServer(mqttServer, mqttPort); while (!client.connected()) { Serial.println("Connecting to MQTT..."); if (client.connect("ESP8266Client")) { Serial.println("connected"); //strip.setPixelColor(0, 0, 255, 0); // Green, means connected to MQTT server //strip.show(); } else { Serial.print("failed with state "); Serial.print(client.state()); //strip.setPixelColor(0, 255, 255, 0); // Yellow means MQTT connection issue //strip.show(); delay(2000); } } } // This functions reconnects your ESP8266 to your MQTT broker // Change the function below if you want to subscribe to more topics with your ESP8266 void reconnect() { client.setServer(mqttServer, mqttPort); // Loop until we're reconnected while (!client.connected()) { Serial.print("Attempting MQTT connection..."); // Attempt to connect if (client.connect("ESP8266Client")) { Serial.println("connected"); // Subscribe or resubscribe to a topic // You can subscribe to more topics (to control more LEDs in this example) client.subscribe("room/lamp"); } else { Serial.print("failed, rc="); Serial.print(client.state()); Serial.println(" try again in 5 seconds"); // Wait 5 seconds before retrying delay(5000); } } } // The setup function sets your ESP GPIOs to Outputs, starts the serial communication at a baud rate of 115200 void setup() { Serial.begin(115200); setup_wifi(); initialise_MQTT(); pinMode(LED_BUILTIN, OUTPUT); pinMode(A0, INPUT); // Setup for Analog Reading from pin A0 } double ecg; void loop() { if (!client.connected()) { reconnect(); } if(!client.loop()) client.connect("ESP8266Client"); if(Serial.available()>0){ ecg = Serial.read(); Serial.println(ecg); } else{ Serial.println("waiting for ecg data..."); //blink once and wait for 0.1 second to check for serial buffer digitalWrite(LED_BUILTIN,HIGH); delay(100); digitalWrite(LED_BUILTIN,LOW); delay(100); } char ecgbuffer[7]; dtostrf(ecg,6,0,ecgbuffer); // Publishes ECG value //PUBLISHING!! client.publish("wearable/ecg", ecgbuffer); Serial.print("T: "); Serial.println(String(tempAvg,1));//tempAvg is the value(float), the 1 behind mean 1 decimal place char tempbuffer[7];//A buffer that store the location of each character in the String dtostrf(tempAvg, 6, 1, tempbuffer);//Convert Float to String, tempAvg store data, 6 is the width(how many bytes), 1 is precision(how many decimal place), tempbuffer is a pointer // Publishes Temperature value client.publish("wearable/temp", tempbuffer); }
[ "xidameng@gmail.com" ]
xidameng@gmail.com
f48f5c9ee810e4089bc73e8b093a45911d0f4dd8
aee5b4d5e176a6d5054d6f1db7df94d4ebfde2ee
/policy_table.cpp
df32d59489d32d7f5d20c095cf4c603cea202324
[ "Apache-2.0" ]
permissive
rfrandse/ibm-logging
2b06e02dda92e9b3b3364cded8d2ad35ebe7d870
9351665a5d9560e42b2fa42c3f95cd18f9455018
refs/heads/master
2020-04-15T13:14:43.544670
2018-10-23T15:49:47
2018-10-23T15:49:47
164,708,462
0
0
null
null
null
null
UTF-8
C++
false
false
3,166
cpp
/** * Copyright © 2018 IBM 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 "policy_table.hpp" #include <experimental/filesystem> #include <fstream> #include <nlohmann/json.hpp> #include <phosphor-logging/log.hpp> namespace ibm { namespace logging { namespace policy { namespace fs = std::experimental::filesystem; using namespace phosphor::logging; Table::Table(const std::string& jsonFile) { if (fs::exists(jsonFile)) { load(jsonFile); } else { log<level::INFO>("Policy table JSON file does not exist", entry("FILE=%s", jsonFile.c_str())); } } void Table::load(const std::string& jsonFile) { try { std::ifstream file{jsonFile}; auto json = nlohmann::json::parse(file, nullptr, true); for (const auto& policy : json) { DetailsList detailsList; for (const auto& details : policy["dtls"]) { Details d; d.modifier = details["mod"]; d.msg = details["msg"]; d.ceid = details["CEID"]; detailsList.emplace_back(std::move(d)); } policies.emplace(policy["err"], std::move(detailsList)); } loaded = true; } catch (std::exception& e) { log<level::ERR>("Failed loading policy table json file", entry("FILE=%s", jsonFile.c_str()), entry("ERROR=%s", e.what())); loaded = false; } } FindResult Table::find(const std::string& error, const std::string& modifier) const { // First find the entry based on the error, and then find which // underlying details object it is with the help of the modifier. auto policy = policies.find(error); if (policy != policies.end()) { // If there is no exact modifier match, then look for an entry with // an empty modifier - it is the catch-all for that error. auto details = std::find_if( policy->second.begin(), policy->second.end(), [&modifier](const auto& d) { return modifier == d.modifier; }); if ((details == policy->second.end()) && !modifier.empty()) { details = std::find_if(policy->second.begin(), policy->second.end(), [](const auto& d) { return d.modifier.empty(); }); } if (details != policy->second.end()) { return DetailsReference(*details); } } return {}; } } // namespace policy } // namespace logging } // namespace ibm
[ "spinler@us.ibm.com" ]
spinler@us.ibm.com
209a1f864899f7f483051523ea3352a8fd2c54c5
04b1803adb6653ecb7cb827c4f4aa616afacf629
/third_party/blink/renderer/core/layout/layout_table_section.cc
c39aa598db96a2821326c8f434cccb1ef1baf321
[ "LGPL-2.0-or-later", "GPL-1.0-or-later", "MIT", "Apache-2.0", "LGPL-2.0-only", "BSD-2-Clause", "LGPL-2.1-only", "LicenseRef-scancode-warranty-disclaimer", "GPL-2.0-only", "LicenseRef-scancode-other-copyleft", "BSD-3-Clause" ]
permissive
Samsung/Castanets
240d9338e097b75b3f669604315b06f7cf129d64
4896f732fc747dfdcfcbac3d442f2d2d42df264a
refs/heads/castanets_76_dev
2023-08-31T09:01:04.744346
2021-07-30T04:56:25
2021-08-11T05:45:21
125,484,161
58
49
BSD-3-Clause
2022-10-16T19:31:26
2018-03-16T08:07:37
null
UTF-8
C++
false
false
81,591
cc
/* * Copyright (C) 1997 Martin Jones (mjones@kde.org) * (C) 1997 Torben Weis (weis@kde.org) * (C) 1998 Waldo Bastian (bastian@kde.org) * (C) 1999 Lars Knoll (knoll@kde.org) * (C) 1999 Antti Koivisto (koivisto@kde.org) * Copyright (C) 2003, 2004, 2005, 2006, 2008, 2009, 2010, 2013 Apple Inc. * All rights reserved. * Copyright (C) 2006 Alexey Proskuryakov (ap@nypop.com) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public * License as published by the Free Software Foundation; either * version 2 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Library General Public License for more details. * * You should have received a copy of the GNU Library General Public License * along with this library; see the file COPYING.LIB. If not, write to * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, * Boston, MA 02110-1301, USA. */ #include "third_party/blink/renderer/core/layout/layout_table_section.h" #include <algorithm> #include <limits> #include "third_party/blink/renderer/core/frame/use_counter.h" #include "third_party/blink/renderer/core/layout/hit_test_result.h" #include "third_party/blink/renderer/core/layout/layout_analyzer.h" #include "third_party/blink/renderer/core/layout/layout_table_cell.h" #include "third_party/blink/renderer/core/layout/layout_table_col.h" #include "third_party/blink/renderer/core/layout/layout_table_row.h" #include "third_party/blink/renderer/core/layout/layout_view.h" #include "third_party/blink/renderer/core/layout/subtree_layout_scope.h" #include "third_party/blink/renderer/core/paint/paint_layer.h" #include "third_party/blink/renderer/core/paint/table_section_painter.h" #include "third_party/blink/renderer/platform/runtime_enabled_features.h" #include "third_party/blink/renderer/platform/wtf/hash_set.h" namespace blink { void LayoutTableSection::TableGridRow:: SetRowLogicalHeightToRowStyleLogicalHeight() { DCHECK(row); logical_height = row->StyleRef().LogicalHeight(); } void LayoutTableSection::TableGridRow::UpdateLogicalHeightForCell( const LayoutTableCell* cell) { // We ignore height settings on rowspan cells. if (cell->ResolvedRowSpan() != 1) return; const Length& cell_logical_height = cell->StyleRef().LogicalHeight(); if (cell_logical_height.IsPositive()) { switch (cell_logical_height.GetType()) { case Length::kPercent: // TODO(alancutter): Make this work correctly for calc lengths. if (!(logical_height.IsPercentOrCalc()) || (logical_height.IsPercent() && logical_height.Percent() < cell_logical_height.Percent())) logical_height = cell_logical_height; break; case Length::kFixed: if (logical_height.IsAuto() || (logical_height.IsFixed() && logical_height.Value() < cell_logical_height.Value())) logical_height = cell_logical_height; break; default: break; } } } void CellSpan::EnsureConsistency(const unsigned maximum_span_size) { static_assert(std::is_same<decltype(start_), unsigned>::value, "Asserts below assume start_ is unsigned"); static_assert(std::is_same<decltype(end_), unsigned>::value, "Asserts below assume end_ is unsigned"); CHECK_LE(start_, maximum_span_size); CHECK_LE(end_, maximum_span_size); CHECK_LE(start_, end_); } LayoutTableSection::LayoutTableSection(Element* element) : LayoutTableBoxComponent(element), c_col_(0), c_row_(0), needs_cell_recalc_(false), force_full_paint_(false), has_multiple_cell_levels_(false), has_spanning_cells_(false), is_repeating_header_group_(false), is_repeating_footer_group_(false) { // init LayoutObject attributes SetInline(false); // our object is not Inline } LayoutTableSection::~LayoutTableSection() = default; void LayoutTableSection::StyleDidChange(StyleDifference diff, const ComputedStyle* old_style) { DCHECK(StyleRef().Display() == EDisplay::kTableFooterGroup || StyleRef().Display() == EDisplay::kTableRowGroup || StyleRef().Display() == EDisplay::kTableHeaderGroup); LayoutTableBoxComponent::StyleDidChange(diff, old_style); PropagateStyleToAnonymousChildren(); if (!old_style) return; LayoutTable* table = Table(); if (!table) return; LayoutTableBoxComponent::InvalidateCollapsedBordersOnStyleChange( *this, *table, diff, *old_style); if (LayoutTableBoxComponent::DoCellsHaveDirtyWidth(*this, *table, diff, *old_style)) { MarkAllCellsWidthsDirtyAndOrNeedsLayout( LayoutTable::kMarkDirtyAndNeedsLayout); } } void LayoutTableSection::WillBeRemovedFromTree() { LayoutTableBoxComponent::WillBeRemovedFromTree(); // Preventively invalidate our cells as we may be re-inserted into // a new table which would require us to rebuild our structure. SetNeedsCellRecalc(); } void LayoutTableSection::AddChild(LayoutObject* child, LayoutObject* before_child) { if (!child->IsTableRow()) { LayoutObject* last = before_child; if (!last) last = LastRow(); if (last && last->IsAnonymous() && last->IsTablePart() && !last->IsBeforeOrAfterContent()) { if (before_child == last) before_child = last->SlowFirstChild(); last->AddChild(child, before_child); return; } if (before_child && !before_child->IsAnonymous() && before_child->Parent() == this) { LayoutObject* row = before_child->PreviousSibling(); if (row && row->IsTableRow() && row->IsAnonymous()) { row->AddChild(child); return; } } // If beforeChild is inside an anonymous cell/row, insert into the cell or // into the anonymous row containing it, if there is one. LayoutObject* last_box = last; while (last_box && last_box->Parent()->IsAnonymous() && !last_box->IsTableRow()) last_box = last_box->Parent(); if (last_box && last_box->IsAnonymous() && !last_box->IsBeforeOrAfterContent()) { last_box->AddChild(child, before_child); return; } LayoutObject* row = LayoutTableRow::CreateAnonymousWithParent(this); AddChild(row, before_child); row->AddChild(child); return; } if (before_child) SetNeedsCellRecalc(); unsigned insertion_row = c_row_; ++c_row_; c_col_ = 0; EnsureRows(c_row_); LayoutTableRow* row = ToLayoutTableRow(child); grid_[insertion_row].row = row; row->SetRowIndex(insertion_row); if (!before_child) grid_[insertion_row].SetRowLogicalHeightToRowStyleLogicalHeight(); if (before_child && before_child->Parent() != this) before_child = SplitAnonymousBoxesAroundChild(before_child); DCHECK(!before_child || before_child->IsTableRow()); LayoutTableBoxComponent::AddChild(child, before_child); } static inline void CheckThatVectorIsDOMOrdered( const Vector<LayoutTableCell*, 1>& cells) { #ifndef NDEBUG // This function should be called on a non-empty vector. DCHECK_GT(cells.size(), 0u); const LayoutTableCell* previous_cell = cells[0]; for (wtf_size_t i = 1; i < cells.size(); ++i) { const LayoutTableCell* current_cell = cells[i]; // The check assumes that all cells belong to the same row group. DCHECK_EQ(previous_cell->Section(), current_cell->Section()); // 2 overlapping cells can't be on the same row. DCHECK_NE(current_cell->Row(), previous_cell->Row()); // Look backwards in the tree for the previousCell's row. If we are // DOM ordered, we should find it. const LayoutTableRow* row = current_cell->Row(); for (; row && row != previous_cell->Row(); row = row->PreviousRow()) { } DCHECK_EQ(row, previous_cell->Row()); previous_cell = current_cell; } #endif // NDEBUG } void LayoutTableSection::AddCell(LayoutTableCell* cell, LayoutTableRow* row) { // We don't insert the cell if we need cell recalc as our internal columns' // representation will have drifted from the table's representation. Also // recalcCells will call addCell at a later time after sync'ing our columns' // with the table's. if (NeedsCellRecalc()) return; DCHECK(cell); unsigned r_span = cell->ResolvedRowSpan(); unsigned c_span = cell->ColSpan(); if (r_span > 1 || c_span > 1) has_spanning_cells_ = true; const Vector<LayoutTable::ColumnStruct>& columns = Table()->EffectiveColumns(); unsigned insertion_row = row->RowIndex(); // ### mozilla still seems to do the old HTML way, even for strict DTD // (see the annotation on table cell layouting in the CSS specs and the // testcase below: // <TABLE border> // <TR><TD>1 <TD rowspan="2">2 <TD>3 <TD>4 // <TR><TD colspan="2">5 // </TABLE> unsigned n_cols = NumCols(insertion_row); while (c_col_ < n_cols && (GridCellAt(insertion_row, c_col_).HasCells() || GridCellAt(insertion_row, c_col_).InColSpan())) c_col_++; grid_[insertion_row].UpdateLogicalHeightForCell(cell); EnsureRows(insertion_row + r_span); grid_[insertion_row].row = row; unsigned col = c_col_; // tell the cell where it is bool in_col_span = false; unsigned col_size = columns.size(); while (c_span) { unsigned current_span; if (c_col_ >= col_size) { Table()->AppendEffectiveColumn(c_span); current_span = c_span; } else { if (c_span < columns[c_col_].span) Table()->SplitEffectiveColumn(c_col_, c_span); current_span = columns[c_col_].span; } for (unsigned r = 0; r < r_span; r++) { EnsureCols(insertion_row + r, c_col_ + 1); auto& grid_cell = GridCellAt(insertion_row + r, c_col_); grid_cell.Cells().push_back(cell); CheckThatVectorIsDOMOrdered(grid_cell.Cells()); // If cells overlap then we take the special paint path for them. if (grid_cell.Cells().size() > 1) has_multiple_cell_levels_ = true; if (in_col_span) grid_cell.SetInColSpan(true); } c_col_++; c_span -= current_span; in_col_span = true; } cell->SetAbsoluteColumnIndex(Table()->EffectiveColumnToAbsoluteColumn(col)); } bool LayoutTableSection::RowHasOnlySpanningCells(unsigned row) { if (grid_[row].grid_cells.IsEmpty()) return false; for (const auto& grid_cell : grid_[row].grid_cells) { // Empty cell is not a valid cell so it is not a rowspan cell. if (!grid_cell.HasCells()) return false; if (grid_cell.Cells()[0]->ResolvedRowSpan() == 1) return false; } return true; } void LayoutTableSection::PopulateSpanningRowsHeightFromCell( LayoutTableCell* cell, struct SpanningRowsHeight& spanning_rows_height) { const unsigned row_span = cell->ResolvedRowSpan(); const unsigned row_index = cell->RowIndex(); spanning_rows_height.spanning_cell_height_ignoring_border_spacing = cell->LogicalHeightForRowSizing(); spanning_rows_height.row_height.resize(row_span); spanning_rows_height.total_rows_height = 0; for (unsigned row = 0; row < row_span; row++) { unsigned actual_row = row + row_index; spanning_rows_height.row_height[row] = row_pos_[actual_row + 1] - row_pos_[actual_row] - BorderSpacingForRow(actual_row); if (!spanning_rows_height.row_height[row]) spanning_rows_height.is_any_row_with_only_spanning_cells |= RowHasOnlySpanningCells(actual_row); spanning_rows_height.total_rows_height += spanning_rows_height.row_height[row]; spanning_rows_height.spanning_cell_height_ignoring_border_spacing -= BorderSpacingForRow(actual_row); } // We don't span the following row so its border-spacing (if any) should be // included. spanning_rows_height.spanning_cell_height_ignoring_border_spacing += BorderSpacingForRow(row_index + row_span - 1); } void LayoutTableSection::DistributeExtraRowSpanHeightToPercentRows( LayoutTableCell* cell, float total_percent, int& extra_row_spanning_height, Vector<int>& rows_height) { if (!extra_row_spanning_height || !total_percent) return; const unsigned row_span = cell->ResolvedRowSpan(); const unsigned row_index = cell->RowIndex(); float percent = std::min(total_percent, 100.0f); const int table_height = row_pos_[grid_.size()] + extra_row_spanning_height; // Our algorithm matches Firefox. Extra spanning height would be distributed // Only in first percent height rows those total percent is 100. Other percent // rows would be uneffected even extra spanning height is remain. int accumulated_position_increase = 0; for (unsigned row = row_index; row < (row_index + row_span); row++) { if (percent > 0 && extra_row_spanning_height > 0) { // TODO(alancutter): Make this work correctly for calc lengths. if (grid_[row].logical_height.IsPercent()) { int to_add = (table_height * std::min(grid_[row].logical_height.Percent(), percent) / 100) - rows_height[row - row_index]; to_add = std::max(std::min(to_add, extra_row_spanning_height), 0); accumulated_position_increase += to_add; extra_row_spanning_height -= to_add; percent -= grid_[row].logical_height.Percent(); } } row_pos_[row + 1] += accumulated_position_increase; } } static void UpdatePositionIncreasedWithRowHeight( int extra_height, float row_height, float total_height, int& accumulated_position_increase, double& remainder) { // Without the cast we lose enough precision to cause heights to miss pixels // (and trigger asserts) in some web tests. double proportional_position_increase = remainder + (extra_height * double(row_height)) / total_height; // The epsilon is to push any values that are close to a whole number but // aren't due to floating point imprecision. The epsilons are not accumulated, // any that aren't necessary are lost in the cast to int. int position_increase_int = proportional_position_increase + 0.000001; accumulated_position_increase += position_increase_int; remainder = proportional_position_increase - position_increase_int; } // This is mainly used to distribute whole extra rowspanning height in percent // rows when all spanning rows are percent rows. // Distributing whole extra rowspanning height in percent rows based on the // ratios of percent because this method works same as percent distribution when // only percent rows are present and percent is 100. Also works perfectly fine // when percent is not equal to 100. void LayoutTableSection::DistributeWholeExtraRowSpanHeightToPercentRows( LayoutTableCell* cell, float total_percent, int& extra_row_spanning_height, Vector<int>& rows_height) { if (!extra_row_spanning_height || !total_percent) return; const unsigned row_span = cell->ResolvedRowSpan(); const unsigned row_index = cell->RowIndex(); double remainder = 0; int accumulated_position_increase = 0; for (unsigned row = row_index; row < (row_index + row_span); row++) { // TODO(alancutter): Make this work correctly for calc lengths. if (grid_[row].logical_height.IsPercent()) { UpdatePositionIncreasedWithRowHeight( extra_row_spanning_height, grid_[row].logical_height.Percent(), total_percent, accumulated_position_increase, remainder); } row_pos_[row + 1] += accumulated_position_increase; } DCHECK(!round(remainder)) << "remainder was " << remainder; extra_row_spanning_height -= accumulated_position_increase; } void LayoutTableSection::DistributeExtraRowSpanHeightToAutoRows( LayoutTableCell* cell, int total_auto_rows_height, int& extra_row_spanning_height, Vector<int>& rows_height) { if (!extra_row_spanning_height || !total_auto_rows_height) return; const unsigned row_span = cell->ResolvedRowSpan(); const unsigned row_index = cell->RowIndex(); int accumulated_position_increase = 0; double remainder = 0; // Aspect ratios of auto rows should not change otherwise table may look // different than user expected. So extra height distributed in auto spanning // rows based on their weight in spanning cell. for (unsigned row = row_index; row < (row_index + row_span); row++) { if (grid_[row].logical_height.IsAuto()) { UpdatePositionIncreasedWithRowHeight( extra_row_spanning_height, rows_height[row - row_index], total_auto_rows_height, accumulated_position_increase, remainder); } row_pos_[row + 1] += accumulated_position_increase; } DCHECK(!round(remainder)) << "remainder was " << remainder; extra_row_spanning_height -= accumulated_position_increase; } void LayoutTableSection::DistributeExtraRowSpanHeightToRemainingRows( LayoutTableCell* cell, int total_remaining_rows_height, int& extra_row_spanning_height, Vector<int>& rows_height) { if (!extra_row_spanning_height || !total_remaining_rows_height) return; const unsigned row_span = cell->ResolvedRowSpan(); const unsigned row_index = cell->RowIndex(); int accumulated_position_increase = 0; double remainder = 0; // Aspect ratios of the rows should not change otherwise table may look // different than user expected. So extra height distribution in remaining // spanning rows based on their weight in spanning cell. for (unsigned row = row_index; row < (row_index + row_span); row++) { if (!grid_[row].logical_height.IsPercentOrCalc()) { UpdatePositionIncreasedWithRowHeight( extra_row_spanning_height, rows_height[row - row_index], total_remaining_rows_height, accumulated_position_increase, remainder); } row_pos_[row + 1] += accumulated_position_increase; } DCHECK(!round(remainder)) << "remainder was " << remainder; extra_row_spanning_height -= accumulated_position_increase; } static bool CellIsFullyIncludedInOtherCell(const LayoutTableCell* cell1, const LayoutTableCell* cell2) { return (cell1->RowIndex() >= cell2->RowIndex() && (cell1->RowIndex() + cell1->ResolvedRowSpan()) <= (cell2->RowIndex() + cell2->ResolvedRowSpan())); } // To avoid unneeded extra height distributions, we apply the following sorting // algorithm: static bool CompareRowSpanCellsInHeightDistributionOrder( const LayoutTableCell* cell1, const LayoutTableCell* cell2) { // Sorting bigger height cell first if cells are at same index with same span // because we will skip smaller height cell to distribute it's extra height. if (cell1->RowIndex() == cell2->RowIndex() && cell1->ResolvedRowSpan() == cell2->ResolvedRowSpan()) return (cell1->LogicalHeightForRowSizing() > cell2->LogicalHeightForRowSizing()); // Sorting inner most cell first because if inner spanning cell'e extra height // is distributed then outer spanning cell's extra height will adjust // accordingly. In reverse order, there is more chances that outer spanning // cell's height will exceed than defined by user. if (CellIsFullyIncludedInOtherCell(cell1, cell2)) return true; // Sorting lower row index first because first we need to apply the extra // height of spanning cell which comes first in the table so lower rows's // position would increment in sequence. if (!CellIsFullyIncludedInOtherCell(cell2, cell1)) return (cell1->RowIndex() < cell2->RowIndex()); return false; } unsigned LayoutTableSection::CalcRowHeightHavingOnlySpanningCells( unsigned row, int& accumulated_cell_position_increase, unsigned row_to_apply_extra_height, unsigned& extra_table_height_to_propgate, Vector<int>& rows_count_with_only_spanning_cells) { DCHECK(RowHasOnlySpanningCells(row)); unsigned row_height = 0; for (const auto& row_span_cell : grid_[row].grid_cells) { DCHECK(row_span_cell.HasCells()); LayoutTableCell* cell = row_span_cell.Cells()[0]; DCHECK_GE(cell->ResolvedRowSpan(), 2u); const unsigned cell_row_index = cell->RowIndex(); const unsigned cell_row_span = cell->ResolvedRowSpan(); // As we are going from the top of the table to the bottom to calculate the // row heights for rows that only contain spanning cells and all previous // rows are processed we only need to find the number of rows with spanning // cells from the current cell to the end of the current cells spanning // height. unsigned start_row_for_spanning_cell_count = std::max(cell_row_index, row); unsigned end_row = cell_row_index + cell_row_span; unsigned spanning_cells_rows_count_having_zero_height = rows_count_with_only_spanning_cells[end_row - 1]; if (start_row_for_spanning_cell_count) spanning_cells_rows_count_having_zero_height -= rows_count_with_only_spanning_cells [start_row_for_spanning_cell_count - 1]; int total_rowspan_cell_height = (row_pos_[end_row] - row_pos_[cell_row_index]) - BorderSpacingForRow(end_row - 1); total_rowspan_cell_height += accumulated_cell_position_increase; if (row_to_apply_extra_height >= cell_row_index && row_to_apply_extra_height < end_row) total_rowspan_cell_height += extra_table_height_to_propgate; if (total_rowspan_cell_height < cell->LogicalHeightForRowSizing()) { unsigned extra_height_required = cell->LogicalHeightForRowSizing() - total_rowspan_cell_height; row_height = std::max( row_height, extra_height_required / spanning_cells_rows_count_having_zero_height); } } return row_height; } void LayoutTableSection::UpdateRowsHeightHavingOnlySpanningCells( LayoutTableCell* cell, struct SpanningRowsHeight& spanning_rows_height, unsigned& extra_height_to_propagate, Vector<int>& rows_count_with_only_spanning_cells) { DCHECK(spanning_rows_height.row_height.size()); int accumulated_position_increase = 0; const unsigned row_span = cell->ResolvedRowSpan(); const unsigned row_index = cell->RowIndex(); DCHECK_EQ(row_span, spanning_rows_height.row_height.size()); for (unsigned row = 0; row < spanning_rows_height.row_height.size(); row++) { unsigned actual_row = row + row_index; if (!spanning_rows_height.row_height[row] && RowHasOnlySpanningCells(actual_row)) { spanning_rows_height.row_height[row] = CalcRowHeightHavingOnlySpanningCells( actual_row, accumulated_position_increase, row_index + row_span, extra_height_to_propagate, rows_count_with_only_spanning_cells); accumulated_position_increase += spanning_rows_height.row_height[row]; } row_pos_[actual_row + 1] += accumulated_position_increase; } spanning_rows_height.total_rows_height += accumulated_position_increase; } // Distribute rowSpan cell height in rows those comes in rowSpan cell based on // the ratio of row's height if 1 RowSpan cell height is greater than the total // height of rows in rowSpan cell. void LayoutTableSection::DistributeRowSpanHeightToRows( SpanningLayoutTableCells& row_span_cells) { DCHECK(row_span_cells.size()); // 'rowSpanCells' list is already sorted based on the cells rowIndex in // ascending order // Arrange row spanning cell in the order in which we need to process first. std::sort(row_span_cells.begin(), row_span_cells.end(), CompareRowSpanCellsInHeightDistributionOrder); unsigned extra_height_to_propagate = 0; unsigned last_row_index = 0; unsigned last_row_span = 0; Vector<int> rows_count_with_only_spanning_cells; // At this stage, Height of the rows are zero for the one containing only // spanning cells. int count = 0; for (unsigned row = 0; row < grid_.size(); row++) { if (RowHasOnlySpanningCells(row)) count++; rows_count_with_only_spanning_cells.push_back(count); } for (unsigned i = 0; i < row_span_cells.size(); i++) { LayoutTableCell* cell = row_span_cells[i]; unsigned row_index = cell->RowIndex(); unsigned row_span = cell->ResolvedRowSpan(); unsigned spanning_cell_end_index = row_index + row_span; unsigned last_spanning_cell_end_index = last_row_index + last_row_span; // Only the highest spanning cell will distribute its extra height in a row // if more than one spanning cell is present at the same level. if (row_index == last_row_index && row_span == last_row_span) continue; int original_before_position = row_pos_[spanning_cell_end_index]; // When 2 spanning cells are ending at same row index then while extra // height distribution of first spanning cell updates position of the last // row so getting the original position of the last row in second spanning // cell need to reduce the height changed by first spanning cell. if (spanning_cell_end_index == last_spanning_cell_end_index) original_before_position -= extra_height_to_propagate; if (extra_height_to_propagate) { for (unsigned row = last_spanning_cell_end_index + 1; row <= spanning_cell_end_index; row++) row_pos_[row] += extra_height_to_propagate; } last_row_index = row_index; last_row_span = row_span; struct SpanningRowsHeight spanning_rows_height; PopulateSpanningRowsHeightFromCell(cell, spanning_rows_height); // Here we are handling only row(s) who have only rowspanning cells and do // not have any empty cell. if (spanning_rows_height.is_any_row_with_only_spanning_cells) UpdateRowsHeightHavingOnlySpanningCells( cell, spanning_rows_height, extra_height_to_propagate, rows_count_with_only_spanning_cells); // This code handle row(s) that have rowspanning cell(s) and at least one // empty cell. Such rows are not handled below and end up having a height of // 0. That would mean content overlapping if one of their cells has any // content. To avoid the problem, we add all the remaining spanning cells' // height to the last spanned row. This means that we could grow a row past // its 'height' or break percentage spreading however this is better than // overlapping content. // FIXME: Is there a better algorithm? if (!spanning_rows_height.total_rows_height) { if (spanning_rows_height.spanning_cell_height_ignoring_border_spacing) row_pos_[spanning_cell_end_index] += spanning_rows_height.spanning_cell_height_ignoring_border_spacing + BorderSpacingForRow(spanning_cell_end_index - 1); extra_height_to_propagate = row_pos_[spanning_cell_end_index] - original_before_position; continue; } if (spanning_rows_height.spanning_cell_height_ignoring_border_spacing <= spanning_rows_height.total_rows_height) { extra_height_to_propagate = row_pos_[row_index + row_span] - original_before_position; continue; } // Below we are handling only row(s) who have at least one visible cell // without rowspan value. float total_percent = 0; int total_auto_rows_height = 0; int total_remaining_rows_height = spanning_rows_height.total_rows_height; // FIXME: Inner spanning cell height should not change if it have fixed // height when it's parent spanning cell is distributing it's extra height // in rows. // Calculate total percentage, total auto rows height and total rows height // except percent rows. for (unsigned row = row_index; row < spanning_cell_end_index; row++) { // TODO(alancutter): Make this work correctly for calc lengths. if (grid_[row].logical_height.IsPercent()) { total_percent += grid_[row].logical_height.Percent(); total_remaining_rows_height -= spanning_rows_height.row_height[row - row_index]; } else if (grid_[row].logical_height.IsAuto()) { total_auto_rows_height += spanning_rows_height.row_height[row - row_index]; } } int extra_row_spanning_height = spanning_rows_height.spanning_cell_height_ignoring_border_spacing - spanning_rows_height.total_rows_height; if (total_percent < 100 && !total_auto_rows_height && !total_remaining_rows_height) { // Distributing whole extra rowspanning height in percent row when only // non-percent rows height is 0. DistributeWholeExtraRowSpanHeightToPercentRows( cell, total_percent, extra_row_spanning_height, spanning_rows_height.row_height); } else { DistributeExtraRowSpanHeightToPercentRows( cell, total_percent, extra_row_spanning_height, spanning_rows_height.row_height); DistributeExtraRowSpanHeightToAutoRows(cell, total_auto_rows_height, extra_row_spanning_height, spanning_rows_height.row_height); DistributeExtraRowSpanHeightToRemainingRows( cell, total_remaining_rows_height, extra_row_spanning_height, spanning_rows_height.row_height); } DCHECK(!extra_row_spanning_height); // Getting total changed height in the table extra_height_to_propagate = row_pos_[spanning_cell_end_index] - original_before_position; } if (extra_height_to_propagate) { // Apply changed height by rowSpan cells to rows present at the end of the // table for (unsigned row = last_row_index + last_row_span + 1; row <= grid_.size(); row++) row_pos_[row] += extra_height_to_propagate; } } bool LayoutTableSection::RowHasVisibilityCollapse(unsigned row) const { return ((grid_[row].row && grid_[row].row->StyleRef().Visibility() == EVisibility::kCollapse) || StyleRef().Visibility() == EVisibility::kCollapse); } // Find out the baseline of the cell // If the cell's baseline is more than the row's baseline then the cell's // baseline become the row's baseline and if the row's baseline goes out of the // row's boundaries then adjust row height accordingly. void LayoutTableSection::UpdateBaselineForCell(LayoutTableCell* cell, unsigned row, LayoutUnit& baseline_descent) { if (!cell->IsBaselineAligned()) return; // Ignoring the intrinsic padding as it depends on knowing the row's baseline, // which won't be accurate until the end of this function. LayoutUnit baseline_position = cell->CellBaselinePosition() - cell->IntrinsicPaddingBefore(); if (baseline_position > cell->BorderBefore() + (cell->PaddingBefore() - cell->IntrinsicPaddingBefore())) { grid_[row].baseline = std::max(grid_[row].baseline, baseline_position); LayoutUnit cell_start_row_baseline_descent; if (cell->ResolvedRowSpan() == 1) { baseline_descent = std::max(baseline_descent, cell->LogicalHeightForRowSizing() - baseline_position); cell_start_row_baseline_descent = baseline_descent; } row_pos_[row + 1] = std::max( row_pos_[row + 1], (row_pos_[row] + grid_[row].baseline + cell_start_row_baseline_descent) .ToInt()); } } int16_t LayoutTableSection::VBorderSpacingBeforeFirstRow() const { // We ignore the border-spacing on any non-top section, as it is already // included in the previous section's last row position. if (this != Table()->TopSection()) return 0; return Table()->VBorderSpacing(); } int LayoutTableSection::CalcRowLogicalHeight() { #if DCHECK_IS_ON() SetLayoutNeededForbiddenScope layout_forbidden_scope(*this); #endif DCHECK(!NeedsLayout()); // We may have to forcefully lay out cells here, in which case we need a // layout state. LayoutState state(*this); row_pos_.resize(grid_.size() + 1); row_pos_[0] = VBorderSpacingBeforeFirstRow(); SpanningLayoutTableCells row_span_cells; // At fragmentainer breaks we need to prevent rowspanned cells (and whatever // else) from distributing their extra height requirements over the rows that // it spans. Otherwise we'd need to refragment afterwards. unsigned index_of_first_stretchable_row = 0; is_any_row_collapsed_ = false; for (unsigned r = 0; r < grid_.size(); r++) { grid_[r].baseline = LayoutUnit(-1); LayoutUnit baseline_descent; if (!is_any_row_collapsed_) is_any_row_collapsed_ = RowHasVisibilityCollapse(r); if (state.IsPaginated() && grid_[r].row) row_pos_[r] += grid_[r].row->PaginationStrut().Ceil(); if (grid_[r].logical_height.IsSpecified()) { // Our base size is the biggest logical height from our cells' styles // (excluding row spanning cells). row_pos_[r + 1] = std::max(row_pos_[r] + MinimumValueForLength(grid_[r].logical_height, LayoutUnit()) .Round(), 0); } else { // Non-specified lengths are ignored because the row already accounts for // the cells intrinsic logical height. row_pos_[r + 1] = std::max(row_pos_[r], 0); } for (auto& grid_cell : grid_[r].grid_cells) { if (grid_cell.InColSpan()) continue; for (auto* cell : grid_cell.Cells()) { // For row spanning cells, we only handle them for the first row they // span. This ensures we take their baseline into account. if (cell->RowIndex() != r) continue; if (r < index_of_first_stretchable_row || (state.IsPaginated() && CrossesPageBoundary( LayoutUnit(row_pos_[r]), LayoutUnit(cell->LogicalHeightForRowSizing())))) { // Entering or extending a range of unstretchable rows. We enter this // mode when a cell in a row crosses a fragmentainer boundary, and // we'll stay in this mode until we get to a row where we're past all // rowspanned cells that we encountered while in this mode. DCHECK(state.IsPaginated()); unsigned row_index_below_cell = r + cell->ResolvedRowSpan(); index_of_first_stretchable_row = std::max(index_of_first_stretchable_row, row_index_below_cell); } else if (cell->ResolvedRowSpan() > 1) { DCHECK(!row_span_cells.Contains(cell)); cell->SetIsSpanningCollapsedRow(false); unsigned end_row = cell->ResolvedRowSpan() + r; for (unsigned spanning = r; spanning < end_row; spanning++) { if (RowHasVisibilityCollapse(spanning)) { cell->SetIsSpanningCollapsedRow(true); break; } } row_span_cells.push_back(cell); } if (cell->HasOverrideLogicalHeight()) { cell->ClearIntrinsicPadding(); cell->ClearOverrideSize(); cell->ForceLayout(); } if (cell->ResolvedRowSpan() == 1) row_pos_[r + 1] = std::max( row_pos_[r + 1], row_pos_[r] + cell->LogicalHeightForRowSizing()); // Find out the baseline. The baseline is set on the first row in a // rowSpan. UpdateBaselineForCell(cell, r, baseline_descent); } } if (r < index_of_first_stretchable_row && grid_[r].row) { // We're not allowed to resize this row. Just scratch what we've // calculated so far, and use the height that we got during initial // layout instead. row_pos_[r + 1] = row_pos_[r] + grid_[r].row->LogicalHeight().ToInt(); } // Add the border-spacing to our final position. row_pos_[r + 1] += BorderSpacingForRow(r); row_pos_[r + 1] = std::max(row_pos_[r + 1], row_pos_[r]); } if (!row_span_cells.IsEmpty()) DistributeRowSpanHeightToRows(row_span_cells); DCHECK(!NeedsLayout()); // Collapsed rows are dealt with after distributing row span height to rows. // This is because the distribution calculations should be as if the row were // not collapsed. First, all rows' collapsed heights are set. After, row // positions are adjusted accordingly. if (is_any_row_collapsed_) { row_collapsed_height_.resize(grid_.size()); for (unsigned r = 0; r < grid_.size(); r++) { if (RowHasVisibilityCollapse(r)) { // Update vector that keeps track of collapsed height of each row. row_collapsed_height_[r] = row_pos_[r + 1] - row_pos_[r]; } else { // Reset rows that are no longer collapsed. row_collapsed_height_[r] = 0; } } int total_collapsed_height = 0; for (unsigned r = 0; r < grid_.size(); r++) { total_collapsed_height += row_collapsed_height_[r]; // Adjust row position according to the height collapsed so far. row_pos_[r + 1] -= total_collapsed_height; DCHECK_GE(row_pos_[r + 1], row_pos_[r]); } } return row_pos_[grid_.size()]; } void LayoutTableSection::UpdateLayout() { DCHECK(NeedsLayout()); LayoutAnalyzer::Scope analyzer(*this); CHECK(!NeedsCellRecalc()); DCHECK(!Table()->NeedsSectionRecalc()); // addChild may over-grow grid_ but we don't want to throw away the memory // too early as addChild can be called in a loop (e.g during parsing). Doing // it now ensures we have a stable-enough structure. grid_.ShrinkToFit(); LayoutState state(*this); const Vector<int>& column_pos = Table()->EffectiveColumnPositions(); LayoutUnit row_logical_top(VBorderSpacingBeforeFirstRow()); SubtreeLayoutScope layouter(*this); for (unsigned r = 0; r < grid_.size(); ++r) { auto& grid_cells = grid_[r].grid_cells; unsigned cols = grid_cells.size(); // First, propagate our table layout's information to the cells. This will // mark the row as needing layout if there was a column logical width // change. for (unsigned start_column = 0; start_column < cols; ++start_column) { auto& grid_cell = grid_cells[start_column]; LayoutTableCell* cell = grid_cell.PrimaryCell(); if (!cell || grid_cell.InColSpan()) continue; unsigned end_col = start_column; unsigned cspan = cell->ColSpan(); while (cspan && end_col < cols) { DCHECK_LT(end_col, Table()->EffectiveColumns().size()); cspan -= Table()->EffectiveColumns()[end_col].span; end_col++; } int table_layout_logical_width = column_pos[end_col] - column_pos[start_column] - Table()->HBorderSpacing(); cell->SetCellLogicalWidth(table_layout_logical_width, layouter); } if (LayoutTableRow* row = grid_[r].row) { if (state.IsPaginated()) row->SetLogicalTop(row_logical_top); if (!row->NeedsLayout()) MarkChildForPaginationRelayoutIfNeeded(*row, layouter); row->LayoutIfNeeded(); if (state.IsPaginated()) { AdjustRowForPagination(*row, layouter); UpdateFragmentationInfoForChild(*row); row_logical_top = row->LogicalBottom(); row_logical_top += LayoutUnit(Table()->VBorderSpacing()); } if (!Table()->HasSameDirectionAs(row)) { UseCounter::Count(GetDocument(), WebFeature::kTableRowDirectionDifferentFromTable); } } } if (!Table()->HasSameDirectionAs(this)) { UseCounter::Count(GetDocument(), WebFeature::kTableSectionDirectionDifferentFromTable); } ClearNeedsLayout(); } void LayoutTableSection::DistributeExtraLogicalHeightToPercentRows( int& extra_logical_height, int total_percent) { if (!total_percent) return; unsigned total_rows = grid_.size(); int total_height = row_pos_[total_rows] + extra_logical_height; int total_logical_height_added = 0; total_percent = std::min(total_percent, 100); int row_height = row_pos_[1] - row_pos_[0]; for (unsigned r = 0; r < total_rows; ++r) { // TODO(alancutter): Make this work correctly for calc lengths. if (total_percent > 0 && grid_[r].logical_height.IsPercent()) { int to_add = std::min<int>( extra_logical_height, (total_height * grid_[r].logical_height.Percent() / 100) - row_height); // If toAdd is negative, then we don't want to shrink the row (this bug // affected Outlook Web Access). to_add = std::max(0, to_add); total_logical_height_added += to_add; extra_logical_height -= to_add; total_percent -= grid_[r].logical_height.Percent(); } DCHECK_GE(total_rows, 1u); if (r < total_rows - 1) row_height = row_pos_[r + 2] - row_pos_[r + 1]; row_pos_[r + 1] += total_logical_height_added; } } void LayoutTableSection::DistributeExtraLogicalHeightToAutoRows( int& extra_logical_height, unsigned auto_rows_count) { if (!auto_rows_count) return; int total_logical_height_added = 0; for (unsigned r = 0; r < grid_.size(); ++r) { if (auto_rows_count > 0 && grid_[r].logical_height.IsAuto()) { // Recomputing |extraLogicalHeightForRow| guarantees that we properly // ditribute round |extraLogicalHeight|. int extra_logical_height_for_row = extra_logical_height / auto_rows_count; total_logical_height_added += extra_logical_height_for_row; extra_logical_height -= extra_logical_height_for_row; --auto_rows_count; } row_pos_[r + 1] += total_logical_height_added; } } void LayoutTableSection::DistributeRemainingExtraLogicalHeight( int& extra_logical_height) { unsigned total_rows = grid_.size(); if (extra_logical_height <= 0 || !row_pos_[total_rows]) return; int total_logical_height_added = 0; int previous_row_position = row_pos_[0]; float total_row_size = row_pos_[total_rows] - previous_row_position; for (unsigned r = 0; r < total_rows; r++) { // weight with the original height float height_to_add = extra_logical_height * (row_pos_[r + 1] - previous_row_position) / total_row_size; total_logical_height_added = std::min<int>(total_logical_height_added + std::ceil(height_to_add), extra_logical_height); previous_row_position = row_pos_[r + 1]; row_pos_[r + 1] += total_logical_height_added; } extra_logical_height -= total_logical_height_added; } int LayoutTableSection::DistributeExtraLogicalHeightToRows( int extra_logical_height) { if (!extra_logical_height) return extra_logical_height; unsigned total_rows = grid_.size(); if (!total_rows) return extra_logical_height; if (!row_pos_[total_rows] && NextSibling()) return extra_logical_height; unsigned auto_rows_count = 0; int total_percent = 0; for (unsigned r = 0; r < total_rows; r++) { if (grid_[r].logical_height.IsAuto()) ++auto_rows_count; else if (grid_[r].logical_height.IsPercent()) total_percent += grid_[r].logical_height.Percent(); } int remaining_extra_logical_height = extra_logical_height; DistributeExtraLogicalHeightToPercentRows(remaining_extra_logical_height, total_percent); DistributeExtraLogicalHeightToAutoRows(remaining_extra_logical_height, auto_rows_count); DistributeRemainingExtraLogicalHeight(remaining_extra_logical_height); return extra_logical_height - remaining_extra_logical_height; } static bool CellHasExplicitlySpecifiedHeight(const LayoutTableCell& cell) { if (cell.StyleRef().LogicalHeight().IsFixed()) return true; LayoutBlock* cb = cell.ContainingBlock(); if (cb->AvailableLogicalHeightForPercentageComputation() == -1) return false; return true; } static bool ShouldFlexCellChild(const LayoutTableCell& cell, LayoutObject* cell_descendant) { if (!CellHasExplicitlySpecifiedHeight(cell)) return false; // TODO(dgrogan): Delete ShouldFlexCellChild. It's only called when // CellHasExplicitlySpecifiedHeight is false. NOTREACHED() << "This is dead code?"; if (cell_descendant->StyleRef().OverflowY() == EOverflow::kVisible || cell_descendant->StyleRef().OverflowY() == EOverflow::kHidden) return true; return cell_descendant->IsBox() && ToLayoutBox(cell_descendant)->ShouldBeConsideredAsReplaced(); } void LayoutTableSection::LayoutRows() { #if DCHECK_IS_ON() SetLayoutNeededForbiddenScope layout_forbidden_scope(*this); #endif DCHECK(!NeedsLayout()); LayoutAnalyzer::Scope analyzer(*this); // FIXME: Changing the height without a layout can change the overflow so it // seems wrong. unsigned total_rows = grid_.size(); // Set the width of our section now. The rows will also be this width. SetLogicalWidth(Table()->ContentLogicalWidth()); int16_t vspacing = Table()->VBorderSpacing(); LayoutState state(*this); // Set the rows' location and size. for (unsigned r = 0; r < total_rows; r++) { if (LayoutTableRow* row = grid_[r].row) { row->SetLogicalLocation(LayoutPoint(0, row_pos_[r])); row->SetLogicalWidth(LogicalWidth()); LayoutUnit row_logical_height; // If the row is collapsed then it has 0 height. vspacing was implicitly // removed earlier, when row_pos_[r+1] was set to row_pos[r]. if (!RowHasVisibilityCollapse(r)) { row_logical_height = LayoutUnit(row_pos_[r + 1] - row_pos_[r] - vspacing); } DCHECK_GE(row_logical_height, 0); if (state.IsPaginated() && r + 1 < total_rows) { // If the next row has a pagination strut, we need to subtract it. It // should not be included in this row's height. if (LayoutTableRow* next_row_object = grid_[r + 1].row) row_logical_height -= next_row_object->PaginationStrut(); } DCHECK_GE(row_logical_height, 0); row->SetLogicalHeight(row_logical_height); row->UpdateAfterLayout(); } } // Vertically align and flex the cells in each row. for (unsigned r = 0; r < total_rows; r++) { LayoutTableRow* row = grid_[r].row; unsigned n_cols = NumCols(r); for (unsigned c = 0; c < n_cols; c++) { LayoutTableCell* cell = OriginatingCellAt(r, c); if (!cell) continue; int r_height; int row_logical_top; unsigned row_span = std::max(1U, cell->ResolvedRowSpan()); unsigned end_row_index = std::min(r + row_span, total_rows) - 1; LayoutTableRow* last_row_object = grid_[end_row_index].row; if (last_row_object && row) { row_logical_top = row->LogicalTop().ToInt(); r_height = last_row_object->LogicalBottom().ToInt() - row_logical_top; } else { r_height = row_pos_[end_row_index + 1] - row_pos_[r] - vspacing; row_logical_top = row_pos_[r]; } RelayoutCellIfFlexed(*cell, r, r_height); SubtreeLayoutScope layouter(*cell); EVerticalAlign cell_vertical_align; // If the cell crosses a fragmentainer boundary, just align it at the // top. That's how it was laid out initially, before we knew the final // row height, and re-aligning it now could result in the cell being // fragmented differently, which could change its height and thus violate // the requested alignment. Give up instead of risking circular // dependencies and unstable layout. if (state.IsPaginated() && CrossesPageBoundary(LayoutUnit(row_logical_top), LayoutUnit(r_height))) cell_vertical_align = EVerticalAlign::kTop; else cell_vertical_align = cell->StyleRef().VerticalAlign(); // Calculate total collapsed height affecting one cell. int collapsed_height = 0; if (is_any_row_collapsed_) { unsigned end_row = cell->ResolvedRowSpan() + r; for (unsigned spanning = r; spanning < end_row; spanning++) { collapsed_height += row_collapsed_height_[spanning]; } } cell->ComputeIntrinsicPadding(collapsed_height, r_height, cell_vertical_align, layouter); LayoutRect old_cell_rect = cell->FrameRect(); SetLogicalPositionForCell(cell, c); cell->LayoutIfNeeded(); LayoutSize child_offset(cell->Location() - old_cell_rect.Location()); if (child_offset.Width() || child_offset.Height()) { // If the child moved, we have to issue paint invalidations to it as // well as any floating/positioned descendants. An exception is if we // need a layout. In this case, we know we're going to issue paint // invalidations ourselves (and the child) anyway. if (!Table()->SelfNeedsLayout()) cell->SetShouldCheckForPaintInvalidation(); } } if (row) row->ComputeLayoutOverflow(); } DCHECK(!NeedsLayout()); SetLogicalHeight(LayoutUnit(row_pos_[total_rows])); ComputeLayoutOverflowFromDescendants(); } void LayoutTableSection::UpdateLogicalWidthForCollapsedCells( const Vector<int>& col_collapsed_width) { if (!RuntimeEnabledFeatures::VisibilityCollapseColumnEnabled()) return; unsigned total_rows = grid_.size(); for (unsigned r = 0; r < total_rows; r++) { unsigned n_cols = NumCols(r); for (unsigned c = 0; c < n_cols; c++) { LayoutTableCell* cell = OriginatingCellAt(r, c); if (!cell) continue; if (!col_collapsed_width.size()) { cell->SetIsSpanningCollapsedColumn(false); continue; } // TODO(joysyu): Current behavior assumes that collapsing the first column // in a col-spanning cell makes the cell width zero. This is consistent // with collapsing row-spanning cells, but still needs to be specified. if (cell->IsFirstColumnCollapsed()) { // Collapsed cells have zero width. cell->SetLogicalWidth(LayoutUnit()); } else if (cell->ColSpan() > 1) { // A column-spanning cell may be affected by collapsed columns, so its // width needs to be adjusted accordingly int collapsed_width = 0; cell->SetIsSpanningCollapsedColumn(false); unsigned end_col = std::min(cell->ColSpan() + c, n_cols); for (unsigned spanning = c; spanning < end_col; spanning++) collapsed_width += col_collapsed_width[spanning]; cell->SetLogicalWidth(cell->LogicalWidth() - collapsed_width); if (collapsed_width != 0) cell->SetIsSpanningCollapsedColumn(true); // Recompute overflow in case overflow clipping is necessary. cell->ComputeLayoutOverflow(cell->ClientLogicalBottom(), false); DCHECK_GE(cell->LogicalWidth(), 0); } } } } int LayoutTableSection::PaginationStrutForRow(LayoutTableRow* row, LayoutUnit logical_offset) const { DCHECK(row); const LayoutTableSection* footer = Table()->Footer(); bool make_room_for_repeating_footer = footer && footer->IsRepeatingFooterGroup() && row->RowIndex(); if (!make_room_for_repeating_footer && row->GetPaginationBreakability() == kAllowAnyBreaks) return 0; if (!IsPageLogicalHeightKnown()) return 0; LayoutUnit page_logical_height = PageLogicalHeightForOffset(logical_offset); // If the row is too tall for the page don't insert a strut. LayoutUnit row_logical_height = row->LogicalHeight(); if (row_logical_height > page_logical_height) return 0; LayoutUnit remaining_logical_height = PageRemainingLogicalHeightForOffset( logical_offset, LayoutBlock::kAssociateWithLatterPage); if (remaining_logical_height >= row_logical_height) return 0; // It fits fine where it is. No need to break. LayoutUnit pagination_strut = CalculatePaginationStrutToFitContent(logical_offset, row_logical_height); if (pagination_strut == remaining_logical_height && remaining_logical_height == page_logical_height) { // Don't break if we were at the top of a page, and we failed to fit the // content completely. No point in leaving a page completely blank. return 0; } // Table layout parts only work on integers, so we have to round. Round up, to // make sure that no fraction ever gets left behind in the previous // fragmentainer. return pagination_strut.Ceil(); } void LayoutTableSection::ComputeVisualOverflowFromDescendants() { auto old_self_visual_overflow_rect = SelfVisualOverflowRect(); ClearVisualOverflow(); visually_overflowing_cells_.clear(); force_full_paint_ = false; // These 2 variables are used to balance the memory consumption vs the paint // time on big sections with overflowing cells: // 1. For small sections, don't track overflowing cells because for them the // full paint path is actually faster than the partial paint path. // 2. For big sections, if overflowing cells are scarce, track overflowing // cells to enable the partial paint path. // 3. Otherwise don't track overflowing cells to avoid adding a lot of cells // to the HashSet, and force the full paint path. // See TableSectionPainter::PaintObject() for the full paint path and the // partial paint path. static const unsigned kMinCellCountToUsePartialPaint = 75 * 75; static const float kMaxOverflowingCellRatioForPartialPaint = 0.1f; unsigned total_cell_count = NumRows() * Table()->NumEffectiveColumns(); unsigned max_overflowing_cell_count = total_cell_count < kMinCellCountToUsePartialPaint ? 0 : kMaxOverflowingCellRatioForPartialPaint * total_cell_count; #if DCHECK_IS_ON() bool has_overflowing_cell = false; #endif for (auto* row = FirstRow(); row; row = row->NextRow()) { AddVisualOverflowFromChild(*row); for (auto* cell = row->FirstCell(); cell; cell = cell->NextCell()) { if (cell->HasSelfPaintingLayer()) continue; if (force_full_paint_ || !cell->HasVisualOverflow()) continue; #if DCHECK_IS_ON() has_overflowing_cell = true; #endif if (visually_overflowing_cells_.size() >= max_overflowing_cell_count) { force_full_paint_ = true; // The full paint path does not make any use of the overflowing cells // info, so don't hold on to the memory. visually_overflowing_cells_.clear(); continue; } visually_overflowing_cells_.insert(cell); } } #if DCHECK_IS_ON() DCHECK_EQ(has_overflowing_cell, HasVisuallyOverflowingCell()); #endif // Overflow rect contributes to the visual rect, so if it has changed then we // need to signal a possible paint invalidation. if (old_self_visual_overflow_rect != SelfVisualOverflowRect()) SetShouldCheckForPaintInvalidation(); } void LayoutTableSection::ComputeLayoutOverflowFromDescendants() { ClearLayoutOverflow(); for (auto* row = FirstRow(); row; row = row->NextRow()) AddLayoutOverflowFromChild(*row); } bool LayoutTableSection::RecalcLayoutOverflow() { if (!ChildNeedsLayoutOverflowRecalc()) return false; ClearChildNeedsLayoutOverflowRecalc(); unsigned total_rows = grid_.size(); bool children_layout_overflow_changed = false; for (unsigned r = 0; r < total_rows; r++) { LayoutTableRow* row_layouter = RowLayoutObjectAt(r); if (!row_layouter || !row_layouter->ChildNeedsLayoutOverflowRecalc()) continue; row_layouter->ClearChildNeedsLayoutOverflowRecalc(); bool row_children_layout_overflow_changed = false; unsigned n_cols = NumCols(r); for (unsigned c = 0; c < n_cols; c++) { auto* cell = OriginatingCellAt(r, c); if (!cell) continue; row_children_layout_overflow_changed |= cell->RecalcLayoutOverflow(); } if (row_children_layout_overflow_changed) row_layouter->ComputeLayoutOverflow(); children_layout_overflow_changed |= row_children_layout_overflow_changed; } if (children_layout_overflow_changed) ComputeLayoutOverflowFromDescendants(); return children_layout_overflow_changed; } void LayoutTableSection::RecalcVisualOverflow() { SECURITY_CHECK(!needs_cell_recalc_); unsigned total_rows = grid_.size(); for (unsigned r = 0; r < total_rows; r++) { LayoutTableRow* row_layouter = RowLayoutObjectAt(r); if (!row_layouter || (row_layouter->HasLayer() && row_layouter->Layer()->IsSelfPaintingLayer())) continue; row_layouter->RecalcVisualOverflow(); } ComputeVisualOverflowFromDescendants(); AddVisualEffectOverflow(); } void LayoutTableSection::MarkAllCellsWidthsDirtyAndOrNeedsLayout( LayoutTable::WhatToMarkAllCells what_to_mark) { for (LayoutTableRow* row = FirstRow(); row; row = row->NextRow()) { for (LayoutTableCell* cell = row->FirstCell(); cell; cell = cell->NextCell()) { cell->SetPreferredLogicalWidthsDirty(); if (what_to_mark == LayoutTable::kMarkDirtyAndNeedsLayout) cell->SetChildNeedsLayout(); } } } LayoutUnit LayoutTableSection::FirstLineBoxBaseline() const { DCHECK(!NeedsCellRecalc()); if (!grid_.size()) return LayoutUnit(-1); LayoutUnit first_line_baseline(grid_[0].baseline); if (first_line_baseline >= 0) return first_line_baseline + row_pos_[0]; for (const auto& grid_cell : grid_[0].grid_cells) { if (const auto* cell = grid_cell.PrimaryCell()) { first_line_baseline = std::max<LayoutUnit>( first_line_baseline, cell->LogicalTop() + cell->BorderBefore() + cell->PaddingBefore() + cell->ContentLogicalHeight()); } } return first_line_baseline; } void LayoutTableSection::Paint(const PaintInfo& paint_info) const { TableSectionPainter(*this).Paint(paint_info); } LayoutRect LayoutTableSection::LogicalRectForWritingModeAndDirection( const LayoutRect& rect) const { LayoutRect table_aligned_rect(rect); DeprecatedFlipForWritingMode(table_aligned_rect); if (!TableStyle().IsHorizontalWritingMode()) table_aligned_rect = table_aligned_rect.TransposedRect(); const Vector<int>& column_pos = Table()->EffectiveColumnPositions(); if (!TableStyle().IsLeftToRightDirection()) { table_aligned_rect.SetX(column_pos[column_pos.size() - 1] - table_aligned_rect.MaxX()); } return table_aligned_rect; } void LayoutTableSection::DirtiedRowsAndEffectiveColumns( const LayoutRect& damage_rect, CellSpan& rows, CellSpan& columns) const { DCHECK(!NeedsCellRecalc()); if (!grid_.size()) { rows = CellSpan(); columns = CellSpan(1, 1); return; } if (force_full_paint_) { rows = FullSectionRowSpan(); columns = FullTableEffectiveColumnSpan(); return; } rows = SpannedRows(damage_rect); columns = SpannedEffectiveColumns(damage_rect); // Expand by one cell in each direction to cover any collapsed borders. if (Table()->ShouldCollapseBorders()) { if (rows.Start() > 0) rows.DecreaseStart(); if (rows.End() < grid_.size()) rows.IncreaseEnd(); if (columns.Start() > 0) columns.DecreaseStart(); if (columns.End() < Table()->NumEffectiveColumns()) columns.IncreaseEnd(); } rows.EnsureConsistency(grid_.size()); columns.EnsureConsistency(Table()->NumEffectiveColumns()); if (!has_spanning_cells_) return; if (rows.Start() > 0 && rows.Start() < grid_.size()) { // If there are any cells spanning into the first row, expand |rows| to // cover the cells. unsigned n_cols = NumCols(rows.Start()); unsigned smallest_row = rows.Start(); for (unsigned c = columns.Start(); c < std::min(columns.End(), n_cols); ++c) { for (const auto* cell : GridCellAt(rows.Start(), c).Cells()) { smallest_row = std::min(smallest_row, cell->RowIndex()); if (!smallest_row) break; } } rows = CellSpan(smallest_row, rows.End()); } if (columns.Start() > 0 && columns.Start() < Table()->NumEffectiveColumns()) { // If there are any cells spanning into the first column, expand |columns| // to cover the cells. unsigned smallest_column = columns.Start(); for (unsigned r = rows.Start(); r < rows.End(); ++r) { const auto& grid_cells = grid_[r].grid_cells; if (columns.Start() < grid_cells.size()) { unsigned c = columns.Start(); while (c && grid_cells[c].InColSpan()) --c; smallest_column = std::min(c, smallest_column); if (!smallest_column) break; } } columns = CellSpan(smallest_column, columns.End()); } } CellSpan LayoutTableSection::SpannedRows(const LayoutRect& flipped_rect) const { // Find the first row that starts after rect top. unsigned next_row = static_cast<unsigned>( std::upper_bound(row_pos_.begin(), row_pos_.end(), flipped_rect.Y()) - row_pos_.begin()); // After all rows. if (next_row == row_pos_.size()) return CellSpan(row_pos_.size() - 1, row_pos_.size() - 1); unsigned start_row = next_row > 0 ? next_row - 1 : 0; // Find the first row that starts after rect bottom. unsigned end_row; if (row_pos_[next_row] >= flipped_rect.MaxY()) { end_row = next_row; } else { end_row = static_cast<unsigned>( std::upper_bound(row_pos_.begin() + next_row, row_pos_.end(), flipped_rect.MaxY()) - row_pos_.begin()); if (end_row == row_pos_.size()) end_row = row_pos_.size() - 1; } return CellSpan(start_row, end_row); } CellSpan LayoutTableSection::SpannedEffectiveColumns( const LayoutRect& flipped_rect) const { const Vector<int>& column_pos = Table()->EffectiveColumnPositions(); // Find the first column that starts after rect left. // lower_bound doesn't handle the edge between two cells properly as it would // wrongly return the cell on the logical top/left. // upper_bound on the other hand properly returns the cell on the logical // bottom/right, which also matches the behavior of other browsers. unsigned next_column = static_cast<unsigned>( std::upper_bound(column_pos.begin(), column_pos.end(), flipped_rect.X()) - column_pos.begin()); if (next_column == column_pos.size()) return CellSpan(column_pos.size() - 1, column_pos.size() - 1); // After all columns. unsigned start_column = next_column > 0 ? next_column - 1 : 0; // Find the first column that starts after rect right. unsigned end_column; if (column_pos[next_column] >= flipped_rect.MaxX()) { end_column = next_column; } else { end_column = static_cast<unsigned>( std::upper_bound(column_pos.begin() + next_column, column_pos.end(), flipped_rect.MaxX()) - column_pos.begin()); if (end_column == column_pos.size()) end_column = column_pos.size() - 1; } return CellSpan(start_column, end_column); } void LayoutTableSection::RecalcCells() { DCHECK(needs_cell_recalc_); // We reset the flag here to ensure that |addCell| works. This is safe to do // as fillRowsWithDefaultStartingAtPosition makes sure we match the table's // columns representation. needs_cell_recalc_ = false; c_col_ = 0; c_row_ = 0; grid_.clear(); bool resized_grid = false; for (LayoutTableRow* row = FirstRow(); row; row = row->NextRow()) { unsigned insertion_row = c_row_; ++c_row_; c_col_ = 0; EnsureRows(c_row_); grid_[insertion_row].row = row; row->SetRowIndex(insertion_row); grid_[insertion_row].SetRowLogicalHeightToRowStyleLogicalHeight(); for (LayoutTableCell* cell = row->FirstCell(); cell; cell = cell->NextCell()) { // For rowspan, "the value zero means that the cell is to span all the // remaining rows in the row group." Calculate the size of the full // row grid now so that we can use it to count the remaining rows in // ResolvedRowSpan(). if (!cell->ParsedRowSpan() && !resized_grid) { unsigned c_row = row->RowIndex() + 1; for (LayoutTableRow* remaining_row = row; remaining_row; remaining_row = remaining_row->NextRow()) c_row++; EnsureRows(c_row); resized_grid = true; } AddCell(cell, row); } } grid_.ShrinkToFit(); SetNeedsLayoutAndFullPaintInvalidation(layout_invalidation_reason::kUnknown); } // FIXME: This function could be made O(1) in certain cases (like for the // non-most-constrainive cells' case). void LayoutTableSection::RowLogicalHeightChanged(LayoutTableRow* row) { if (NeedsCellRecalc()) return; unsigned row_index = row->RowIndex(); grid_[row_index].SetRowLogicalHeightToRowStyleLogicalHeight(); for (LayoutTableCell* cell = grid_[row_index].row->FirstCell(); cell; cell = cell->NextCell()) grid_[row_index].UpdateLogicalHeightForCell(cell); } void LayoutTableSection::SetNeedsCellRecalc() { needs_cell_recalc_ = true; SetNeedsOverflowRecalc(); if (LayoutTable* t = Table()) t->SetNeedsSectionRecalc(); } unsigned LayoutTableSection::NumEffectiveColumns() const { unsigned result = 0; for (unsigned r = 0; r < grid_.size(); ++r) { unsigned n_cols = NumCols(r); for (unsigned c = result; c < n_cols; ++c) { const auto& grid_cell = GridCellAt(r, c); if (grid_cell.HasCells() || grid_cell.InColSpan()) result = c; } } return result + 1; } LayoutTableCell* LayoutTableSection::OriginatingCellAt( unsigned row, unsigned effective_column) { SECURITY_CHECK(!needs_cell_recalc_); if (effective_column >= NumCols(row)) return nullptr; auto& grid_cell = GridCellAt(row, effective_column); if (grid_cell.InColSpan()) return nullptr; if (auto* cell = grid_cell.PrimaryCell()) { if (cell->RowIndex() == row) return cell; } return nullptr; } void LayoutTableSection::AppendEffectiveColumn(unsigned pos) { DCHECK(!needs_cell_recalc_); for (auto& row : grid_) row.grid_cells.resize(pos + 1); } void LayoutTableSection::SplitEffectiveColumn(unsigned pos, unsigned first) { DCHECK(!needs_cell_recalc_); if (c_col_ > pos) c_col_++; for (unsigned row = 0; row < grid_.size(); ++row) { auto& grid_cells = grid_[row].grid_cells; EnsureCols(row, pos + 1); grid_cells.insert(pos + 1, TableGridCell()); if (grid_cells[pos].HasCells()) { grid_cells[pos + 1].Cells().AppendVector(grid_cells[pos].Cells()); LayoutTableCell* cell = grid_cells[pos].PrimaryCell(); DCHECK(cell); DCHECK_GE(cell->ColSpan(), (grid_cells[pos].InColSpan() ? 1u : 0)); unsigned colleft = cell->ColSpan() - grid_cells[pos].InColSpan(); if (first > colleft) grid_cells[pos + 1].SetInColSpan(false); else grid_cells[pos + 1].SetInColSpan(first || grid_cells[pos].InColSpan()); } else { grid_cells[pos + 1].SetInColSpan(false); } } } // Hit Testing bool LayoutTableSection::NodeAtPoint( HitTestResult& result, const HitTestLocation& location_in_container, const LayoutPoint& accumulated_offset, HitTestAction action) { // If we have no children then we have nothing to do. if (!FirstRow()) return false; // Table sections cannot ever be hit tested. Effectively they do not exist. // Just forward to our children always. LayoutPoint adjusted_location = accumulated_offset + Location(); if (HasOverflowClip() && !location_in_container.Intersects(OverflowClipRect(adjusted_location))) return false; if (HasVisuallyOverflowingCell()) { for (LayoutTableRow* row = LastRow(); row; row = row->PreviousRow()) { // FIXME: We have to skip over inline flows, since they can show up inside // table rows at the moment (a demoted inline <form> for example). If we // ever implement a table-specific hit-test method (which we should do for // performance reasons anyway), then we can remove this check. if (!row->HasSelfPaintingLayer()) { LayoutPoint child_point = FlipForWritingModeForChild(row, adjusted_location); if (row->NodeAtPoint(result, location_in_container, child_point, action)) { UpdateHitTestResult( result, ToLayoutPoint(location_in_container.Point() - child_point)); return true; } } } return false; } RecalcCellsIfNeeded(); LayoutRect hit_test_rect = LayoutRect(location_in_container.BoundingBox()); hit_test_rect.MoveBy(-adjusted_location); LayoutRect table_aligned_rect = LogicalRectForWritingModeAndDirection(hit_test_rect); CellSpan row_span = SpannedRows(table_aligned_rect); CellSpan column_span = SpannedEffectiveColumns(table_aligned_rect); // Now iterate over the spanned rows and columns. for (unsigned hit_row = row_span.Start(); hit_row < row_span.End(); ++hit_row) { unsigned n_cols = NumCols(hit_row); for (unsigned hit_column = column_span.Start(); hit_column < n_cols && hit_column < column_span.End(); ++hit_column) { auto& grid_cell = GridCellAt(hit_row, hit_column); // If the cell is empty, there's nothing to do if (!grid_cell.HasCells()) continue; for (unsigned i = grid_cell.Cells().size(); i;) { --i; LayoutTableCell* cell = grid_cell.Cells()[i]; LayoutPoint cell_point = FlipForWritingModeForChild(cell, adjusted_location); if (static_cast<LayoutObject*>(cell)->NodeAtPoint( result, location_in_container, cell_point, action)) { UpdateHitTestResult( result, location_in_container.Point() - ToLayoutSize(cell_point)); return true; } } if (!result.GetHitTestRequest().ListBased()) break; } if (!result.GetHitTestRequest().ListBased()) break; } return false; } LayoutTableSection* LayoutTableSection::CreateAnonymousWithParent( const LayoutObject* parent) { scoped_refptr<ComputedStyle> new_style = ComputedStyle::CreateAnonymousStyleWithDisplay(parent->StyleRef(), EDisplay::kTableRowGroup); LayoutTableSection* new_section = new LayoutTableSection(nullptr); new_section->SetDocumentForAnonymous(&parent->GetDocument()); new_section->SetStyle(std::move(new_style)); return new_section; } void LayoutTableSection::SetLogicalPositionForCell( LayoutTableCell* cell, unsigned effective_column) const { LayoutPoint cell_location(0, row_pos_[cell->RowIndex()]); int16_t horizontal_border_spacing = Table()->HBorderSpacing(); if (!TableStyle().IsLeftToRightDirection()) { cell_location.SetX(LayoutUnit( Table()->EffectiveColumnPositions()[Table()->NumEffectiveColumns()] - Table()->EffectiveColumnPositions() [Table()->AbsoluteColumnToEffectiveColumn( cell->AbsoluteColumnIndex() + cell->ColSpan())] + horizontal_border_spacing)); } else { cell_location.SetX( LayoutUnit(Table()->EffectiveColumnPositions()[effective_column] + horizontal_border_spacing)); } cell->SetLogicalLocation(cell_location); } void LayoutTableSection::RelayoutCellIfFlexed(LayoutTableCell& cell, int row_index, int row_height) { // Force percent height children to lay themselves out again. // This will cause these children to grow to fill the cell. // FIXME: There is still more work to do here to fully match WinIE (should // it become necessary to do so). In quirks mode, WinIE behaves like we // do, but it will clip the cells that spill out of the table section. // strict mode, Mozilla and WinIE both regrow the table to accommodate the // new height of the cell (thus letting the percentages cause growth one // time only). We may also not be handling row-spanning cells correctly. // // Note also the oddity where replaced elements always flex, and yet blocks/ // tables do not necessarily flex. WinIE is crazy and inconsistent, and we // can't hope to match the behavior perfectly, but we'll continue to refine it // as we discover new bugs. :) bool cell_children_flex = false; bool flex_all_children = CellHasExplicitlySpecifiedHeight(cell) || (!Table()->StyleRef().LogicalHeight().IsAuto() && row_height != cell.LogicalHeight()); for (LayoutObject* child = cell.FirstChild(); child; child = child->NextSibling()) { if (!child->IsText() && child->StyleRef().LogicalHeight().IsPercentOrCalc() && (flex_all_children || ShouldFlexCellChild(cell, child)) && (!child->IsTable() || ToLayoutTable(child)->HasSections())) { cell_children_flex = true; break; } } if (!cell_children_flex) { if (TrackedLayoutBoxListHashSet* percent_height_descendants = cell.PercentHeightDescendants()) { for (auto* descendant : *percent_height_descendants) { if (flex_all_children || ShouldFlexCellChild(cell, descendant)) { cell_children_flex = true; break; } } } } if (!cell_children_flex) return; // Alignment within a cell is based off the calculated height, which becomes // irrelevant once the cell has been resized based off its percentage. cell.SetOverrideLogicalHeightFromRowHeight(LayoutUnit(row_height)); cell.ForceLayout(); // If the baseline moved, we may have to update the data for our row. Find // out the new baseline. if (cell.IsBaselineAligned()) { LayoutUnit baseline = cell.CellBaselinePosition(); if (baseline > cell.BorderBefore() + cell.PaddingBefore()) grid_[row_index].baseline = std::max(grid_[row_index].baseline, baseline); } } int LayoutTableSection::LogicalHeightForRow( const LayoutTableRow& row_object) const { unsigned row_index = row_object.RowIndex(); DCHECK_LT(row_index, grid_.size()); int logical_height = 0; for (auto& grid_cell : grid_[row_index].grid_cells) { const LayoutTableCell* cell = grid_cell.PrimaryCell(); if (!cell || grid_cell.InColSpan()) continue; unsigned row_span = cell->ResolvedRowSpan(); if (row_span == 1) { logical_height = std::max(logical_height, cell->LogicalHeightForRowSizing()); continue; } unsigned row_index_for_cell = cell->RowIndex(); if (row_index == grid_.size() - 1 || (row_span > 1 && row_index - row_index_for_cell == row_span - 1)) { // This is the last row of the rowspanned cell. Add extra height if // needed. if (LayoutTableRow* first_row_for_cell = grid_[row_index_for_cell].row) { int min_logical_height = cell->LogicalHeightForRowSizing(); // Subtract space provided by previous rows. min_logical_height -= row_object.LogicalTop().ToInt() - first_row_for_cell->LogicalTop().ToInt(); logical_height = std::max(logical_height, min_logical_height); } } } if (grid_[row_index].logical_height.IsSpecified()) { LayoutUnit specified_logical_height = MinimumValueForLength(grid_[row_index].logical_height, LayoutUnit()); // We round here to match computations for row_pos_ in // CalcRowLogicalHeight(). logical_height = std::max(logical_height, specified_logical_height.Round()); } return logical_height; } int LayoutTableSection::OffsetForRepeatedHeader() const { LayoutTableSection* header = Table()->Header(); if (header && header != this) return Table()->RowOffsetFromRepeatingHeader().ToInt(); LayoutState* layout_state = View()->GetLayoutState(); return layout_state->HeightOffsetForTableHeaders().ToInt(); } void LayoutTableSection::AdjustRowForPagination(LayoutTableRow& row_object, SubtreeLayoutScope& layouter) { row_object.SetPaginationStrut(LayoutUnit()); row_object.SetLogicalHeight(LayoutUnit(LogicalHeightForRow(row_object))); if (!IsPageLogicalHeightKnown()) return; int pagination_strut = PaginationStrutForRow(&row_object, row_object.LogicalTop()); bool row_is_at_top_of_column = false; LayoutUnit offset_from_top_of_page; if (!pagination_strut) { LayoutUnit page_logical_height = PageLogicalHeightForOffset(row_object.LogicalTop()); if (OffsetForRepeatedHeader()) { offset_from_top_of_page = page_logical_height - PageRemainingLogicalHeightForOffset(row_object.LogicalTop(), kAssociateWithLatterPage); row_is_at_top_of_column = !offset_from_top_of_page || offset_from_top_of_page <= OffsetForRepeatedHeader() || offset_from_top_of_page <= Table()->VBorderSpacing(); } if (!row_is_at_top_of_column) return; } // We need to push this row to the next fragmentainer. If there are repeated // table headers, we need to make room for those at the top of the next // fragmentainer, above this row. Otherwise, this row will just go at the top // of the next fragmentainer. // Border spacing from the previous row has pushed this row just past the top // of the page, so we must reposition it to the top of the page and avoid any // repeating header. if (row_is_at_top_of_column && offset_from_top_of_page) pagination_strut -= offset_from_top_of_page.ToInt(); // If we have a header group we will paint it at the top of each page, // move the rows down to accommodate it. int additional_adjustment = OffsetForRepeatedHeader(); // If the table collapses borders, push the row down by the max height of the // outer half borders to make the whole collapsed borders on the next page. if (Table()->ShouldCollapseBorders()) { for (const auto* cell = row_object.FirstCell(); cell; cell = cell->NextCell()) { additional_adjustment = std::max<int>(additional_adjustment, cell->CollapsedOuterBorderBefore()); } } pagination_strut += additional_adjustment; row_object.SetPaginationStrut(LayoutUnit(pagination_strut)); // We have inserted a pagination strut before the row. Adjust the logical top // and re-lay out. We no longer want to break inside the row, but rather // *before* it. From the previous layout pass, there are most likely // pagination struts inside some cell in this row that we need to get rid of. row_object.SetLogicalTop(row_object.LogicalTop() + pagination_strut); layouter.SetChildNeedsLayout(&row_object); row_object.LayoutIfNeeded(); // It's very likely that re-laying out (and nuking pagination struts inside // cells) gave us a new height. row_object.SetLogicalHeight(LayoutUnit(LogicalHeightForRow(row_object))); } bool LayoutTableSection::GroupShouldRepeat() const { DCHECK(Table()->Header() == this || Table()->Footer() == this); if (GetPaginationBreakability() == kAllowAnyBreaks) return false; // If we don't know the page height yet, just assume we fit. if (!IsPageLogicalHeightKnown()) return true; LayoutUnit page_height = PageLogicalHeightForOffset(LayoutUnit()); LayoutUnit logical_height = LogicalHeight() - OffsetForRepeatedHeader(); if (logical_height > page_height) return false; // See https://drafts.csswg.org/css-tables-3/#repeated-headers which says // a header/footer can repeat if it takes up less than a quarter of the page. if (logical_height > 0 && page_height / logical_height < 4) return false; return true; } bool LayoutTableSection::MapToVisualRectInAncestorSpaceInternal( const LayoutBoxModelObject* ancestor, TransformState& transform_state, VisualRectFlags flags) const { if (ancestor == this) return true; // Repeating table headers and footers are painted once per // page/column. So we need to use the rect for the entire table because // the repeating headers/footers will appear throughout it. // This does not go through the regular fragmentation machinery, so we need // special code to expand the invalidation rect to contain all positions of // the header in all columns. // Note that this is in flow thread coordinates, not visual coordinates. The // enclosing LayoutFlowThread will convert to visual coordinates. if (IsRepeatingHeaderGroup() || IsRepeatingFooterGroup()) { transform_state.Flatten(); FloatRect rect = transform_state.LastPlanarQuad().BoundingBox(); rect.SetHeight(Table()->LogicalHeight()); transform_state.SetQuad(FloatQuad(rect)); return Table()->MapToVisualRectInAncestorSpaceInternal( ancestor, transform_state, flags); } return LayoutTableBoxComponent::MapToVisualRectInAncestorSpaceInternal( ancestor, transform_state, flags); } bool LayoutTableSection::PaintedOutputOfObjectHasNoEffectRegardlessOfSize() const { // LayoutTableSection paints background from columns. if (Table()->HasColElements()) return false; return LayoutTableBoxComponent:: PaintedOutputOfObjectHasNoEffectRegardlessOfSize(); } } // namespace blink
[ "sunny.nam@samsung.com" ]
sunny.nam@samsung.com
12296921e0243ca482f427befca74058e566267f
512ff8baf337a02d04186950eaaf3f05493f19cc
/贪心/455/main.cpp
749d961d10c095e0a72f214e09405b0b591bc2a4
[]
no_license
coderzhongkaikai/exercise
69cfe5d11c84b21e4702c6f6ed4fa03ba2ce751f
e354698cb9cae39d0f356b3775084341507888d7
refs/heads/master
2021-07-08T13:40:29.573399
2021-04-30T11:16:31
2021-04-30T11:16:31
239,304,726
0
0
null
null
null
null
UTF-8
C++
false
false
642
cpp
#include <iostream> #include <vector> #include <algorithm> using namespace std; class Solution{ public:int findContentChild(vector<int>&g,vector<int>&s){ sort(g.begin(),g.end(),greater<int>()); sort(s.begin(),s.end(),greater<int>()); int si=0,gi=0;//分别代表 饼干和小孩 int res=0; while (gi<g.size()&&si<s.size()){ if(s[si]>=g[gi]){ res++; si++; gi++; } else{ gi++; } } return res; } }; int main() { std::cout << "Hello, World!" << std::endl; return 0; }
[ "2457169144@qq.com" ]
2457169144@qq.com
94ea07d6eb83f52fa0da7b355b30c423c5da05d0
1cc44526fe719ddb807241e873b536c22fa0d1bf
/Src/Representations/Infrastructure/CameraSettingsV6.h
5edee4aca46cde7663350874182362733c515637
[ "BSD-2-Clause" ]
permissive
Handsome-Computer-Organization/nao
55e188276a7ba82631bc6283d18db89f2b688c75
d7bbac09355e5f8f719acb4b65b39bc7975878ca
refs/heads/main
2023-04-26T12:24:59.944423
2021-05-14T12:53:10
2021-05-14T12:53:10
367,357,552
0
0
null
null
null
null
UTF-8
C++
false
false
4,936
h
/** * @file CameraSettingsV6.h * Declaration of a struct representing the settings of the PDA camera. * @author <a href="mailto:Thomas.Roefer@dfki.de">Thomas Röfer</a> */ #pragma once #include "Representations/Infrastructure/CameraInfo.h" #include "Tools/Streams/AutoStreamable.h" #include "Tools/Enum.h" #include <array> struct CameraSettingsV6 : public Streamable { ENUM(CameraSetting, {, AutoFocus, /*1: Enable continuous automatic focus adjustments, 0: Disable auto focus*/ //New AutoExposure, /* 1: Use auto exposure, 0: disable auto exposure. */ // AutoExposureAlgorithm, //BacklightCompensation, /* 0 - 4 */ AutoWhiteBalance, /* 1: Use auto white balance, 0: disable auto white balance. */ Contrast, /* The contrast in range of [16 .. 64]. Gravients from 0.5 (16) to 2.0 (64).*/ Exposure, /**< The exposure time in the range of [0 .. 1000]. Time is measured in increments of 100µs. */ //FadeToBlack, /**< Fade to black under low light conditions. 1: enabled, 0: disabled. */ Gain, /**< The gain level in the range of [0 .. 255]. */ Hue, /* The hue in range [-22 .. 22] */ Saturation, /* The saturation in range of [0 .. 255] */ Sharpness, /* The sharpness in range of [-7 .. 7] */ WhiteBalance, /**< The white balance in Kelvin [2700 .. 6500] */ //Gamma, /* The gamma value in range [100, 280] */ //PowerLineFrequency, /* The local power frequency (1 = 50Hz, 2 = 60Hz) */ //TargetAverageLuma, /* The target average brightness [0 .. 255] */ //TargetAverageLumaDark, /* The target average brightness for dark [0 .. 255] */ //TargetGain, /* The target analog gain [0 .. 65535] */ //MinGain, /* The minimum value for the analog gain that AE Track is permitted to use [0 .. 65535] */ //MaxGain, /* The maximum value for the analog gain that AE Track is permitted to use [0 .. 65535] */ //AeMode, /* AE mode (indoor, ...) [0 .. 255] */ Focus, /*This control sets the focal point of the camera to the specified position in [0,250], in 25 step*/ //New }); STREAMABLE(CameraRegister, { ENUM(RegisterName, { , aec_ctrl, aec_ctrl_stable_high, aec_ctrl_stable_low, aec_ctrl_unstable_high, aec_ctrl_unstable_low, aec_min_exposure, aec_max_expo_60hz, aec_max_expo_50hz, aec_gain_ceiling, aec_5060hz_ctrl0, aec_5060hz_ctrl1, aec_60hz_max_bands, aec_50hz_max_bands, timing_tc_reg21, }); uint16_t getAddress() const { switch (reg) { case RegisterName::aec_ctrl: return 0x3A00; case RegisterName::aec_ctrl_stable_high: return 0x3A0F; case RegisterName::aec_ctrl_stable_low: return 0x3A10; case RegisterName::aec_ctrl_unstable_high: return 0x3A1B; case RegisterName::aec_ctrl_unstable_low: return 0x3A1E; case RegisterName::aec_min_exposure: return 0x3A01; case RegisterName::aec_max_expo_60hz: return 0x3A02; case RegisterName::aec_max_expo_50hz: return 0x3A14; case RegisterName::aec_gain_ceiling: return 0x3A18; case RegisterName::aec_5060hz_ctrl0: return 0x3C00; case RegisterName::aec_5060hz_ctrl1: return 0x3C01; case RegisterName::aec_60hz_max_bands: return 0x3A0D; case RegisterName::aec_50hz_max_bands: return 0x3A0E; case RegisterName::timing_tc_reg21: return 0x3821; default: return 0; } } uint8_t getSize() const { switch (reg) { case RegisterName::aec_max_expo_60hz: return 2; case RegisterName::aec_max_expo_50hz: return 2; case RegisterName::aec_gain_ceiling: return 2; default: return 1; } } bool operator==(const CameraRegister& other) const { return this->reg == other.reg && this->value == other.value; } , (RegisterName)(0) reg, (int)(0) value, }); STREAMABLE(V4L2Setting, { int command; private: int min; int max; public: PROTECT(std::array<CameraSetting, 2>) influencingSettings; V4L2Setting(); V4L2Setting(int command, int value, int min, int max); virtual ~V4L2Setting() = default; V4L2Setting& operator=(const V4L2Setting& other); bool operator==(const V4L2Setting& other) const; bool operator!=(const V4L2Setting& other) const; void enforceBounds(), (int) value, }); std::array<V4L2Setting, numOfCameraSettings> settings; std::vector<CameraRegister> registers; Vector2s windowPosition; Vector2s windowSize; std::array<uint8_t,16> windowWeights; CameraSettingsV6(); virtual ~CameraSettingsV6() = default; CameraSettingsV6& operator=(const CameraSettingsV6& other); bool operator==(const CameraSettingsV6& other) const; bool operator!=(const CameraSettingsV6& other) const; void enforceBounds(); virtual void serialize(In* in, Out* out); }; STREAMABLE_WITH_BASE(CameraSettingsUpperV6, CameraSettingsV6, {, });
[ "handsomeyingyan@github.com" ]
handsomeyingyan@github.com
e1889b22ed801baff046deeeec9f6ee14c26200b
c7979f4f6435fe8d0d07fff7a430da55e3592aed
/aising/test.cpp
3f181c684756bfc5df72fe6503946084fbd3a44c
[]
no_license
banboooo044/AtCoder
cee87d40bb98abafde19017f4f4e2f984544b9f8
7541d521cf0da848ecb5eb10ffea7d75a44cbbb6
refs/heads/master
2020-04-14T11:35:24.977457
2019-09-17T03:20:27
2019-09-17T03:20:27
163,818,272
0
0
null
null
null
null
UTF-8
C++
false
false
2,536
cpp
#include <iostream> #include <cstdio> #include <cstdlib> #include <cstring> #include <algorithm> #include <string> #include <sstream> #include <complex> #include <vector> #include <list> #include <queue> #include <deque> #include <stack> #include <map> #include <set> #define REP(i,n) for (long long i=0;i<(n);i++) #define FOR(i,a,b) for (long long i=(a);i<(b);i++) #define RREP(i,n) for(long long i=n;i>=0;i--) #define RFOR(i,a,b) for(long long i=(a);i>(b);i--) #define dump(x) cerr << #x << " => " << (x) << endl #define SORT(c) sort((c).begin(),(c).end()) #define MIN(vec) *min_element(vec.begin(), vec.end()) #define MAX(vec) *max_element(vec.begin(), vec.end()) #define UNIQ(vec) vec.erase(unique(vec.begin(), vec.end()),vec.end()) //ソートの必要あり #define IN(n,m) (!(m.find(n) == m.end())) #define ENUM(m) for (auto itr = m.begin(); itr != m.end(); ++itr) #define dump_MAP(m) for(auto itr = m.begin(); itr != m.end(); ++itr) { cerr << itr->first << " --> " << itr->second << endl; } #define FINDL(vec,x) (lower_bound(vec.begin(),vec.end(),x) - vec.begin()) #define FINDU(vec,x) (upper_bound(vec.begin(),vec.end(),x) - vec.begin()) #define ROUND(N) setprecision(N) #define ROUND_PRINT(N,val) cout << fixed;cout << setprecision(N) << val << endl #define ALL(a) (a).begin(),(a).end() #define RALL(a) (a).rbegin(), (a).rend() #define INARR(h,w,x,y) (0 <= y && y < h && 0 <= x && x < w) #define EQ(a,b) (abs(a - b) < 1e-10) using namespace std; constexpr int dx[4] = {0,1,0,-1}; constexpr int dy[4] = {1,0,-1,0}; constexpr long double pi = M_PI; constexpr double eps = 1e-10; constexpr long mod = 1000000007; constexpr short shINF = 32767; constexpr long loINF = 2147483647; constexpr long long llINF = 9223372036854775807; typedef long long LL; typedef vector<LL> VI; typedef vector<VI> VVI; typedef vector<string> VS; typedef pair<LL,LL> pr; typedef vector<bool> VB; typedef vector<pr> VP; typedef priority_queue<pr,vector<pr>,greater<pr>> pq; template<class T1, class T2> ostream& operator << (ostream &s, pair<T1,T2> P) { return s << '<' << P.first << ", " << P.second << '>'; } template<class T> ostream& operator << (ostream &s, vector<T> P) { for (int i = 0; i < P.size(); ++i) { if (i > 0) { s << " "; } s << P[i]; } return s; } template<class T> ostream& operator << (ostream &s, vector<vector<T> > P) { for (int i = 0; i < P.size(); ++i) { s << endl << P[i]; } return s << endl; } int main(void) { cin.tie(0); ios::sync_with_stdio(false); vector<int> x = { 0, 1, 2, 6,10}; dump(FINDL(x,2)); }
[ "touhoucrisis7@gmail.com" ]
touhoucrisis7@gmail.com
372b13037b81ffa40af4aeb20b7aac9db4667659
647d3cf8c301cc4351c5f6b7a3adeb0c294ce849
/Others/less/old/2021-4-10/P1082.cpp
5140c27bad5f3939b5147ddc1ebbd001218794c2
[]
no_license
schtonn/Code
d6157e7d8ee8256159246c4765122e188ecbc48d
ba4e4e4511d37ec8398f4015fddf938f6b9d8852
refs/heads/master
2022-08-10T14:37:32.655034
2022-07-25T14:36:03
2022-07-25T14:36:03
243,902,585
0
0
null
2020-03-15T09:50:27
2020-02-29T04:13:41
null
UTF-8
C++
false
false
279
cpp
#include "bits/stdc++.h" using namespace std; void exgcd(int a,int b,int &x,int &y){ if(!b){ x=1,y=0; return; } exgcd(b,a%b,y,x); y=y-a/b*x; } int main(){ int a,b,x,y; cin>>a>>b; exgcd(a,b,x,y); cout<<(x+b)%b<<endl; return 0; }
[ "schtonn@163.com" ]
schtonn@163.com
e7782ac5d9e499f80c1e579f236c304f787bd527
2a91fa3eb624d07bf763e3390acc4d22610acb3b
/include/Core/QuantumCircuit/QReset.h
e9354445172ed863db0509df323c90192e53a8f5
[ "Apache-2.0" ]
permissive
YeweiYuan/QPanda-2
3ee1ae32695dcd14a55de3257ddbc9daad28b4d4
7087f1a002e8248bc46e6c16968fae5071243efd
refs/heads/master
2023-05-02T04:00:49.875822
2021-05-27T03:04:34
2021-05-27T03:04:34
309,905,736
1
0
Apache-2.0
2021-05-27T03:04:35
2020-11-04T06:07:55
null
UTF-8
C++
false
false
3,830
h
/* Copyright (c) 2017-2020 Origin Quantum Computing. All Right 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. */ /*! \file QReset.h */ #pragma once #include "Core/QuantumMachine/QubitFactory.h" #include "Core/QuantumCircuit/QNode.h" #include "Core/QuantumCircuit/ClassicalConditionInterface.h" QPANDA_BEGIN /** * @class AbstractQuantumReset * @brief Quantum Reset basic abstract class * @ingroup QuantumCircuit */ class AbstractQuantumReset { public: /** * @brief Get the reset qubit * @return Qubit * */ virtual Qubit * getQuBit() const = 0; virtual ~AbstractQuantumReset() {} }; /** * @class QReset * @brief Quantum Reset basic class * @ingroup QuantumCircuit */ class QReset : public AbstractQuantumReset { private: std::shared_ptr<AbstractQuantumReset> m_reset; public: QReset() = delete; QReset(const QReset &); QReset(Qubit *); QReset(std::shared_ptr<AbstractQuantumReset> node); std::shared_ptr<AbstractQuantumReset> getImplementationPtr(); ~QReset(); /** * @brief Get reset node qubit address * @return QPanda::Qubit* QuBit address */ Qubit * getQuBit() const; /** * @brief Get current node type * @return NodeType current node type * @see NodeType */ NodeType getNodeType() const; }; typedef AbstractQuantumReset * (*CreateReset)(Qubit *); /** * @brief Factory for class AbstractQuantumReset * @ingroup QuantumCircuit */ class QResetFactory { public: void registClass(std::string name, CreateReset method); AbstractQuantumReset * getQuantumReset(std::string &, Qubit *); /** * @brief Get the static instance of factory * @return QResetFactory & */ static QResetFactory & getInstance() { static QResetFactory s_Instance; return s_Instance; } private: std::map<std::string, CreateReset> m_reset_map; QResetFactory() {}; }; /** * @brief Quantum reset register action * @note Provide QResetFactory class registration interface for the outside */ class QuantumResetRegisterAction { public: QuantumResetRegisterAction(std::string className, CreateReset ptrCreateFn) { QResetFactory::getInstance().registClass(className, ptrCreateFn); } }; #define REGISTER_RESET(className) \ AbstractQuantumReset* objectCreator##className(Qubit * pQubit){ \ return new className(pQubit); \ } \ QuantumResetRegisterAction g_resetCreatorRegister##className( \ #className,(CreateReset)objectCreator##className) /** * @brief Implementation class of QReset * @ingroup QuantumCircuit */ class OriginReset : public QNode, public AbstractQuantumReset { public: OriginReset(Qubit *); ~OriginReset() {}; /** * @brief Get reset node qubit address * @return QPanda::Qubit* QuBit address */ Qubit * getQuBit() const; /** * @brief Get current node type * @return NodeType current node type * @see NodeType */ NodeType getNodeType() const; private: OriginReset(); OriginReset(OriginReset &); NodeType m_node_type; Qubit * m_target_qubit; }; /** * @brief QPanda2 basic interface for creating a quantum Reset node * @param[in] Qubit* Qubit pointer * @return QPanda::QReset quantum reset node * @ingroup QuantumCircuit */ QReset Reset(Qubit *); QPANDA_END
[ "wj@originqc.cn" ]
wj@originqc.cn
aec83cdc0d4e1fc709528350d827045f61c600c0
1190c42cf0e03d8625b3eed9b469bbc5dcbecc4d
/sockets/sockets.h
0ef1fd1f370d2c9a3bd95b10464126c844f94759
[]
no_license
ujpv/protei
0fea4498c3e92978cb78295e5d1d90bdab6998ff
36d1438f304a33126e862c9a41b07d92f1668737
refs/heads/master
2016-09-14T14:45:39.142944
2016-05-04T18:18:16
2016-05-04T18:18:16
57,385,906
0
0
null
null
null
null
UTF-8
C++
false
false
1,978
h
#ifndef SOCKETS_H #define SOCKETS_H #include <inttypes.h> class abstract_socket { public: explicit abstract_socket(int fd); abstract_socket(abstract_socket const &other); int get_fd() const; char *get_er_message() const; bool connect(char const * ip, uint16_t port); bool disconect(); bool is_valid() const; void swap(abstract_socket &other); virtual bool bind(char const * const ip, uint16_t port); virtual int receive(char *buf, int size) = 0; virtual int send(char const *buf, int size); virtual ~abstract_socket(); private: int m_fd; int *m_pcount; }; //==================================================================================================== class socket_UDP: public abstract_socket { public: socket_UDP(); socket_UDP(socket_UDP const &other); socket_UDP &operator=(socket_UDP const &other); int receive(char *buf, int size) override; ~socket_UDP(); }; //==================================================================================================== class socket_TCP; class socket_TCP_listener: public abstract_socket { public: explicit socket_TCP_listener(int queue_size); socket_TCP_listener(socket_TCP_listener const &other); socket_TCP_listener &operator=(socket_TCP_listener const &other); int receive(char *, int) override; int send(char const *, int) override; bool bind(const char * const ip, uint16_t port) override; socket_TCP accept(); private: int m_queue_size; }; //==================================================================================================== class socket_TCP: public abstract_socket { public: socket_TCP(); socket_TCP(socket_TCP const &other); socket_TCP &operator=(socket_TCP const &other); int receive(char *buf, int size) override; ~socket_TCP() override; friend socket_TCP socket_TCP_listener::accept(); private: explicit socket_TCP(int f_d); }; #endif // SOCKETS_H
[ "ujpv@mail.ru" ]
ujpv@mail.ru
76aa4685ccbf16eec2434cc5df11c69c8b5d76b1
8fdea23d0eb541bb076f77f9ba02ebf5446de1a0
/src/CloudBackground.h
7b8f98a6e79e0328474cba74f769a80a34df97d1
[]
no_license
brannondorsey/LEDWallInteractive
928790a7bf1c54f986df6048c6a42aeff74a95f2
c8d582061c3811b738ddfe11a06c1d7363ada96e
refs/heads/master
2021-01-10T14:21:03.476893
2016-02-08T18:30:32
2016-02-08T18:30:32
50,591,829
1
0
null
null
null
null
UTF-8
C++
false
false
2,490
h
#pragma once #include "ofMain.h" class CloudBackground { public: float frequency; ofColor cloudColor; ofEasyCam camera; ofShader shader; ofImage noiseImage; ofFbo fbo; int width; int height; int minFrequency; int maxFrequency; void setup(int width_, int height_) { minFrequency = 3.0f; maxFrequency = 7.0f; width = width_; height = height_; ofSetLogLevel(OF_LOG_VERBOSE); frequency = minFrequency; cloudColor = ofColor::black; shader.load("RayMarchingCloudsVolumeofCamera"); ofDisableArbTex(); noiseImage.loadImage("NoiseForClouds.png"); noiseImage.getTextureReference().setTextureWrap( GL_REPEAT, GL_REPEAT ); ofEnableArbTex(); camera.setAutoDistance( false ); camera.setGlobalPosition( ofVec3f(0.00326601, 4.02035, 0.311073) ); camera.lookAt( ofVec3f(0,0,0) ); camera.setNearClip( 0.0001f ); camera.setFarClip( 1024 ); fbo.allocate(width, height); fbo.begin(); ofClear(0, 0, 0, 0); fbo.end(); } void update() { frequency+=0.00051; } void draw() { ofPushStyle(); fbo.begin(); ofClear(ofColor::white); camera.begin(); ofEnableAlphaBlending(); shader.begin(); shader.setUniform1f("aspect", (float)width / height ); shader.setUniform1f("fovYScale", tan( ofDegToRad(camera.getFov())/2 ) ); shader.setUniform1f("time", ofGetElapsedTimef() ); shader.setUniform2f("resolution", width*2, height*2 ); shader.setUniformTexture("noiseTexture", noiseImage, 0 ); shader.setUniform1f("frequency", frequency ); ofFloatColor cloudBaseColor = cloudColor; shader.setUniform4fv("cloudBaseColor", cloudBaseColor.v ); ofRect( -1, -1, 2, 2 ); shader.end(); camera.end(); fbo.end(); ofPopStyle(); fbo.draw(0, 0); } };
[ "brannon@brannondorsey.com" ]
brannon@brannondorsey.com
d754a3c9e2b5fbd14fc963886a66633fc9e4342d
db21d60c742cd1f6b5bbfb9dcf8e6f17eafb3ffd
/TiledReader/Includes/Event/Delegate/Exception/UnboundDelegateException.h
32c5afe889987e4aba1ccb4366912c2979842e6e
[]
no_license
YvesHenri/TiledPlusPlus
d32a3a8ffcee4097da690590eac0b4a6d46fc219
79e1f4f9d75920821f1e3976386811326b094da3
refs/heads/master
2021-01-12T00:15:24.693477
2017-02-21T17:36:37
2017-02-21T17:36:37
78,694,413
1
0
null
2017-02-21T17:36:38
2017-01-12T01:00:04
C++
UTF-8
C++
false
false
591
h
#ifndef TPP_EVENT_DELEGATE_EXCEPTION_UNBOUNDDELEGATEEXCEPTION_H #define TPP_EVENT_DELEGATE_EXCEPTION_UNBOUNDDELEGATEEXCEPTION_H #include <exception> #include "Macros\API.h" // non dll - interface class 'std::exception' used as base for dll - interface class 'evt::UnboundDelegateException' #pragma warning(disable: 4275) namespace evt { class TILEDPP_API UnboundDelegateException final : public std::exception { public: UnboundDelegateException() : std::exception("Unbound delegate") {} UnboundDelegateException(const char* message) : std::exception(message) {} }; } #endif
[ "yveshenricalaci@hotmail.com" ]
yveshenricalaci@hotmail.com
05e5d8954a8a1f0ad78bf503e12f7db8709b0969
5a88700bfdaa47e6ed95a3a0b559527c5b31a43a
/framework/simple_scene/src/mm/services/simple_scene.hpp
3a5cbe0c55b2e7ca24ed4621761b12e25d64b259
[ "MIT" ]
permissive
ford442/MushMachine
84cdc07fa1ce63605c9cc87b0586667388e657eb
dc37ad54ec02aa4c1c30cca99d965cd705b3fa2f
refs/heads/master
2023-08-23T03:17:39.362561
2021-10-22T18:49:49
2021-10-22T18:49:49
425,437,241
0
0
NOASSERTION
2021-11-07T07:43:52
2021-11-07T07:12:02
null
UTF-8
C++
false
false
1,238
hpp
#pragma once #include <mm/services/scene_service_interface.hpp> #include <chrono> namespace MM::Services { // provides an implementation for SceneServiceInterface class SimpleSceneService : public SceneServiceInterface { private: std::unique_ptr<Scene> _scene; std::unique_ptr<Scene> _next_scene; // enqueued next scene using clock = std::chrono::high_resolution_clock; long long int _accumulator = 0; std::chrono::time_point<clock> _last_time; public: const float f_delta; float initial_delta_factor = 1.f; public: explicit SimpleSceneService(const float update_delta = 1.f/60.f) : f_delta(update_delta) {} const char* name(void) override { return "SimpleSceneService"; } bool enable(Engine& engine, std::vector<UpdateStrategies::TaskInfo>& task_array) override; void disable(Engine& engine) override; private: void sceneFixedUpdate(Engine& engine); void changeSceneFixedUpdate(Engine& engine); public: Scene& getScene(void) override { return *_scene; } void changeScene(std::unique_ptr<Scene>&& new_scene) override; // be carefull of that one void changeSceneNow(std::unique_ptr<Scene>&& new_scene) override; void resetTime(void); }; } // MM::Services
[ "green@g-s.xyz" ]
green@g-s.xyz
7d1c2c751a4f8d9c524f8f827d914cca5c1ce3d7
648a0e5429d20c89f22e1d8ae8ee8891f9e09323
/Joy PS2/PS2/PS2.ino
83512e070fd4d9201d531be284208a1dcaf045c2
[]
no_license
napsudtay/aduino
109f211373ae1afb2385b6e260bebbf506bacc6b
924e812486aab34a1de17844700a874c70b485e9
refs/heads/master
2021-06-16T08:36:48.034828
2017-05-02T16:15:50
2017-05-02T16:15:50
38,966,525
0
0
null
null
null
null
UTF-8
C++
false
false
7,070
ino
/* arduino ติดต่อ JOY PS2 , arduino with JOY PS2 ตัวอย่างนี้ ง่ายกว่าที่คุณคิด มาดูหัวต่อ PS2 กันก่อนนะครับ สามารถนำไปประยุกต์ไปควบคุมหุ่นยนต์หรืองานด้านอื่นๆ ได้ครับ จากภาพนะครับมีสายทั้งหมด 8 เส้นนะครับแต่ใช้จริงๆ 6 เล้นนะครับ เส้นที่ใช้นะครับ ขา 1 ขา data ขา2 command ขา 4 ขา GND ขา 5 VCC 3.3 V ห้ามจ่าย 5 V นะครับ ขา 6 ขา acttion ขา 7 clock เกิดคำถามว่าแล้วจะต่อกับไมโครยังไง ต้องตัดหัวของ joy ps2 ออกหรือปล่าว ตอบ นะครับไม่ต้องตัดหัวออกครับ มีadapter แปลงขายเพื่อต่อครับ แต่มีวิธีที่ง่ายกว่านั้นคือต่อสายตัวเมียๆเข้ากับ joyได้เลยมีภาพให้ดูครับ แล้วอีกฝั่งนึงก็ไปต่อกับ arduino ครับ ตรงนี้ขาที่จะไปต่อกับ arduino ครับ ขา 1 ขา data ต่อกับ arduino ขา//12 ขา2 command ต่อกับ arduino ขา //11 ขา 4 ขา GND ต่อกับ arduino ขา GND ขา 5 VCC 3.3 V ห้ามจ่าย 5 V นะครับ ต่อกับ arduino 3.3V ขา 6 ขา acttion ต่อกับ arduino ขา //10 ขา 7 clock ต่อกับ arduino ขา//13 */ #include <math.h> #include <stdio.h> #include <avr/io.h> //#define LED_PIN 13 //#define DELAY(wait) digitalWrite(LED_PIN,LOW); delay(wait); digitalWrite(LED_PIN,HIGH); /* These are AVR PORTB pins, +8 to convert to Arduino pins */ #define PS2clk 5 //13 #define PS2cmd 3 //11 #define PS2att 2//10 #define PS2dat 4//12 #define PS2PORT PORTB #define PS2IN PINB #define CTRL_CLK 20 #define CTRL_BYTE_DELAY 20 //These are our button constants #define PSB_SELECT 0x01 #define PSB_L3 0x02 #define PSB_R3 0x04 #define PSB_START 0x08 #define PSB_PAD_UP 0x10 #define PSB_PAD_RIGHT 0x20 #define PSB_PAD_DOWN 0x40 #define PSB_PAD_LEFT 0x80 #define PSB_L2 0x100 #define PSB_R2 0x200 #define PSB_L1 0x400 #define PSB_R1 0x800 #define PSB_GREEN 0x1000 #define PSB_RED 0x2000 #define PSB_BLUE 0x4000 #define PSB_PINK 0x8000 #define SET(x,y) (x|=(1<<y)) #define CLR(x,y) (x&=(~(1<<y))) #define CHK(x,y) (x & (1<<y)) #define TOG(x,y) (x^=(1<<y)) boolean PSButton(); unsigned char PS2data[9]; void read_gamepad(); void config_gampad(); unsigned char get_gamepad_mode(); unsigned char i; void setup() { // randomSeed(analogRead(0)); Serial.begin(9600); // pinMode(LED_PIN,OUTPUT); // digitalWrite(LED_PIN,HIGH); pinMode(PS2clk+8,OUTPUT); pinMode(PS2att+8,OUTPUT); pinMode(PS2cmd+8,OUTPUT); pinMode(PS2dat+8,INPUT); digitalWrite(PS2dat+8,HIGH); config_gampad(); } void loop () { while(1) { delay(80) ; read_gamepad(); readkey () ; } } boolean PSButton(unsigned int button) { int byte = 3; if (button >= 0x100) { byte = 4; button = button >> 8; } if (~PS2data[byte] & button) return true; else return false; } unsigned char _gamepad_shiftinout (char byte) { unsigned char tmp = 0; for(i=0;i<8;i++) { if(CHK(byte,i)) SET(PS2PORT,PS2cmd); else CLR(PS2PORT,PS2cmd); CLR(PS2PORT,PS2clk); delayMicroseconds(CTRL_CLK); if(CHK(PS2IN,PS2dat)) SET(tmp,i); SET(PS2PORT,PS2clk); } SET(PS2PORT,PS2cmd); delayMicroseconds(CTRL_BYTE_DELAY); return tmp; } void _gamepad_shiftout (char byte) { for(i=0;i<8;i++) { if(CHK(byte,i)) SET(PS2PORT,PS2cmd); else CLR(PS2PORT,PS2cmd); CLR(PS2PORT,PS2clk); delayMicroseconds(CTRL_CLK); SET(PS2PORT,PS2clk); //delayMicroseconds(CTRL_CLK); } SET(PS2PORT,PS2cmd); delayMicroseconds(CTRL_BYTE_DELAY); } unsigned char _gamepad_shiftin() { unsigned char tmp = 0; for(i=0;i<8;i++) { CLR(PS2PORT,PS2cmd); CLR(PS2PORT,PS2clk); delayMicroseconds(CTRL_CLK); if(CHK(PS2IN,PS2dat)) SET(tmp,i); SET(PS2PORT,PS2clk); delayMicroseconds(CTRL_CLK); } SET(PS2PORT,PS2cmd); delayMicroseconds(CTRL_BYTE_DELAY); return tmp; } void read_gamepad() { SET(PS2PORT,PS2cmd); SET(PS2PORT,PS2clk); CLR(PS2PORT,PS2att); // low enable joystick delayMicroseconds(CTRL_BYTE_DELAY); char dword[9] = {0x01,0x42,0,0,0,0,0,0,0}; for (int i = 0; i<9; i++) { PS2data[i] = _gamepad_shiftinout(dword[i]); } SET(PS2PORT,PS2att); // HI disable joystick } unsigned char get_gamepad_mode() { SET(PS2PORT,PS2cmd); SET(PS2PORT,PS2clk); CLR(PS2PORT,PS2att); // low enable joystick _gamepad_shiftout(0x01); unsigned char x = _gamepad_shiftin(); SET(PS2PORT,PS2att); // HI disable joystick return x; } void config_gampad() { SET(PS2PORT,PS2cmd); SET(PS2PORT,PS2clk); CLR(PS2PORT,PS2att); // low enable joystick _gamepad_shiftout(0x01); _gamepad_shiftout(0x43); _gamepad_shiftout(0x00); _gamepad_shiftout(0x01); _gamepad_shiftout(0x00); // Lock to Analog Mode on Stick _gamepad_shiftout(0x01); _gamepad_shiftout(0x44); _gamepad_shiftout(0x00); _gamepad_shiftout(0x01); _gamepad_shiftout(0x03); _gamepad_shiftout(0x00); _gamepad_shiftout(0x00); _gamepad_shiftout(0x00); _gamepad_shiftout(0x00); // Vibration /* _gamepad_shiftout(0x01); _gamepad_shiftout(0x4D); _gamepad_shiftout(0x00); _gamepad_shiftout(0x00); _gamepad_shiftout(0x01); */ _gamepad_shiftout(0x01); _gamepad_shiftout(0x4F); _gamepad_shiftout(0x00); _gamepad_shiftout(0xFF); _gamepad_shiftout(0xFF); _gamepad_shiftout(0x03); _gamepad_shiftout(0x00); _gamepad_shiftout(0x00); _gamepad_shiftout(0x00); _gamepad_shiftout(0x01); _gamepad_shiftout(0x43); _gamepad_shiftout(0x00); _gamepad_shiftout(0x00); _gamepad_shiftout(0x5A); _gamepad_shiftout(0x5A); _gamepad_shiftout(0x5A); _gamepad_shiftout(0x5A); _gamepad_shiftout(0x5A); SET(PS2PORT,PS2att); } void readkey () { if(PSButton(PSB_PAD_UP)) { Serial.println("1"); } else if(PSButton(PSB_SELECT)) { Serial.println("x"); } else if(PSButton(PSB_PAD_DOWN)) { Serial.println("2"); } else if(PSButton(PSB_PAD_RIGHT)) { Serial.println("4"); } else if(PSButton(PSB_PAD_LEFT)) { Serial.println("3"); } else if(PSButton(PSB_L3)) { Serial.println("L3\n"); } else if(PSButton(PSB_R3)) { Serial.println("R3\n"); } else if(PSButton(PSB_L1)) { Serial.println("a"); } else if(PSButton(PSB_R1)) { Serial.println("c"); } else if(PSButton(PSB_L2)) { Serial.println("b"); } else if(PSButton(PSB_R2)) { Serial.println("d"); } else if(PSButton(PSB_GREEN)) { Serial.println("5"); } else if(PSButton(PSB_RED)) { Serial.println("8"); } else if(PSButton(PSB_PINK)) { Serial.println("7"); } else if(PSButton(PSB_BLUE)) { Serial.println("6"); } else if(PSButton(PSB_START)) { Serial.println("z"); } else{ Serial.println("PLS control JOY");} }
[ "sudtayonnuam@sudtays-MacBook-Pro.local" ]
sudtayonnuam@sudtays-MacBook-Pro.local
7362847df11136a317f15fc3a863b53e594a3a87
9310213affdbb681a8141336351bfe52b19a41fe
/linkedlist.hpp
4caba2da84565529554e8b6db0bd4c62d4efda60
[]
no_license
dh7qc/CS1510-HW03
3fa8a83f7ac4ca812d3877773c4134bb165d5114
3aac70d85889fd56f798933a787c91f0e1ef3999
refs/heads/master
2021-01-19T18:32:15.997395
2017-04-15T17:27:20
2017-04-15T17:27:20
88,362,880
0
0
null
null
null
null
UTF-8
C++
false
false
4,023
hpp
//Dennis Hahn CS1510 Section B Assignment 3 //LinkedList #include <iostream> #include <string> using namespace std; template <typename T> void LinkedList<T>::insert_front(const T& x) { LinkedList<T> *tmp = new LinkedList<T>; tmp-> m_data = this-> m_data; tmp-> m_next = this-> m_next; this-> m_data = x; this-> m_next = tmp; } template <typename T> void LinkedList<T>::insert(const T& x, LinkedList<T>* pos) { LinkedList<T> *tmp = new LinkedList<T>; tmp-> m_data = pos-> m_data; tmp-> m_next = pos-> m_next; pos-> m_data = x; pos-> m_next = tmp; } template <typename T> const LinkedList<T>& LinkedList<T>::operator=(const LinkedList<T>& rhs) { if (this != &rhs) { clear(); LinkedList<T> *p = this; const LinkedList<T> *q = &rhs; while (q -> m_next != NULL) { p -> m_data = q -> m_data; p -> m_next = new LinkedList<T>; p = p -> m_next; q = q -> m_next; } } return *this; } template <typename T> LinkedList<T>::LinkedList(const LinkedList<T>& rhs) { LinkedList<T> *p = this; const LinkedList<T> *q = &rhs; while (q -> m_next != NULL) { p -> m_data = q -> m_data; p -> m_next = new LinkedList<T>; p = p -> m_next; q = q -> m_next; } } template <typename T> int LinkedList<T>::size() const { int counter = 0; const LinkedList<T> *p = this; while(p-> m_next != NULL) { counter++; p = p->m_next; } return counter; } template <typename T> bool LinkedList<T>::isEmpty() const { if (m_next == NULL) return true; else return false; } template <typename T> LinkedList<T>* LinkedList<T>::getFirstPtr() { if (m_next != NULL) return this; else { cout << "!!-- ERROR : PANIC in LINKEDLIST.getFirstPtr() - empty list"; cout << endl; return NULL; } } template <typename T> LinkedList<T>* LinkedList<T>::getLastPtr() { LinkedList<T> *p = this; if (m_next != NULL) { while (p -> m_next != NULL) { if (p-> m_next -> m_next != NULL) p = p-> m_next; else return p; } } else { cout << "!!-- ERROR : PANIC in LINKEDLIST.getLastPtr() - empty list"; cout << endl; return NULL; } } template <typename T> LinkedList<T>* LinkedList<T>::getAtPtr(int i) { int counter = 0; LinkedList<T> *p = this; if (i < this -> size() && i >= 0) { while (p -> m_next != NULL && counter < i) { p = p -> m_next; counter++; } return p; } else { cout << "!!-- ERROR : PANIC in LINKEDLIST.getAtPtr() - invalid index"; cout << endl; return 0; } } template <typename T> void LinkedList<T>::clear() { while (m_next != NULL) { remove(this); } } template <typename T> void LinkedList<T>::remove(LinkedList<T>* pos) { LinkedList<T> *tmp = pos-> m_next; pos -> m_data = tmp -> m_data; pos -> m_next = tmp -> m_next; delete tmp; } template <typename T> bool LinkedList<T>::operator==(const LinkedList<T>& rhs) const { const LinkedList<T> *p = this; const LinkedList<T> *q = &rhs; bool equal = true; while (q -> m_next != NULL && p -> m_next != NULL && equal != false) { if (q -> m_data != p -> m_data) { equal = false; } else { q = q -> m_next; p = p -> m_next; } } if ((q -> m_next == NULL && p -> m_next != NULL) || ((q -> m_next != NULL && p -> m_next == NULL))) { equal = false; } return equal; } template <typename T> void LinkedList<T>::reverse() { LinkedList<T> *p = this; LinkedList<T> *q; while (p -> m_next != NULL) { q = getLastPtr(); insert(q -> m_data, p); remove(q); p = p -> m_next; } } template <typename T> LinkedList<T>* LinkedList<T>::find(const T& x) { LinkedList<T> *p = this; bool found = false; while (p -> m_next != NULL && found == false) { if (p-> m_data == x) found = true; else p = p -> m_next; } if (found == true) return p; else return NULL; } template <typename T> void LinkedList<T>::append(const LinkedList<T>& xlist) { const LinkedList<T> *p = &xlist; while (p -> m_next != NULL) { insert(p -> m_data, getLastPtr()->m_next); p = p -> m_next; } }
[ "dh7qc@mst.edu" ]
dh7qc@mst.edu
c5515f6f8e69aae95c5b5b0d32aa31d4bfd12306
66814bdad378a1d65136dc72ec2c9c6bb33e3c4b
/HTTP_Downloader/login_manager_utilities.cpp
66e6055d0623756765693c64d6699d5c96b17a68
[]
no_license
Surfndez/httpdownloader
8b9fd26725f186d79ac175283049847ba04d2e28
9006fbdc2935398083a9140d37d1300030386578
refs/heads/master
2020-09-21T09:14:32.120527
2019-11-19T05:10:01
2019-11-19T05:10:01
224,751,759
1
0
null
2019-11-29T01:00:48
2019-11-29T01:00:47
null
UTF-8
C++
false
false
18,598
cpp
/* HTTP Downloader can download files through HTTP(S) and FTP(S) connections. Copyright (C) 2015-2019 Eric Kutcher 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/>. */ #include "login_manager_utilities.h" #include "utilities.h" #include "file_operations.h" #include "http_parsing.h" #include "connection.h" bool login_list_changed = false; int GetDomainParts( wchar_t *site, wchar_t *offsets[ 128 ] ) { int count = 0; wchar_t *ptr = site; wchar_t *ptr_s = ptr; while ( ptr != NULL && count < 127 ) { if ( *ptr == L'.' ) { offsets[ count++ ] = ptr_s; ptr_s = ptr + 1; } else if ( *ptr == NULL ) { offsets[ count++ ] = ptr_s; break; } ++ptr; } if ( ptr != NULL ) { offsets[ count ] = ptr; // End of string. } return count; } int dllrbt_compare_login_info( void *a, void *b ) { LOGIN_INFO *a1 = ( LOGIN_INFO * )a; LOGIN_INFO *b1 = ( LOGIN_INFO * )b; int ret; if ( a1 == b1 ) { return 0; } // Check the easiest comparisons first. if ( a1->protocol > b1->protocol ) { ret = 1; } else if ( a1->protocol < b1->protocol ) { ret = -1; } else { if ( a1->port > b1->port ) { ret = 1; } else if ( a1->port < b1->port ) { ret = -1; } else { wchar_t *host1_offset[ 128 ]; int count1 = GetDomainParts( a1->host, host1_offset ); wchar_t *host2_offset[ 128 ]; int count2 = GetDomainParts( b1->host, host2_offset ); if ( count1 == count2 ) { for ( int i = count1; i > 0; --i ) { wchar_t *start1 = host1_offset[ i - 1 ]; wchar_t *start2 = host2_offset[ i - 1 ]; wchar_t *end1 = host1_offset[ i ]; wchar_t *end2 = host2_offset[ i ]; if ( !( ( ( ( end1 - start1 ) == 2 ) && *start1 == L'*' && *( start1 + 1 ) == L'.' ) || ( ( ( end2 - start2 ) == 2 ) && *start2 == L'*' && *( start2 + 1 ) == L'.' ) ) ) { wchar_t tmp1 = *end1; wchar_t tmp2 = *end2; *end1 = 0; *end2 = 0; ret = lstrcmpW( start1, start2 ); *end1 = tmp1; // Restore *end2 = tmp2; // Restore if ( ret != 0 ) { break; } } } } else { ret = ( count1 > count2 ? 1 : -1 ); } } } return ret; } char read_login_info() { char ret_status = 0; _wmemcpy_s( base_directory + base_directory_length, MAX_PATH - base_directory_length, L"\\http_downloader_logins\0", 24 ); base_directory[ base_directory_length + 23 ] = 0; // Sanity. HANDLE hFile_read = CreateFile( base_directory, GENERIC_READ, 0, NULL, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, NULL ); if ( hFile_read != INVALID_HANDLE_VALUE ) { DWORD read = 0, total_read = 0, offset = 0, last_entry = 0, last_total = 0; char *p = NULL; wchar_t *site; char *username; char *password; wchar_t *w_username; wchar_t *w_password; char magic_identifier[ 4 ]; ReadFile( hFile_read, magic_identifier, sizeof( char ) * 4, &read, NULL ); if ( read == 4 && _memcmp( magic_identifier, MAGIC_ID_LOGINS, 4 ) == 0 ) { DWORD fz = GetFileSize( hFile_read, NULL ) - 4; char *buf = ( char * )GlobalAlloc( GMEM_FIXED, sizeof( char ) * ( 524288 + 1 ) ); // 512 KB buffer. while ( total_read < fz ) { ReadFile( hFile_read, buf, sizeof( char ) * 524288, &read, NULL ); buf[ read ] = 0; // Guarantee a NULL terminated buffer. // Make sure that we have at least part of the entry. This is the minimum size an entry could be. // Include 3 wide NULL strings and 3 char NULL strings. // Include 2 ints for username and password lengths. // Include 1 unsigned char for range info. if ( read < ( sizeof( wchar_t ) + ( sizeof( int ) * 2 ) ) ) { break; } total_read += read; // Prevent an infinite loop if a really really long entry causes us to jump back to the same point in the file. // If it's larger than our buffer, then the file is probably invalid/corrupt. if ( total_read == last_total ) { break; } last_total = total_read; p = buf; offset = last_entry = 0; while ( offset < read ) { site = NULL; username = NULL; password = NULL; w_username = NULL; w_password = NULL; // Site int string_length = lstrlenW( ( wchar_t * )p ) + 1; offset += ( string_length * sizeof( wchar_t ) ); if ( offset >= read ) { goto CLEANUP; } site = ( wchar_t * )GlobalAlloc( GMEM_FIXED, sizeof( wchar_t ) * string_length ); _wmemcpy_s( site, string_length, p, string_length ); *( site + ( string_length - 1 ) ) = 0; // Sanity p += ( string_length * sizeof( wchar_t ) ); // Username offset += sizeof( int ); if ( offset >= read ) { goto CLEANUP; } // Length of the string - not including the NULL character. _memcpy_s( &string_length, sizeof( int ), p, sizeof( int ) ); p += sizeof( int ); offset += string_length; if ( offset >= read ) { goto CLEANUP; } if ( string_length > 0 ) { // string_length does not contain the NULL character of the string. username = ( char * )GlobalAlloc( GMEM_FIXED, sizeof( char ) * ( string_length + 1 ) ); _memcpy_s( username, string_length, p, string_length ); username[ string_length ] = 0; // Sanity; decode_cipher( username, string_length ); w_username = UTF8StringToWideString( username, string_length + 1 ); p += string_length; } // Password offset += sizeof( int ); if ( offset > read ) { goto CLEANUP; } // Length of the string - not including the NULL character. _memcpy_s( &string_length, sizeof( int ), p, sizeof( int ) ); p += sizeof( int ); offset += string_length; if ( offset > read ) { goto CLEANUP; } if ( string_length > 0 ) { // string_length does not contain the NULL character of the string. password = ( char * )GlobalAlloc( GMEM_FIXED, sizeof( char ) * ( string_length + 1 ) ); _memcpy_s( password, string_length, p, string_length ); password[ string_length ] = 0; // Sanity; decode_cipher( password, string_length ); w_password = UTF8StringToWideString( password, string_length + 1 ); p += string_length; } last_entry = offset; // This value is the ending offset of the last valid entry. unsigned int host_length = 0; unsigned int resource_length = 0; wchar_t *resource = NULL; LOGIN_INFO *li = ( LOGIN_INFO * )GlobalAlloc( GPTR, sizeof( LOGIN_INFO ) ); ParseURL_W( site, NULL, li->protocol, &li->host, host_length, li->port, &resource, resource_length, NULL, NULL, NULL, NULL ); GlobalFree( resource ); li->username = username; li->password = password; li->w_host = site; li->w_username = w_username; li->w_password = w_password; if ( dllrbt_insert( g_login_info, ( void * )li, ( void * )li ) != DLLRBT_STATUS_OK ) { GlobalFree( li->w_host ); GlobalFree( li->w_username ); GlobalFree( li->w_password ); GlobalFree( li->host ); GlobalFree( li->username ); GlobalFree( li->password ); GlobalFree( li ); } continue; CLEANUP: GlobalFree( site ); GlobalFree( username ); GlobalFree( password ); GlobalFree( w_username ); GlobalFree( w_password ); // Go back to the last valid entry. if ( total_read < fz ) { total_read -= ( read - last_entry ); SetFilePointer( hFile_read, total_read + 4, NULL, FILE_BEGIN ); // Offset past the magic identifier. } break; } } GlobalFree( buf ); } else { ret_status = -2; // Bad file format. } CloseHandle( hFile_read ); } else { ret_status = -1; // Can't open file for reading. } return ret_status; } char save_login_info() { char ret_status = 0; _wmemcpy_s( base_directory + base_directory_length, MAX_PATH - base_directory_length, L"\\http_downloader_logins\0", 24 ); base_directory[ base_directory_length + 23 ] = 0; // Sanity. HANDLE hFile = CreateFile( base_directory, GENERIC_WRITE, 0, NULL, CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL, NULL ); if ( hFile != INVALID_HANDLE_VALUE ) { //int size = ( 32768 + 1 ); int size = ( 524288 + 1 ); int pos = 0; DWORD write = 0; char *buf = ( char * )GlobalAlloc( GMEM_FIXED, sizeof( char ) * size ); _memcpy_s( buf + pos, size - pos, MAGIC_ID_LOGINS, sizeof( char ) * 4 ); // Magic identifier for the call log history. pos += ( sizeof( char ) * 4 ); node_type *node = dllrbt_get_head( g_login_info ); while ( node != NULL ) { LOGIN_INFO *li = ( LOGIN_INFO * )node->val; if ( li != NULL ) { // lstrlen is safe for NULL values. int url_length = ( lstrlenW( li->w_host ) + 1 ) * sizeof( wchar_t ); int username_length = lstrlenA( li->username ); int password_length = lstrlenA( li->password ); // See if the next entry can fit in the buffer. If it can't, then we dump the buffer. if ( ( signed )( pos + url_length + username_length + password_length + ( sizeof( int ) * 2 ) ) > size ) { // Dump the buffer. WriteFile( hFile, buf, pos, &write, NULL ); pos = 0; } _memcpy_s( buf + pos, size - pos, li->w_host, url_length ); pos += url_length; if ( li->username != NULL ) { _memcpy_s( buf + pos, size - pos, &username_length, sizeof( int ) ); pos += sizeof( int ); _memcpy_s( buf + pos, size - pos, li->username, username_length ); encode_cipher( buf + pos, username_length ); pos += username_length; } else { _memset( buf + pos, 0, sizeof( int ) ); pos += sizeof( int ); } if ( li->password != NULL ) { _memcpy_s( buf + pos, size - pos, &password_length, sizeof( int ) ); pos += sizeof( int ); _memcpy_s( buf + pos, size - pos, li->password, password_length ); encode_cipher( buf + pos, password_length ); pos += password_length; } else { _memset( buf + pos, 0, sizeof( int ) ); pos += sizeof( int ); } } node = node->next; } // If there's anything remaining in the buffer, then write it to the file. if ( pos > 0 ) { WriteFile( hFile, buf, pos, &write, NULL ); } GlobalFree( buf ); CloseHandle( hFile ); } else { ret_status = -1; // Can't open file for writing. } return ret_status; } THREAD_RETURN load_login_list( void *pArguments ) { // This will block every other thread from entering until the first thread is complete. EnterCriticalSection( &worker_cs ); in_worker_thread = true; LVITEM lvi; _memzero( &lvi, sizeof( LVITEM ) ); lvi.mask = LVIF_PARAM | LVIF_TEXT; node_type *node = dllrbt_get_head( g_login_info ); while ( node != NULL ) { LOGIN_INFO *li = ( LOGIN_INFO * )node->val; if ( li != NULL ) { lvi.iItem = ( int )_SendMessageW( g_hWnd_login_list, LVM_GETITEMCOUNT, 0, 0 ); lvi.lParam = ( LPARAM )li; lvi.pszText = li->w_host; _SendMessageW( g_hWnd_login_list, LVM_INSERTITEM, 0, ( LPARAM )&lvi ); } node = node->next; } // Release the semaphore if we're killing the thread. if ( worker_semaphore != NULL ) { ReleaseSemaphore( worker_semaphore, 1, NULL ); } in_worker_thread = false; // We're done. Let other threads continue. LeaveCriticalSection( &worker_cs ); _ExitThread( 0 ); return 0; } THREAD_RETURN handle_login_list( void *pArguments ) { LOGIN_UPDATE_INFO *lui = ( LOGIN_UPDATE_INFO * )pArguments; // This will block every other thread from entering until the first thread is complete. EnterCriticalSection( &worker_cs ); in_worker_thread = true; if ( lui != NULL ) { if ( lui->update_type == 0 && lui->li != NULL ) // Add { LOGIN_INFO *li = lui->li; unsigned char fail_type = 0; wchar_t *host = NULL; wchar_t *resource = NULL; unsigned int host_length = 0; unsigned int resource_length = 0; ParseURL_W( li->w_host, NULL, li->protocol, &host, host_length, li->port, &resource, resource_length, NULL, NULL, NULL, NULL ); if ( li->protocol == PROTOCOL_HTTP || li->protocol == PROTOCOL_HTTPS || li->protocol == PROTOCOL_FTP || li->protocol == PROTOCOL_FTPS || li->protocol == PROTOCOL_FTPES ) { if ( li->protocol == PROTOCOL_HTTP ) { host_length += 7; // http:// } else if ( li->protocol == PROTOCOL_HTTPS ) { host_length += 8; // https:// } else if ( li->protocol == PROTOCOL_FTP ) { host_length += 6; // ftp:// } else if ( li->protocol == PROTOCOL_FTPS ) { host_length += 7; // ftps:// } else if ( li->protocol == PROTOCOL_FTPES ) { host_length += 8; // ftpes:// } // See if there's a resource at the end of our host. We don't want it. // Skip the http(s):// and host. wchar_t *end = _StrChrW( li->w_host + host_length, L'/' ); if ( end != NULL ) { *end = 0; host_length = ( unsigned int )( end - li->w_host ) + 1; wchar_t *w_host = ( wchar_t * )GlobalAlloc( GMEM_FIXED, sizeof( wchar_t ) * host_length ); _wmemcpy_s( w_host, host_length, li->w_host, host_length ); GlobalFree( li->w_host ); li->w_host = w_host; } GlobalFree( resource ); int string_length = 0; // Temporary value. li->host = host; li->username = WideStringToUTF8String( li->w_username, &string_length ); li->password = WideStringToUTF8String( li->w_password, &string_length ); if ( dllrbt_insert( g_login_info, ( void * )li, ( void * )li ) != DLLRBT_STATUS_OK ) { fail_type = 1; // Already exits. } else { LVITEM lvi; _memzero( &lvi, sizeof( LVITEM ) ); lvi.mask = LVIF_PARAM | LVIF_TEXT; lvi.iItem = ( int )_SendMessageW( g_hWnd_login_list, LVM_GETITEMCOUNT, 0, 0 ); lvi.lParam = ( LPARAM )li; lvi.pszText = li->w_host; _SendMessageW( g_hWnd_login_list, LVM_INSERTITEM, 0, ( LPARAM )&lvi ); login_list_changed = true; _SendMessageW( g_hWnd_login_manager, WM_PROPAGATE, 0, 0 ); // Clear entry. } } else { fail_type = 2; // Bad protocol. } if ( fail_type != 0 ) { GlobalFree( li->w_host ); GlobalFree( li->w_username ); GlobalFree( li->w_password ); GlobalFree( li->host ); GlobalFree( li->username ); GlobalFree( li->password ); GlobalFree( li ); _SendNotifyMessageW( g_hWnd_login_manager, WM_PROPAGATE, fail_type, 0 ); } } else if ( lui->update_type == 1 ) // Remove { // Prevent the listviews from drawing while freeing lParam values. skip_login_list_draw = true; LVITEM lvi; _memzero( &lvi, sizeof( LVITEM ) ); lvi.mask = LVIF_PARAM; int item_count = ( int )_SendMessageW( g_hWnd_login_list, LVM_GETITEMCOUNT, 0, 0 ); int sel_count = ( int )_SendMessageW( g_hWnd_login_list, LVM_GETSELECTEDCOUNT, 0, 0 ); int *index_array = NULL; bool handle_all = false; if ( item_count == sel_count ) { handle_all = true; } else { _SendMessageW( g_hWnd_login_list, LVM_ENSUREVISIBLE, 0, FALSE ); index_array = ( int * )GlobalAlloc( GMEM_FIXED, sizeof( int ) * sel_count ); lvi.iItem = -1; // Set this to -1 so that the LVM_GETNEXTITEM call can go through the list correctly. _EnableWindow( g_hWnd_login_list, FALSE ); // Prevent any interaction with the listview while we're processing. // Create an index list of selected items (in reverse order). for ( int i = 0; i < sel_count; ++i ) { lvi.iItem = index_array[ sel_count - 1 - i ] = ( int )_SendMessageW( g_hWnd_login_list, LVM_GETNEXTITEM, lvi.iItem, LVNI_SELECTED ); } _EnableWindow( g_hWnd_login_list, TRUE ); // Allow the listview to be interactive. item_count = sel_count; } // Go through each item, and free their lParam values. for ( int i = 0; i < item_count; ++i ) { // Stop processing and exit the thread. if ( kill_worker_thread_flag ) { break; } if ( handle_all ) { lvi.iItem = i; } else { lvi.iItem = index_array[ i ]; } _SendMessageW( g_hWnd_login_list, LVM_GETITEM, 0, ( LPARAM )&lvi ); LOGIN_INFO *li = ( LOGIN_INFO * )lvi.lParam; if ( !handle_all ) { _SendMessageW( g_hWnd_login_list, LVM_DELETEITEM, index_array[ i ], 0 ); } else if ( i >= ( item_count - 1 ) ) { _SendMessageW( g_hWnd_login_list, LVM_DELETEALLITEMS, 0, 0 ); } if ( li != NULL ) { // Find the login info dllrbt_iterator *itr = dllrbt_find( g_login_info, ( void * )li, false ); if ( itr != NULL ) { dllrbt_remove( g_login_info, itr ); } GlobalFree( li->w_host ); GlobalFree( li->w_username ); GlobalFree( li->w_password ); GlobalFree( li->host ); GlobalFree( li->username ); GlobalFree( li->password ); GlobalFree( li ); } } _SendMessageW( g_hWnd_login_manager, WM_PROPAGATE, 3, 0 ); // Disable remove button. login_list_changed = true; skip_login_list_draw = false; } GlobalFree( lui ); } _InvalidateRect( g_hWnd_login_list, NULL, FALSE ); // Release the semaphore if we're killing the thread. if ( worker_semaphore != NULL ) { ReleaseSemaphore( worker_semaphore, 1, NULL ); } in_worker_thread = false; // We're done. Let other threads continue. LeaveCriticalSection( &worker_cs ); _ExitThread( 0 ); return 0; }
[ "defeatthefreak@gmail.com" ]
defeatthefreak@gmail.com
4da58027033786eab962e356aecda5ffbbc14d23
065e58016a4506e4a5b429a2b77a6f432930a362
/include/core/Memory.hpp
6cda09142c9c01df794ffe25ffade635a9d142d9
[]
no_license
UnsafePointer/shinobu
380ba84b1dfe122da3f6042da2261bcec5f07abe
5088e95c3dcd7b0f3e9b226dc768811a6b2ddc4f
refs/heads/master
2023-01-07T06:31:50.271267
2020-09-23T14:00:40
2020-09-23T14:00:40
265,358,408
3
0
null
2020-09-23T14:00:41
2020-05-19T20:28:27
C++
UTF-8
C++
false
false
16,065
hpp
#pragma once #include <cstdint> #include <memory> #include <filesystem> #include <optional> #include <vector> #include <common/Logger.hpp> #include <chrono> namespace Core { namespace Device { namespace SerialDataTransfer { class Controller; }; namespace PictureProcessingUnit { class Processor; }; namespace Interrupt { class Controller; }; namespace Timer { class Controller; }; namespace JoypadInput { class Controller; }; namespace Sound { class Controller; }; namespace DirectMemoryAccess { class Controller; }; } namespace ROM { class Cartridge; namespace BOOT { class ROM; } }; namespace Memory { class Range { const uint32_t start; const uint32_t length; public: Range(uint32_t start, uint32_t length); ~Range(); std::optional<uint32_t> contains(uint32_t address) const; }; // https://gbdev.io/pandocs/#memory-map const Range ROMBank00 = Range(0x0, 0x4000); const Range ROMBank01_N = Range(0x4000, 0x4000); const Range VideoRAM = Range(0x8000, 0x2000); const Range ExternalRAM = Range(0xA000, 0x2000); const Range WorkRAMBank00 = Range(0xC000, 0x1000); const Range WorkRAMBank01_N = Range(0xD000, 0x1000); const Range EchoRAM = Range(0xE000, 0x1E00); const Range SpriteAttributeTable = Range(0xFE00, 0xA0); const Range NotUsable = Range(0xFEA0, 0x60); const Range I_ORegisters = Range(0xFF00, 0x80); const Range HighRAM = Range(0xFF80, 0x7F); namespace SpeedSwitch { enum PrepareSwitch { No = 0x0, Prepare = 0x1, }; enum Speed { Normal = 0x0, Double = 0x1, }; union KEY1 { uint8_t _value; struct { uint8_t _prepareSwitch : 1; uint8_t unused : 6; uint8_t _currentSpeed : 1; }; KEY1() : _value(0x0) {}; PrepareSwitch prepareSwitch() const { return PrepareSwitch(_prepareSwitch); } Speed currentSpeed() const { return Speed(_currentSpeed); } void toggleSpeed() { _prepareSwitch = 0; _currentSpeed = !_currentSpeed; } }; }; const Range KEY1AddressRange = Range(0xFF4D, 0x1); union SVBK { uint8_t _value; struct { uint8_t WRAMBank : 3; uint8_t unused : 5; }; SVBK() : _value(0x1) {}; }; const Core::Memory::Range SVBKRegisterRange = Core::Memory::Range(0xFF70, 0x1); class BankController { protected: Common::Logs::Logger logger; std::unique_ptr<Core::ROM::Cartridge> &cartridge; std::unique_ptr<Core::ROM::BOOT::ROM> &bootROM; std::vector<uint8_t> WRAMBank; std::unique_ptr<Core::Device::SerialDataTransfer::Controller> serialCommController; std::unique_ptr<Core::Device::PictureProcessingUnit::Processor> &PPU; std::unique_ptr<Core::Device::Sound::Controller> &sound; std::array<uint8_t, 0x7F> HRAM; std::vector<uint8_t> externalRAM; std::unique_ptr<Core::Device::Interrupt::Controller> &interrupt; std::unique_ptr<Core::Device::Timer::Controller> &timer; std::unique_ptr<Core::Device::JoypadInput::Controller> &joypad; std::unique_ptr<Core::Device::DirectMemoryAccess::Controller> &DMA; SVBK _SVBK; SpeedSwitch::KEY1 _KEY1; uint8_t loadInternal(uint16_t address) const; void storeInternal(uint16_t address, uint8_t value); public: BankController(Common::Logs::Level logLevel, std::unique_ptr<Core::ROM::Cartridge> &cartridge, std::unique_ptr<Core::ROM::BOOT::ROM> &bootROM, std::unique_ptr<Core::Device::PictureProcessingUnit::Processor> &PPU, std::unique_ptr<Core::Device::Sound::Controller> &sound, std::unique_ptr<Core::Device::Interrupt::Controller> &interrupt, std::unique_ptr<Core::Device::Timer::Controller> &timer, std::unique_ptr<Core::Device::JoypadInput::Controller> &joypad, std::unique_ptr<Core::Device::DirectMemoryAccess::Controller> &DMA); ~BankController(); void loadExternalRAMFromSaveFile(); void saveExternalRAM(); virtual uint8_t load(uint16_t address) const = 0; virtual void store(uint16_t address, uint8_t value) = 0; void handleSpeedSwitch(); SpeedSwitch::Speed currentSpeed() const; }; namespace ROM { const Range ROMRange = Range(0x0, 0x8000); class Controller : public BankController { public: Controller(Common::Logs::Level logLevel, std::unique_ptr<Core::ROM::Cartridge> &cartridge, std::unique_ptr<Core::ROM::BOOT::ROM> &bootROM, std::unique_ptr<Core::Device::PictureProcessingUnit::Processor> &PPU, std::unique_ptr<Core::Device::Sound::Controller> &sound, std::unique_ptr<Core::Device::Interrupt::Controller> &interrupt, std::unique_ptr<Core::Device::Timer::Controller> &timer, std::unique_ptr<Core::Device::JoypadInput::Controller> &joypad, std::unique_ptr<Core::Device::DirectMemoryAccess::Controller> &DMA) : BankController(logLevel, cartridge, bootROM, PPU, sound, interrupt, timer, joypad, DMA) {}; uint8_t load(uint16_t address) const override; void store(uint16_t address, uint8_t value) override; }; }; namespace MBC1 { // https://gbdev.io/pandocs/#mbc1 const Range RAMGRange = Range(0x0, 0x2000); const Range BANK1Range = Range(0x2000, 0x2000); const Range BANK2Range = Range(0x4000, 0x2000); const Range ModeRange = Range(0x6000, 0x2000); union RAMG { uint8_t _value; struct { uint8_t enableAccess : 4; uint8_t unused : 4; }; RAMG() : _value() {} }; union BANK1 { uint8_t _value; struct { uint8_t bank1 : 5; uint8_t unused : 3; }; BANK1() : _value(0x1) {} }; union BANK2 { uint8_t _value; struct { uint8_t bank2 : 2; uint8_t unused : 6; }; BANK2() : _value() {} }; union Mode { uint8_t _value; struct { uint8_t mode : 1; uint8_t unused : 7; }; Mode() : _value() {} }; class Controller : public BankController { RAMG _RAMG; BANK1 _BANK1; BANK2 _BANK2; Mode mode; public: Controller(Common::Logs::Level logLevel, std::unique_ptr<Core::ROM::Cartridge> &cartridge, std::unique_ptr<Core::ROM::BOOT::ROM> &bootROM, std::unique_ptr<Core::Device::PictureProcessingUnit::Processor> &PPU, std::unique_ptr<Core::Device::Sound::Controller> &sound, std::unique_ptr<Core::Device::Interrupt::Controller> &interrupt, std::unique_ptr<Core::Device::Timer::Controller> &timer, std::unique_ptr<Core::Device::JoypadInput::Controller> &joypad, std::unique_ptr<Core::Device::DirectMemoryAccess::Controller> &DMA) : BankController(logLevel, cartridge, bootROM, PPU, sound, interrupt, timer, joypad, DMA) {}; uint8_t load(uint16_t address) const override; void store(uint16_t address, uint8_t value) override; }; }; namespace MBC3 { // https://gbdev.io/pandocs/#mbc3 const Range RAMG_TimerEnableRange = Range(0x0, 0x2000); const Range ROMBANKRange = Range(0x2000, 0x2000); const Range RAMBANK_RTCRegisterRange = Range(0x4000, 0x2000); const Range LatchClockDataRange = Range(0x6000, 0x2000); union ROMBANK { uint8_t _value; struct { uint8_t bank1 : 7; uint8_t unused : 1; }; ROMBANK() : _value(0x1) {} }; union RAMBANK { uint8_t _value; struct { uint8_t bank2 : 2; uint8_t unused : 6; }; RAMBANK() : _value() {} }; union RTCDH { uint8_t _value; struct { uint8_t dayCounterMSB : 1; uint8_t unused : 5; uint8_t halt : 1; uint8_t dayCounterCarry : 1; }; RTCDH() : _value() {} }; class Controller : public BankController { MBC1::RAMG _RAMG; ROMBANK _ROMBANK; RAMBANK _RAMBANK_RTCRegister; uint8_t latchClockData; uint8_t _RTCS; uint8_t _RTCM; uint8_t _RTCH; uint8_t _RTCDL; RTCDH _RTCDH; std::chrono::time_point<std::chrono::system_clock> lastTimePoint; std::chrono::milliseconds calculationRemainder; bool hasRTC; void calculateTime(bool overrideHalt = false); public: Controller(Common::Logs::Level logLevel, std::unique_ptr<Core::ROM::Cartridge> &cartridge, std::unique_ptr<Core::ROM::BOOT::ROM> &bootROM, std::unique_ptr<Core::Device::PictureProcessingUnit::Processor> &PPU, std::unique_ptr<Core::Device::Sound::Controller> &sound, std::unique_ptr<Core::Device::Interrupt::Controller> &interrupt, std::unique_ptr<Core::Device::Timer::Controller> &timer, std::unique_ptr<Core::Device::JoypadInput::Controller> &joypad, std::unique_ptr<Core::Device::DirectMemoryAccess::Controller> &DMA, bool hasRTC) : BankController(logLevel, cartridge, bootROM, PPU, sound, interrupt, timer, joypad, DMA), _RAMG(), _ROMBANK(), _RAMBANK_RTCRegister(), latchClockData(), _RTCS(), _RTCM(), _RTCH(), _RTCDL(), _RTCDH(), lastTimePoint(std::chrono::system_clock::now()), calculationRemainder(), hasRTC(hasRTC) {}; uint8_t load(uint16_t address) const override; void store(uint16_t address, uint8_t value) override; // http://bgb.bircd.org/rtcsave.html std::vector<uint8_t> clockData(); void loadClockData(std::vector<uint8_t> clockData); }; }; namespace MBC5 { const Range ROMB0Range = Range(0x2000, 0x1000); const Range ROMB1Range = Range(0x3000, 0x1000); const Range RAMBRange = Range(0x4000, 0x2000); const Range Unmapped = Range(0x6000, 0x2000); union ROMB1 { uint8_t _value; struct { uint8_t ROMBankNumberMSB : 1; uint8_t unused : 7; }; ROMB1() : _value() {} }; union RAMB { uint8_t _value; struct { uint8_t RAMBankNumber : 4; uint8_t unused : 4; }; RAMB() : _value() {} }; class Controller : public BankController { uint8_t RAMG; uint8_t ROMB0; ROMB1 _ROMB1; RAMB _RAMB; public: Controller(Common::Logs::Level logLevel, std::unique_ptr<Core::ROM::Cartridge> &cartridge, std::unique_ptr<Core::ROM::BOOT::ROM> &bootROM, std::unique_ptr<Core::Device::PictureProcessingUnit::Processor> &PPU, std::unique_ptr<Core::Device::Sound::Controller> &sound, std::unique_ptr<Core::Device::Interrupt::Controller> &interrupt, std::unique_ptr<Core::Device::Timer::Controller> &timer, std::unique_ptr<Core::Device::JoypadInput::Controller> &joypad, std::unique_ptr<Core::Device::DirectMemoryAccess::Controller> &DMA) : BankController(logLevel, cartridge, bootROM, PPU, sound, interrupt, timer, joypad, DMA), RAMG(), ROMB0(0x1), _ROMB1() {}; uint8_t load(uint16_t address) const override; void store(uint16_t address, uint8_t value) override; }; }; class Controller { Common::Logs::Logger logger; std::unique_ptr<Core::ROM::Cartridge> &cartridge; std::unique_ptr<BankController> bankController; std::unique_ptr<Core::ROM::BOOT::ROM> bootROM; std::unique_ptr<Core::Device::PictureProcessingUnit::Processor> &PPU; std::unique_ptr<Core::Device::Sound::Controller> &sound; std::unique_ptr<Core::Device::Interrupt::Controller> &interrupt; std::unique_ptr<Core::Device::Timer::Controller> &timer; std::unique_ptr<Core::Device::JoypadInput::Controller> &joypad; std::unique_ptr<Core::Device::DirectMemoryAccess::Controller> &DMA; uint8_t cyclesCurrentInstruction; public: Controller(Common::Logs::Level logLevel, std::unique_ptr<Core::ROM::Cartridge> &cartridge, std::unique_ptr<Core::Device::PictureProcessingUnit::Processor> &PPU, std::unique_ptr<Core::Device::Sound::Controller> &sound, std::unique_ptr<Core::Device::Interrupt::Controller> &interrupt, std::unique_ptr<Core::Device::Timer::Controller> &timer, std::unique_ptr<Core::Device::JoypadInput::Controller> &joypad, std::unique_ptr<Core::Device::DirectMemoryAccess::Controller> &DMA); ~Controller(); void initialize(bool skipBootROM); bool hasBootROM() const; void saveExternalRAM() const; uint8_t load(uint16_t address, bool shouldStep = true, bool hasPriority = false); void store(uint16_t address, uint8_t value, bool shouldStep = true, bool hasPriority = false); uint16_t loadDoubleWord(uint16_t address, bool shouldStep = true); void storeDoubleWord(uint16_t address, uint16_t value, bool shouldStep = true); void beginCurrentInstruction(); void step(uint8_t cycles); uint8_t elapsedCycles() const; void handleSpeedSwitch(); }; }; };
[ "renzo@crisostomo.me" ]
renzo@crisostomo.me
d72b27c52a70a3422cd88fa47f9e715e595b1d3c
ffe66d2c0494554c8c917dded6f8cdcf79c651a2
/MLModels/NeuralNetwork/NNUnitTest.cpp
e35b4dabe0b93b557f73ee931553081e15670818
[]
no_license
Zhukowych/Rinit
3f9f149ba3e45545887e777d623255cc7d1052a9
d9466ae628d31d01a034268727e07602e6e2aba5
refs/heads/main
2023-01-22T23:08:58.707963
2020-11-29T12:13:04
2020-11-29T12:13:04
286,224,024
0
0
null
null
null
null
UTF-8
C++
false
false
615
cpp
#include "NeuralNetwork.hpp" #include "../../Containers/Vector.hpp" Vector<int> CreateNNStructure(){ Vector<int> result(3); result[0] = 5; result[1] = 3; result[2] = 2; return result; } Vector<float> CreateTrainData(){ Vector<float> result(2); result[0] = 1; result[1] = 1; return result; } Vector<float> CreateData(){ Vector<float> result(5); for(int i=0; i<5; i++){ result[i] = i; } return result; } void Test(){ NeuralNetwork NN(CreateNNStructure()); Vector<float> output =NN.FeedForvard(CreateData()); NN.GradientStep(CreateData(), CreateTrainData()); } int main(){ Test(); return 0; }
[ "mzmzhuk@gmail.com" ]
mzmzhuk@gmail.com
fd931fc5abdd90548a4b1c8da4cf25ec8019b5ae
86b8d7ae67b320f016f8f16ae1a879262050f76c
/Image Morphing/graph.h
edb0d59e039475685fcb44ca44d3b19b04a7c1fe
[]
no_license
tobygameac/Image-Morphing
acb77a8cf0267969b66fd5b5d599e919e4197c17
96036405344ff2feb79100f581a30120793b9850
refs/heads/master
2021-01-17T09:34:10.296236
2016-10-03T07:35:08
2016-10-03T07:35:08
53,070,607
1
0
null
null
null
null
UTF-8
C++
false
false
1,046
h
#pragma once #include <utility> #include <vector> class Edge { public: Edge() { } Edge(const std::pair<size_t, size_t> &edge_indices_pair) : edge_indices_pair_(edge_indices_pair) { } Edge(const std::pair<size_t, size_t> &edge_indices_pair, double weight) : edge_indices_pair_(edge_indices_pair), weight_(weight) { } const bool operator <(const Edge &other) { if (weight_ != other.weight_) { return weight_ < other.weight_; } if ((edge_indices_pair_.first != other.edge_indices_pair_.first)) { return edge_indices_pair_.first < other.edge_indices_pair_.first; } return edge_indices_pair_.second < other.edge_indices_pair_.second; } std::pair<size_t, size_t> edge_indices_pair_; double weight_; }; template <class T> class Graph { public: Graph() { } Graph(std::vector<T> &vertices, std::vector<Edge> &edges) : vertices_(vertices), edges_(edges) { } void Clear() { vertices_.clear(); edges_.clear(); } std::vector<T> vertices_; std::vector<Edge> edges_; };
[ "tobyreallygameac@gmail.com" ]
tobyreallygameac@gmail.com
64ac0041f7df73a4e30916a7bcf1ea01fcb1559a
491b89427312aa0c026db196235144bfb598cec4
/Kade-Engine-stable/exportBONEFRIEND/release/windows/obj/src/Alphabet.cpp
d35f8ddf21ccf139fd7ef6a227be5c222865bfda
[ "Apache-2.0" ]
permissive
TrashMonkeyy/VS-Bonefriend-FNF-Source
667fded8fa68401a9efa4063fd535c7ae1ab025d
a3f96ad52cc0dcf16c64106bfc8feb7c568046c0
refs/heads/master
2023-06-28T04:38:39.561357
2021-08-02T00:49:44
2021-08-02T00:49:44
391,771,302
0
0
null
null
null
null
UTF-8
C++
false
false
25,404
cpp
#include <hxcpp.h> #ifndef INCLUDED_AlphaCharacter #include <AlphaCharacter.h> #endif #ifndef INCLUDED_Alphabet #include <Alphabet.h> #endif #ifndef INCLUDED_Paths #include <Paths.h> #endif #ifndef INCLUDED_flixel_FlxBasic #include <flixel/FlxBasic.h> #endif #ifndef INCLUDED_flixel_FlxG #include <flixel/FlxG.h> #endif #ifndef INCLUDED_flixel_FlxObject #include <flixel/FlxObject.h> #endif #ifndef INCLUDED_flixel_FlxSprite #include <flixel/FlxSprite.h> #endif #ifndef INCLUDED_flixel_group_FlxTypedSpriteGroup #include <flixel/group/FlxTypedSpriteGroup.h> #endif #ifndef INCLUDED_flixel_math_FlxMath #include <flixel/math/FlxMath.h> #endif #ifndef INCLUDED_flixel_math_FlxRandom #include <flixel/math/FlxRandom.h> #endif #ifndef INCLUDED_flixel_system_FlxSound #include <flixel/system/FlxSound.h> #endif #ifndef INCLUDED_flixel_system_FlxSoundGroup #include <flixel/system/FlxSoundGroup.h> #endif #ifndef INCLUDED_flixel_system_frontEnds_SoundFrontEnd #include <flixel/system/frontEnds/SoundFrontEnd.h> #endif #ifndef INCLUDED_flixel_util_FlxTimer #include <flixel/util/FlxTimer.h> #endif #ifndef INCLUDED_flixel_util_FlxTimerManager #include <flixel/util/FlxTimerManager.h> #endif #ifndef INCLUDED_flixel_util_IFlxDestroyable #include <flixel/util/IFlxDestroyable.h> #endif #ifndef INCLUDED_haxe_ds_List #include <haxe/ds/List.h> #endif #ifndef INCLUDED_haxe_ds__List_ListNode #include <haxe/ds/_List/ListNode.h> #endif HX_DEFINE_STACK_FRAME(_hx_pos_4c95a0630eaf1443_17_new,"Alphabet","new",0xc4ae3f45,"Alphabet.new","Alphabet.hx",17,0xc2e40fcb) HX_LOCAL_STACK_FRAME(_hx_pos_4c95a0630eaf1443_76_reType,"Alphabet","reType",0x30c60648,"Alphabet.reType","Alphabet.hx",76,0xc2e40fcb) HX_LOCAL_STACK_FRAME(_hx_pos_4c95a0630eaf1443_94_addText,"Alphabet","addText",0x712354d3,"Alphabet.addText","Alphabet.hx",94,0xc2e40fcb) HX_LOCAL_STACK_FRAME(_hx_pos_4c95a0630eaf1443_145_doSplitWords,"Alphabet","doSplitWords",0x060ce215,"Alphabet.doSplitWords","Alphabet.hx",145,0xc2e40fcb) HX_LOCAL_STACK_FRAME(_hx_pos_4c95a0630eaf1443_163_startTypedText,"Alphabet","startTypedText",0x740816b0,"Alphabet.startTypedText","Alphabet.hx",163,0xc2e40fcb) HX_LOCAL_STACK_FRAME(_hx_pos_4c95a0630eaf1443_151_startTypedText,"Alphabet","startTypedText",0x740816b0,"Alphabet.startTypedText","Alphabet.hx",151,0xc2e40fcb) static const int _hx_array_data_faea38d3_8[] = { (int)0, }; static const Float _hx_array_data_faea38d3_9[] = { (Float)0, }; static const int _hx_array_data_faea38d3_10[] = { (int)0, }; HX_LOCAL_STACK_FRAME(_hx_pos_4c95a0630eaf1443_253_update,"Alphabet","update",0xc3c1b444,"Alphabet.update","Alphabet.hx",253,0xc2e40fcb) void Alphabet_obj::__construct(Float x,Float y,::String __o_text, ::Dynamic __o_bold,::hx::Null< bool > __o_typed,::hx::Null< bool > __o_shouldMove){ ::String text = __o_text; if (::hx::IsNull(__o_text)) text = HX_("",00,00,00,00); ::Dynamic bold = __o_bold; if (::hx::IsNull(__o_bold)) bold = false; bool typed = __o_typed.Default(false); bool shouldMove = __o_shouldMove.Default(false); HX_GC_STACKFRAME(&_hx_pos_4c95a0630eaf1443_17_new) HXLINE( 148) this->personTalking = HX_("gf",1f,5a,00,00); HXLINE( 48) this->pastY = ((Float)0); HXLINE( 47) this->pastX = ((Float)0); HXLINE( 45) this->isBold = false; HXLINE( 43) this->splitWords = ::Array_obj< ::String >::__new(0); HXLINE( 41) this->listOAlphabets = ::haxe::ds::List_obj::__alloc( HX_CTX ); HXLINE( 39) this->lastWasSpace = false; HXLINE( 38) this->xPosResetted = false; HXLINE( 33) this->yMulti = ((Float)1); HXLINE( 31) this->widthOfWords = ( (Float)(::flixel::FlxG_obj::width) ); HXLINE( 29) this->_curText = HX_("",00,00,00,00); HXLINE( 28) this->_finalText = HX_("",00,00,00,00); HXLINE( 26) this->text = HX_("",00,00,00,00); HXLINE( 24) this->isMenuItem = false; HXLINE( 23) this->targetY = ((Float)0); HXLINE( 20) this->paused = false; HXLINE( 19) this->delay = ((Float)0.05); HXLINE( 52) this->pastX = x; HXLINE( 53) this->pastY = y; HXLINE( 55) super::__construct(x,y,null()); HXLINE( 57) this->_finalText = text; HXLINE( 58) this->text = text; HXLINE( 59) this->isBold = ( (bool)(bold) ); HXLINE( 61) if ((text != HX_("",00,00,00,00))) { HXLINE( 63) if (typed) { HXLINE( 65) this->startTypedText(); } else { HXLINE( 69) this->addText(); } } } Dynamic Alphabet_obj::__CreateEmpty() { return new Alphabet_obj; } void *Alphabet_obj::_hx_vtable = 0; Dynamic Alphabet_obj::__Create(::hx::DynamicArray inArgs) { ::hx::ObjectPtr< Alphabet_obj > _hx_result = new Alphabet_obj(); _hx_result->__construct(inArgs[0],inArgs[1],inArgs[2],inArgs[3],inArgs[4],inArgs[5]); return _hx_result; } bool Alphabet_obj::_hx_isInstanceOf(int inClassId) { if (inClassId<=(int)0x567b2b93) { if (inClassId<=(int)0x2c01639b) { if (inClassId<=(int)0x288ce903) { return inClassId==(int)0x00000001 || inClassId==(int)0x288ce903; } else { return inClassId==(int)0x2c01639b; } } else { return inClassId==(int)0x567b2b93; } } else { return inClassId==(int)0x7ccf8994 || inClassId==(int)0x7dab0655; } } void Alphabet_obj::reType(::String text){ HX_STACKFRAME(&_hx_pos_4c95a0630eaf1443_76_reType) HXLINE( 77) { HXLINE( 77) ::haxe::ds::_List::ListNode _g_head = this->listOAlphabets->h; HXDLIN( 77) while(::hx::IsNotNull( _g_head )){ HXLINE( 77) ::AlphaCharacter val = ( ( ::AlphaCharacter)(_g_head->item) ); HXDLIN( 77) _g_head = _g_head->next; HXDLIN( 77) ::AlphaCharacter i = val; HXLINE( 78) this->remove(i,null()); } } HXLINE( 79) this->_finalText = text; HXLINE( 80) this->text = text; HXLINE( 82) this->lastSprite = null(); HXLINE( 84) this->updateHitbox(); HXLINE( 86) this->listOAlphabets->clear(); HXLINE( 87) this->set_x(this->pastX); HXLINE( 88) this->set_y(this->pastY); HXLINE( 90) this->addText(); } HX_DEFINE_DYNAMIC_FUNC1(Alphabet_obj,reType,(void)) void Alphabet_obj::addText(){ HX_GC_STACKFRAME(&_hx_pos_4c95a0630eaf1443_94_addText) HXLINE( 95) this->doSplitWords(); HXLINE( 97) Float xPos = ( (Float)(0) ); HXLINE( 98) { HXLINE( 98) int _g = 0; HXDLIN( 98) ::Array< ::String > _g1 = this->splitWords; HXDLIN( 98) while((_g < _g1->length)){ HXLINE( 98) ::String character = _g1->__get(_g); HXDLIN( 98) _g = (_g + 1); HXLINE( 104) bool _hx_tmp; HXDLIN( 104) if ((character != HX_(" ",20,00,00,00))) { HXLINE( 104) _hx_tmp = (character == HX_("-",2d,00,00,00)); } else { HXLINE( 104) _hx_tmp = true; } HXDLIN( 104) if (_hx_tmp) { HXLINE( 106) this->lastWasSpace = true; } HXLINE( 109) ::String _hx_tmp1 = ::AlphaCharacter_obj::alphabet; HXDLIN( 109) if ((_hx_tmp1.indexOf(character.toLowerCase(),null()) != -1)) { HXLINE( 112) if (::hx::IsNotNull( this->lastSprite )) { HXLINE( 114) Float xPos1 = this->lastSprite->x; HXDLIN( 114) xPos = (xPos1 + this->lastSprite->get_width()); } HXLINE( 117) if (this->lastWasSpace) { HXLINE( 119) xPos = (xPos + 40); HXLINE( 120) this->lastWasSpace = false; } HXLINE( 124) ::AlphaCharacter letter = ::AlphaCharacter_obj::__alloc( HX_CTX ,xPos,( (Float)(0) )); HXLINE( 125) this->listOAlphabets->add(letter); HXLINE( 127) if (this->isBold) { HXLINE( 128) letter->createBold(character); } else { HXLINE( 131) letter->createLetter(character); } HXLINE( 134) this->add(letter); HXLINE( 136) this->lastSprite = letter; } } } } HX_DEFINE_DYNAMIC_FUNC0(Alphabet_obj,addText,(void)) void Alphabet_obj::doSplitWords(){ HX_STACKFRAME(&_hx_pos_4c95a0630eaf1443_145_doSplitWords) HXDLIN( 145) this->splitWords = this->_finalText.split(HX_("",00,00,00,00)); } HX_DEFINE_DYNAMIC_FUNC0(Alphabet_obj,doSplitWords,(void)) void Alphabet_obj::startTypedText(){ HX_BEGIN_LOCAL_FUNC_S4(::hx::LocalFunc,_hx_Closure_0, ::Alphabet,_gthis,::Array< Float >,xPos,::Array< int >,loopNum,::Array< int >,curRow) HXARGC(1) void _hx_run( ::flixel::util::FlxTimer tmr){ HX_GC_STACKFRAME(&_hx_pos_4c95a0630eaf1443_163_startTypedText) HXLINE( 165) if ((_gthis->_finalText.cca(loopNum->__get(0)) == 10)) { HXLINE( 167) ::Alphabet _gthis1 = _gthis; HXDLIN( 167) _gthis1->yMulti = (_gthis1->yMulti + 1); HXLINE( 168) _gthis->xPosResetted = true; HXLINE( 169) xPos[0] = ( (Float)(0) ); HXLINE( 170) ::Array< int > curRow1 = curRow; HXDLIN( 170) int _hx_tmp = 0; HXDLIN( 170) curRow1[_hx_tmp] = (curRow1->__get(_hx_tmp) + 1); } HXLINE( 173) if ((_gthis->splitWords->__get(loopNum->__get(0)) == HX_(" ",20,00,00,00))) { HXLINE( 175) _gthis->lastWasSpace = true; } HXLINE( 179) bool isNumber = (::AlphaCharacter_obj::numbers.indexOf(_gthis->splitWords->__get(loopNum->__get(0)),null()) != -1); HXLINE( 180) bool isSymbol = (::AlphaCharacter_obj::symbols.indexOf(_gthis->splitWords->__get(loopNum->__get(0)),null()) != -1); HXLINE( 186) bool _hx_tmp; HXDLIN( 186) bool _hx_tmp1; HXDLIN( 186) ::String _hx_tmp2 = ::AlphaCharacter_obj::alphabet; HXDLIN( 186) if ((_hx_tmp2.indexOf(_gthis->splitWords->__get(loopNum->__get(0)).toLowerCase(),null()) == -1)) { HXLINE( 186) _hx_tmp1 = isNumber; } else { HXLINE( 186) _hx_tmp1 = true; } HXDLIN( 186) if (!(_hx_tmp1)) { HXLINE( 186) _hx_tmp = isSymbol; } else { HXLINE( 186) _hx_tmp = true; } HXDLIN( 186) if (_hx_tmp) { HXLINE( 190) bool _hx_tmp; HXDLIN( 190) if (::hx::IsNotNull( _gthis->lastSprite )) { HXLINE( 190) _hx_tmp = !(_gthis->xPosResetted); } else { HXLINE( 190) _hx_tmp = false; } HXDLIN( 190) if (_hx_tmp) { HXLINE( 192) _gthis->lastSprite->updateHitbox(); HXLINE( 193) ::Array< Float > xPos1 = xPos; HXDLIN( 193) int _hx_tmp = 0; HXDLIN( 193) Float xPos2 = xPos1->__get(_hx_tmp); HXDLIN( 193) xPos1[_hx_tmp] = (xPos2 + (_gthis->lastSprite->get_width() + 3)); } else { HXLINE( 199) _gthis->xPosResetted = false; } HXLINE( 202) if (_gthis->lastWasSpace) { HXLINE( 204) ::Array< Float > xPos1 = xPos; HXDLIN( 204) int _hx_tmp = 0; HXDLIN( 204) xPos1[_hx_tmp] = (xPos1->__get(_hx_tmp) + 20); HXLINE( 205) _gthis->lastWasSpace = false; } HXLINE( 210) ::AlphaCharacter letter = ::AlphaCharacter_obj::__alloc( HX_CTX ,xPos->__get(0),(( (Float)(55) ) * _gthis->yMulti)); HXLINE( 211) _gthis->listOAlphabets->add(letter); HXLINE( 212) letter->row = curRow->__get(0); HXLINE( 213) if (_gthis->isBold) { HXLINE( 215) letter->createBold(_gthis->splitWords->__get(loopNum->__get(0))); } else { HXLINE( 219) if (isNumber) { HXLINE( 221) letter->createNumber(_gthis->splitWords->__get(loopNum->__get(0))); } else { HXLINE( 223) if (isSymbol) { HXLINE( 225) letter->createSymbol(_gthis->splitWords->__get(loopNum->__get(0))); } else { HXLINE( 229) letter->createLetter(_gthis->splitWords->__get(loopNum->__get(0))); } } HXLINE( 232) letter->set_x((letter->x + 90)); } HXLINE( 235) if ((::flixel::FlxG_obj::random->_hx_float(0,100,null()) < 40)) { HXLINE( 237) ::String daSound = HX_("GF_",60,1d,36,00); HXLINE( 238) ::flixel::_hx_system::frontEnds::SoundFrontEnd _hx_tmp = ::flixel::FlxG_obj::sound; HXDLIN( 238) ::String library = null(); HXDLIN( 238) _hx_tmp->play(::Paths_obj::sound((daSound + ::flixel::FlxG_obj::random->_hx_int(1,4,null())),library),null(),null(),null(),null(),null()); } HXLINE( 241) _gthis->add(letter).StaticCast< ::flixel::FlxSprite >(); HXLINE( 243) _gthis->lastSprite = letter; } HXLINE( 246) ::Array< int > loopNum1 = loopNum; HXDLIN( 246) int _hx_tmp3 = 0; HXDLIN( 246) loopNum1[_hx_tmp3] = (loopNum1->__get(_hx_tmp3) + 1); HXLINE( 248) tmr->time = ::flixel::FlxG_obj::random->_hx_float(((Float)0.04),((Float)0.09),null()); } HX_END_LOCAL_FUNC1((void)) HX_GC_STACKFRAME(&_hx_pos_4c95a0630eaf1443_151_startTypedText) HXDLIN( 151) ::Alphabet _gthis = ::hx::ObjectPtr<OBJ_>(this); HXLINE( 152) this->_finalText = this->text; HXLINE( 153) this->doSplitWords(); HXLINE( 157) ::Array< int > loopNum = ::Array_obj< int >::fromData( _hx_array_data_faea38d3_8,1); HXLINE( 159) ::Array< Float > xPos = ::Array_obj< Float >::fromData( _hx_array_data_faea38d3_9,1); HXLINE( 160) ::Array< int > curRow = ::Array_obj< int >::fromData( _hx_array_data_faea38d3_10,1); HXLINE( 162) ::flixel::util::FlxTimer_obj::__alloc( HX_CTX ,null())->start(((Float)0.05), ::Dynamic(new _hx_Closure_0(_gthis,xPos,loopNum,curRow)),this->splitWords->length); } HX_DEFINE_DYNAMIC_FUNC0(Alphabet_obj,startTypedText,(void)) void Alphabet_obj::update(Float elapsed){ HX_STACKFRAME(&_hx_pos_4c95a0630eaf1443_253_update) HXLINE( 254) if (this->isMenuItem) { HXLINE( 256) Float scaledY = ::flixel::math::FlxMath_obj::remapToRange(this->targetY,( (Float)(0) ),( (Float)(1) ),( (Float)(0) ),((Float)1.3)); HXLINE( 258) Float a = this->y; HXDLIN( 258) this->set_y((a + (((Float)0.30) * (((scaledY * ( (Float)(120) )) + (( (Float)(::flixel::FlxG_obj::height) ) * ((Float)0.48))) - a)))); HXLINE( 259) Float a1 = this->x; HXDLIN( 259) this->set_x((a1 + (((Float)0.30) * (((this->targetY * ( (Float)(20) )) + 90) - a1)))); } HXLINE( 262) this->super::update(elapsed); } ::hx::ObjectPtr< Alphabet_obj > Alphabet_obj::__new(Float x,Float y,::String __o_text, ::Dynamic __o_bold,::hx::Null< bool > __o_typed,::hx::Null< bool > __o_shouldMove) { ::hx::ObjectPtr< Alphabet_obj > __this = new Alphabet_obj(); __this->__construct(x,y,__o_text,__o_bold,__o_typed,__o_shouldMove); return __this; } ::hx::ObjectPtr< Alphabet_obj > Alphabet_obj::__alloc(::hx::Ctx *_hx_ctx,Float x,Float y,::String __o_text, ::Dynamic __o_bold,::hx::Null< bool > __o_typed,::hx::Null< bool > __o_shouldMove) { Alphabet_obj *__this = (Alphabet_obj*)(::hx::Ctx::alloc(_hx_ctx, sizeof(Alphabet_obj), true, "Alphabet")); *(void **)__this = Alphabet_obj::_hx_vtable; __this->__construct(x,y,__o_text,__o_bold,__o_typed,__o_shouldMove); return __this; } Alphabet_obj::Alphabet_obj() { } void Alphabet_obj::__Mark(HX_MARK_PARAMS) { HX_MARK_BEGIN_CLASS(Alphabet); HX_MARK_MEMBER_NAME(delay,"delay"); HX_MARK_MEMBER_NAME(paused,"paused"); HX_MARK_MEMBER_NAME(targetY,"targetY"); HX_MARK_MEMBER_NAME(isMenuItem,"isMenuItem"); HX_MARK_MEMBER_NAME(text,"text"); HX_MARK_MEMBER_NAME(_finalText,"_finalText"); HX_MARK_MEMBER_NAME(_curText,"_curText"); HX_MARK_MEMBER_NAME(widthOfWords,"widthOfWords"); HX_MARK_MEMBER_NAME(yMulti,"yMulti"); HX_MARK_MEMBER_NAME(lastSprite,"lastSprite"); HX_MARK_MEMBER_NAME(xPosResetted,"xPosResetted"); HX_MARK_MEMBER_NAME(lastWasSpace,"lastWasSpace"); HX_MARK_MEMBER_NAME(listOAlphabets,"listOAlphabets"); HX_MARK_MEMBER_NAME(splitWords,"splitWords"); HX_MARK_MEMBER_NAME(isBold,"isBold"); HX_MARK_MEMBER_NAME(pastX,"pastX"); HX_MARK_MEMBER_NAME(pastY,"pastY"); HX_MARK_MEMBER_NAME(personTalking,"personTalking"); ::flixel::group::FlxTypedSpriteGroup_obj::__Mark(HX_MARK_ARG); HX_MARK_END_CLASS(); } void Alphabet_obj::__Visit(HX_VISIT_PARAMS) { HX_VISIT_MEMBER_NAME(delay,"delay"); HX_VISIT_MEMBER_NAME(paused,"paused"); HX_VISIT_MEMBER_NAME(targetY,"targetY"); HX_VISIT_MEMBER_NAME(isMenuItem,"isMenuItem"); HX_VISIT_MEMBER_NAME(text,"text"); HX_VISIT_MEMBER_NAME(_finalText,"_finalText"); HX_VISIT_MEMBER_NAME(_curText,"_curText"); HX_VISIT_MEMBER_NAME(widthOfWords,"widthOfWords"); HX_VISIT_MEMBER_NAME(yMulti,"yMulti"); HX_VISIT_MEMBER_NAME(lastSprite,"lastSprite"); HX_VISIT_MEMBER_NAME(xPosResetted,"xPosResetted"); HX_VISIT_MEMBER_NAME(lastWasSpace,"lastWasSpace"); HX_VISIT_MEMBER_NAME(listOAlphabets,"listOAlphabets"); HX_VISIT_MEMBER_NAME(splitWords,"splitWords"); HX_VISIT_MEMBER_NAME(isBold,"isBold"); HX_VISIT_MEMBER_NAME(pastX,"pastX"); HX_VISIT_MEMBER_NAME(pastY,"pastY"); HX_VISIT_MEMBER_NAME(personTalking,"personTalking"); ::flixel::group::FlxTypedSpriteGroup_obj::__Visit(HX_VISIT_ARG); } ::hx::Val Alphabet_obj::__Field(const ::String &inName,::hx::PropertyAccess inCallProp) { switch(inName.length) { case 4: if (HX_FIELD_EQ(inName,"text") ) { return ::hx::Val( text ); } break; case 5: if (HX_FIELD_EQ(inName,"delay") ) { return ::hx::Val( delay ); } if (HX_FIELD_EQ(inName,"pastX") ) { return ::hx::Val( pastX ); } if (HX_FIELD_EQ(inName,"pastY") ) { return ::hx::Val( pastY ); } break; case 6: if (HX_FIELD_EQ(inName,"paused") ) { return ::hx::Val( paused ); } if (HX_FIELD_EQ(inName,"yMulti") ) { return ::hx::Val( yMulti ); } if (HX_FIELD_EQ(inName,"isBold") ) { return ::hx::Val( isBold ); } if (HX_FIELD_EQ(inName,"reType") ) { return ::hx::Val( reType_dyn() ); } if (HX_FIELD_EQ(inName,"update") ) { return ::hx::Val( update_dyn() ); } break; case 7: if (HX_FIELD_EQ(inName,"targetY") ) { return ::hx::Val( targetY ); } if (HX_FIELD_EQ(inName,"addText") ) { return ::hx::Val( addText_dyn() ); } break; case 8: if (HX_FIELD_EQ(inName,"_curText") ) { return ::hx::Val( _curText ); } break; case 10: if (HX_FIELD_EQ(inName,"isMenuItem") ) { return ::hx::Val( isMenuItem ); } if (HX_FIELD_EQ(inName,"_finalText") ) { return ::hx::Val( _finalText ); } if (HX_FIELD_EQ(inName,"lastSprite") ) { return ::hx::Val( lastSprite ); } if (HX_FIELD_EQ(inName,"splitWords") ) { return ::hx::Val( splitWords ); } break; case 12: if (HX_FIELD_EQ(inName,"widthOfWords") ) { return ::hx::Val( widthOfWords ); } if (HX_FIELD_EQ(inName,"xPosResetted") ) { return ::hx::Val( xPosResetted ); } if (HX_FIELD_EQ(inName,"lastWasSpace") ) { return ::hx::Val( lastWasSpace ); } if (HX_FIELD_EQ(inName,"doSplitWords") ) { return ::hx::Val( doSplitWords_dyn() ); } break; case 13: if (HX_FIELD_EQ(inName,"personTalking") ) { return ::hx::Val( personTalking ); } break; case 14: if (HX_FIELD_EQ(inName,"listOAlphabets") ) { return ::hx::Val( listOAlphabets ); } if (HX_FIELD_EQ(inName,"startTypedText") ) { return ::hx::Val( startTypedText_dyn() ); } } return super::__Field(inName,inCallProp); } ::hx::Val Alphabet_obj::__SetField(const ::String &inName,const ::hx::Val &inValue,::hx::PropertyAccess inCallProp) { switch(inName.length) { case 4: if (HX_FIELD_EQ(inName,"text") ) { text=inValue.Cast< ::String >(); return inValue; } break; case 5: if (HX_FIELD_EQ(inName,"delay") ) { delay=inValue.Cast< Float >(); return inValue; } if (HX_FIELD_EQ(inName,"pastX") ) { pastX=inValue.Cast< Float >(); return inValue; } if (HX_FIELD_EQ(inName,"pastY") ) { pastY=inValue.Cast< Float >(); return inValue; } break; case 6: if (HX_FIELD_EQ(inName,"paused") ) { paused=inValue.Cast< bool >(); return inValue; } if (HX_FIELD_EQ(inName,"yMulti") ) { yMulti=inValue.Cast< Float >(); return inValue; } if (HX_FIELD_EQ(inName,"isBold") ) { isBold=inValue.Cast< bool >(); return inValue; } break; case 7: if (HX_FIELD_EQ(inName,"targetY") ) { targetY=inValue.Cast< Float >(); return inValue; } break; case 8: if (HX_FIELD_EQ(inName,"_curText") ) { _curText=inValue.Cast< ::String >(); return inValue; } break; case 10: if (HX_FIELD_EQ(inName,"isMenuItem") ) { isMenuItem=inValue.Cast< bool >(); return inValue; } if (HX_FIELD_EQ(inName,"_finalText") ) { _finalText=inValue.Cast< ::String >(); return inValue; } if (HX_FIELD_EQ(inName,"lastSprite") ) { lastSprite=inValue.Cast< ::AlphaCharacter >(); return inValue; } if (HX_FIELD_EQ(inName,"splitWords") ) { splitWords=inValue.Cast< ::Array< ::String > >(); return inValue; } break; case 12: if (HX_FIELD_EQ(inName,"widthOfWords") ) { widthOfWords=inValue.Cast< Float >(); return inValue; } if (HX_FIELD_EQ(inName,"xPosResetted") ) { xPosResetted=inValue.Cast< bool >(); return inValue; } if (HX_FIELD_EQ(inName,"lastWasSpace") ) { lastWasSpace=inValue.Cast< bool >(); return inValue; } break; case 13: if (HX_FIELD_EQ(inName,"personTalking") ) { personTalking=inValue.Cast< ::String >(); return inValue; } break; case 14: if (HX_FIELD_EQ(inName,"listOAlphabets") ) { listOAlphabets=inValue.Cast< ::haxe::ds::List >(); return inValue; } } return super::__SetField(inName,inValue,inCallProp); } void Alphabet_obj::__GetFields(Array< ::String> &outFields) { outFields->push(HX_("delay",83,d7,26,d7)); outFields->push(HX_("paused",ae,40,84,ef)); outFields->push(HX_("targetY",e8,f3,67,88)); outFields->push(HX_("isMenuItem",5c,04,de,c6)); outFields->push(HX_("text",ad,cc,f9,4c)); outFields->push(HX_("_finalText",04,c7,73,eb)); outFields->push(HX_("_curText",ce,97,c7,f1)); outFields->push(HX_("widthOfWords",6c,29,47,59)); outFields->push(HX_("yMulti",40,a3,b1,04)); outFields->push(HX_("lastSprite",fb,be,70,8e)); outFields->push(HX_("xPosResetted",80,a7,a1,63)); outFields->push(HX_("lastWasSpace",53,93,45,c9)); outFields->push(HX_("listOAlphabets",ef,fb,db,93)); outFields->push(HX_("splitWords",2f,7e,9f,9d)); outFields->push(HX_("isBold",8f,46,82,5e)); outFields->push(HX_("pastX",46,53,56,bd)); outFields->push(HX_("pastY",47,53,56,bd)); outFields->push(HX_("personTalking",21,d4,8f,27)); super::__GetFields(outFields); }; #ifdef HXCPP_SCRIPTABLE static ::hx::StorageInfo Alphabet_obj_sMemberStorageInfo[] = { {::hx::fsFloat,(int)offsetof(Alphabet_obj,delay),HX_("delay",83,d7,26,d7)}, {::hx::fsBool,(int)offsetof(Alphabet_obj,paused),HX_("paused",ae,40,84,ef)}, {::hx::fsFloat,(int)offsetof(Alphabet_obj,targetY),HX_("targetY",e8,f3,67,88)}, {::hx::fsBool,(int)offsetof(Alphabet_obj,isMenuItem),HX_("isMenuItem",5c,04,de,c6)}, {::hx::fsString,(int)offsetof(Alphabet_obj,text),HX_("text",ad,cc,f9,4c)}, {::hx::fsString,(int)offsetof(Alphabet_obj,_finalText),HX_("_finalText",04,c7,73,eb)}, {::hx::fsString,(int)offsetof(Alphabet_obj,_curText),HX_("_curText",ce,97,c7,f1)}, {::hx::fsFloat,(int)offsetof(Alphabet_obj,widthOfWords),HX_("widthOfWords",6c,29,47,59)}, {::hx::fsFloat,(int)offsetof(Alphabet_obj,yMulti),HX_("yMulti",40,a3,b1,04)}, {::hx::fsObject /* ::AlphaCharacter */ ,(int)offsetof(Alphabet_obj,lastSprite),HX_("lastSprite",fb,be,70,8e)}, {::hx::fsBool,(int)offsetof(Alphabet_obj,xPosResetted),HX_("xPosResetted",80,a7,a1,63)}, {::hx::fsBool,(int)offsetof(Alphabet_obj,lastWasSpace),HX_("lastWasSpace",53,93,45,c9)}, {::hx::fsObject /* ::haxe::ds::List */ ,(int)offsetof(Alphabet_obj,listOAlphabets),HX_("listOAlphabets",ef,fb,db,93)}, {::hx::fsObject /* ::Array< ::String > */ ,(int)offsetof(Alphabet_obj,splitWords),HX_("splitWords",2f,7e,9f,9d)}, {::hx::fsBool,(int)offsetof(Alphabet_obj,isBold),HX_("isBold",8f,46,82,5e)}, {::hx::fsFloat,(int)offsetof(Alphabet_obj,pastX),HX_("pastX",46,53,56,bd)}, {::hx::fsFloat,(int)offsetof(Alphabet_obj,pastY),HX_("pastY",47,53,56,bd)}, {::hx::fsString,(int)offsetof(Alphabet_obj,personTalking),HX_("personTalking",21,d4,8f,27)}, { ::hx::fsUnknown, 0, null()} }; static ::hx::StaticInfo *Alphabet_obj_sStaticStorageInfo = 0; #endif static ::String Alphabet_obj_sMemberFields[] = { HX_("delay",83,d7,26,d7), HX_("paused",ae,40,84,ef), HX_("targetY",e8,f3,67,88), HX_("isMenuItem",5c,04,de,c6), HX_("text",ad,cc,f9,4c), HX_("_finalText",04,c7,73,eb), HX_("_curText",ce,97,c7,f1), HX_("widthOfWords",6c,29,47,59), HX_("yMulti",40,a3,b1,04), HX_("lastSprite",fb,be,70,8e), HX_("xPosResetted",80,a7,a1,63), HX_("lastWasSpace",53,93,45,c9), HX_("listOAlphabets",ef,fb,db,93), HX_("splitWords",2f,7e,9f,9d), HX_("isBold",8f,46,82,5e), HX_("pastX",46,53,56,bd), HX_("pastY",47,53,56,bd), HX_("reType",0d,d8,09,f4), HX_("addText",6e,0f,37,89), HX_("doSplitWords",9a,d5,87,23), HX_("personTalking",21,d4,8f,27), HX_("startTypedText",75,b5,ca,1c), HX_("update",09,86,05,87), ::String(null()) }; ::hx::Class Alphabet_obj::__mClass; void Alphabet_obj::__register() { Alphabet_obj _hx_dummy; Alphabet_obj::_hx_vtable = *(void **)&_hx_dummy; ::hx::Static(__mClass) = new ::hx::Class_obj(); __mClass->mName = HX_("Alphabet",d3,38,ea,fa); __mClass->mSuper = &super::__SGetClass(); __mClass->mConstructEmpty = &__CreateEmpty; __mClass->mConstructArgs = &__Create; __mClass->mGetStaticField = &::hx::Class_obj::GetNoStaticField; __mClass->mSetStaticField = &::hx::Class_obj::SetNoStaticField; __mClass->mStatics = ::hx::Class_obj::dupFunctions(0 /* sStaticFields */); __mClass->mMembers = ::hx::Class_obj::dupFunctions(Alphabet_obj_sMemberFields); __mClass->mCanCast = ::hx::TCanCast< Alphabet_obj >; #ifdef HXCPP_SCRIPTABLE __mClass->mMemberStorageInfo = Alphabet_obj_sMemberStorageInfo; #endif #ifdef HXCPP_SCRIPTABLE __mClass->mStaticStorageInfo = Alphabet_obj_sStaticStorageInfo; #endif ::hx::_hx_RegisterClass(__mClass->mName, __mClass); }
[ "mrcolin35@hotmail.com" ]
mrcolin35@hotmail.com
972e2620002178be4264af959efe3e895e2595ec
f42d648e4d284402ad465efa682c0e36197c4ec1
/winrt/impl/Windows.Foundation.Metadata.0.h
0d48afe5aa7ee7348790c756eb78c7b2e1dc4b55
[]
no_license
kennykerr/modules
61bb39ae34cefcfec457d815b74db766cb6ea686
0faf4cd2fa757739c4a45e296bd24b8e652db490
refs/heads/master
2022-12-24T13:38:01.577626
2020-10-06T17:02:07
2020-10-06T17:02:07
301,795,870
2
0
null
null
null
null
UTF-8
C++
false
false
7,034
h
// WARNING: Please don't edit this file. It was generated by C++/WinRT v2.3.4.5 #ifndef WINRT_Windows_Foundation_Metadata_0_H #define WINRT_Windows_Foundation_Metadata_0_H WINRT_EXPORT namespace winrt::Windows::Foundation::Metadata { enum class AttributeTargets : uint32_t { All = 0xffffffff, Delegate = 0x1, Enum = 0x2, Event = 0x4, Field = 0x8, Interface = 0x10, Method = 0x40, Parameter = 0x80, Property = 0x100, RuntimeClass = 0x200, Struct = 0x400, InterfaceImpl = 0x800, ApiContract = 0x2000, }; enum class CompositionType : int32_t { Protected = 1, Public = 2, }; enum class DeprecationType : int32_t { Deprecate = 0, Remove = 1, }; enum class FeatureStage : int32_t { AlwaysDisabled = 0, DisabledByDefault = 1, EnabledByDefault = 2, AlwaysEnabled = 3, }; enum class GCPressureAmount : int32_t { Low = 0, Medium = 1, High = 2, }; enum class MarshalingType : int32_t { None = 1, Agile = 2, Standard = 3, InvalidMarshaling = 0, }; enum class Platform : int32_t { Windows = 0, WindowsPhone = 1, }; enum class ThreadingModel : int32_t { STA = 1, MTA = 2, Both = 3, InvalidThreading = 0, }; struct IApiInformationStatics; struct ApiInformation; } namespace winrt::impl { template <> struct category<Windows::Foundation::Metadata::IApiInformationStatics>{ using type = interface_category; }; template <> struct category<Windows::Foundation::Metadata::ApiInformation>{ using type = class_category; }; template <> struct category<Windows::Foundation::Metadata::AttributeTargets>{ using type = enum_category; }; template <> struct category<Windows::Foundation::Metadata::CompositionType>{ using type = enum_category; }; template <> struct category<Windows::Foundation::Metadata::DeprecationType>{ using type = enum_category; }; template <> struct category<Windows::Foundation::Metadata::FeatureStage>{ using type = enum_category; }; template <> struct category<Windows::Foundation::Metadata::GCPressureAmount>{ using type = enum_category; }; template <> struct category<Windows::Foundation::Metadata::MarshalingType>{ using type = enum_category; }; template <> struct category<Windows::Foundation::Metadata::Platform>{ using type = enum_category; }; template <> struct category<Windows::Foundation::Metadata::ThreadingModel>{ using type = enum_category; }; template <> inline constexpr auto& name_v<Windows::Foundation::Metadata::ApiInformation> = L"Windows.Foundation.Metadata.ApiInformation"; template <> inline constexpr auto& name_v<Windows::Foundation::Metadata::AttributeTargets> = L"Windows.Foundation.Metadata.AttributeTargets"; template <> inline constexpr auto& name_v<Windows::Foundation::Metadata::CompositionType> = L"Windows.Foundation.Metadata.CompositionType"; template <> inline constexpr auto& name_v<Windows::Foundation::Metadata::DeprecationType> = L"Windows.Foundation.Metadata.DeprecationType"; template <> inline constexpr auto& name_v<Windows::Foundation::Metadata::FeatureStage> = L"Windows.Foundation.Metadata.FeatureStage"; template <> inline constexpr auto& name_v<Windows::Foundation::Metadata::GCPressureAmount> = L"Windows.Foundation.Metadata.GCPressureAmount"; template <> inline constexpr auto& name_v<Windows::Foundation::Metadata::MarshalingType> = L"Windows.Foundation.Metadata.MarshalingType"; template <> inline constexpr auto& name_v<Windows::Foundation::Metadata::Platform> = L"Windows.Foundation.Metadata.Platform"; template <> inline constexpr auto& name_v<Windows::Foundation::Metadata::ThreadingModel> = L"Windows.Foundation.Metadata.ThreadingModel"; template <> inline constexpr auto& name_v<Windows::Foundation::Metadata::IApiInformationStatics> = L"Windows.Foundation.Metadata.IApiInformationStatics"; template <> inline constexpr guid guid_v<Windows::Foundation::Metadata::IApiInformationStatics>{ 0x997439FE,0xF681,0x4A11,{ 0xB4,0x16,0xC1,0x3A,0x47,0xE8,0xBA,0x36 } }; // 997439FE-F681-4A11-B416-C13A47E8BA36 template <> struct abi<Windows::Foundation::Metadata::IApiInformationStatics> { struct __declspec(novtable) type : inspectable_abi { virtual int32_t __stdcall IsTypePresent(void*, bool*) noexcept = 0; virtual int32_t __stdcall IsMethodPresent(void*, void*, bool*) noexcept = 0; virtual int32_t __stdcall IsMethodPresentWithArity(void*, void*, uint32_t, bool*) noexcept = 0; virtual int32_t __stdcall IsEventPresent(void*, void*, bool*) noexcept = 0; virtual int32_t __stdcall IsPropertyPresent(void*, void*, bool*) noexcept = 0; virtual int32_t __stdcall IsReadOnlyPropertyPresent(void*, void*, bool*) noexcept = 0; virtual int32_t __stdcall IsWriteablePropertyPresent(void*, void*, bool*) noexcept = 0; virtual int32_t __stdcall IsEnumNamedValuePresent(void*, void*, bool*) noexcept = 0; virtual int32_t __stdcall IsApiContractPresentByMajor(void*, uint16_t, bool*) noexcept = 0; virtual int32_t __stdcall IsApiContractPresentByMajorAndMinor(void*, uint16_t, uint16_t, bool*) noexcept = 0; }; }; template <typename D> struct consume_Windows_Foundation_Metadata_IApiInformationStatics { WINRT_IMPL_AUTO(bool) IsTypePresent(param::hstring const& typeName) const; WINRT_IMPL_AUTO(bool) IsMethodPresent(param::hstring const& typeName, param::hstring const& methodName) const; WINRT_IMPL_AUTO(bool) IsMethodPresent(param::hstring const& typeName, param::hstring const& methodName, uint32_t inputParameterCount) const; WINRT_IMPL_AUTO(bool) IsEventPresent(param::hstring const& typeName, param::hstring const& eventName) const; WINRT_IMPL_AUTO(bool) IsPropertyPresent(param::hstring const& typeName, param::hstring const& propertyName) const; WINRT_IMPL_AUTO(bool) IsReadOnlyPropertyPresent(param::hstring const& typeName, param::hstring const& propertyName) const; WINRT_IMPL_AUTO(bool) IsWriteablePropertyPresent(param::hstring const& typeName, param::hstring const& propertyName) const; WINRT_IMPL_AUTO(bool) IsEnumNamedValuePresent(param::hstring const& enumTypeName, param::hstring const& valueName) const; WINRT_IMPL_AUTO(bool) IsApiContractPresent(param::hstring const& contractName, uint16_t majorVersion) const; WINRT_IMPL_AUTO(bool) IsApiContractPresent(param::hstring const& contractName, uint16_t majorVersion, uint16_t minorVersion) const; }; template <> struct consume<Windows::Foundation::Metadata::IApiInformationStatics> { template <typename D> using type = consume_Windows_Foundation_Metadata_IApiInformationStatics<D>; }; } #endif
[ "kenny.kerr@microsoft.com" ]
kenny.kerr@microsoft.com
67bf6f3bc9b2045e2690291ebc45b3e709431368
7dd6a8554de99377b3bb3eec8958eceb76a84c3c
/Lab08/Chong_2826945_Lab08/MinMax_Heap.h
272dc37e255d48a5c2834a93636d9844e4c6050c
[]
no_license
PenguinBoyTC/DataStructure_C
7f0ce17e9d1657699b8373e48e48f8ec24a3c8a4
3e6cdf9e377a7b1d7ad1d756449e1127de911d4a
refs/heads/master
2020-04-30T06:41:42.481021
2019-03-20T05:19:38
2019-03-20T05:19:38
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,154
h
#ifndef MINMAX_HEAP_H #define MINMAX_HEAP_H #include "HeapInterface.h" #include <string> #include <math.h> //#include <algorithm> template <typename T> class MinMax_Heap: public HeapInterface<T> { public: MinMax_Heap(int initialSize);//constructor MinMax_Heap(const MinMax_Heap<T>& heap); // The copy constructor MinMax_Heap(int initialSize, std::string filename); ~MinMax_Heap(); void buildheap(); void insert(T newItem);//add a Item to the tree bool deletemin(); bool deletemax(); T findmin();//return the top Item from the tree T findmax(); void levelorder(int k_heap); bool isEmpty();//check if the tree is empty private: T* theCompleteBinaryTree; int sizeOfArray; int numItemsInHeap; //helper functions void insertbuild(int newIndex); void swapbyMinLevel(int newIndex); void swapbyMaxLevel(int newIndex); bool isMaxLevel(int index); bool isMinLevel(int index); int Maxchild(int parent); int Minchild(int parent); void buildHelper(int parent);//switch the parent with all its child and swap until reach the bottom int targetgrandChildIndex(int parent); int targetChildIndex(int parent); }; #include "MinMax_Heap.hpp" #endif
[ "31427334+PenguinBoyTC@users.noreply.github.com" ]
31427334+PenguinBoyTC@users.noreply.github.com
a9785ecb44604e5bd806fdff0cc2b265300c6313
1f032ac06a2fc792859a57099e04d2b9bc43f387
/c6/e7/01/c0/1514a5d42345b6a9bd5ebad0ef490f60d2c8fac8dd9d9ddf2cd0bbd8979460af21b6c59fa60a83248b61142b65e17627993870318a63c0f33b8b8ce5/sw.cpp
b36b5626c16038aba0325eb93f26ab4826a35b30
[]
no_license
SoftwareNetwork/specifications
9d6d97c136d2b03af45669bad2bcb00fda9d2e26
ba960f416e4728a43aa3e41af16a7bdd82006ec3
refs/heads/master
2023-08-16T13:17:25.996674
2023-08-15T10:45:47
2023-08-15T10:45:47
145,738,888
0
0
null
null
null
null
UTF-8
C++
false
false
972
cpp
void build(Solution &s) { auto &t = s.addTarget<LibraryTarget>("amazon.awslabs.crt_cpp", "0.17.11"); t += Git("https://github.com/awslabs/aws-crt-cpp", "v{v}"); t -= "include/.*"_rr, "source/.*"_rr; t += "source/.*"_rr; if (t.getCompilerType() == CompilerType::MSVC) t.CompileOptions.push_back("-bigobj"); //else if (s.Settings.Native.CompilerType == CompilerType::GNU) //t.CompileOptions.push_back("-Wa,-mbig-obj"); t.Private += sw::Shared, "AWS_CRT_CPP_EXPORTS"_d; t.Public += sw::Shared, "AWS_CRT_CPP_USE_IMPORT_EXPORT"_d; t.Public += "org.sw.demo.amazon.awslabs.c_auth"_dep; t.Public += "org.sw.demo.amazon.awslabs.c_event_stream"_dep; t.Public += "org.sw.demo.amazon.awslabs.c_mqtt"_dep; t.Public += "org.sw.demo.amazon.awslabs.c_s3"_dep; t.Variables["AWS_CRT_CPP_VERSION"] = t.Variables["PACKAGE_VERSION"]; t.configureFile("include/aws/crt/Config.h.in", "aws/crt/Config.h"); }
[ "cppanbot@gmail.com" ]
cppanbot@gmail.com
98e1c272fbae16c503b1ad51c1fd966c523b69bd
4a16b421147ba8f1a0e280acec629cf362fafa94
/include/Sapph/Vector3.h
8ccd0d887651cf3d29e88b9a78264cf7c5182904
[]
no_license
tnaselow/Test_Game
0173a4d895fb77e2d1921ff6eb6f6573cb9a11ca
90fae3adf699eeb4f6f63693ab06a7aa0396e997
refs/heads/master
2021-01-01T05:13:02.153039
2016-05-25T23:13:38
2016-05-25T23:13:38
58,480,060
0
0
null
null
null
null
UTF-8
C++
false
false
882
h
#pragma once #include <iostream> class Vector3 { public: Vector3(float x = 0, float y = 0, float z = 0); Vector3(const Vector3 &vec); ~Vector3(); void Set(float x, float y, float z); float Dot(const Vector3 &vec) const; float Magnitude() const; Vector3 Cross(const Vector3 &vec) const; Vector3 &Scale(float scalar); Vector3 &Normalize(); Vector3 &operator=(const Vector3 &vec); bool operator==(const Vector3 &vec); Vector3 &operator /=(float scalar); Vector3 &operator *=(float scalar); Vector3 &operator +=(const Vector3 &vec); Vector3 &operator -=(const Vector3 &vec); Vector3 operator /(float scalar) const; Vector3 operator *(float scalar) const; Vector3 operator +(const Vector3 &vec) const; Vector3 operator -(const Vector3 &vec) const; friend std::ostream &operator<<(std::ostream &os, const Vector3 &vec); float X, Y, Z; };
[ "t.naselow@digipen.edu" ]
t.naselow@digipen.edu
4f7a670b56b733c59f6ceba3ed2b9605015eea89
19842f800160fdb4f0266e1d13c3e868542d75cb
/include/ext/audio/CClassBuilder.h
9768659413a142f5d9600308cd1def6520b78b6c
[]
no_license
benjaminhampe/DarkGDK
3e32b404d9aafb014a08c39324153bc1888771b8
32823a6b350caef3c114daf60d954b73994e3517
refs/heads/master
2020-06-02T04:05:29.866871
2014-02-28T21:33:30
2014-02-28T21:33:30
17,301,390
1
2
null
null
null
null
UTF-8
C++
false
false
9,067
h
// Copyright (C) 2002-2013 Benjamin Hampe // This file is part of the "irrlicht-engine" // For conditions of distribution and use, see copyright notice in irrlicht.h #ifndef __IRR_EXT_C_CLASS_BUILDER_MANAGER_H__ #define __IRR_EXT_C_CLASS_BUILDER_MANAGER_H__ //#include <sys/stat.h> //#include <sys/io.h> //#include <sys/ioctl.h> //#include <sys/user.h> //#include <sys/soundcard.h> //#include <sys/termios.h> //#include <cstdlib> //#include <cstdio> //#include <cmath> //#include <cstring> //#include <cstdarg> #include <irrlicht.h> #include <cstdio> #include <stdio.h> namespace irr{ namespace core{ /// @brief Container == array of stringc typedef array<stringc> Container; /// @brief SystemCall to stringc bool trimLine( stringc& line, u32 loop_count = 3, const c8* char_list = ":./", const u32 char_count = 3 ); /// @brief SystemCall to stringc stringc SingleSysCall( const stringc& command, const u32 LENGTH = 1024 ); /// @brief SystemCall to Container ( multiline ) Container MultiSysCall( const stringc& command, const u32 LENGTH = 1024 ); /// @brief SystemCall to TextFile ( store shell result to text-file ) bool StoreCall( const stringc& command, const stringc& filename = "./tmp.txt", const u32 LENGTH = 1024 ); /// @brief add output of SystemCall to Container ( ram ) bool AddLines( Container& container, const stringc& command, const u32 LENGTH = 1024 ); /// @brief Container to TextFile ( store ram to hdd ) bool LoadLines( Container& container, const stringc& filename = "./tmp.txt", const u32 LENGTH = 1024 ); /// @brief Container to TextFile ( store ram to hdd ) bool StoreLines( const Container& container, const stringc& filename = "./tmp.txt" ); /// @brief List all files of given extension-list u32 FindFiles( Container& out, const stringc& rootDir, const Container& fileTypes ); /// @brief Print all lines void Print( const Container& out ); /// @brief GetDir stringc GetDir(); /// @brief SetDir void SetDir( const stringc& new_dir ); enum E_ATTRIBUTES { EAOF_NONE = 0, EAOF_UNKNOWN = 1, EAOF_PUBLIC = 1<<1, EAOF_PROTECTED = 1<<2, EAOF_PRIVATE = 1<<3, EAOF_STATIC = 1<<4, EAOF_CONST = 1<<5, EAOF_VIRTUAL = 1<<6, EAOF_INLINE = 1<<7 // EAOF_LVALUE = 1<<8 // EAOF_REFERENCE = 1<<9 // EAOF_POINTER = 1<<10 // EAOF_RValue = 1<<11 // EAOF_VARIABLE_DEF = 1<<11 // EAOF_VARIABLE_DECL = 1<<11 // EAOF_FUNCTION_DEF = 1<<11 // EAOF_FUNCTION_DECL = 1<<11 // EAOF_MACRO_DEF = 1<<11 // EAOF_CLASS = 1<<11 // EAOF_STRUCT = 1<<11 // EAOF_INTERFACE = 1<<11 // EAOF_INTERFACE = 1<<11 }; class CClassAttributes { public: u32 Attributes; //C++: //Bit setzen: var |= 1<<Bitnummer; /* Bitnr ab 0 */ //Bit loeschen: var &= ~(1<<Bitnummer); ///@brief Default constructor CClassAttributes() { Attributes = (u32)EAOF_NONE; Attributes |= (u32)EAOF_PUBLIC; Attributes |= (u32)EAOF_INLINE; Attributes |= (u32)EAOF_VIRTUAL; } ///@brief Default constructor virtual ~CClassAttributes() { } ///@brief Clear All Flags virtual CClassAttributes& clear() { Attributes = (u32)EAOF_NONE; return *this; } ///@brief Set public virtual CClassAttributes& setUnknown() { Attributes |= (u32)EAOF_UNKNOWN; return *this; } ///@brief Set public virtual CClassAttributes& setPublic() { Attributes |= (u32)EAOF_PUBLIC; Attributes &= ~((u32)EAOF_PRIVATE + (u32)EAOF_PROTECTED + (u32)EAOF_STATIC ); return *this; } ///@brief Set protected virtual CClassAttributes& setProtected() { Attributes |= (u32)EAOF_PROTECTED; Attributes &= ~((u32)EAOF_PUBLIC + (u32)EAOF_PRIVATE + (u32)EAOF_STATIC ); return *this; } ///@brief Set private virtual CClassAttributes& setPrivate() { Attributes |= EAOF_PRIVATE; Attributes &= ~((u32)EAOF_PUBLIC + (u32)EAOF_PROTECTED + (u32)EAOF_STATIC ); return *this; } ///@brief Set static virtual CClassAttributes& setStatic() { Attributes |= ((u32)EAOF_PUBLIC + (u32)EAOF_STATIC); Attributes &= ~((u32)EAOF_PROTECTED + (u32)EAOF_PRIVATE ); return *this; } ///@brief Set virtual virtual CClassAttributes& setVirtual() { Attributes |= (u32)EAOF_VIRTUAL; return *this; } ///@brief Set inline virtual CClassAttributes& setInline() { Attributes |= (u32)EAOF_INLINE; Attributes &= ~((u32)EAOF_STATIC); return *this; } ///@brief Get value member-variable. virtual bool isPublic() const { if ( Attributes & (u32)EAOF_PUBLIC ) return true; else return false; } ///@brief Get value member-variable. virtual bool isProtected() const { if ( Attributes & (u32)EAOF_PROTECTED ) return true; else return false; } ///@brief Get value member-variable. virtual bool isPrivate() const { if ( Attributes & (u32)EAOF_PRIVATE ) return true; else return false; } ///@brief Get value member-variable. virtual bool isStatic() const { if ( Attributes & (u32)EAOF_STATIC ) return true; else return false; } ///@brief Get value member-variable. virtual bool isVirtual() const { if ( Attributes & (u32)EAOF_VIRTUAL ) return true; else return false; } ///@brief Get value member-variable. virtual bool isInline() const { if ( Attributes & (u32)EAOF_INLINE ) return true; else return false; } }; class CBaseVariable : IReferenceCounted { stringc Name; stringc Type; stringc InitValue; CClassAttributes Attributes; public: CBaseVariable( const stringc& name = stringc("Variable_"), const stringc& type = stringc("u32"), const stringc& init = stringc("0"), const CClassAttributes& attribs = CClassAttributes()) : Name(name), Type(type), InitValue(init), Attributes(attribs) { } }; class CBaseFunction : IReferenceCounted { stringc Name; stringc ReturnType; stringc Visibility; // public, protected, private CClassAttributes Attributes; typedef array<CBaseVariable> SParameterList; SParameterList ParamList; public: CBaseFunction( const stringc& name = stringc("NumberingSomething"), // class IUnknown const stringc& returntype = stringc("u32"), // types: struct:"struct S", class:"class C", int[erface]:"class I" const CClassAttributes& attributes = CClassAttributes()) : Name(name) , ReturnType(returntype) , Attributes(attributes) { } ~CBaseFunction() { ParamList.clear(); } virtual void addParam( const stringc& name = stringc("Variable_"), const stringc& type = stringc("u32"), const stringc& init = stringc("0"), const CClassAttributes& attribs = CClassAttributes() ) { ParamList.push_back( CBaseVariable(name, type, init, attribs ) ); } }; struct CClassVariable : CBaseVariable { bool HasGetter; bool HasConstGetter; bool HasSetter; CClassVariable( const stringc& name = stringc("NumberOfSomething"), const stringc& type = stringc("u32"), const stringc& init = stringc("0"), const CClassAttributes& attribs = CClassAttributes().setVirtual().setInline(), bool hasGetter = true, bool hasConstGetter = true, bool hasSetter = true ) : CBaseVariable( name, type, init, attribs) , HasGetter(hasGetter), HasConstGetter(hasConstGetter), HasSetter(hasSetter) { } }; class CClassFunction : public CBaseFunction { }; class CClass { typedef array<CClassAttributes> Attributes; typedef array<stringc> Lines; typedef array<CClassVariable> Variables; typedef array<CClassFunction> Functions; stringc m_Name; Attributes m_Attributes; Lines m_Comments; Variables m_Variables; Functions m_Functions; public: CClass( const stringc& name, const CClass::Attributes& attribs, const CClass::Variables& vars, const CClass::Functions& funs ); virtual ~CClass(); virtual void addVariable( const CClassVariable& v ) { m_Variables.push_back( v ); } virtual void addFunction( const CClassFunction& f ) { m_Functions.push_back( f ); } virtual void addComment( const stringc& comment = "") { m_Comments.push_back( comment ); } virtual void addBlock( const stringc& block_name, bool isFolded = false ) { // m_Functions.push_back( my_fun ); } virtual void addMarkDown( const stringc& md_file_or_txt ) { // m_Functions.push_back( my_fun ); } }; class CClassBuilder : public IReferenceCounted { s32 Argc; c8** Argv; array<CClass> Classes; public: CClassBuilder ( s32 argc = 0, c8** argv = 0L ); ~CClassBuilder (); ///@brief get Pointer to single class. ///@param index Index of class-array. ///@return Pointer to single class. virtual u32 getClassCount() const { return Classes.size(); } ///@brief get Pointer to single clas. ///@param index Index of class-array. ///@return Pointer to single class. virtual core::CClass& getClass( u32 index = 0 ) { _IRR_DEBUG_BREAK_IF( index >= getClassCount() ) return Classes[index]; } ///@brief add Class ///@param id Unique identifier of this text-shape ///@param name Name of the ISceneNode ///@return true on success virtual bool addClass( const core::CClass& other) { u32 old_size = Classes.size(); Classes.push_back( other ); return (Classes.size()-old_size>0)?true:false; } }; } // end namespace core } // end namespace irr #endif // __IRR_EXT_CLASS_BUILDER_H__
[ "benjaminhampe@gmx.de" ]
benjaminhampe@gmx.de
34af1184c256702bb19f5286a78b7f445827d663
4ef7465003940b693c46a9606b8bda6684f8f54b
/src/animator.cpp
74a57bf94f568ce5203d42231465d72af0d6ba8d
[]
no_license
EvilJagaGenius/NetmapSFML
22d2484fd5b8d3a76a3a5673f68083cacdd984f7
2bd760b563a54d8275259484268e4925a73fb6d1
refs/heads/master
2021-11-22T16:36:44.669861
2019-11-22T18:50:54
2019-11-22T18:50:54
183,544,102
1
1
null
2020-06-26T23:24:01
2019-04-26T02:41:05
C++
UTF-8
C++
false
false
910
cpp
#include "animator.h" Animator::Animator() { //ctor } Animator::~Animator() { //dtor } void Animator::addAnimation(string id, Animation anim) { this->animations.insert({{id, anim}}); } void Animator::playAnimation(string id, bool loop) { this->loop = loop; this->progress = 0; this->currentAnim = this->animations[id]; this->loopTime = this->currentAnim.totalTime; } void Animator::update(sf::Time dt) { // Do something similar to the float version of this } void Animator::update(float progress) { this->progress += progress; if (this->loop) { while (this->progress >= this->loopTime) { this->progress -= this->loopTime; } } } void Animator::animate(sf::Sprite* target, float progress) { currentAnim.animate(target, progress); } void Animator::animate(sf::Sprite* target) { currentAnim.animate(target, this->progress); }
[ "EvilJagaGenius@users.noreply.github.com" ]
EvilJagaGenius@users.noreply.github.com
35b7193cca08c84556ea92478ef8fbf5f4e0931a
67ea3f01e6cd4b9d3551d5f31184130efe61b471
/Tests/testFunctions.cpp
a50d14c9e5caf82be40d97d959658239dfa7ca2c
[ "MIT" ]
permissive
ASR-Engineering-Consulting/V3DLib
a4d33c9436aed34eeef412935753252b86c820fc
393cc112866b64019830f66984663d1731ecb68e
refs/heads/main
2023-05-07T21:57:54.957983
2021-05-31T06:58:28
2021-05-31T06:58:28
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,149
cpp
#include "doctest.h" #include "Kernel.h" #include "Source/Functions.h" using namespace V3DLib; namespace { IntExpr hello_int_function() { return functions::create_function_snippet([] { Int Q = 42; functions::Return(Q); }); } void hello_int_kernel(Int::Ptr result) { *result = hello_int_function(); } FloatExpr hello_float_function() { return functions::create_float_function_snippet([] { Float Q = 42; functions::Return(Q); }); } void hello_float_kernel(Float::Ptr result) { *result = hello_float_function(); } } // anon namespace TEST_CASE("Test functions [funcs]") { SUBCASE("Test hello int function") { Int::Array result(16); result.fill(-1); auto k = compile(hello_int_kernel); k.load(&result); k.interpret(); for (int i = 0; i < (int) result.size(); i++) { REQUIRE(result[i] == 42); } } SUBCASE("Test hello float function") { Float::Array result(16); result.fill(-1); auto k = compile(hello_float_kernel); k.load(&result); k.interpret(); for (int i = 0; i < (int) result.size(); i++) { REQUIRE(result[i] == 42.0f); } } }
[ "wrijnders@gmail.com" ]
wrijnders@gmail.com
2b5013f585040c3342a37bef5f06deecb19e914d
844fc17b4b94fcc455e56b1e8fa87da8be537d23
/src/spectral/basis/spectral_function/spectral_weight_function.hpp
55a37de7660662c46637af11fa7ac2958fcc7c1b
[]
no_license
simonpintarelli/2dBoltzmann
be6426564ffd74cd084787fbe1c6590b27a53dcc
bc6b7bbeffa242ce80937947444383b416ba3fc9
refs/heads/master
2021-04-12T10:21:50.167296
2018-12-16T16:16:43
2018-12-16T16:16:43
126,182,914
0
0
null
null
null
null
UTF-8
C++
false
false
848
hpp
#pragma once #include "spectral_coord_traits.hpp" namespace boltzmann { // -------------------------------------------------------------------------------- template <typename F, bool T> struct weighted {}; // -------------------------------------------------------------------------------- template <typename F> struct weighted<F, true> { typename SpectralCoordTraits<F>::return_type weight( const typename SpectralCoordTraits<F>::coord_type& c) const { return static_cast<const F&>(*this).weight(c); } }; // -------------------------------------------------------------------------------- template <typename F> struct weighted<F, false> { constexpr typename SpectralCoordTraits<F>::return_type weight( const typename SpectralCoordTraits<F>::coord_type& c) const { return 1; } }; } // end namespace boltzmann
[ "simon.pintarelli@gmail.com" ]
simon.pintarelli@gmail.com
5532b2566f18270be636e4b94cf42339e917c3d2
19194c2f2c07ab3537f994acfbf6b34ea9b55ae7
/android-30/java/lang/reflect/ReflectPermission.hpp
63dd381a4cb61ca239afa638fbbc8d9af652129d
[ "GPL-3.0-only" ]
permissive
YJBeetle/QtAndroidAPI
e372609e9db0f96602da31b8417c9f5972315cae
ace3f0ea2678967393b5eb8e4edba7fa2ca6a50c
refs/heads/Qt6
2023-08-05T03:14:11.842336
2023-07-24T08:35:31
2023-07-24T08:35:31
249,539,770
19
4
Apache-2.0
2022-03-14T12:15:32
2020-03-23T20:42:54
C++
UTF-8
C++
false
false
839
hpp
#pragma once #include "../../../JString.hpp" #include "./ReflectPermission.def.hpp" namespace java::lang::reflect { // Fields // Constructors inline ReflectPermission::ReflectPermission(JString arg0) : java::security::BasicPermission( "java.lang.reflect.ReflectPermission", "(Ljava/lang/String;)V", arg0.object<jstring>() ) {} inline ReflectPermission::ReflectPermission(JString arg0, JString arg1) : java::security::BasicPermission( "java.lang.reflect.ReflectPermission", "(Ljava/lang/String;Ljava/lang/String;)V", arg0.object<jstring>(), arg1.object<jstring>() ) {} // Methods } // namespace java::lang::reflect // Base class headers #include "../../security/Permission.hpp" #include "../../security/BasicPermission.hpp" #ifdef QT_ANDROID_API_AUTOUSE using namespace java::lang::reflect; #endif
[ "yjbeetle@gmail.com" ]
yjbeetle@gmail.com
fee8c16be466b69a6e030dca7df0e0320274d32e
58fbf4229a79250b01946c35f375d7da17fbdac4
/fsw/unit_test/vm_testrunner.cpp
ec33cd8895c5460be44c4b3d8f3d3d74259ad2cc
[ "BSD-3-Clause" ]
permissive
WindhoverLabs/vm
32add255779636b62adcac38499f1b96e080401c
f7a39de2a043ff26fc6873a379b2570538184463
refs/heads/master
2023-02-18T17:04:10.869676
2023-02-02T05:21:17
2023-02-02T05:21:17
202,190,043
1
0
BSD-3-Clause
2021-01-29T19:58:00
2019-08-13T17:09:40
C++
UTF-8
C++
false
false
1,974
cpp
/**************************************************************************** * * Copyright (c) 2017 Windhover Labs, L.L.C. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in * the documentation and/or other materials provided with the * distribution. * 3. Neither the name Windhover Labs 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. * *****************************************************************************/ #include "uttest.h" #include "vm_app_test.h" #include "vm_cmds_test.h" #include "vm_config_tbl_test.h" int main(void) { VM_App_Test_AddTestCases(); VM_Cmds_Test_AddTestCases(); VM_Config_Tbl_Test_AddTestCases(); return(UtTest_Run()); }
[ "mbenson@windhoverlabs.com" ]
mbenson@windhoverlabs.com
8d98579719b305545057e4fd152f7eb242b33878
84c630facb71846df893e80f49a12ebbe81c26e7
/STm32F429_Firmware/src/lap_timer.h
31f8a82c5c7a2c984a919bcd7f3801ad6c04c8bc
[]
no_license
PhilippSchmaelzle/speedoino
6da484a76f4d74c80fb459545c258f98582b72f5
31440cc40cc87308ac21ad0d5b22f2f906a41bbe
refs/heads/master
2022-06-10T09:57:58.311209
2020-05-02T19:21:42
2020-05-02T19:21:42
260,756,509
0
0
null
null
null
null
UTF-8
C++
false
false
1,464
h
/* * Lap_Timer.h * * Created on: 14.07.2013 * Author: kolja */ #ifndef LAP_TIMER_H_ #define LAP_TIMER_H_ class LapTime{ public: LapTime(); ~LapTime(); void race_loop(); void waiting_on_speed_up(); void prepare_race_loop(); void gps_capture_loop(); void initial_draw_gps_capture_screen(); unsigned char* get_active_filename(); int add_sector(uint32_t latitude, uint32_t longitude, unsigned char* filename); int clear_file(unsigned char* filename); int reset_times(unsigned char* filename); bool use_realtime_not_calculated; private: uint8_t sector_count; uint8_t lap; uint8_t current_sector; uint8_t last_dist_to_target; // TODO init? uint32_t sector_end_latitude; uint32_t sector_end_longitude; uint32_t best_sector_time_ms; uint32_t best_lap_time_ms; uint32_t sector_start_timestamp_ms; uint32_t lap_start_timestamp_ms; uint32_t starting_standing_timestamp_ms; uint32_t total_lap_time_blink_ms; int32_t delay_ms; bool delay_calc_active; bool last_gps_valid; bool delay_reseted; unsigned char filename[20]; // "/NAVI/HOCKENHE.SST" int calc_best_lap_time(); int update_sector_time(uint8_t sector_id, uint32_t sector_time, unsigned char* filename); int get_sector_data(uint8_t sector_id, uint32_t* latitude,uint32_t* longitude,uint32_t* sector_time, unsigned char* filename); void update_race_screen(uint8_t level); void init_race_screen(bool reset_vars); }; extern LapTime LapTimer; #endif /* LapTime */
[ "philipp-schmaelzle@web.de" ]
philipp-schmaelzle@web.de
769b6c84ac4f6ddca5aaebaebe8900f0f4cc91da
acbed65c0fae90e223ad18188417009dbc949567
/Lk_test/lk_demo.cpp
2fdd65171db4331276d4bb06755c45f7c04d2dd8
[]
no_license
laokingshineUAV/openCV_1.0
11630d33c434e36bd45c80050f655cff7a4e33e2
b8d56ff0593fe93583f0f1cf4c3d9f4f8ef5c42f
refs/heads/master
2020-03-16T14:02:01.925042
2018-05-10T13:33:54
2018-05-10T13:33:54
132,705,626
0
0
null
null
null
null
UTF-8
C++
false
false
3,267
cpp
#include "opencv2/video/tracking.hpp" #include "opencv2/imgproc.hpp" #include "opencv2/videoio.hpp" #include "opencv2/highgui.hpp" #include <iostream> #include <ctype.h> using namespace cv; using namespace std; static void help() { // print a welcome message, and the OpenCV version cout << "\nThis is a demo of Lukas-Kanade optical flow lkdemo(),\n" "Using OpenCV version " << CV_VERSION << endl; cout << "\nIt uses camera by default, but you can provide a path to video as an argument.\n"; cout << "\nHot keys: \n" "\tESC - quit the program\n" "\tr - auto-initialize tracking\n" "\tc - delete all the points\n" "\tn - switch the \"night\" mode on/off\n" "To add/remove a feature point click it\n" << endl; } Point2f point; bool addRemovePt = false; static void onMouse(int event, int x, int y, int /*flags*/, void* /*param*/) { if (event == EVENT_LBUTTONDOWN) { point = Point2f((float)x, (float)y); addRemovePt = true; } } int main(int argc, char** argv) { VideoCapture cap; TermCriteria termcrit(TermCriteria::COUNT | TermCriteria::EPS, 20, 0.03); Size subPixWinSize(10, 10), winSize(31, 31); const int MAX_COUNT = 500; bool needToInit = false; bool nightMode = false; help(); cv::CommandLineParser parser(argc, argv, "{@input|0|}"); string input = parser.get<string>("@input"); if (input.size() == 1 && isdigit(input[0])) cap.open(input[0] - '0'); else cap.open(input); if (!cap.isOpened()) { cout << "Could not initialize capturing...\n"; return 0; } namedWindow("LK Demo", 1); setMouseCallback("LK Demo", onMouse, 0); Mat gray, prevGray, image, frame; vector<Point2f> points[2]; for (;;) { cap >> frame; if (frame.empty()) break; frame.copyTo(image); cvtColor(image, gray, COLOR_BGR2GRAY); if (nightMode) image = Scalar::all(0); if (needToInit) { // automatic initialization goodFeaturesToTrack(gray, points[1], MAX_COUNT, 0.01, 10, Mat(), 3, 0, 0.04); cornerSubPix(gray, points[1], subPixWinSize, Size(-1, -1), termcrit); addRemovePt = false; } else if (!points[0].empty()) { vector<uchar> status; vector<float> err; if (prevGray.empty()) gray.copyTo(prevGray); calcOpticalFlowPyrLK(prevGray, gray, points[0], points[1], status, err, winSize, 3, termcrit, 0, 0.001); size_t i, k; for (i = k = 0; i < points[1].size(); i++) { if (addRemovePt) { if (norm(point - points[1][i]) <= 5) { addRemovePt = false; continue; } } if (!status[i]) continue; points[1][k++] = points[1][i]; circle(image, points[1][i], 3, Scalar(0, 255, 0), -1, 8); } points[1].resize(k); } if (addRemovePt && points[1].size() < (size_t)MAX_COUNT) { vector<Point2f> tmp; tmp.push_back(point); cornerSubPix(gray, tmp, winSize, Size(-1, -1), termcrit); points[1].push_back(tmp[0]); addRemovePt = false; } needToInit = false; imshow("LK Demo", image); char c = (char)waitKey(10); if (c == 27) break; switch (c) { case 'r': needToInit = true; break; case 'c': points[0].clear(); points[1].clear(); break; case 'n': nightMode = !nightMode; break; } std::swap(points[1], points[0]); cv::swap(prevGray, gray); } return 0; }
[ "laokingshine@sjtu.edu.cn" ]
laokingshine@sjtu.edu.cn
8c4e3f91620f61dd0bbb98784dca1f1a19d29377
19907e496cfaf4d59030ff06a90dc7b14db939fc
/POC/oracle_dapp/node_modules/wrtc/third_party/webrtc/include/chromium/src/components/scheduler/child/scheduler_tqm_delegate_impl.h
a41ac676f582cfe1800840f4c185045f56d34068
[ "BSD-2-Clause" ]
permissive
ATMatrix/demo
c10734441f21e24b89054842871a31fec19158e4
e71a3421c75ccdeac14eafba38f31cf92d0b2354
refs/heads/master
2020-12-02T20:53:29.214857
2017-08-28T05:49:35
2017-08-28T05:49:35
96,223,899
8
4
null
2017-08-28T05:49:36
2017-07-04T13:59:26
JavaScript
UTF-8
C++
false
false
2,054
h
// Copyright 2015 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef COMPONENTS_SCHEDULER_CHILD_SCHEDULER_TQM_DELEGATE_IMPL_H_ #define COMPONENTS_SCHEDULER_CHILD_SCHEDULER_TQM_DELEGATE_IMPL_H_ #include "base/macros.h" #include "base/message_loop/message_loop.h" #include "base/time/tick_clock.h" #include "components/scheduler/child/scheduler_tqm_delegate.h" #include "components/scheduler/scheduler_export.h" namespace scheduler { class SCHEDULER_EXPORT SchedulerTqmDelegateImpl : public SchedulerTqmDelegate { public: // |message_loop| is not owned and must outlive the lifetime of this object. static scoped_refptr<SchedulerTqmDelegateImpl> Create( base::MessageLoop* message_loop, scoped_ptr<base::TickClock> time_source); // SchedulerTqmDelegate implementation void SetDefaultTaskRunner( scoped_refptr<base::SingleThreadTaskRunner> task_runner) override; void RestoreDefaultTaskRunner() override; bool PostDelayedTask(const tracked_objects::Location& from_here, const base::Closure& task, base::TimeDelta delay) override; bool PostNonNestableDelayedTask(const tracked_objects::Location& from_here, const base::Closure& task, base::TimeDelta delay) override; bool RunsTasksOnCurrentThread() const override; bool IsNested() const override; base::TimeTicks NowTicks() override; protected: ~SchedulerTqmDelegateImpl() override; private: SchedulerTqmDelegateImpl(base::MessageLoop* message_loop, scoped_ptr<base::TickClock> time_source); // Not owned. base::MessageLoop* message_loop_; scoped_refptr<SingleThreadTaskRunner> message_loop_task_runner_; scoped_ptr<base::TickClock> time_source_; DISALLOW_COPY_AND_ASSIGN(SchedulerTqmDelegateImpl); }; } // namespace scheduler #endif // COMPONENTS_SCHEDULER_CHILD_SCHEDULER_TQM_DELEGATE_IMPL_H_
[ "steven.jun.liu@qq.com" ]
steven.jun.liu@qq.com
a7f192af87d4eca359dbe40b806e2656e261eede
b0f76ab27b217a77e36c3b4c6b3f2adeae7c7a28
/QPAnalyzer/main.cpp
4e16a91ddd03e62cbdc810e6bd3d452d393dffa6
[]
no_license
iamgeniuswei/QProtocolAnalyzer
ec3cd8a283102c38ffd50fe27b74dae527b999ef
5deae48aff83e28d9a389978accd8bda660b8315
refs/heads/master
2021-01-18T19:53:21.268694
2016-09-29T02:57:11
2016-09-29T02:57:11
69,648,032
0
0
null
null
null
null
UTF-8
C++
false
false
225
cpp
#include <QCoreApplication> #include <QDebug> int main(int argc, char *argv[]) { QCoreApplication a(argc, argv); qDebug() << "-------------------QProtocolAnalyzer Build 0.01-----------------"; return a.exec(); }
[ "iamgeniuswei@sina.com" ]
iamgeniuswei@sina.com
a0ddd8b4f7bc78f83e32c8725595691bfe671c7b
26701cd4cdc0df75de09d2ffa6c9d2c6ec72c433
/loo/tests/graphic/header/graphicapp.h
1cf483cdc1574947d5ae4ac007fcc25a322778fb
[]
no_license
ifeuille/looengine
6ec30fc459684e5abf25e9e3739ab882ec12b7a5
f0bbbe6e2b518dcbb9d75937084cab29d2f12347
refs/heads/master
2022-04-11T01:01:28.429955
2020-03-29T01:34:20
2020-03-29T01:34:20
226,991,555
1
0
null
null
null
null
UTF-8
C++
false
false
2,164
h
#include "config.h" #include "core/application/application.h" #include "vkfg/vulkan/framework/vulkandeviceext.h" #include "vkfg/vkfg.h" #include "global/algorithms/stringutils.h" namespace loo { namespace vkfg { class VPipelineCompiler; } } class GraphicApp :public loo::core::Application { // types private: using TestFunc_t = bool (GraphicApp::*) (); using TestQueue_t = loo::Deque<loo::Pair< TestFunc_t, loo::uint >>; using DebugReport = loo::vkfg::VulkanDeviceExt::DebugReport; using VPipelineCompilerPtr = loo::SharedPtr< class loo::vkfg::VPipelineCompiler >; // variables private: loo::vkfg::VulkanDeviceExt _vulkan; loo::vkfg::FrameGraph _frameGraph; VPipelineCompilerPtr _pplnCompiler; loo::vkfg::SwapchainID _swapchainId; TestQueue_t _tests; loo::uint _testInvocations = 0; loo::uint _testsPassed = 0; loo::uint _testsFailed; // helpers private: bool Visualize (loo::StringView name) const; bool CompareDumps (loo::StringView filename) const; bool SavePNG (const loo::String &filename, const loo::vkfg::ImageView &imageData) const; template <typename Arg0, typename ...Args> inline void DeleteResources (Arg0 &arg0, Args& ...args); ND_ loo::Array<uint8_t> CreateData (loo::BytesU size) const; ND_ static loo::String GetFuncName (loo::StringView src); // implementation tests private: bool Test_Draw1 (); public: GraphicApp (const std::string& name,uint32_t appid, loo::core::ContextConfig setting); virtual ~GraphicApp (); virtual bool OnCreate (); virtual bool OnDestroy (); virtual bool OnSuspend (); virtual bool OnResume (); virtual bool OnRefresh (); virtual bool OnResize (uint32_t width, uint32_t height); virtual bool DoUpdateOverlay () ; virtual uint32_t DoUpdate (uint64_t pass); private: }; template <typename Arg0, typename ...Args> inline void GraphicApp::DeleteResources (Arg0 &arg0, Args& ...args) { _frameGraph->ReleaseResource (INOUT arg0); //constexpr bool cb = loo::CountOf<Args...> () != 0; if constexpr (loo::CountOf<Args...> () != 0) DeleteResources (std::forward<Args&> (args)...); } # define TEST_NAME GetFuncName( LOO_FUNCTION_NAME )
[ "770829892@qq.com" ]
770829892@qq.com
0ee13876796f7192c1adcb49c43b6c4bec355952
08b8cf38e1936e8cec27f84af0d3727321cec9c4
/data/crawl/git/new_hunk_4111.cpp
123a70dc5c610e618af1c8eb7a97b8c3c056f3ef
[]
no_license
ccdxc/logSurvey
eaf28e9c2d6307140b17986d5c05106d1fd8e943
6b80226e1667c1e0760ab39160893ee19b0e9fb1
refs/heads/master
2022-01-07T21:31:55.446839
2018-04-21T14:12:43
2018-04-21T14:12:43
null
0
0
null
null
null
null
UTF-8
C++
false
false
184
cpp
DIFF_OPT_SET(&revs->diffopt, NO_INDEX); revs->max_count = -2; diff_setup_done(&revs->diffopt); setup_diff_pager(&revs->diffopt); DIFF_OPT_SET(&revs->diffopt, EXIT_WITH_STATUS);
[ "993273596@qq.com" ]
993273596@qq.com
05af1df6a7c7876d6afd1eeb0be85f289af0e178
e879a7a6431bea8758c64e43c64695e1ec0cfcaa
/LeM/144.cpp
92ea4cf6c107f32b345272e1717470f48b37c6f6
[]
no_license
Fatnerdfy/Training
304cebe0997d0eb1de12257c68c157d6c2c9d42e
838b6f9526e167c6d54341507bb366bf6c1ba947
refs/heads/master
2021-07-03T15:17:12.303424
2019-01-28T05:53:32
2019-01-28T05:53:32
133,915,439
0
1
null
null
null
null
UTF-8
C++
false
false
1,055
cpp
/** * Definition for a binary tree node. * struct TreeNode { * int val; * TreeNode *left; * TreeNode *right; * TreeNode(int x) : val(x), left(NULL), right(NULL) {} * }; */ class Solution { public: void preorder(TreeNode *p, vector<int>& result) { if(p == nullptr) return; result.push_back(p->val); preorder(p->left, result); preorder(p->right, result); } vector<int> preorderTraversal(TreeNode* root) { vector<int> result; preorder(root, result); return result; } }; //runtime 4ms class Solution { public: vector<int> preorderTraversal(TreeNode* root) { vector<int> result; stack<const TreeNode *> s; if(root != nullptr) s.push(root); while(!s.empty()) { const TreeNode *p = s.top(); s.pop(); result.push_back(p->val); if(p->right != nullptr) s.push(p->right); if(p->left != nullptr) s.push(p->left); } return result; } }; // runtime 3ms
[ "quanfy98@gmail.com" ]
quanfy98@gmail.com
7c69256b7d821a738713977592a1852a4abf617d
9dbeabc73c230cb4d7421f9b01430afffa7a2893
/test.cpp
5ca489b136402361d4f2e3e0831ac94bf2ccb21c
[]
no_license
arnavmenon/CPCprep
3ad4cae9ff3a704135763585ed72cfc2266da740
dd95216774ea33fd5d327d37513b7ddd96471155
refs/heads/master
2023-07-13T13:12:08.076955
2021-08-21T21:13:15
2021-08-21T21:13:15
352,124,288
0
0
null
null
null
null
UTF-8
C++
false
false
1,377
cpp
#include<bits/stdc++.h> using namespace std; vector<long long> solve (int N, int Q, vector<int> A, vector<vector<int> > query) { vector<long long> ans; vector<long long> prefix(N,0); prefix[0]=A[0]; for(int i=1;i<N;i++){ prefix[i]= prefix[i-1] + A[i]; } int qno=0; vector<int> cur; while(qno < Q){ cur=query[qno]; int q=cur[0], l=cur[1], r=cur[2]; if(q == 1){ int dif= r - A[l-1]; A[l-1]=r; for(int i=l-1; i<N; i++){ prefix[i] += dif; } } else{ long long sum=0; for(int j=l-1; j<=r-1; j++){ sum += A[j] * (prefix[r-1] - prefix[j]); } ans.push_back(sum); } qno++; } return ans; } int main() { ios::sync_with_stdio(0); cin.tie(0); int N; cin >> N; int Q; cin >> Q; vector<int> A(N); for(int i_A = 0; i_A < N; i_A++) { cin >> A[i_A]; } vector<vector<int> > query(Q, vector<int>(3)); for (int i_query = 0; i_query < Q; i_query++) { for(int j_query = 0; j_query < 3; j_query++) { cin >> query[i_query][j_query]; } } vector<long long> out_; out_ = solve(N, Q, A, query); for(int i_out_ = 0; i_out_ < out_.size(); i_out_++) { cout << out_[i_out_] << endl; } return 0; }
[ "63289642+arnavmenon@users.noreply.github.com" ]
63289642+arnavmenon@users.noreply.github.com
240c04c7d550394e5dc99d5a0035b5b6b4d859ff
e557ce74c9fe34aa2b68441254b7def699067501
/src/libtsduck/dtv/descriptors/tsPartialTransportStreamDescriptor.h
b04a01fc70e1fbb028ca6068088eb1edba5f15fb
[ "BSD-2-Clause" ]
permissive
cedinu/tsduck-mod
53d9b4061d0eab9864d40b1d47b34f5908f99d8a
6c97507b63e7882a146eee3613d4184b7e535101
refs/heads/master
2023-05-10T12:56:33.185589
2023-05-02T09:00:57
2023-05-02T09:00:57
236,732,523
0
0
BSD-2-Clause
2021-09-23T08:36:08
2020-01-28T12:41:10
C++
UTF-8
C++
false
false
3,425
h
//---------------------------------------------------------------------------- // // TSDuck - The MPEG Transport Stream Toolkit // Copyright (c) 2005-2023, Thierry Lelegard // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are met: // // 1. Redistributions of source code must retain the above copyright notice, // this list of conditions and the following disclaimer. // 2. Redistributions in binary form must reproduce the above copyright // notice, this list of conditions and the following disclaimer in the // documentation and/or other materials provided with the distribution. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" // AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE // IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE // ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE // LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR // CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF // SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS // INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN // CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) // ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF // THE POSSIBILITY OF SUCH DAMAGE. // //---------------------------------------------------------------------------- //! //! @file //! Representation of a partial_transport_stream_descriptor //! //---------------------------------------------------------------------------- #pragma once #include "tsAbstractDescriptor.h" #include "tsUString.h" namespace ts { //! //! Representation of a partial_transport_stream_descriptor. //! @see ETSI EN 300 468, 7.2.1. //! @ingroup descriptor //! class TSDUCKDLL PartialTransportStreamDescriptor : public AbstractDescriptor { public: // PartialTransportStreamDescriptor public members: uint32_t peak_rate; //!< 22 bits uint32_t minimum_overall_smoothing_rate; //!< 22 bits uint16_t maximum_overall_smoothing_buffer; //!< 14 bits static const uint32_t UNDEFINED_SMOOTHING_RATE = 0x3FFFFF; //!< "undefined" value for @a minimum_overall_smoothing_rate. static const uint16_t UNDEFINED_SMOOTHING_BUFFER = 0x3FFF; //!< "undefined" value for @a maximum_overall_smoothing_buffer. //! //! Default constructor. //! PartialTransportStreamDescriptor(); //! //! Constructor from a binary descriptor //! @param [in,out] duck TSDuck execution context. //! @param [in] bin A binary descriptor to deserialize. //! PartialTransportStreamDescriptor(DuckContext& duck, const Descriptor& bin); // Inherited methods DeclareDisplayDescriptor(); protected: // Inherited methods virtual void clearContent() override; virtual void serializePayload(PSIBuffer&) const override; virtual void deserializePayload(PSIBuffer&) override; virtual void buildXML(DuckContext&, xml::Element*) const override; virtual bool analyzeXML(DuckContext&, const xml::Element*) override; }; }
[ "thierry@lelegard.fr" ]
thierry@lelegard.fr
be77f63a34082c869b26e098057e403470e60438
9a7e537e2f6ad47302256b7e2ff006b9b7d75d06
/DirectSoundforUnity/CWindow.cpp
220a4423f18e976bdaf2777bb12b3c0dfa39f187
[]
no_license
Taku3939/DirectSoundforUnity
a28cf65488ef35c86f32197366b04a743d1043aa
7eb63c3b2a74b9f86e728a3e05bf1c0766f4b405
refs/heads/master
2021-05-19T19:21:06.114729
2020-04-01T05:42:02
2020-04-01T05:42:02
252,080,786
0
0
null
null
null
null
SHIFT_JIS
C++
false
false
8,668
cpp
#pragma once #pragma warning( disable : 4996 ) #include "CWindow.h" /////////////////////////////////////////////////////////////////////////////////// // スタティック変数 /////////////////////////////////////////////////////////////////////////////////// HINSTANCE CWindow::hInstance = NULL; HWND CWindow::hWnd = NULL; BOOL CWindow::bActive = TRUE; WCHAR CWindow::mName[256] = L""; const WCHAR* CWindow::cIconID = IDI_APPLICATION; // デフォルトのアイコン HMENU CWindow::hMenu = NULL; DWORD CWindow::dwStyle = WS_POPUP | WS_SYSMENU | WS_CAPTION | WS_MINIMIZEBOX; DWORD CWindow::dwExStyle = 0; LPONMSG CWindow::mMsg = NULL; int CWindow::iMsg = 0; /////////////////////////////////////////////////////////////////////////////////// // コンストラクタ /////////////////////////////////////////////////////////////////////////////////// CWindow::CWindow(void) { } /////////////////////////////////////////////////////////////////////////////////// // デストラクタ /////////////////////////////////////////////////////////////////////////////////// CWindow::~CWindow() { } /////////////////////////////////////////////////////////////////////////////////// // メインウインドウのイベントハンドラ /////////////////////////////////////////////////////////////////////////////////// LRESULT CALLBACK CWindow::WindowProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam) { static CWindow* win = NULL; switch (uMsg) { case WM_CREATE: win = (CWindow*)lParam; break; case WM_ACTIVATE: bActive = LOWORD(wParam) ? TRUE : FALSE; // アクティブ状態変更 break; case WM_DESTROY: // ALT+F4が押されたら PostQuitMessage(0); break; case WM_MOUSEMOVE: break; case WM_SYSCOMMAND: switch (wParam) { case SC_CLOSE: PostQuitMessage(0); return 0; } break; case WM_IME_NOTIFY: switch (wParam) { case IMN_SETOPENSTATUS: HIMC hImc = ImmGetContext(hWnd); ImmSetOpenStatus(hImc, FALSE); break; } break; } // 特殊メッセージ処理 int i; for (i = 0; i < iMsg; i++) { if (uMsg == mMsg[i].uiMsg) { return mMsg[i].cmdProc(hWnd, wParam, lParam); // 特殊メッセージ操作完了なら } } return DefWindowProc(hWnd, uMsg, wParam, lParam); // デフォルトを返す } /////////////////////////////////////////////////////////////////////////////////// // ウインドウを生成する /////////////////////////////////////////////////////////////////////////////////// BOOL CWindow::Create(HINSTANCE hInst, const WCHAR* appName, BOOL show, DWORD w, DWORD h, HWND parent) { WNDCLASS wc; DEVMODE dmMode; // 画面解像度をチェック EnumDisplaySettings(NULL, ENUM_CURRENT_SETTINGS, &dmMode); // 16bit以上の解像度じゃないと起動できない if (dmMode.dmBitsPerPel < 16) { MessageBoxW(GetDesktopWindow(), L"16Bit以上の解像度にしてください", L"起動できません", MB_OK); return FALSE; } // セット hInstance = hInst; wcscpy(mName, appName); // ウインドウクラス登録 wc.style = CS_HREDRAW | CS_VREDRAW | CS_BYTEALIGNCLIENT; wc.lpfnWndProc = WindowProc; wc.cbClsExtra = 0; wc.cbWndExtra = sizeof(DWORD); wc.hInstance = hInstance; wc.hIcon = LoadIcon(hInstance, cIconID); wc.hCursor = LoadCursor(NULL, IDC_ARROW); wc.hbrBackground = (HBRUSH)GetStockObject(WHITE_BRUSH); wc.lpszMenuName = MAKEINTRESOURCE(hMenu); wc.lpszClassName = mName; if (!RegisterClass(&wc)) return FALSE; // ウインドウ生成 hWnd = CreateWindowExW( dwExStyle, wc.lpszClassName, // Class mName, // Title bar dwStyle, // Style GetSystemMetrics(SM_CXSCREEN) / 2 - w / 2, GetSystemMetrics(SM_CYSCREEN) / 2 - h / 2, w, // Init. x pos h, // Init. y pos parent, // Parent window NULL, // Menu handle hInstance, // Program handle this // Create parms ); if (!hWnd) return FALSE; // 生成に失敗 // フォントの設定 HDC hdc = GetDC(hWnd); if (hdc) { SetBkMode(hdc, TRANSPARENT); ReleaseDC(hWnd, hdc); } MoveClientWindowCenter(w, h); // ウインドウを表示 if (show) ::ShowWindow(hWnd, SW_SHOW); return TRUE; } /////////////////////////////////////////////////////////////////////////////////// // 明示的にウィンドウを削除する /////////////////////////////////////////////////////////////////////////////////// void CWindow::Delete(void) { if (hWnd) { // 通常のウィンドウなら ::DestroyWindow(hWnd); // 登録したクラス名を解除 UnregisterClassW(mName, hInstance); ZeroMemory(&mName, sizeof(mName)); hWnd = NULL; hInstance = NULL; } } /////////////////////////////////////////////////////////////////////////////////// // カーソルの表示・非表示 /////////////////////////////////////////////////////////////////////////////////// void CWindow::ShowCursor(BOOL bShow) { if (bShow) while (::ShowCursor(TRUE) < 0); else while (::ShowCursor(FALSE) >= 0); } /////////////////////////////////////////////////////////////////////////////////// // ウインドウの表示・非表示 /////////////////////////////////////////////////////////////////////////////////// void CWindow::ShowWindow(BOOL bShow) { // ウインドウの表示 if (bShow) ::ShowWindow(hWnd, SW_SHOW); else ::ShowWindow(hWnd, SW_HIDE); } /////////////////////////////////////////////////////////////////////////////////// // アプリケーションのアイコンの変更 /////////////////////////////////////////////////////////////////////////////////// void CWindow::SetIcon(const WCHAR* icon) { cIconID = icon; } // 特殊メッセージの追加 BOOL CWindow::AddMsgProc(UINT msg, ONCOMMAND proc) { int i; // 既に存在していないかチェック for (i = 0; i < iMsg; i++) { if (mMsg[i].uiMsg == msg) { // あれば新しいアドレスに更新 mMsg[i].cmdProc = proc; return TRUE; } } // 追加 iMsg++; mMsg = (LPONMSG)realloc(mMsg, sizeof(ONMSG) * iMsg); if (mMsg == NULL) { free(mMsg); return FALSE; } ZeroMemory(&mMsg[iMsg - 1], sizeof(ONMSG)); mMsg[iMsg - 1].uiMsg = msg; mMsg[iMsg - 1].cmdProc = proc; return TRUE; } // ウインドウスタイルの変更(動的に変更も可能) BOOL CWindow::SetWindowStyle(DWORD style) { dwStyle = style; if (hWnd) { // すでにウインドウが存在する場合は即反映 ::SetWindowLong(hWnd, GWL_STYLE, style); ::SetWindowPos(hWnd, 0, 0, 0, 0, 0, SWP_FRAMECHANGED | SWP_NOACTIVATE | SWP_NOMOVE | SWP_NOOWNERZORDER | SWP_NOSIZE | SWP_NOZORDER); } return TRUE; } // ウインドウの移動 void CWindow::Move(int x, int y) { SetWindowPos(hWnd, 0, x, y, 0, 0, SWP_NOSIZE | SWP_NOZORDER); } // ウインドウの移動(幅と高さも同時に変更) void CWindow::Move(int x, int y, int w, int h) { MoveWindow(hWnd, x, y, w, h, TRUE); } // 指定サイズがクライアント領域になるようにウインドウを配置 BOOL CWindow::MoveClientWindowCenter(int w, int h) { RECT Win, Cli; GetWindowRect(hWnd, &Win); // ウインドウの左上を取得 GetClientRect(hWnd, &Cli); // ウインドウ内のクライアント座標を取得 int frame_w = (Win.right - Win.left) - Cli.right; // フレームの幅 int frame_h = (Win.bottom - Win.top) - Cli.bottom; // フレームの高さ int scr_w = GetSystemMetrics(SM_CXSCREEN); // スクリーンの幅 int scr_h = GetSystemMetrics(SM_CYSCREEN); // スクリーンの高さ SetWindowPos(hWnd, 0, (scr_w - (frame_w / 2 + w)) / 2, (scr_h - (frame_h / 2 + h)) / 2, w + frame_w, h + frame_h, SWP_NOZORDER); return TRUE; } // メニューアイテムの変更 BOOL CWindow::SetMenuItem(int menuid, BOOL check, BOOL gray) { HMENU menu = GetMenu(hWnd); if (menu) { MENUITEMINFO miinfo; ZeroMemory(&miinfo, sizeof(miinfo)); miinfo.cbSize = sizeof(miinfo); miinfo.fMask = MIIM_STATE; if (check) miinfo.fState |= MFS_CHECKED; else miinfo.fState |= MFS_UNCHECKED; if (gray) miinfo.fState |= MFS_GRAYED; else miinfo.fState |= MFS_ENABLED; return SetMenuItemInfo(menu, menuid, FALSE, &miinfo); } return TRUE; } BOOL CWindow::TextOutW(int x, int y, const WCHAR* str, COLORREF col) { HDC hdc = GetDC(hWnd); if (hdc) { SetTextColor(hdc, col); ::TextOutW(hdc, x, y, str, (int)wcslen(str)); ReleaseDC(hWnd, hdc); } return TRUE; } /////////////////////////////////////////////////////////////////////////////////// // メニューバーの変更(Createの前に必要) /////////////////////////////////////////////////////////////////////////////////// void CWindow::SetMenu(HMENU menu) { hMenu = menu; }
[ "53074461+Taku3939@users.noreply.github.com" ]
53074461+Taku3939@users.noreply.github.com
0c06a6c9e3a4a89db9e7c566268cab241fb05fc7
2bf7a08d3cac39411c52d89514fda014e9228466
/1week_intro/intro/day3/calculation.h
ea7ed7b93e021f7d855d0c1adaae1a9f2d88c21f
[]
no_license
meshidenn/cpp_practice
d5d831c8f29ac7194c48f8b99534c683b2fb31d6
2559c272a92fde5c77468974f72619e162cdc9de
refs/heads/master
2021-09-05T21:04:14.657755
2018-01-31T01:44:35
2018-01-31T01:44:35
114,694,038
0
0
null
null
null
null
UTF-8
C++
false
false
327
h
#ifndef _CALCULATION_H_ #define _CALCULATION_H_ #include <iostream> #include <string> using namespace std; class Calculation{ private: int c_num1; int c_num2; public: void setNumber1(int n); void setNumber2(int n); int getNumber1(); int getNumber2(); int add(); int sub(); }; #endif // Calculation_H
[ "hiroki-iida@mbp-2016-h-iida.local" ]
hiroki-iida@mbp-2016-h-iida.local
843ef0404c6a0041993a3b85e810b5220dcc784b
0889271b6334a92d5062f1bcee2bb1c468be02ff
/threads/system.cc
3b88ca67c9426eb83659c1bfff0421cf12b2e8bb
[ "MIT-Modern-Variant" ]
permissive
MikeXuPku/OSpractice
2b5ae8985ce808c119db7d08cd42323a602e4329
439b265d8ca5517cde4cf1e74d0ed22436de483d
refs/heads/master
2020-04-22T19:25:14.815671
2015-06-02T13:21:49
2015-06-02T13:21:49
34,568,858
0
0
null
null
null
null
UTF-8
C++
false
false
5,830
cc
// system.cc // Nachos initialization and cleanup routines. // // Copyright (c) 1992-1993 The Regents of the University of California. // All rights reserved. See copyright.h for copyright notice and limitation // of liability and disclaimer of warranty provisions. #include "copyright.h" #include "system.h" // This defines *all* of the global data structures used by Nachos. // These are all initialized and de-allocated by this file. Thread *currentThread; // the thread we are running now Thread *threadToBeDestroyed; // the thread that just finished Scheduler *scheduler; // the ready list Interrupt *interrupt; // interrupt status Statistics *stats; // performance metrics Timer *timer; // the hardware timer device, // for invoking context switches Table *thread_slot; #ifdef FILESYS_NEEDED FileSystem *fileSystem; int *referCount; #endif #ifdef FILESYS SynchDisk *synchDisk; #endif #ifdef USER_PROGRAM // requires either FILESYS or FILESYS_STUB Machine *machine; // user program memory and registers #endif #ifdef NETWORK PostOffice *postOffice; #endif // External definition, to allow us to take a pointer to this function extern void Cleanup(); //---------------------------------------------------------------------- // TimerInterruptHandler // Interrupt handler for the timer device. The timer device is // set up to interrupt the CPU periodically (once every TimerTicks). // This routine is called each time there is a timer interrupt, // with interrupts disabled. // // Note that instead of calling Yield() directly (which would // suspend the interrupt handler, not the interrupted thread // which is what we wanted to context switch), we set a flag // so that once the interrupt handler is done, it will appear as // if the interrupted thread called Yield at the point it is // was interrupted. // // "dummy" is because every interrupt handler takes one argument, // whether it needs it or not. //---------------------------------------------------------------------- static void TimerInterruptHandler(int dummy) { if (interrupt->getStatus() != IdleMode) interrupt->YieldOnReturn(); } //---------------------------------------------------------------------- // Initialize // Initialize Nachos global data structures. Interpret command // line arguments in order to determine flags for the initialization. // // "argc" is the number of command line arguments (including the name // of the command) -- ex: "nachos -d +" -> argc = 3 // "argv" is an array of strings, one for each command line argument // ex: "nachos -d +" -> argv = {"nachos", "-d", "+"} //---------------------------------------------------------------------- void Initialize(int argc, char **argv) { int argCount; char* debugArgs = ""; bool randomYield = FALSE; #ifdef USER_PROGRAM bool debugUserProg = FALSE; // single step user program #endif #ifdef FILESYS_NEEDED bool format = FALSE; // format disk referCount = new int [1024]; for(int i = 0;i<1024;++i)referCount[i] = 0; #endif #ifdef NETWORK double rely = 1; // network reliability int netname = 0; // UNIX socket name #endif for (argc--, argv++; argc > 0; argc -= argCount, argv += argCount) { argCount = 1; if (!strcmp(*argv, "-d")) { if (argc == 1) debugArgs = "+"; // turn on all debug flags else { debugArgs = *(argv + 1); argCount = 2; } } else if (!strcmp(*argv, "-rs")) { ASSERT(argc > 1); RandomInit(atoi(*(argv + 1))); // initialize pseudo-random // number generator randomYield = TRUE; argCount = 2; } #ifdef USER_PROGRAM if (!strcmp(*argv, "-s")) debugUserProg = TRUE; #endif #ifdef FILESYS_NEEDED if (!strcmp(*argv, "-f")) format = TRUE; #endif #ifdef NETWORK if (!strcmp(*argv, "-l")) { ASSERT(argc > 1); rely = atof(*(argv + 1)); argCount = 2; } else if (!strcmp(*argv, "-m")) { ASSERT(argc > 1); netname = atoi(*(argv + 1)); argCount = 2; } #endif } DebugInit(debugArgs); // initialize DEBUG messages stats = new Statistics(); // collect statistics interrupt = new Interrupt; // start up interrupt handling scheduler = new Scheduler(); // initialize the ready queue thread_slot = new Table(MAX_THREADS); // initialize the thread_slot if (randomYield) // start the timer (if needed) timer = new Timer(TimerInterruptHandler, 0, randomYield); threadToBeDestroyed = NULL; // We didn't explicitly allocate the current thread we are running in. // But if it ever tries to give up the CPU, we better have a Thread // object to save its state. currentThread = new Thread("main"); currentThread->tid_ = thread_slot->Alloc(currentThread); //main thread allocated in thread_slot currentThread->setStatus(RUNNING); interrupt->Enable(); CallOnUserAbort(Cleanup); // if user hits ctl-C #ifdef USER_PROGRAM machine = new Machine(debugUserProg); // this must come first #endif #ifdef FILESYS synchDisk = new SynchDisk("DISK"); #endif #ifdef FILESYS_NEEDED fileSystem = new FileSystem(format); #endif #ifdef NETWORK postOffice = new PostOffice(netname, rely, 10); #endif } //---------------------------------------------------------------------- // Cleanup // Nachos is halting. De-allocate global data structures. //---------------------------------------------------------------------- void Cleanup() { printf("\nCleaning up...\n"); #ifdef NETWORK delete postOffice; #endif #ifdef USER_PROGRAM delete machine; #endif #ifdef FILESYS_NEEDED delete fileSystem; delete referCount; #endif #ifdef FILESYS delete synchDisk; #endif delete timer; delete scheduler; delete interrupt; delete thread_slot; Exit(0); }
[ "mikepkucs@gmail.com" ]
mikepkucs@gmail.com
d0c397aa99aa53c2180702f58f1d168061a85dc0
cc3444543e771b14a4d71fa4e887c0d3ebf4eb87
/Common/D3DEnum.cpp
37deea64d0e642989bad87217c3d7601fcb29dff
[ "Unlicense" ]
permissive
zetsumi/ATools
12102721ae17c4f11bb4c990645bc5a349812087
4e831b2b05de2c28f27a4fccde6d7e48126fb5c5
refs/heads/master
2023-07-17T11:35:11.208292
2021-05-24T19:57:50
2021-05-24T19:57:50
272,903,560
3
4
Unlicense
2020-06-25T20:00:11
2020-06-17T07:10:43
C++
UTF-8
C++
false
false
16,332
cpp
/////////// // This file is a part of the ATools project // Some parts of code are the property of Microsoft, Qt or Aeonsoft // The rest is released without license and without any warranty /////////// #include <stdafx.h> #include "D3DEnum.h" using namespace D3D; bool DeviceCombo::SupportsMultiSampleType(D3DMULTISAMPLE_TYPE multisamples) { if (MSTypes.Find(multisamples) == -1) return false; DSMSConflict c; if (DSFormats.Find(D3DFMT_D24X8) != -1) c.fmt = D3DFMT_D24X8; else if (DSFormats.Find(D3DFMT_D16) != -1) c.fmt = D3DFMT_D16; else c.fmt = (D3DFORMAT)DSFormats[DSFormats.Length() - 1]; c.mst = multisamples; return DSMSConflicts.Find(c) == -1; } //----------------------------------------------------------------------------- // SortModesCallback(): sort callback comparing two D3DDISPLAYMODEs //----------------------------------------------------------------------------- static int __cdecl SortModesCallback(const void* arg1, const void* arg2) { D3DDISPLAYMODE* pdm1 = (D3DDISPLAYMODE*)arg1; D3DDISPLAYMODE* pdm2 = (D3DDISPLAYMODE*)arg2; // the wider display modes sink down, the thinner bubble up if (pdm1->Width > pdm2->Width) return +1; if (pdm1->Width < pdm2->Width) return -1; // the taller display modes sink down, the shorter bubble up if (pdm1->Height > pdm2->Height) return +1; if (pdm1->Height < pdm2->Height) return -1; // the more colorful display modes sink down if (RGBBITS(pdm1->Format) > RGBBITS(pdm2->Format)) return +1; if (RGBBITS(pdm1->Format) < RGBBITS(pdm2->Format)) return -1; // the faster display modes sink down if (pdm1->RefreshRate > pdm2->RefreshRate) return +1; if (pdm1->RefreshRate < pdm2->RefreshRate) return -1; // the two display modes are identical return 0; } //----------------------------------------------------------------------------- // CEnum(): constructor, sets up app constraints //----------------------------------------------------------------------------- CEnum::CEnum() { AppMinFullscreenWidth = 640; AppMinFullscreenHeight = 480; AppMinRGBBits = 5; AppMinAlphaBits = 0; AppMinDepthBits = 15; AppMinStencilBits = 0; AppUsesDepthBuffer = true; AppUsesMixedVP = true; // we will allow every possible display mode format by default; // they indicate how many bits are dedicated to each channel (Alpha, Red, // Green and Blue), with X standing for unused. // take care to maintain consistency between the format list and the // 'AppMinRGBBits' and 'AppMinAlphaBits' constraints above. // Also notice the 10-bit format is only available in fullscreen modes. AppDisplayFormats.Append(D3DFMT_R5G6B5); // 16-bit, 6 for green AppDisplayFormats.Append(D3DFMT_X1R5G5B5); // 16-bit, 5 per channel AppDisplayFormats.Append(D3DFMT_A1R5G5B5); // 16-bit, 1 for alpha AppDisplayFormats.Append(D3DFMT_X8R8G8B8); // 32-bit, 8 per channel AppDisplayFormats.Append(D3DFMT_A8R8G8B8); // 32-bit, 8 for alpha AppDisplayFormats.Append(D3DFMT_A2R10G10B10); // 32-bit, 2 for alpha // we will allow every backbuffer format by default AppBackBufferFormats.Append(D3DFMT_R5G6B5); AppBackBufferFormats.Append(D3DFMT_X1R5G5B5); AppBackBufferFormats.Append(D3DFMT_A1R5G5B5); AppBackBufferFormats.Append(D3DFMT_X8R8G8B8); AppBackBufferFormats.Append(D3DFMT_A8R8G8B8); AppBackBufferFormats.Append(D3DFMT_A2R10G10B10); // we will allow every depth/stencil format by default; obviously, D is // for depth S for stencil, and X unused. AppDepthStencilFormats.Append(D3DFMT_D16); AppDepthStencilFormats.Append(D3DFMT_D15S1); AppDepthStencilFormats.Append(D3DFMT_D24X8); AppDepthStencilFormats.Append(D3DFMT_D24X4S4); AppDepthStencilFormats.Append(D3DFMT_D24S8); AppDepthStencilFormats.Append(D3DFMT_D32); // we will allow every multisampling type by default, even the nonmaskable, // to enable the quality levels AppMultiSamplingTypes.Append(D3DMULTISAMPLE_NONE); AppMultiSamplingTypes.Append(D3DMULTISAMPLE_NONMASKABLE); AppMultiSamplingTypes.Append(D3DMULTISAMPLE_2_SAMPLES); AppMultiSamplingTypes.Append(D3DMULTISAMPLE_3_SAMPLES); AppMultiSamplingTypes.Append(D3DMULTISAMPLE_4_SAMPLES); AppMultiSamplingTypes.Append(D3DMULTISAMPLE_5_SAMPLES); AppMultiSamplingTypes.Append(D3DMULTISAMPLE_6_SAMPLES); AppMultiSamplingTypes.Append(D3DMULTISAMPLE_7_SAMPLES); AppMultiSamplingTypes.Append(D3DMULTISAMPLE_8_SAMPLES); AppMultiSamplingTypes.Append(D3DMULTISAMPLE_9_SAMPLES); AppMultiSamplingTypes.Append(D3DMULTISAMPLE_10_SAMPLES); AppMultiSamplingTypes.Append(D3DMULTISAMPLE_11_SAMPLES); AppMultiSamplingTypes.Append(D3DMULTISAMPLE_12_SAMPLES); AppMultiSamplingTypes.Append(D3DMULTISAMPLE_13_SAMPLES); AppMultiSamplingTypes.Append(D3DMULTISAMPLE_14_SAMPLES); AppMultiSamplingTypes.Append(D3DMULTISAMPLE_15_SAMPLES); AppMultiSamplingTypes.Append(D3DMULTISAMPLE_16_SAMPLES); } //----------------------------------------------------------------------------- // EnumerateDSFormats(): add depth/stencil formats compatible with the device // and the app to the given device combo //----------------------------------------------------------------------------- void CEnum::EnumerateDSFormats(DeviceCombo* pdc) { D3DFORMAT fmt; // traverse the app defined depth/stencil formats for (UINT i = 0; i < AppDepthStencilFormats.Length(); i++) { fmt = (D3DFORMAT)AppDepthStencilFormats[i]; // check the format against app requirements if (DEPTHBITS(fmt) < AppMinDepthBits) continue; if (STENCILBITS(fmt) < AppMinStencilBits) continue; // is the format available for a depth/stencil surface resource on // this device? if (FAILED(m_pd3d->CheckDeviceFormat(pdc->AdapterOrdinal, pdc->DevType, pdc->DisplayFormat, D3DUSAGE_DEPTHSTENCIL, D3DRTYPE_SURFACE, fmt))) continue; // does it match both the display and back buffer formats? if (FAILED(m_pd3d->CheckDepthStencilMatch(pdc->AdapterOrdinal, pdc->DevType, pdc->DisplayFormat, pdc->BackBufferFormat, fmt))) continue; // yes, yes! pdc->DSFormats.Append(fmt); } } //----------------------------------------------------------------------------- // EnumerateMSTypes(): add multisample types that are compatible with the // device and the app to the given device combo //----------------------------------------------------------------------------- void CEnum::EnumerateMSTypes(DeviceCombo* pdc) { D3DMULTISAMPLE_TYPE msType; DWORD msQuality; // traverse the types and check for support for (UINT i = 0; i < AppMultiSamplingTypes.Length(); i++) { msType = (D3DMULTISAMPLE_TYPE)AppMultiSamplingTypes[i]; if (FAILED(m_pd3d->CheckDeviceMultiSampleType(pdc->AdapterOrdinal, pdc->DevType, pdc->BackBufferFormat, pdc->Windowed, msType, &msQuality))) continue; // supported pdc->MSTypes.Append(msType); // important! presentation parameters quality levels are zero-based, // and the API call returns the number of levels, so we will store // the maximum value that can be used in other Direct3D API calls, // i.o., the number of levels. Also notice that both these lists must // always be accessed with indices in synch. if (msQuality != 0) msQuality -= 1; pdc->MSQualityLevels.Append(msQuality); } } //----------------------------------------------------------------------------- // EnumerateDSMSConflicts(): find any conflicts between the depth/stencil // formats and multisample types in the given device combo //----------------------------------------------------------------------------- void CEnum::EnumerateDSMSConflicts(DeviceCombo* pdc) { DSMSConflict con; D3DFORMAT fmt; D3DMULTISAMPLE_TYPE mst; // traverse formats for (UINT i = 0; i < pdc->DSFormats.Length(); i++) { fmt = (D3DFORMAT)pdc->DSFormats[i]; // check against multisample types for (UINT j = 0; j < pdc->MSTypes.Length(); j++) { mst = (D3DMULTISAMPLE_TYPE)pdc->MSTypes[j]; // failure to support the combination indicates a conflict; save it if (FAILED(m_pd3d->CheckDeviceMultiSampleType(pdc->AdapterOrdinal, pdc->DevType, fmt, pdc->Windowed, mst, NULL))) { con.fmt = fmt; con.mst = mst; pdc->DSMSConflicts.Append(con); } } } } //----------------------------------------------------------------------------- // EnumerateVPTypes(): add vertex processing types that are compatible with the // device and the app to the given device combo //----------------------------------------------------------------------------- void CEnum::EnumerateVPTypes(DeviceInfo* pdi, DeviceCombo* pdc) { // by default, every VP type is allowed, even the mixed one; your // application may have different requirements, i.e. the need for // a pure hardware device to test a graphics card... if ((pdi->Caps.DevCaps & D3DDEVCAPS_HWTRANSFORMANDLIGHT) != 0 && pdi->Caps.VertexShaderVersion >= D3DVS_VERSION(1, 1)) { if ((pdi->Caps.DevCaps & D3DDEVCAPS_PUREDEVICE) != 0) pdc->VPTypes.Append(PURE_VP); pdc->VPTypes.Append(HARD_VP); if (AppUsesMixedVP) pdc->VPTypes.Append(MIXD_VP); } pdc->VPTypes.Append(SOFT_VP); } //----------------------------------------------------------------------------- // EnumeratePIntervals(): query device caps to add the presentation intervals // that may deal with flicker or other artifacts. //----------------------------------------------------------------------------- void CEnum::EnumeratePIntervals(DeviceInfo* pdi, DeviceCombo* pdc) { // the default interval (the same as D3DPRESENT_INTERVAL_ONE) is always // available; we will put it at the top, to avoid mouse flicker in windowed //apps pdc->PresentIntervals.Append(D3DPRESENT_INTERVAL_DEFAULT); // the immediate interval is always available, but is worth checking... if ((pdi->Caps.PresentationIntervals & D3DPRESENT_INTERVAL_IMMEDIATE) != 0) pdc->PresentIntervals.Append(D3DPRESENT_INTERVAL_IMMEDIATE); // the rest are truly hardware-dependant if ((pdi->Caps.PresentationIntervals & D3DPRESENT_INTERVAL_TWO) != 0) pdc->PresentIntervals.Append(D3DPRESENT_INTERVAL_TWO); if ((pdi->Caps.PresentationIntervals & D3DPRESENT_INTERVAL_THREE) != 0) pdc->PresentIntervals.Append(D3DPRESENT_INTERVAL_THREE); if ((pdi->Caps.PresentationIntervals & D3DPRESENT_INTERVAL_FOUR) != 0) pdc->PresentIntervals.Append(D3DPRESENT_INTERVAL_FOUR); } //----------------------------------------------------------------------------- // EnumerateDeviceCombos(): for a particular device //----------------------------------------------------------------------------- HRESULT CEnum::EnumerateDeviceCombos(DeviceInfo* pdi, DWORDARRAY* pDisplayFormats) { D3DFORMAT fmt; D3DFORMAT bbfmt; // traverse the passed-in display formats for (UINT i = 0; i < pDisplayFormats->Length(); i++) { fmt = (D3DFORMAT)(*pDisplayFormats)[i]; // traverse the app allowed backbuffer formats for (UINT j = 0; j < AppBackBufferFormats.Length(); j++) { bbfmt = (D3DFORMAT)AppBackBufferFormats[j]; // check each against the app constraint if (ALPHABITS(bbfmt) < AppMinAlphaBits) continue; // we'll check if the device supports a display mode-backbuffer // formats combination, once for windowed display modes, // once for fullscreen modes for (UINT k = 0; k < 2; k++) { // check for system support if (FAILED(m_pd3d->CheckDeviceType(pdi->AdapterOrdinal, pdi->DevType, fmt, bbfmt, k % 2 == 0))) continue; // at this point we have a DeviceCombo supported by the system, // but we still need to confirm that it is compatible with // other app constraints; we'll fill in a device combo with // what we know so far DeviceCombo dc; dc.Windowed = k % 2 == 0; dc.AdapterOrdinal = pdi->AdapterOrdinal; dc.DevType = pdi->DevType; dc.DisplayFormat = fmt; dc.BackBufferFormat = bbfmt; // enumerate VP types (software VP should always be available) EnumerateVPTypes(pdi, &dc); // enumerate presentation intervals (the default should always // be available) EnumeratePIntervals(pdi, &dc); // check for multisampling requirements EnumerateMSTypes(&dc); if (dc.MSTypes.Length() == 0) continue; // check the depth/stencil requirements if (AppUsesDepthBuffer) { EnumerateDSFormats(&dc); if (dc.DSFormats.Length() == 0) continue; // gather depth/stecil-multisampling conflicts EnumerateDSMSConflicts(&dc); } // met every requirement! pdi->DeviceCombos.Append(dc); } } } return S_OK; } //----------------------------------------------------------------------------- // EnumerateDevices(): Enumerates D3D devices for a particular adapter //----------------------------------------------------------------------------- HRESULT CEnum::EnumerateDevices(AdapterInfo* pai, DWORDARRAY* pDisplayFormats) { HRESULT hr; DeviceInfo di; // traverse the device types, there are only three, namely, a HAL device, a // reference device and a software device, defined by the D3DDEVTYPE enum // with values 1, 2 and 3 respectively for (UINT i = 1; i < 4; i++) { // save members of this device info di.AdapterOrdinal = pai->AdapterOrdinal; di.DevType = (D3DDEVTYPE)i; // retrieve and store device capabilities in this device // info for inspection later if (FAILED(m_pd3d->GetDeviceCaps(di.AdapterOrdinal, di.DevType, &di.Caps))) continue; // get info for each device combo on this device info if (FAILED(hr = EnumerateDeviceCombos(&di, pDisplayFormats))) return hr; if (di.DeviceCombos.Length() == 0) continue; // if at least one device combo for this device was found, // add it to the corresponding list pai->DeviceInfos.Append(di); } return S_OK; } //----------------------------------------------------------------------------- // Enumerate(): available D3D adapters, devices, modes, etc. for the passed-in // D3D object, a reference to which is mantained by the class. //----------------------------------------------------------------------------- bool CEnum::Enumerate(LPDIRECT3D9 pD3D) { // we need a valid D3D object to continue if (pD3D == NULL) return false; // keep a local reference to it m_pd3d = pD3D; HRESULT hr; AdapterInfo ai; DWORDARRAY formats; // traverse adapters (usually just one) for (UINT i = 0; i < m_pd3d->GetAdapterCount(); i++) { // identify this adapter (retrieve and store a description) ai.AdapterOrdinal = i; m_pd3d->GetAdapterIdentifier(i, 0, &ai.AdapterIdentifier); D3DFORMAT fmt; D3DDISPLAYMODE dm; // we will check adapter modes for compatibility with each of the // app defined display formats, resolution and color depth, // setup in the constructor for (UINT j = 0; j < AppDisplayFormats.Length(); j++) { // get one of the application defined formats fmt = (D3DFORMAT)AppDisplayFormats[j]; // get a list of modes for this adapter that support it for (UINT k = 0; k < m_pd3d->GetAdapterModeCount(i, fmt); k++) { // retrieve a display mode with an enumeration call m_pd3d->EnumAdapterModes(i, fmt, k, &dm); // check the display mode for resolution, color and // alpha bit depth if (dm.Width < AppMinFullscreenWidth || dm.Height < AppMinFullscreenHeight || RGBBITS(dm.Format) < AppMinRGBBits || ALPHABITS(dm.Format) < AppMinAlphaBits) continue; // it meets the requirements, so the current adapter info // inherits it, for it is compatible with the app ai.DisplayModes.Append(dm); // append the format to the temp list that we'll use to // enumerate devices, if not already there if (formats.Find(dm.Format) == -1) formats.Append(dm.Format); } } // sort the display modes list so that the smallest and fastest // gets to the top of the list (see SortModesCallback) ai.DisplayModes.Sort(SortModesCallback); // get info for each device on this adapter, providing the formats // that met the application requirements if (FAILED(hr = EnumerateDevices(&ai, &formats))) { qCritical("Can't enumerate Direct3D devices."); return false; } // if at least one device on this adapter is available and compatible // with the app, add the adapterInfo to the list if (ai.DeviceInfos.Length() != 0) AdapterInfos.Append(ai); // clear the format list for the next adapter formats.Clear(); } return true; }
[ "loicsaos@gmail.com" ]
loicsaos@gmail.com
9cf7bd8d613d24f027e6f7943c67162503616f84
2dcad0f53d080ea354a8dbe7a7a7c441af80b460
/Icelos/include/icelos_engine.hpp
73affad6ab97d38ab4819009cf113a4712facae5
[]
no_license
dxcloud/project-c
77d2d7b8519499b675e470a5f0151084d4da03aa
b2883aecda5d6518a3d471529b631259de1ff9cb
refs/heads/master
2021-01-23T08:15:19.296423
2014-07-04T15:35:28
2014-07-04T15:35:28
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,471
hpp
//////////////////////////////////////////////////////////////////////////////// /// @file icelos_engine.hpp /// @brief Provides Engine class. /// @date 2014-05-14 /// @version 0.1 (alpha) /// @author Chengwu Huang <chengwhuang@gmail.com> //////////////////////////////////////////////////////////////////////////////// #ifndef ICELOS_ENGINE_HPP #define ICELOS_ENGINE_HPP // icelos include #include <icelos_type.hpp> namespace icelos { class InputManager; /// @class Engine /// @brief The Engine class manages the application's control flow. /// @details /// The following example shows the minimum lines needed to run /// an application. /// @code /// int main(int argc, char* argv[]) /// { /// icelos::Engine app(argc, argv); /// return app.run(); /// } /// @endcode class Engine { public: /// @brief Public default constructor. Engine(); /// @brief Public override constructor. Engine(int argc, char* argv[]); /// @brief Public destructor. ~Engine(); /// @brief Start engine. /// @return Status code. /// - @b STATUS_SUCCESS /// - @b STATUS_ERROR status_t run(); private: /// @brief Initialize engine. status_t initialize(); /// @brief Cleanup void cleanup(); /// @brief Start game loop void game_loop(); public: /// @brief Static method static void quit(); private: static state_t m_engine_state; int m_argc; char** m_argv; }; } #endif // ICELOS_ENGINE_HPP
[ "chengwhuang@gmail.com" ]
chengwhuang@gmail.com
1adc10cc2da6eebdf2ff526410ec7428ff213cdb
84ff9d3de0cb8041e5f7e0e4826704ac89a6b1f5
/include/trm/complex.h
a48cf7e848c1223d35fdd62131544e629cbbbab8
[]
no_license
trmrsh/cpp-subs
927c1f969a1021a9446b06b6882df0faf450bbb3
af93d2c33b5ee797535c790844586c12a9a41f2a
refs/heads/master
2021-05-02T07:57:16.293461
2019-01-11T22:49:01
2019-01-11T22:49:01
11,352,292
0
0
null
null
null
null
UTF-8
C++
false
false
1,016
h
#include "trm/subs.h" namespace Subs { /** Class representing complex numbers */ class Complex { public: //! Default constructor. No initialisation Complex() : real_(), imag_() {} //! Sets complex number from a pure real number Complex(double real) : real_(real), imag_(0.) {} //! General constructor Complex(double real, double imag) : real_(real), imag_(imag) {} //! Modulus of a complex number double modulus() const {return sqrt(sqr(real_) + sqr(imag_));} double real() const {return real_;} double imag() const {return imag_;} //! Multiplication in place void operator*=(const Complex& c){ real_ = real_*c.real_ - imag_*c.imag_; imag_ = real_*c.imag_ + imag_*c.real_; } //! Multiplication in place void operator*=(double c){ real_ = real_*c; imag_ = imag_*c; } friend Complex operator*(const Complex& c1, const Complex& c2); private: double real_; double imag_; }; Complex operator*(const Complex& c1, const Complex& c2); };
[ "t.r.marsh@warwick.ac.uk" ]
t.r.marsh@warwick.ac.uk
d7dac169ab8a578f0145525d1321c1944dc590a6
08a3abfcb7395b67b745807e264e03630c3356fe
/BattleTanks/Source/BattleTanks/Private/Projectile.cpp
e49d03bfe7c57d26d9f426293477e49ce4b77b0d
[]
no_license
ronman234/Battle_Tanks
5735f3b6bf0b3a92b525fadba345b9be9fda48cd
adaf0ffcc2ca14c4967f33b37b6b4641158e75ca
refs/heads/master
2020-03-22T13:46:42.802825
2018-08-16T21:55:33
2018-08-16T21:55:33
140,131,203
0
0
null
null
null
null
UTF-8
C++
false
false
2,390
cpp
// Fill out your copyright notice in the Description page of Project Settings. #include "Projectile.h" // Sets default values AProjectile::AProjectile() { // Set this actor to call Tick() every frame. You can turn this off to improve performance if you don't need it. PrimaryActorTick.bCanEverTick = false; CollisionMesh = CreateDefaultSubobject<UStaticMeshComponent>(FName("Collision Mesh")); SetRootComponent(CollisionMesh); CollisionMesh->SetNotifyRigidBodyCollision(true); CollisionMesh->SetVisibility(false); LaunchBlast = CreateDefaultSubobject<UParticleSystemComponent>(FName("Launch Blast")); LaunchBlast->AttachToComponent(RootComponent, FAttachmentTransformRules::KeepRelativeTransform); ProjectileMovement = CreateDefaultSubobject<UProjectileMovementComponent>(FName("Projectile Movement Component")); ProjectileMovement->bAutoActivate = false; ImpactBlast = CreateDefaultSubobject<UParticleSystemComponent>(FName("Impact Blast")); ImpactBlast->AttachToComponent(RootComponent, FAttachmentTransformRules::KeepRelativeTransform); ImpactBlast->bAutoActivate = false; ExplosionForce = CreateDefaultSubobject<URadialForceComponent>(FName("Explosion Force")); ExplosionForce->AttachToComponent(RootComponent, FAttachmentTransformRules::KeepRelativeTransform); } // Called when the game starts or when spawned void AProjectile::BeginPlay() { Super::BeginPlay(); CollisionMesh->OnComponentHit.AddDynamic(this, &AProjectile::OnHit); } // Called every frame void AProjectile::Tick(float DeltaTime) { Super::Tick(DeltaTime); } void AProjectile::LaunchProjectile(float LaunchSpeed) { ProjectileMovement->SetVelocityInLocalSpace(FVector::ForwardVector * LaunchSpeed); ProjectileMovement->Activate(); } void AProjectile::OnHit(UPrimitiveComponent* HitComponent, AActor* OtherActor, UPrimitiveComponent* OtherComponent, FVector NormalImpulse, const FHitResult& Hit) { LaunchBlast->Deactivate(); ImpactBlast->Activate(); ExplosionForce->FireImpulse(); SetRootComponent(ImpactBlast); CollisionMesh->DestroyComponent(); UGameplayStatics::ApplyRadialDamage(this, ProjectileDamage, GetActorLocation(), ExplosionForce->Radius, UDamageType::StaticClass(), TArray<AActor*>()); FTimerHandle Timer; GetWorld()->GetTimerManager().SetTimer(Timer, this, &AProjectile::OnTimerExpire, DestroyDelay, false); } void AProjectile::OnTimerExpire() { Destroy(); }
[ "rgoennier@gmail.com" ]
rgoennier@gmail.com
b0bfa1bc8afc5fcef2c7163a718c179d39897060
0cf886b9cc9b6af538cfbb08e0dc495ea342762c
/game/src/XDButton.cpp
8ad4c59260bde326eb95d64fd5d992e840fe3866
[]
no_license
xedixermawan/proximity-game-clone2-dx
3bfd584e552188b773148276e5386f1cd9597ecb
a4149241e381b4fc4b22e183634da4575cacaba9
refs/heads/master
2021-01-18T18:35:01.321364
2014-05-13T07:17:40
2014-05-13T07:17:40
32,908,322
0
0
null
null
null
null
UTF-8
C++
false
false
2,669
cpp
/* * (c) 2013-2014 XediXermawan < edi.ermawan@gmail.com > */ #include "pch.h" #include "XDButton.h" #include "XDGameState.h" extern XDSystem* debugSystemPtr; #include "XDChecker.h" #include "XDFuncUtils.h" namespace gui { Button::Button(const std::shared_ptr< XDSprite >& sharedptrSpr) :ElementBase(sharedptrSpr) { m_Anim->SetAnimLoop(XDAnimObject::ANIMLOOP::ONCE); m_Anim->ShowAfterFinish(true); m_FrameHover = 1; m_HoverState = 0; m_ClickedState= 0; } Button::Button() : ElementBase(nullptr) { m_HoverState = 0; m_ClickedState= 0; } Button::~Button() { } bool Button::IsIntersect(const int& posx, const int& posy) { if( ( posx > m_PosX ) && ( posx < (m_PosX + m_Width) ) && ( posy > m_PosY ) && ( posy < (m_PosY + m_Height)) ) { XDChecker::Console(" inside "); return true; } return false; } void Button::OnClicked(const int& posx, const int& posy) { if( IsIntersect(posx,posy) ) { if( m_CallBackFunction ) m_CallBackFunction(this); m_ClickedState=1; } } void Button::OnClickReleased(const int& posx, const int& posy) { if( IsIntersect(posx,posy) ) { m_ClickedState=1; } } void Button::OnHover(const int& posx, const int& posy) { if( IsIntersect(posx,posy) ) { m_Anim->SetFinishFrame(m_FrameHover); m_HoverState=1; } else { m_Anim->SetFinishFrame(0); m_HoverState=0; } } void Button::Render() { //m_Anim->Render(); if( m_HoverState ) { debugSystemPtr->Renderer->DrawRect( XMFLOAT2(m_PosX-4,m_PosY-4),XMFLOAT2(m_Width+8,m_Height+8) ); } else { debugSystemPtr->Renderer->DrawRect( XMFLOAT2(m_PosX,m_PosY),XMFLOAT2(m_Width,m_Height) ); } if(m_ClickedState>0 && m_ClickedState < 20) { int r_v = RandomRange(2,20); debugSystemPtr->Renderer->DrawRect( XMFLOAT2(m_PosX-r_v,m_PosY-r_v),XMFLOAT2(m_Width+2*r_v,m_Height+2*r_v) ); m_ClickedState++; } } void Button::Update(const double delta_time) { //m_Anim->Update(delta_time); } int Button::GetUID() { return 0; // todo } void Button::SetPos(int vposx,int vposy) { m_PosX = vposx; m_PosY = vposy; m_Anim->SetPos(vposx,vposy); } void Button::GetWidthHeight(int& gwidth, int& gheight ) { gwidth = m_Width; gheight = m_Height; } void Button::SetWidthHeight(int gwidth, int gheight ) { m_Width = gwidth; m_Height = gheight; } void Button::SetCallBack(std::function< void(void* sender) >& function) { m_CallBackFunction = function; } }
[ "edi.ermawan@gmail.com@46f14409-37b9-1770-7b49-ba1cd2439d2f" ]
edi.ermawan@gmail.com@46f14409-37b9-1770-7b49-ba1cd2439d2f
b5db5cf9a62bd5e67c8acc5e482f93628ee467be
b013562927e347376bfd43b57be229fda60cb607
/ax_core/src/math/axMatrix4x4.cpp
a2bee9891f73ca4e5df8ba0fbd28c5c37d6fbac0
[]
no_license
Jasonchan35/libax
82102e2b2fa577f333815f99709ebbb9250ec9f5
931f18f8baf46b1e7087ea93a5f0c2ee667a540c
refs/heads/master
2021-05-04T10:02:13.008748
2018-06-23T16:48:21
2018-06-23T16:48:21
46,000,639
1
0
null
null
null
null
UTF-8
C++
false
false
13,065
cpp
/* * axMatrix4x4f.cpp * * Created by jason on 04/Apr/2006. * Copyright 2006 __MyCompanyName__. All rights reserved. * */ #include <ax/core/math/axMatrix4x4.h> #include <ax/core/math/axEulerRotation3.h> #include <ax/core/math/axQuaternion.h> template<> const axMatrix4x4f axMatrix4x4f::kIdentity( 1,0,0,0, 0,1,0,0, 0,0,1,0, 0,0,0,1 ); template<> const axMatrix4x4d axMatrix4x4d::kIdentity( 1,0,0,0, 0,1,0,0, 0,0,1,0, 0,0,0,1); template<class T> void axMatrix4x4<T>::rotate ( const axEulerRotation3<T> &er ) { operator*=( er.to_Matrix4() ); } template<class T> void axMatrix4x4<T>::rotate ( const axQuaternion<T> &qu ) { operator*=( qu.to_Matrix4() ); } template<class T> axMatrix4x4<T> axMatrix4x4<T>::inverse() const { T wtmp[4][8]; T m0, m1, m2, m3, s; T *r0, *r1, *r2, *r3; r0 = wtmp[0], r1 = wtmp[1], r2 = wtmp[2], r3 = wtmp[3]; r0[0] = e(0,0); r0[1] = e(0,1); r0[2] = e(0,2); r0[3] = e(0,3); r0[4] = 1.0; r0[5] = r0[6] = r0[7] = 0.0; r1[0] = e(1,0); r1[1] = e(1,1); r1[2] = e(1,2); r1[3] = e(1,3); r1[5] = 1.0; r1[4] = r1[6] = r1[7] = 0.0; r2[0] = e(2,0); r2[1] = e(2,1); r2[2] = e(2,2); r2[3] = e(2,3); r2[6] = 1.0; r2[4] = r2[5] = r2[7] = 0.0; r3[0] = e(3,0); r3[1] = e(3,1); r3[2] = e(3,2); r3[3] = e(3,3); r3[7] = 1.0; r3[4] = r3[5] = r3[6] = 0.0; /* choose pivot - or die */ if ( ax_abs(r3[0]) > ax_abs(r2[0]) ) ax_swap(r3, r2); if ( ax_abs(r2[0]) > ax_abs(r1[0]) ) ax_swap(r2, r1); if ( ax_abs(r1[0]) > ax_abs(r0[0]) ) ax_swap(r1, r0); if ( 0.0 == r0[0] ) return kIdentity; /* eliminate first variable */ m1 = r1[0] / r0[0]; m2 = r2[0] / r0[0]; m3 = r3[0] / r0[0]; s = r0[1]; r1[1] -= m1 * s; r2[1] -= m2 * s; r3[1] -= m3 * s; s = r0[2]; r1[2] -= m1 * s; r2[2] -= m2 * s; r3[2] -= m3 * s; s = r0[3]; r1[3] -= m1 * s; r2[3] -= m2 * s; r3[3] -= m3 * s; s = r0[4]; if (s != 0.0) { r1[4] -= m1 * s; r2[4] -= m2 * s; r3[4] -= m3 * s; } s = r0[5]; if (s != 0.0) { r1[5] -= m1 * s; r2[5] -= m2 * s; r3[5] -= m3 * s; } s = r0[6]; if (s != 0.0) { r1[6] -= m1 * s; r2[6] -= m2 * s; r3[6] -= m3 * s; } s = r0[7]; if (s != 0.0) { r1[7] -= m1 * s; r2[7] -= m2 * s; r3[7] -= m3 * s; } /* choose pivot - or die */ if ( ax_abs(r3[1]) > ax_abs(r2[1]) ) ax_swap(r3, r2); if ( ax_abs(r2[1]) > ax_abs(r1[1]) ) ax_swap(r2, r1); if (0.0 == r1[1]) return kIdentity; /* eliminate second variable */ m2 = r2[1]/r1[1]; m3 = r3[1]/r1[1]; r2[2] -= m2 * r1[2]; r3[2] -= m3 * r1[2]; r2[3] -= m2 * r1[3]; r3[3] -= m3 * r1[3]; s = r1[4]; if (0.0 != s) { r2[4] -= m2 * s; r3[4] -= m3 * s; } s = r1[5]; if (0.0 != s) { r2[5] -= m2 * s; r3[5] -= m3 * s; } s = r1[6]; if (0.0 != s) { r2[6] -= m2 * s; r3[6] -= m3 * s; } s = r1[7]; if (0.0 != s) { r2[7] -= m2 * s; r3[7] -= m3 * s; } /* choose pivot - or die */ if ( ax_abs(r3[2]) > ax_abs(r2[2]) ) ax_swap(r3, r2); if (0.0 == r2[2]) return kIdentity; /* eliminate third variable */ m3 = r3[2]/r2[2]; r3[3] -= m3 * r2[3]; r3[4] -= m3 * r2[4], r3[5] -= m3 * r2[5]; r3[6] -= m3 * r2[6], r3[7] -= m3 * r2[7]; /* last check */ if (0.0 == r3[3]) return kIdentity; s = 1.0f/r3[3]; /* now back substitute row 3 */ r3[4] *= s; r3[5] *= s; r3[6] *= s; r3[7] *= s; m2 = r2[3]; /* now back substitute row 2 */ s = 1.0f/r2[2]; r2[4] = s * (r2[4] - r3[4] * m2), r2[5] = s * (r2[5] - r3[5] * m2), r2[6] = s * (r2[6] - r3[6] * m2), r2[7] = s * (r2[7] - r3[7] * m2); m1 = r1[3]; r1[4] -= r3[4] * m1; r1[5] -= r3[5] * m1; r1[6] -= r3[6] * m1; r1[7] -= r3[7] * m1; m0 = r0[3]; r0[4] -= r3[4] * m0; r0[5] -= r3[5] * m0; r0[6] -= r3[6] * m0; r0[7] -= r3[7] * m0; m1 = r1[2]; /* now back substitute row 1 */ s = 1.0f/r1[1]; r1[4] = s * (r1[4] - r2[4] * m1); r1[5] = s * (r1[5] - r2[5] * m1); r1[6] = s * (r1[6] - r2[6] * m1); r1[7] = s * (r1[7] - r2[7] * m1); m0 = r0[2]; r0[4] -= r2[4] * m0; r0[5] -= r2[5] * m0; r0[6] -= r2[6] * m0; r0[7] -= r2[7] * m0; m0 = r0[1]; /* now back substitute row 0 */ s = 1.0f/r0[0]; r0[4] = s * (r0[4] - r1[4] * m0); r0[5] = s * (r0[5] - r1[5] * m0); r0[6] = s * (r0[6] - r1[6] * m0); r0[7] = s * (r0[7] - r1[7] * m0); return axMatrix4x4( r0[4], r0[5], r0[6], r0[7], r1[4], r1[5], r1[6], r1[7], r2[4], r2[5], r2[6], r2[7], r3[4], r3[5], r3[6], r3[7] ); } template<class T> void axMatrix4x4<T>::setAimZ_UpY ( const axVec3<T> &eye, const axVec3<T> &aim, const axVec3<T> &up, bool neg_z_aim ) { axVec3<T> f = ( eye - aim ).normalize(); if( neg_z_aim ) f = -f; axVec3<T> s = f.cross(up).normalize(); axVec3<T> u = s.cross(f); cx.set( s.x, s.y, s.z, 0.0 ); cy.set( u.x, u.y, u.z, 0.0 ); cz.set( f.x, f.y, f.z, 0.0 ); cw.set( eye, 1 ); } template<class T> void axMatrix4x4<T>::setLookAt ( const axVec3<T> &eye, const axVec3<T> &aim, const axVec3<T> &up ) { axVec3<T> f = ( aim - eye ).normalize(); axVec3<T> s = f.cross(up).normalize(); axVec3<T> u = s.cross(f); cx.set( s.x, u.x, -f.x, 0.0 ); cy.set( s.y, u.y, -f.y, 0.0 ); cz.set( s.z, u.z, -f.z, 0.0 ); cw.set( 0, 0, 0, 1 ); translate( -eye ); } template<class T> void axMatrix4x4<T>::setOrtho( T left, T right, T bottom, T top, T zNear, T zFar ) { T w = right - left; T h = top - bottom; T d = zFar - zNear; if( w == 0 || h == 0 || d == 0 ) { setIdentity(); }else{ set( 2/w, 0, 0, 0, 0, 2/h, 0, 0, 0, 0, -2/d, 0, -(right+left) / w, -(top+bottom) / h, -(zFar+zNear ) / d, 1 ); } } template<class T> void axMatrix4x4<T>::setPerspective( T fovy_rad, T aspect, T zNear, T zFar ) { T s, c, deltaZ; T fov = fovy_rad / 2; deltaZ = zFar - zNear; s = sin( fov ); if ((deltaZ == 0) || (s == 0) || (aspect == 0)) { setIdentity(); return; } c = cos(fov) / s; cx.set( c / aspect, 0, 0, 0 ); cy.set( 0, c, 0, 0 ); cz.set( 0, 0, -(zFar + zNear) / deltaZ, -1 ); cw.set( 0, 0, -2 * zNear * zFar / deltaZ, 0 ); } //------- inline ------------ template< class T> axStatus axMatrix4x4<T>::toStringFormat( axStringFormat &f ) const { f.out("\n"); int i; for( i=0; i<4; i++ ) { f.format( "[{?},{?},{?},{?}]\n", e(i,0), e(i,1), e(i,2), e(i,3) ); } return 0; } //================================================= template<class T> axMatrix4x4<T>::axMatrix4x4( T v00, T v01, T v02, T v03, T v10, T v11, T v12, T v13, T v20, T v21, T v22, T v23, T v30, T v31, T v32, T v33 ) : cx( v00, v01, v02, v03 ), cy( v10, v11, v12, v13 ), cz( v20, v21, v22, v23 ), cw( v30, v31, v32, v33 ) {} template<class T> void axMatrix4x4<T>::set( T v00, T v01, T v02, T v03, T v10, T v11, T v12, T v13, T v20, T v21, T v22, T v23, T v30, T v31, T v32, T v33 ) { cx.set( v00, v01, v02, v03 ); cy.set( v10, v11, v12, v13 ); cz.set( v20, v21, v22, v23 ); cw.set( v30, v31, v32, v33 ); } template<class T> void axMatrix4x4<T>::setTRS ( const axVec3<T> & translate, const axVec3<T> & rotate, const axVec3<T> & scale ) { T cx = ax_cos(rotate.x), cy = ax_cos(rotate.y), cz = ax_cos(rotate.z); T sx = ax_sin(rotate.x), sy = ax_sin(rotate.y), sz = ax_sin(rotate.z); this->cx.set( scale.x * (cy*cz), scale.x * (cy*sz), scale.x * (-sy), 0 ); this->cy.set( scale.y * (sx*sy*cz - cx*sz), scale.y * (cx*cz + sx*sy*sz), scale.y * (sx*cy), 0 ); this->cz.set( scale.z * (sx*sz + cx*sy*cz), scale.z * (cx*sy*sz - sx*cz), scale.z * (cx*cy), 0 ); this->cw.set( translate.x, translate.y, translate.z, 1 ); } template <class T> void axMatrix4x4<T>::setRotate ( const axVec3<T> & eulerAngle ) { T cx = ax_cos(eulerAngle.x), cy = ax_cos(eulerAngle.y), cz = ax_cos(eulerAngle.z); T sx = ax_sin(eulerAngle.x), sy = ax_sin(eulerAngle.y), sz = ax_sin(eulerAngle.z); this->cx.set( cy*cz, cy*sz, -sy, 0 ); this->cy.set( sx*sy*cz - cx*sz, cx*cz + sx*sy*sz, sx*cy, 0 ); this->cz.set( sx*sz + cx*sy*cz, cx*sy*sz - sx*cz, cx*cy, 0 ); this->cw.set( 0, 0, 0, 1 ); } template <class T> void axMatrix4x4<T>::setTranslate ( const axVec3<T> &v ) { cx.set( 1, 0, 0, 0 ); cy.set( 0, 1, 0, 0 ); cz.set( 0, 0, 1, 0 ); cw.set( v.x, v.y, v.z, 1 ); } template <class T> void axMatrix4x4<T>::translate ( const axVec3<T> &v ) { axMatrix4x4<T> t; t.setTranslate( v ); operator*=(t); } template <class T> void axMatrix4x4<T>::setRotateX ( T rad ) { T s = ax_sin ( rad ), c = ax_cos ( rad ); cx.set( 1, 0, 0, 0 ); cy.set( 0, c, s, 0 ); cz.set( 0,-s, c, 0 ); cw.set( 0, 0, 0, 1 ); } template <class T> void axMatrix4x4<T>::setRotateY ( T rad ) { T s = ax_sin ( rad ), c = ax_cos ( rad ); cx.set( c, 0,-s, 0 ); cy.set( 0, 1, 0, 0 ); cz.set( s, 0, c, 0 ); cw.set( 0, 0, 0, 1 ); } template <class T> void axMatrix4x4<T>::setRotateZ ( T rad ) { T s = ax_sin ( rad ), c = ax_cos ( rad ); cx.set( c, s, 0, 0 ); cy.set(-s, c, 0, 0 ); cz.set( 0, 0, 1, 0 ); cw.set( 0, 0, 0, 1 ); } template <class T> void axMatrix4x4<T>::setScale ( const axVec3<T> &v ) { cx.set( v.x, 0, 0, 0 ); cy.set( 0, v.y, 0, 0 ); cz.set( 0, 0, v.z, 0 ); cw.set( 0, 0, 0, 1 ); } template <class T> void axMatrix4x4<T>::setShear ( const axVec3<T> &v ) { const T &xy = v.x; const T &xz = v.y; const T &yz = v.z; cx.set( 1, 0, 0, 0 ); cy.set( xy, 1, 0, 0 ); cz.set( xz,yz, 1, 0 ); cw.set( 0, 0, 0, 1 ); } template <class T> axMatrix4x4<T> axMatrix4x4<T>::transpose () const { return axMatrix4x4( cx.x, cy.x, cz.x, cw.x, cx.y, cy.y, cz.y, cw.y, cx.z, cy.z, cz.z, cw.z, cx.w, cy.w, cz.w, cw.w ); } template<class T> void axMatrix4x4<T>::setRotateAxis ( T rad, const axVec3<T> &axis ) { axVec3<T> a = axis.normalize(); T c = ax_cos( rad ); T i_c = 1-c; T s = ax_sin( rad ); T &x= a.x; T &y= a.y; T &z= a.z; T xx = x*x, yy = y*y, zz = z*z; T xy = x*y, xz = x*z, yz = y*z; T xs = x*s, ys = y*s, zs = z*s; cx.set( (i_c * xx) + c, (i_c * xy) + zs, (i_c * xz) - ys, 0 ); cy.set( (i_c * xy) - zs, (i_c * yy) + c, (i_c * yz) + xs, 0 ); cz.set( (i_c * xz) + ys, (i_c * yz) - xs, (i_c * zz) + c, 0 ); cw.set( 0, 0, 0, 1 ); } template<class T> axMatrix4x4<T> axMatrix4x4<T>::operator* ( const axMatrix4x4<T> &v ) const{ axMatrix4x4<T> out; T e0,e1,e2,e3; e0=cx.x, e1=cy.x, e2=cz.x, e3=cw.x; out.cx.x = e0*v.cx.x + e1*v.cx.y + e2*v.cx.z + e3*v.cx.w; out.cy.x = e0*v.cy.x + e1*v.cy.y + e2*v.cy.z + e3*v.cy.w; out.cz.x = e0*v.cz.x + e1*v.cz.y + e2*v.cz.z + e3*v.cz.w; out.cw.x = e0*v.cw.x + e1*v.cw.y + e2*v.cw.z + e3*v.cw.w; e0=cx.y, e1=cy.y, e2=cz.y, e3=cw.y; out.cx.y = e0*v.cx.x + e1*v.cx.y + e2*v.cx.z + e3*v.cx.w; out.cy.y = e0*v.cy.x + e1*v.cy.y + e2*v.cy.z + e3*v.cy.w; out.cz.y = e0*v.cz.x + e1*v.cz.y + e2*v.cz.z + e3*v.cz.w; out.cw.y = e0*v.cw.x + e1*v.cw.y + e2*v.cw.z + e3*v.cw.w; e0=cx.z, e1=cy.z, e2=cz.z, e3=cw.z; out.cx.z = e0*v.cx.x + e1*v.cx.y + e2*v.cx.z + e3*v.cx.w; out.cy.z = e0*v.cy.x + e1*v.cy.y + e2*v.cy.z + e3*v.cy.w; out.cz.z = e0*v.cz.x + e1*v.cz.y + e2*v.cz.z + e3*v.cz.w; out.cw.z = e0*v.cw.x + e1*v.cw.y + e2*v.cw.z + e3*v.cw.w; e0=cx.w, e1=cy.w, e2=cz.w, e3=cw.w; out.cx.w = e0*v.cx.x + e1*v.cx.y + e2*v.cx.z + e3*v.cx.w; out.cy.w = e0*v.cy.x + e1*v.cy.y + e2*v.cy.z + e3*v.cy.w; out.cz.w = e0*v.cz.x + e1*v.cz.y + e2*v.cz.z + e3*v.cz.w; out.cw.w = e0*v.cw.x + e1*v.cw.y + e2*v.cw.z + e3*v.cw.w; return out; } template<class T> void axMatrix4x4<T>::operator*=( const axMatrix4x4<T> &v ) { if( this == &v ) { axMatrix4x4<T> tmp = v; this->operator*=( tmp ); return; } T e0,e1,e2,e3; e0=cx.x, e1=cy.x, e2=cz.x, e3=cw.x; cx.x = e0*v.cx.x + e1*v.cx.y + e2*v.cx.z + e3*v.cx.w; cy.x = e0*v.cy.x + e1*v.cy.y + e2*v.cy.z + e3*v.cy.w; cz.x = e0*v.cz.x + e1*v.cz.y + e2*v.cz.z + e3*v.cz.w; cw.x = e0*v.cw.x + e1*v.cw.y + e2*v.cw.z + e3*v.cw.w; e0=cx.y, e1=cy.y, e2=cz.y, e3=cw.y; cx.y = e0*v.cx.x + e1*v.cx.y + e2*v.cx.z + e3*v.cx.w; cy.y = e0*v.cy.x + e1*v.cy.y + e2*v.cy.z + e3*v.cy.w; cz.y = e0*v.cz.x + e1*v.cz.y + e2*v.cz.z + e3*v.cz.w; cw.y = e0*v.cw.x + e1*v.cw.y + e2*v.cw.z + e3*v.cw.w; e0=cx.z, e1=cy.z, e2=cz.z, e3=cw.z; cx.z = e0*v.cx.x + e1*v.cx.y + e2*v.cx.z + e3*v.cx.w; cy.z = e0*v.cy.x + e1*v.cy.y + e2*v.cy.z + e3*v.cy.w; cz.z = e0*v.cz.x + e1*v.cz.y + e2*v.cz.z + e3*v.cz.w; cw.z = e0*v.cw.x + e1*v.cw.y + e2*v.cw.z + e3*v.cw.w; e0=cx.w, e1=cy.w, e2=cz.w, e3=cw.w; cx.w = e0*v.cx.x + e1*v.cx.y + e2*v.cx.z + e3*v.cx.w; cy.w = e0*v.cy.x + e1*v.cy.y + e2*v.cy.z + e3*v.cy.w; cz.w = e0*v.cz.x + e1*v.cz.y + e2*v.cz.z + e3*v.cz.w; cw.w = e0*v.cw.x + e1*v.cw.y + e2*v.cw.z + e3*v.cw.w; } //The explicit instantiation template class axMatrix4x4<float>; template class axMatrix4x4<double>;
[ "jasonchan35@gmail.com" ]
jasonchan35@gmail.com
0899515982a09931aa014b4eeff1671aecc7b404
bd7486a56e71b520d0016f170aafa9633d44f05b
/multiwinia/contrib/systemiv/lib/netlib/net_lib_linux.h
c2598eb8065f292480aa80621f56a5742812b9ad
[]
no_license
bsella/Darwinia-and-Multiwinia-Source-Code
3bf1d7117f1be48a7038e2ab9f7d385bf82852d1
22f2069b9228a02c7e2953ace1ea63c2ef534e41
refs/heads/master
2022-05-31T18:35:59.264774
2022-04-24T22:40:30
2022-04-24T22:40:30
290,299,680
0
0
null
2020-08-25T19:02:29
2020-08-25T19:02:29
null
UTF-8
C++
false
false
1,745
h
#ifndef INCLUDED_NET_LIB_LINUX_H #define INCLUDED_NET_LIB_LINUX_H #include <sys/types.h> #include <sys/socket.h> #include <netinet/in.h> #include <arpa/inet.h> #include <fcntl.h> #include <unistd.h> #include <string.h> #include <netdb.h> #include <errno.h> #include <pthread.h> #include <semaphore.h> class NetUdpPacket; typedef void * (*NetCallBack)(NetUdpPacket *data); typedef void * (*NetThreadFunc)(void *ptr); // Define portable names for Linux functions #define NetGetLastError() errno #define NetSleep(a) usleep(a*1000) #define NetCloseSocket ::close #define NetGetHostByName gethostbyname // Should eventually be getaddrinfo (?) #define NetSetSocketNonBlocking(a) fcntl(m_sockfd, F_SETFL, fcntl(a,F_GETFD) | O_NONBLOCK) // Define portable names for Linux types #define NetSocketLenType socklen_t #define NetSocketHandle int #define NetHostDetails struct hostent #define NetThreadHandle pthread_t #define NetCallBackRetType void * #define NetPollObject fd_set #define NetMutexHandle pthread_mutex_t #define NetSemaphoreHandle sem_t #define NetThreadId pthread_t struct NetEventHandle { pthread_mutex_t mutex; pthread_cond_t cond; bool signalled; }; // Define portable names for Linux constants #define NET_SOCKET_ERROR -1 #define NCSD_SEND 1 #define NCSD_READ 0 // Define portable ways to test various conditions #define NetIsAddrInUse (errno != EADDRINUSE) #define NetIsSocketError(a) (a == -1) #define NetIsBlockingError(a) ((a == EALREADY) || (a == EINPROGRESS) || (a == EAGAIN)) #define NetIsConnected(a) 0 #define NetIsReset(a) ((a == EPIPE) || (a == ECONNRESET)) #endif
[ "root@9244cb4f-d52e-49a9-a756-7d4e53ad8306" ]
root@9244cb4f-d52e-49a9-a756-7d4e53ad8306
96294d49f53e43db48454fd5e6b86517364038cb
0406299c340374e0ff01a774c4be153bc875412f
/Course_1/week1/helloworld.cpp
4bda9e65fd2d0db24a36f75c5e1a5b7d4eeb2a2a
[]
no_license
devlipe/Ccourse
f8e9f821e5297a550a58a636477c9c6ca6b5e5e4
22238a0e991679c182661d0fb4d7717892fb1c14
refs/heads/master
2023-06-04T17:06:51.941139
2021-06-19T14:49:27
2021-06-19T14:49:27
297,957,411
0
0
null
null
null
null
UTF-8
C++
false
false
146
cpp
// hello world for compiler test #include<iostream> using namespace std; int main() { cout << "Hello World!\n" ; return 0; }
[ "felipe.p.ferreira@ufv.br" ]
felipe.p.ferreira@ufv.br
196e3933397fd732151b04b7175599de73396401
8d7fb608f0768825b6f74e9b2b3f2fd67a58ad88
/baekjoon/17143.cpp
cc8d4570c1551bf62dce9e6bf7a263da964f0007
[]
no_license
changjunpyo/algorithmPS
12b0dd13ab9c2512bcf66d3cab0f29c5c10532ce
6f44b582d2f17a9803cd0b2dbccfe97a55da6213
refs/heads/master
2021-06-30T20:28:01.263743
2021-05-20T14:50:08
2021-05-20T14:50:08
239,674,217
2
1
null
null
null
null
UTF-8
C++
false
false
2,551
cpp
#include <cstdio> #include <vector> using namespace std; const int dr[4] = {-1,1,0,0}; const int dc[4] = {0,0,1,-1}; int map[101][101]; class Shark{ public: Shark(int _r, int _c, int _d, int _s, int _z){ r=_r; c=_c; d=_d; s=_s; z=_z; die = false; } int r; int c; int d; int s; int z; bool die; void move(int R, int C){ int moving_r = s %(2*R-2); int moving_c = s %(2*C-2); if (d == 1){ if (moving_r <= R-r){ r += moving_r; } else if (moving_r <= R-r+ R-1){ r += R-r -((moving_r - (R-r))); d= 0; } else r = moving_r-(2*R-r-1) +1; } else if (d == 2){ if (moving_c <= C-c){ c += moving_c; } else if (moving_c <= 2*C-c-1){ c += C-c-(moving_c -(C-c)); d =3; } else c = moving_c - (2*C-c-1) +1 ; } else if (d == 3){ if ( c > moving_c ) c -= moving_c; else if (moving_c <= C+c-2){ c -= c -(moving_c -(c-1) +1); d = 2; } else c = (2*C-2)-moving_c + c ; } else { if ( r > moving_r ) r -= moving_r; else if (moving_r <= R+r-2){ r -= r -(moving_r -(r-1)+1); d = 1; } else r = (2*R-2)-moving_r +r ; } // 방향만 잡자 } }; int main(){ int R,C,M; scanf("%d %d %d",&R,&C,&M); vector<Shark> v; v.reserve(M); int fishman_c = 0; int ans=0; memset(map, -1, sizeof(map)); for (int i=0; i<M; i++){ int r,c,s,d,z; scanf("%d %d %d %d %d",&r,&c,&s,&d,&z); Shark shark(r,c,d-1,s,z); map[r][c] = i; v[i] = shark; } while(fishman_c <=C){ // 낚시왕 움직 step1 fishman_c++; // 낚시함 int catch_r=-1; // find shark for (int i=1; i<=R; i++){ if (map[i][fishman_c] >=0){ catch_r=i; map[i][fishman_c]=-1; break; } } // catch shark if (catch_r != -1){ for (int i=0; i<M; i++){ if (v[i].die) continue; if (v[i].r == catch_r && v[i].c == fishman_c){ ans+= v[i].z; v[i].die = true; } } } // 상어 움직임 int moved_map[101][101]={0,}; memset(moved_map, -1, sizeof(moved_map)); for (int i=0; i<M; i++){ if (v[i].die) continue; v[i].move(R,C); if (moved_map[v[i].r][v[i].c] >= 0){ int other = moved_map[v[i].r][v[i].c]; if (v[i].z > v[other].z){ moved_map[v[i].r][v[i].c] = i; v[other].die = true; } else v[i].die=true; } else moved_map[v[i].r][v[i].c] = i; } for (int i=1; i<=R; i++){ for (int j=1; j<=C; j++) map[i][j] = moved_map[i][j]; } } printf("%d\n",ans); }
[ "junpyojang@junpyos-MacBook-Pro.local" ]
junpyojang@junpyos-MacBook-Pro.local
4c20a8de2cb5f55abe373016009f7ca00e18cee3
2780081bb046866b1449519cbe4dd78fbbf0719e
/XUL.framework/Versions/2.0/include/nsIAuthInformation.h
4f4dde3886e6d373c1fdf77c0f7ab390be734645
[]
no_license
edisonlee55/gluezilla-mac
d8b6535d2b36fc900eff837009372f033484a63f
45d559edad7b5191430e139629d2aee918aa6654
refs/heads/master
2022-09-23T19:57:18.853517
2020-06-03T03:57:37
2020-06-03T03:57:37
267,499,676
1
0
null
null
null
null
UTF-8
C++
false
false
10,145
h
/* * DO NOT EDIT. THIS FILE IS GENERATED FROM /builds/slave/rel-2.0-xr-osx64-bld/build/netwerk/base/public/nsIAuthInformation.idl */ #ifndef __gen_nsIAuthInformation_h__ #define __gen_nsIAuthInformation_h__ #ifndef __gen_nsISupports_h__ #include "nsISupports.h" #endif /* For IDL files that don't want to include root IDL files. */ #ifndef NS_NO_VTABLE #define NS_NO_VTABLE #endif /* starting interface: nsIAuthInformation */ #define NS_IAUTHINFORMATION_IID_STR "0d73639c-2a92-4518-9f92-28f71fea5f20" #define NS_IAUTHINFORMATION_IID \ {0x0d73639c, 0x2a92, 0x4518, \ { 0x9f, 0x92, 0x28, 0xf7, 0x1f, 0xea, 0x5f, 0x20 }} /** * A object that hold authentication information. The caller of * nsIAuthPrompt2::promptUsernameAndPassword or * nsIAuthPrompt2::promptPasswordAsync provides an object implementing this * interface; the prompt implementation can then read the values here to prefill * the dialog. After the user entered the authentication information, it should * set the attributes of this object to indicate to the caller what was entered * by the user. */ class NS_NO_VTABLE NS_SCRIPTABLE nsIAuthInformation : public nsISupports { public: NS_DECLARE_STATIC_IID_ACCESSOR(NS_IAUTHINFORMATION_IID) /** @name Flags */ /** * This dialog belongs to a network host. */ enum { AUTH_HOST = 1U }; /** * This dialog belongs to a proxy. */ enum { AUTH_PROXY = 2U }; /** * This dialog needs domain information. The user interface should show a * domain field, prefilled with the domain attribute's value. */ enum { NEED_DOMAIN = 4U }; /** * This dialog only asks for password information. Authentication prompts * SHOULD NOT show a username field. Attempts to change the username field * will have no effect. nsIAuthPrompt2 implementations should, however, show * its initial value to the user in some form. For example, a paragraph in * the dialog might say "Please enter your password for user jsmith at * server intranet". * * This flag is mutually exclusive with #NEED_DOMAIN. */ enum { ONLY_PASSWORD = 8U }; /** * We have already tried to log in for this channel * (with auth values from a previous promptAuth call), * but it failed, so we now ask the user to provide a new, correct login. * * @see also RFC 2616, Section 10.4.2 */ enum { PREVIOUS_FAILED = 16U }; /** * Flags describing this dialog. A bitwise OR of the flag values * above. * * It is possible that neither #AUTH_HOST nor #AUTH_PROXY are set. * * Auth prompts should ignore flags they don't understand; especially, they * should not throw an exception because of an unsupported flag. */ /* readonly attribute unsigned long flags; */ NS_SCRIPTABLE NS_IMETHOD GetFlags(PRUint32 *aFlags) = 0; /** * The server-supplied realm of the authentication as defined in RFC 2617. * Can be the empty string if the protocol does not support realms. * Otherwise, this is a human-readable string like "Secret files". */ /* readonly attribute AString realm; */ NS_SCRIPTABLE NS_IMETHOD GetRealm(nsAString & aRealm) = 0; /** * The authentication scheme used for this request, if applicable. If the * protocol for this authentication does not support schemes, this will be * the empty string. Otherwise, this will be a string such as "basic" or * "digest". This string will always be in lowercase. */ /* readonly attribute AUTF8String authenticationScheme; */ NS_SCRIPTABLE NS_IMETHOD GetAuthenticationScheme(nsACString & aAuthenticationScheme) = 0; /** * The initial value should be used to prefill the dialog or be shown * in some other way to the user. * On return, this parameter should contain the username entered by * the user. * This field can only be changed if the #ONLY_PASSWORD flag is not set. */ /* attribute AString username; */ NS_SCRIPTABLE NS_IMETHOD GetUsername(nsAString & aUsername) = 0; NS_SCRIPTABLE NS_IMETHOD SetUsername(const nsAString & aUsername) = 0; /** * The initial value should be used to prefill the dialog or be shown * in some other way to the user. * The password should not be shown in clear. * On return, this parameter should contain the password entered by * the user. */ /* attribute AString password; */ NS_SCRIPTABLE NS_IMETHOD GetPassword(nsAString & aPassword) = 0; NS_SCRIPTABLE NS_IMETHOD SetPassword(const nsAString & aPassword) = 0; /** * The initial value should be used to prefill the dialog or be shown * in some other way to the user. * On return, this parameter should contain the domain entered by * the user. * This attribute is only used if flags include #NEED_DOMAIN. */ /* attribute AString domain; */ NS_SCRIPTABLE NS_IMETHOD GetDomain(nsAString & aDomain) = 0; NS_SCRIPTABLE NS_IMETHOD SetDomain(const nsAString & aDomain) = 0; }; NS_DEFINE_STATIC_IID_ACCESSOR(nsIAuthInformation, NS_IAUTHINFORMATION_IID) /* Use this macro when declaring classes that implement this interface. */ #define NS_DECL_NSIAUTHINFORMATION \ NS_SCRIPTABLE NS_IMETHOD GetFlags(PRUint32 *aFlags); \ NS_SCRIPTABLE NS_IMETHOD GetRealm(nsAString & aRealm); \ NS_SCRIPTABLE NS_IMETHOD GetAuthenticationScheme(nsACString & aAuthenticationScheme); \ NS_SCRIPTABLE NS_IMETHOD GetUsername(nsAString & aUsername); \ NS_SCRIPTABLE NS_IMETHOD SetUsername(const nsAString & aUsername); \ NS_SCRIPTABLE NS_IMETHOD GetPassword(nsAString & aPassword); \ NS_SCRIPTABLE NS_IMETHOD SetPassword(const nsAString & aPassword); \ NS_SCRIPTABLE NS_IMETHOD GetDomain(nsAString & aDomain); \ NS_SCRIPTABLE NS_IMETHOD SetDomain(const nsAString & aDomain); /* Use this macro to declare functions that forward the behavior of this interface to another object. */ #define NS_FORWARD_NSIAUTHINFORMATION(_to) \ NS_SCRIPTABLE NS_IMETHOD GetFlags(PRUint32 *aFlags) { return _to GetFlags(aFlags); } \ NS_SCRIPTABLE NS_IMETHOD GetRealm(nsAString & aRealm) { return _to GetRealm(aRealm); } \ NS_SCRIPTABLE NS_IMETHOD GetAuthenticationScheme(nsACString & aAuthenticationScheme) { return _to GetAuthenticationScheme(aAuthenticationScheme); } \ NS_SCRIPTABLE NS_IMETHOD GetUsername(nsAString & aUsername) { return _to GetUsername(aUsername); } \ NS_SCRIPTABLE NS_IMETHOD SetUsername(const nsAString & aUsername) { return _to SetUsername(aUsername); } \ NS_SCRIPTABLE NS_IMETHOD GetPassword(nsAString & aPassword) { return _to GetPassword(aPassword); } \ NS_SCRIPTABLE NS_IMETHOD SetPassword(const nsAString & aPassword) { return _to SetPassword(aPassword); } \ NS_SCRIPTABLE NS_IMETHOD GetDomain(nsAString & aDomain) { return _to GetDomain(aDomain); } \ NS_SCRIPTABLE NS_IMETHOD SetDomain(const nsAString & aDomain) { return _to SetDomain(aDomain); } /* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */ #define NS_FORWARD_SAFE_NSIAUTHINFORMATION(_to) \ NS_SCRIPTABLE NS_IMETHOD GetFlags(PRUint32 *aFlags) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetFlags(aFlags); } \ NS_SCRIPTABLE NS_IMETHOD GetRealm(nsAString & aRealm) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetRealm(aRealm); } \ NS_SCRIPTABLE NS_IMETHOD GetAuthenticationScheme(nsACString & aAuthenticationScheme) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetAuthenticationScheme(aAuthenticationScheme); } \ NS_SCRIPTABLE NS_IMETHOD GetUsername(nsAString & aUsername) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetUsername(aUsername); } \ NS_SCRIPTABLE NS_IMETHOD SetUsername(const nsAString & aUsername) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetUsername(aUsername); } \ NS_SCRIPTABLE NS_IMETHOD GetPassword(nsAString & aPassword) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetPassword(aPassword); } \ NS_SCRIPTABLE NS_IMETHOD SetPassword(const nsAString & aPassword) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetPassword(aPassword); } \ NS_SCRIPTABLE NS_IMETHOD GetDomain(nsAString & aDomain) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetDomain(aDomain); } \ NS_SCRIPTABLE NS_IMETHOD SetDomain(const nsAString & aDomain) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetDomain(aDomain); } #if 0 /* Use the code below as a template for the implementation class for this interface. */ /* Header file */ class nsAuthInformation : public nsIAuthInformation { public: NS_DECL_ISUPPORTS NS_DECL_NSIAUTHINFORMATION nsAuthInformation(); private: ~nsAuthInformation(); protected: /* additional members */ }; /* Implementation file */ NS_IMPL_ISUPPORTS1(nsAuthInformation, nsIAuthInformation) nsAuthInformation::nsAuthInformation() { /* member initializers and constructor code */ } nsAuthInformation::~nsAuthInformation() { /* destructor code */ } /* readonly attribute unsigned long flags; */ NS_IMETHODIMP nsAuthInformation::GetFlags(PRUint32 *aFlags) { return NS_ERROR_NOT_IMPLEMENTED; } /* readonly attribute AString realm; */ NS_IMETHODIMP nsAuthInformation::GetRealm(nsAString & aRealm) { return NS_ERROR_NOT_IMPLEMENTED; } /* readonly attribute AUTF8String authenticationScheme; */ NS_IMETHODIMP nsAuthInformation::GetAuthenticationScheme(nsACString & aAuthenticationScheme) { return NS_ERROR_NOT_IMPLEMENTED; } /* attribute AString username; */ NS_IMETHODIMP nsAuthInformation::GetUsername(nsAString & aUsername) { return NS_ERROR_NOT_IMPLEMENTED; } NS_IMETHODIMP nsAuthInformation::SetUsername(const nsAString & aUsername) { return NS_ERROR_NOT_IMPLEMENTED; } /* attribute AString password; */ NS_IMETHODIMP nsAuthInformation::GetPassword(nsAString & aPassword) { return NS_ERROR_NOT_IMPLEMENTED; } NS_IMETHODIMP nsAuthInformation::SetPassword(const nsAString & aPassword) { return NS_ERROR_NOT_IMPLEMENTED; } /* attribute AString domain; */ NS_IMETHODIMP nsAuthInformation::GetDomain(nsAString & aDomain) { return NS_ERROR_NOT_IMPLEMENTED; } NS_IMETHODIMP nsAuthInformation::SetDomain(const nsAString & aDomain) { return NS_ERROR_NOT_IMPLEMENTED; } /* End of implementation class template. */ #endif #endif /* __gen_nsIAuthInformation_h__ */
[ "edisonlee@edisonlee55.com" ]
edisonlee@edisonlee55.com
c50b7df063c4bc1b97e7b7974868610eabd22c2f
dc47a95abe1e689ed63dd5b2e75862af30115ee0
/Color.h
360ce736f012678248b957342b607ce247d91fda
[]
no_license
dcheesman/RGBeatDown
6d0663e5c3a78a8bbf12e2c7619f75b31e19655c
3708c1d45e7613915dac8fa09d582bd9c0ae5618
refs/heads/master
2021-01-20T08:46:08.988601
2015-08-27T22:58:49
2015-08-27T22:58:49
37,363,143
0
0
null
null
null
null
UTF-8
C++
false
false
238
h
#ifndef Color_h #define Color_h #include "Arduino.h" class Color { private: int score; public: int red; int green; int blue; void init(); void randomize(); int calculateColorScore(Color* c2); }; #endif
[ "dcheesman@gmail.com" ]
dcheesman@gmail.com
407ca302c9522fe78868e24ea4ce9e5cc988514d
f080a40fe93b20d9de93c75f2cb5b53b841a4668
/CodeForces/Nirvarna.cpp
041bfc184de84f7245899afb5ac6f3f0a2f5cd07
[]
no_license
samueljrz/Competitive-Programing
a88e2a52b4640b7094dc979d1c3fd204e8de7f59
5de2655725e9beccfc5320b89334fd2d1b8adf19
refs/heads/master
2021-07-17T06:51:35.346238
2020-09-21T00:22:14
2020-09-21T00:22:14
214,507,466
1
0
null
null
null
null
UTF-8
C++
false
false
885
cpp
#include <bits/stdc++.h> using namespace std; int n, ans=1, tst, anstst=1, j=0; vector<int> v; vector<int> vtst; bool ver = false; int main () { cin >> n; tst = n; while(tst) { if(tst < 10 and tst > 0) { vtst.push_back(tst%10); j++; break; } //if(tst%10 != 9) { tst = tst - (tst%10) - 1; //}else if((tst%10) > 0) { j++; } vtst.push_back(tst%10); tst /= 10; } if(n < 10) { cout << n << endl; return 0; }else { if(n%10) { while(n) { v.push_back(n%10); n /= 10; } }else { n -= 1; while(n) { v.push_back(n%10); n /= 10; } } } for(int i=0; i<v.size(); i++) { ans *= v[i]; if(j--) { anstst *= vtst[i]; cout << vtst[i] << " "; } } if(ans < 9 and anstst < 9) { cout << '9' << endl; }else if(anstst > ans) { cout << anstst << endl; }else { cout << ans << endl; } return 0; }
[ "samuelevangelista.ti@gmail.com" ]
samuelevangelista.ti@gmail.com
8d468c6dc394af2e30bb77e8833e51863ce1c846
51e9012435503b693a7811301c6af4332033a1a3
/TAPCON/TAPCON.cpp
508da3d5a9d7417e6b46052b0fefdfa2bcd7a47c
[]
no_license
phutruonnttn/CPP_Code_Giai_Thuat
e7e3312ae70cee9ade33994de0cc3a1f17fbf0f1
8081d346aa0348d1a6bef546036e5a498e7b2ee5
refs/heads/master
2020-07-02T04:29:51.910768
2019-08-09T07:16:37
2019-08-09T07:16:37
201,412,551
0
0
null
null
null
null
UTF-8
C++
false
false
1,095
cpp
#include <bits/stdc++.h> #define nmax 70 using namespace std; long long n,a[nmax]; long long mu(long m) { return 1ll<<m; } long long timstt(long long k) { long long res=k,ct=0; for (long long i=1; i<=k; i++) { //if (i<k) res--; for (long j=a[i-n]+1; j<=a[i]-1; j++) res+=mu(n-j); } return res; } void timxau(long long t) { a[0]=0; long dem=0; for (long i=1; i<=n; i++) { if (t==1) break; t--; for (long j=a[i-1]+1; j<=n; j++) if (t>mu(n-j)) t-=mu(n-j); else { a[++dem]=j; break; } } for (long i=1; i<=dem; i++) cout << a[i] << " "; cout << '\n'; } int main() { ios_base::sync_with_stdio(0); freopen("TAPCON.inp","r",stdin); freopen("TAPCON.out","w",stdout); cin >> n; cout << mu(n)-1 << '\n'; a[1]=1; a[2]=2; a[3]=3; cout << timstt(3); //for (long i=1 ; i<=n+1; i++) timxau(i); /*long long tv; while (cin>>tv) { }*/ }
[ "truongnguyen@MacBook-Pro-cua-TruongNP.local" ]
truongnguyen@MacBook-Pro-cua-TruongNP.local
a351faf1177cbfc909b25acb8ee868953e705799
ee1423adcd4bfeb2703464996171d103542bad09
/dali-adaptor/adaptors/tizen/internal/common/ecore-x/ecore-x-render-surface-factory.cpp
ed0e17f84d015aaa922c05029838562d33c9003b
[ "LicenseRef-scancode-unknown-license-reference", "LicenseRef-scancode-warranty-disclaimer", "LicenseRef-scancode-flora-1.1" ]
permissive
sak0909/Dali
26ac61a521ab1de26a7156c51afd3cc839cb705a
0b383fc316b8b57afcf9a9e8bac6e24a4ba36e49
refs/heads/master
2020-12-30T12:10:51.930311
2017-05-16T21:56:24
2017-05-16T21:57:14
91,505,804
0
1
null
null
null
null
UTF-8
C++
false
false
1,670
cpp
// // Copyright (c) 2014 Samsung Electronics Co., Ltd. // // Licensed under the Flora License, Version 1.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://floralicense.org/license/ // // 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 "ecore-x-render-surface.h" #include "pixmap-render-surface.h" #include "native-buffer-render-surface.h" namespace Dali { namespace Internal { namespace Adaptor { namespace ECoreX { DALI_EXPORT_API RenderSurface* CreatePixmapSurface( PositionSize positionSize, Any surface, Any display, const std::string& name, bool isTransparent ) { return new PixmapRenderSurface( positionSize, surface, display, name, isTransparent ); } DALI_EXPORT_API RenderSurface* CreateNativeBufferSurface( native_buffer_provider* provider, native_buffer_pool* pool, unsigned int maxBufferCount, PositionSize positionSize, Any surface, Any display, const std::string& name, bool isTransparent ) { return new NativeBufferRenderSurface( provider, pool, maxBufferCount, positionSize, surface, display, name, isTransparent); } }// ECoreX }// Adaptor }// Internal }// Dali
[ "sak0909@outlook.com" ]
sak0909@outlook.com
bd652d943de923267d64511a226d54a297d5ff65
85a5c11d85dbfffefede19f651fa167ca7155f68
/TST.h
00814e035492f9e2c64b78f72825d027e30d43e4
[]
no_license
skiteskopes/cs130a_project1
7747b45ae4470b0f08b9e940c8313e49924c8001
a398cf78b85c585005c2c87f08be656f6dddb84b
refs/heads/master
2022-12-26T23:44:56.380772
2020-10-11T08:01:39
2020-10-11T08:01:39
null
0
0
null
null
null
null
UTF-8
C++
false
false
131
h
#ifndef TST_H #define TST_H class TST{ public: TST(); ~TST(); private: TST_node * head; }; #endif
[ "bill_zhang@csilvm-01.cs.ucsb.edu" ]
bill_zhang@csilvm-01.cs.ucsb.edu
6456491da997d4bda865d6a3d597e2414e0be504
9d9e8fc7bbac19aaaebf66a625518f071b0ce7f8
/ITP2/ITP2_1_D.cpp
dac5540188b296278f3d1a01f9b6e561cc788964
[]
no_license
jiji4000/Aizu_online_judge
3963dbd8e9c09e557f0baaeb0216ec9b7451ed78
a0223ae5ad19b9d78929442e6f859da3ed1bffda
refs/heads/master
2021-05-01T03:22:33.385922
2020-06-10T07:50:32
2020-06-10T07:50:32
121,191,869
0
0
null
null
null
null
UTF-8
C++
false
false
1,012
cpp
// // ITP2_1_D.cpp // AizuOnlineJudge // // Created by jiji on 2019/11/08. // Copyright © 2019 jiji4000. All rights reserved. // #include <iostream> #include <vector> using namespace std; #define MAX 10000 int main() { ios_base::sync_with_stdio(false); cin.tie(0); int n,q,command,t,x; vector<int> vec[MAX]; cin >> n >> q; for (int i = 0;i < q;++i) { cin >> command >> t; switch(command){ // push back case 0: cin >> x; vec[t].push_back(x); break; // dump case 1: for(int i = 0;i < vec[t].size();++i){ cout << vec[t].at(i); if(i + 1 < vec[t].size()){ cout << " "; } } cout << endl; break; // clear case 2: vec[t].clear(); break; } } }
[ "jiji4000alpha@gmail.com" ]
jiji4000alpha@gmail.com
17549c3e617c5df87d18460ae6d01c42c8d73322
b30283aafc876a95f6beb75ded48d0373662b814
/devel/include/raspimouse_ros/LightSensorValues.h
6b778f8dc0cea6856fbddb190b02dfee36f39f73
[ "MIT" ]
permissive
norihisayamada/raspimouse_ros
e0cd8312158e7df4786a7e55542c87faeeaeb399
bcfb69834750bb6c8219e752a52ad0d80b6a125c
refs/heads/master
2020-03-07T13:25:38.461056
2018-11-18T08:38:59
2018-11-18T08:38:59
127,500,226
1
0
null
2018-03-31T04:56:23
2018-03-31T04:56:23
null
UTF-8
C++
false
false
6,136
h
// Generated by gencpp from file raspimouse_ros/LightSensorValues.msg // DO NOT EDIT! #ifndef RASPIMOUSE_ROS_MESSAGE_LIGHTSENSORVALUES_H #define RASPIMOUSE_ROS_MESSAGE_LIGHTSENSORVALUES_H #include <string> #include <vector> #include <map> #include <ros/types.h> #include <ros/serialization.h> #include <ros/builtin_message_traits.h> #include <ros/message_operations.h> namespace raspimouse_ros { template <class ContainerAllocator> struct LightSensorValues_ { typedef LightSensorValues_<ContainerAllocator> Type; LightSensorValues_() : right_forward(0) , right_side(0) , left_side(0) , left_forward(0) { } LightSensorValues_(const ContainerAllocator& _alloc) : right_forward(0) , right_side(0) , left_side(0) , left_forward(0) { (void)_alloc; } typedef int16_t _right_forward_type; _right_forward_type right_forward; typedef int16_t _right_side_type; _right_side_type right_side; typedef int16_t _left_side_type; _left_side_type left_side; typedef int16_t _left_forward_type; _left_forward_type left_forward; typedef boost::shared_ptr< ::raspimouse_ros::LightSensorValues_<ContainerAllocator> > Ptr; typedef boost::shared_ptr< ::raspimouse_ros::LightSensorValues_<ContainerAllocator> const> ConstPtr; }; // struct LightSensorValues_ typedef ::raspimouse_ros::LightSensorValues_<std::allocator<void> > LightSensorValues; typedef boost::shared_ptr< ::raspimouse_ros::LightSensorValues > LightSensorValuesPtr; typedef boost::shared_ptr< ::raspimouse_ros::LightSensorValues const> LightSensorValuesConstPtr; // constants requiring out of line definition template<typename ContainerAllocator> std::ostream& operator<<(std::ostream& s, const ::raspimouse_ros::LightSensorValues_<ContainerAllocator> & v) { ros::message_operations::Printer< ::raspimouse_ros::LightSensorValues_<ContainerAllocator> >::stream(s, "", v); return s; } } // namespace raspimouse_ros namespace ros { namespace message_traits { // BOOLTRAITS {'IsFixedSize': True, 'IsMessage': True, 'HasHeader': False} // {'actionlib_msgs': ['/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg'], 'std_msgs': ['/opt/ros/kinetic/share/std_msgs/cmake/../msg'], 'raspimouse_ros': ['/home/ubuntu/catkin_ws/src/raspimouse_ros/msg', '/home/ubuntu/catkin_ws/devel/share/raspimouse_ros/msg']} // !!!!!!!!!!! ['__class__', '__delattr__', '__dict__', '__doc__', '__eq__', '__format__', '__getattribute__', '__hash__', '__init__', '__module__', '__ne__', '__new__', '__reduce__', '__reduce_ex__', '__repr__', '__setattr__', '__sizeof__', '__str__', '__subclasshook__', '__weakref__', '_parsed_fields', 'constants', 'fields', 'full_name', 'has_header', 'header_present', 'names', 'package', 'parsed_fields', 'short_name', 'text', 'types'] template <class ContainerAllocator> struct IsFixedSize< ::raspimouse_ros::LightSensorValues_<ContainerAllocator> > : TrueType { }; template <class ContainerAllocator> struct IsFixedSize< ::raspimouse_ros::LightSensorValues_<ContainerAllocator> const> : TrueType { }; template <class ContainerAllocator> struct IsMessage< ::raspimouse_ros::LightSensorValues_<ContainerAllocator> > : TrueType { }; template <class ContainerAllocator> struct IsMessage< ::raspimouse_ros::LightSensorValues_<ContainerAllocator> const> : TrueType { }; template <class ContainerAllocator> struct HasHeader< ::raspimouse_ros::LightSensorValues_<ContainerAllocator> > : FalseType { }; template <class ContainerAllocator> struct HasHeader< ::raspimouse_ros::LightSensorValues_<ContainerAllocator> const> : FalseType { }; template<class ContainerAllocator> struct MD5Sum< ::raspimouse_ros::LightSensorValues_<ContainerAllocator> > { static const char* value() { return "fa26acaa6485ef64ceca927a62524c60"; } static const char* value(const ::raspimouse_ros::LightSensorValues_<ContainerAllocator>&) { return value(); } static const uint64_t static_value1 = 0xfa26acaa6485ef64ULL; static const uint64_t static_value2 = 0xceca927a62524c60ULL; }; template<class ContainerAllocator> struct DataType< ::raspimouse_ros::LightSensorValues_<ContainerAllocator> > { static const char* value() { return "raspimouse_ros/LightSensorValues"; } static const char* value(const ::raspimouse_ros::LightSensorValues_<ContainerAllocator>&) { return value(); } }; template<class ContainerAllocator> struct Definition< ::raspimouse_ros::LightSensorValues_<ContainerAllocator> > { static const char* value() { return "int16 right_forward\n\ int16 right_side\n\ int16 left_side \n\ int16 left_forward\n\ "; } static const char* value(const ::raspimouse_ros::LightSensorValues_<ContainerAllocator>&) { return value(); } }; } // namespace message_traits } // namespace ros namespace ros { namespace serialization { template<class ContainerAllocator> struct Serializer< ::raspimouse_ros::LightSensorValues_<ContainerAllocator> > { template<typename Stream, typename T> inline static void allInOne(Stream& stream, T m) { stream.next(m.right_forward); stream.next(m.right_side); stream.next(m.left_side); stream.next(m.left_forward); } ROS_DECLARE_ALLINONE_SERIALIZER }; // struct LightSensorValues_ } // namespace serialization } // namespace ros namespace ros { namespace message_operations { template<class ContainerAllocator> struct Printer< ::raspimouse_ros::LightSensorValues_<ContainerAllocator> > { template<typename Stream> static void stream(Stream& s, const std::string& indent, const ::raspimouse_ros::LightSensorValues_<ContainerAllocator>& v) { s << indent << "right_forward: "; Printer<int16_t>::stream(s, indent + " ", v.right_forward); s << indent << "right_side: "; Printer<int16_t>::stream(s, indent + " ", v.right_side); s << indent << "left_side: "; Printer<int16_t>::stream(s, indent + " ", v.left_side); s << indent << "left_forward: "; Printer<int16_t>::stream(s, indent + " ", v.left_forward); } }; } // namespace message_operations } // namespace ros #endif // RASPIMOUSE_ROS_MESSAGE_LIGHTSENSORVALUES_H
[ "sus444norihisa@gmail.com" ]
sus444norihisa@gmail.com
ca4f9c2cc2b0e91ec4dc584298cb19f5c0828c7a
b1b77bb1ed47586f96d8f2554a65bcbd0c7162cc
/SPOTIFY/JniHelpers/src/main/cpp/ByteArray.h
fb38d0b6e696628bac5fa4ab04b2257dbee59a12
[ "Apache-2.0" ]
permissive
DanHefrman/stuff
b3624d7089909972ee806211666374a261c02d08
b98a5c80cfe7041d8908dcfd4230cf065c17f3f6
refs/heads/master
2023-07-10T09:47:04.780112
2021-08-13T09:55:17
2021-08-13T09:55:17
null
0
0
null
null
null
null
UTF-8
C++
false
false
4,077
h
/* * Copyright (c) 2014 Spotify AB * * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ #ifndef __ByteArray_h__ #define __ByteArray_h__ #include "JniHelpersCommon.h" #include "JniLocalRef.h" namespace spotify { namespace jni { /** * @brief Class for holding Java byte[] data * * This class is used for passing raw data arrays through JNI. Internally * the data is stored as a void*. */ class EXPORT ByteArray { public: /** * @brief Create a new empty byte array */ ByteArray(); /** * @brief Create a new byte array with data. * @param data Pointer to data * @param numBytes Size of data pointed to * @param copyData True if the data should be copied to this instance * * See the documentation for set() regarding the ownership of data stored * in ByteArray instances. */ ByteArray(void *data, const size_t numBytes, bool copyData); /** * @brief Create a new byte array with data from a Java byte[] object * @param env JNIEnv * @param data Java byte[] data */ ByteArray(JNIEnv *env, jbyteArray data); virtual ~ByteArray(); /** * @brief Get a pointer to the natively stored data */ const void* get() const { return _data; } /** * @brief Convert data to a Java byte[] array */ JniLocalRef<jbyteArray> toJavaByteArray(JNIEnv *env) const; /** * @brief Return a pointer to the data stored by this instance * * When an instance of ByteArray is destroyed, it will attempt to free * the data stored internally. If this data is still needed elsewhere, * then you should call leak() or else it will be unavailable. */ void *leak(); /** * @brief Store data in this instance * @param data Pointer to data * @param numBytes Size of data pointed to * @param copyData True if the data should be copied to this instance * * If copyData is true, then this ByteArray instance owns that data and * the original data passed to this method can be freed without worry. * However, if copyData is false, then this ByteArray effectively just * points to that instance instead. In either case, after setting data * in a ByteArray, it effectively owns that data. * * When this ByteArray is destroyed, it will free the data stored in it, * regardless of how it has been set. This means that if copyData was * false and that data is still needed elsewhere, then a segfault will * probably occur when attempting to access that data after this object * has been destroyed. Thus, the leak() method can be used to remedy the * situation by removing the pointer to the data so the ByteArray will * not free it upon destruction. * * It is obviously more efficient to not copy the data, however this can * cause problems if your code does not respect the ownership behaviors * described above. */ void set(void *data, const size_t numBytes, bool copyData); /** * @brief Store data in this instance from a Java byte[] array * @param env JNIenv * @param data Java byte[] array */ void set(JNIEnv *env, jbyteArray data); /** * @brief Get the size of the data stored by this instance */ size_t size() const { return _num_bytes; } private: void *_data; size_t _num_bytes; }; } // namespace jni } // namespace spotify #endif // __ByteArray_h__
[ "bryan.guner@gmail.com" ]
bryan.guner@gmail.com
b1b52a6adf50a93b5fc83f7bda6efd2291a63883
4c23be1a0ca76f68e7146f7d098e26c2bbfb2650
/ic8h18/0.0095/BC8H17
29a8198084fb0616efcfc05488fd10643901a850
[]
no_license
labsandy/OpenFOAM_workspace
a74b473903ddbd34b31dc93917e3719bc051e379
6e0193ad9dabd613acf40d6b3ec4c0536c90aed4
refs/heads/master
2022-02-25T02:36:04.164324
2019-08-23T02:27:16
2019-08-23T02:27:16
null
0
0
null
null
null
null
UTF-8
C++
false
false
839
/*--------------------------------*- C++ -*----------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | Website: https://openfoam.org \\ / A nd | Version: 6 \\/ M anipulation | \*---------------------------------------------------------------------------*/ FoamFile { version 2.0; format ascii; class volScalarField; location "0.0095"; object BC8H17; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // dimensions [0 0 0 0 0 0 0]; internalField uniform 5.18943e-56; boundaryField { boundary { type empty; } } // ************************************************************************* //
[ "jfeatherstone123@gmail.com" ]
jfeatherstone123@gmail.com
ccd9a910b3a6dadb8f2f9117fc82ef2a4e3d554e
93b611a35328b9204a8edff4675cb11a8c529684
/Export/macos/obj/src/openfl/media/SoundLoaderContext.cpp
f0f96c2ba67b35d9e16b19e236adb01b851dcca1
[]
no_license
dmoa/firstHaxeGame
b5db96619cb8dc3d7ce38d6ba4adf29c4b6dca3c
fbed7991277168a57b22d220c5ccc15f01e467a0
refs/heads/master
2020-06-29T11:36:20.971915
2019-08-04T17:39:57
2019-08-04T17:39:57
200,523,232
0
0
null
null
null
null
UTF-8
C++
false
true
4,625
cpp
// Generated by Haxe 3.4.4 #include <hxcpp.h> #ifndef INCLUDED_openfl_media_SoundLoaderContext #include <openfl/media/SoundLoaderContext.h> #endif HX_DEFINE_STACK_FRAME(_hx_pos_baeaab40d0a56ac0_148_new,"openfl.media.SoundLoaderContext","new",0xafd95147,"openfl.media.SoundLoaderContext.new","openfl/media/SoundLoaderContext.hx",148,0x79afda07) namespace openfl{ namespace media{ void SoundLoaderContext_obj::__construct(hx::Null< Float > __o_bufferTime,hx::Null< bool > __o_checkPolicyFile){ Float bufferTime = __o_bufferTime.Default(1000); bool checkPolicyFile = __o_checkPolicyFile.Default(false); HX_STACKFRAME(&_hx_pos_baeaab40d0a56ac0_148_new) HXLINE( 149) this->bufferTime = bufferTime; HXLINE( 150) this->checkPolicyFile = checkPolicyFile; } Dynamic SoundLoaderContext_obj::__CreateEmpty() { return new SoundLoaderContext_obj; } void *SoundLoaderContext_obj::_hx_vtable = 0; Dynamic SoundLoaderContext_obj::__Create(hx::DynamicArray inArgs) { hx::ObjectPtr< SoundLoaderContext_obj > _hx_result = new SoundLoaderContext_obj(); _hx_result->__construct(inArgs[0],inArgs[1]); return _hx_result; } bool SoundLoaderContext_obj::_hx_isInstanceOf(int inClassId) { return inClassId==(int)0x00000001 || inClassId==(int)0x44beed41; } SoundLoaderContext_obj::SoundLoaderContext_obj() { } hx::Val SoundLoaderContext_obj::__Field(const ::String &inName,hx::PropertyAccess inCallProp) { switch(inName.length) { case 10: if (HX_FIELD_EQ(inName,"bufferTime") ) { return hx::Val( bufferTime ); } break; case 15: if (HX_FIELD_EQ(inName,"checkPolicyFile") ) { return hx::Val( checkPolicyFile ); } } return super::__Field(inName,inCallProp); } hx::Val SoundLoaderContext_obj::__SetField(const ::String &inName,const hx::Val &inValue,hx::PropertyAccess inCallProp) { switch(inName.length) { case 10: if (HX_FIELD_EQ(inName,"bufferTime") ) { bufferTime=inValue.Cast< Float >(); return inValue; } break; case 15: if (HX_FIELD_EQ(inName,"checkPolicyFile") ) { checkPolicyFile=inValue.Cast< bool >(); return inValue; } } return super::__SetField(inName,inValue,inCallProp); } void SoundLoaderContext_obj::__GetFields(Array< ::String> &outFields) { outFields->push(HX_HCSTRING("bufferTime","\x2d","\x35","\x0d","\x9e")); outFields->push(HX_HCSTRING("checkPolicyFile","\x76","\x1e","\x96","\xaf")); super::__GetFields(outFields); }; #if HXCPP_SCRIPTABLE static hx::StorageInfo SoundLoaderContext_obj_sMemberStorageInfo[] = { {hx::fsFloat,(int)offsetof(SoundLoaderContext_obj,bufferTime),HX_HCSTRING("bufferTime","\x2d","\x35","\x0d","\x9e")}, {hx::fsBool,(int)offsetof(SoundLoaderContext_obj,checkPolicyFile),HX_HCSTRING("checkPolicyFile","\x76","\x1e","\x96","\xaf")}, { hx::fsUnknown, 0, null()} }; static hx::StaticInfo *SoundLoaderContext_obj_sStaticStorageInfo = 0; #endif static ::String SoundLoaderContext_obj_sMemberFields[] = { HX_HCSTRING("bufferTime","\x2d","\x35","\x0d","\x9e"), HX_HCSTRING("checkPolicyFile","\x76","\x1e","\x96","\xaf"), ::String(null()) }; static void SoundLoaderContext_obj_sMarkStatics(HX_MARK_PARAMS) { HX_MARK_MEMBER_NAME(SoundLoaderContext_obj::__mClass,"__mClass"); }; #ifdef HXCPP_VISIT_ALLOCS static void SoundLoaderContext_obj_sVisitStatics(HX_VISIT_PARAMS) { HX_VISIT_MEMBER_NAME(SoundLoaderContext_obj::__mClass,"__mClass"); }; #endif hx::Class SoundLoaderContext_obj::__mClass; void SoundLoaderContext_obj::__register() { hx::Object *dummy = new SoundLoaderContext_obj; SoundLoaderContext_obj::_hx_vtable = *(void **)dummy; hx::Static(__mClass) = new hx::Class_obj(); __mClass->mName = HX_HCSTRING("openfl.media.SoundLoaderContext","\xd5","\xa1","\xdf","\x8d"); __mClass->mSuper = &super::__SGetClass(); __mClass->mConstructEmpty = &__CreateEmpty; __mClass->mConstructArgs = &__Create; __mClass->mGetStaticField = &hx::Class_obj::GetNoStaticField; __mClass->mSetStaticField = &hx::Class_obj::SetNoStaticField; __mClass->mMarkFunc = SoundLoaderContext_obj_sMarkStatics; __mClass->mStatics = hx::Class_obj::dupFunctions(0 /* sStaticFields */); __mClass->mMembers = hx::Class_obj::dupFunctions(SoundLoaderContext_obj_sMemberFields); __mClass->mCanCast = hx::TCanCast< SoundLoaderContext_obj >; #ifdef HXCPP_VISIT_ALLOCS __mClass->mVisitFunc = SoundLoaderContext_obj_sVisitStatics; #endif #ifdef HXCPP_SCRIPTABLE __mClass->mMemberStorageInfo = SoundLoaderContext_obj_sMemberStorageInfo; #endif #ifdef HXCPP_SCRIPTABLE __mClass->mStaticStorageInfo = SoundLoaderContext_obj_sStaticStorageInfo; #endif hx::_hx_RegisterClass(__mClass->mName, __mClass); } } // end namespace openfl } // end namespace media
[ "44374106+dmoa@users.noreply.github.com" ]
44374106+dmoa@users.noreply.github.com
09b2fde0d4aa806ddc225e78e838863d6d60f73e
675dde2b1ece857cc5bc0e3cca9f1346bdc6c7ea
/iotexplorer/src/v20190423/model/DeleteProjectRequest.cpp
4289f0d5e434b529d91449172691d343e69856b2
[ "Apache-2.0" ]
permissive
jackrambor/tencentcloud-sdk-cpp
7ec86b31df6a9d37c3966b136a14691c2088bf55
71ce9e62893f8d3110c20e051897f55137ea4699
refs/heads/master
2020-06-25T18:44:19.397792
2019-07-29T03:34:29
2019-07-29T03:34:29
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,883
cpp
/* * Copyright (c) 2017-2019 THL A29 Limited, a Tencent company. 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 <tencentcloud/iotexplorer/v20190423/model/DeleteProjectRequest.h> #include <tencentcloud/core/utils/rapidjson/document.h> #include <tencentcloud/core/utils/rapidjson/writer.h> #include <tencentcloud/core/utils/rapidjson/stringbuffer.h> using namespace TencentCloud::Iotexplorer::V20190423::Model; using namespace rapidjson; using namespace std; DeleteProjectRequest::DeleteProjectRequest() : m_projectIdHasBeenSet(false) { } string DeleteProjectRequest::ToJsonString() const { Document d; d.SetObject(); Document::AllocatorType& allocator = d.GetAllocator(); if (m_projectIdHasBeenSet) { Value iKey(kStringType); string key = "ProjectId"; iKey.SetString(key.c_str(), allocator); d.AddMember(iKey, m_projectId, allocator); } StringBuffer buffer; Writer<StringBuffer> writer(buffer); d.Accept(writer); return buffer.GetString(); } int64_t DeleteProjectRequest::GetProjectId() const { return m_projectId; } void DeleteProjectRequest::SetProjectId(const int64_t& _projectId) { m_projectId = _projectId; m_projectIdHasBeenSet = true; } bool DeleteProjectRequest::ProjectIdHasBeenSet() const { return m_projectIdHasBeenSet; }
[ "jimmyzhuang@tencent.com" ]
jimmyzhuang@tencent.com
d96d428db311b71702ed8a6f980a47cb80058841
20b8ca079df2d5c97231624a8659b30d1a00c6db
/test/frame/test_macros.h
91464b1d97c837e97771c5bee7c00516cbd97c1a
[ "MIT" ]
permissive
tangzhenquan/atframe_utils
6a9eddf3ff4ff65958627442d93178ca29d7c2a6
94a41a89cbc65a62102a8ac0f98b4b340b2bb8ef
refs/heads/master
2020-12-03T16:04:51.184493
2020-03-12T13:23:19
2020-03-12T13:23:19
231,382,899
0
0
MIT
2020-01-02T13:00:08
2020-01-02T13:00:07
null
UTF-8
C++
false
false
5,397
h
/* * test_macros.h * * Created on: 2014年3月11日 * Author: owent * * Released under the MIT license */ #ifndef TEST_MACROS_H_ #define TEST_MACROS_H_ #pragma once #include <iostream> #include <sstream> #include <cstdio> #ifdef _MSC_VER #include <Windows.h> #endif #ifdef UTILS_TEST_MACRO_TEST_ENABLE_GTEST #include "gtest/gtest.h" #define CASE_TEST(test_name, case_name) TEST(test_name, case_name) #define CASE_EXPECT_TRUE(c) EXPECT_TRUE(c) #define CASE_EXPECT_FALSE(c) EXPECT_FALSE(c) #define CASE_EXPECT_EQ(l, r) EXPECT_EQ(l, r) #define CASE_EXPECT_NE(l, r) EXPECT_NE(l, r) #define CASE_EXPECT_LT(l, r) EXPECT_LT(l, r) #define CASE_EXPECT_LE(l, r) EXPECT_LE(l, r) #define CASE_EXPECT_GT(l, r) EXPECT_GT(l, r) #define CASE_EXPECT_GE(l, r) EXPECT_GE(l, r) #else #include "test_manager.h" #define test_case_func_name(test_name, case_name) test_func_test_##test_name##_case_##case_name #define test_case_obj_name(test_name, case_name) test_obj_test_##test_name##_case_##case_name##_obj #define CASE_TEST(test_name, case_name) \ static void test_case_func_name(test_name, case_name) (); \ static test_case_base test_case_obj_name(test_name, case_name) (#test_name, #case_name, test_case_func_name(test_name, case_name)); \ void test_case_func_name(test_name, case_name) () #ifdef UTILS_TEST_MACRO_TEST_ENABLE_BOOST_TEST #define CASE_EXPECT_TRUE(c) BOOST_CHECK(c) #define CASE_EXPECT_FALSE(c) BOOST_CHECK(!(c)) #define CASE_EXPECT_EQ(l, r) BOOST_CHECK_EQUAL(l, r) #define CASE_EXPECT_NE(l, r) BOOST_CHECK_NE(l, r) #define CASE_EXPECT_LT(l, r) BOOST_CHECK_LT(l, r) #define CASE_EXPECT_LE(l, r) BOOST_CHECK_LE(l, r) #define CASE_EXPECT_GT(l, r) BOOST_CHECK_GT(l, r) #define CASE_EXPECT_GE(l, r) BOOST_CHECK_GE(l, r) #else #define CASE_EXPECT_TRUE(c) test_manager::me().expect_true((c), #c, __FILE__, __LINE__) #define CASE_EXPECT_FALSE(c) test_manager::me().expect_false((c), #c, __FILE__, __LINE__) #define CASE_EXPECT_EQ(l, r) test_manager::me().expect_eq((l), (r), #l, #r, __FILE__, __LINE__) #define CASE_EXPECT_NE(l, r) test_manager::me().expect_ne((l), (r), #l, #r, __FILE__, __LINE__) #define CASE_EXPECT_LT(l, r) test_manager::me().expect_lt((l), (r), #l, #r, __FILE__, __LINE__) #define CASE_EXPECT_LE(l, r) test_manager::me().expect_le((l), (r), #l, #r, __FILE__, __LINE__) #define CASE_EXPECT_GT(l, r) test_manager::me().expect_gt((l), (r), #l, #r, __FILE__, __LINE__) #define CASE_EXPECT_GE(l, r) test_manager::me().expect_ge((l), (r), #l, #r, __FILE__, __LINE__) #endif #endif // 前景色: BLACK,RED,GREEN,YELLOW,BLUE,MAGENTA,CYAN,WHITE #define CASE_MSG_FCOLOR(x) util::cli::shell_font_style::SHELL_FONT_COLOR_##x // 背景色: BLACK,RED,GREEN,YELLOW,BLUE,MAGENTA,CYAN,WHITE #define CASE_MSG_BCOLOR(x) util::cli::shell_font_style::SHELL_FONT_BACKGROUND_COLOR_##x // 字体格式: BOLD,UNDERLINE,FLASH,DARK #define CASE_MSG_STYLE(x) util::cli::shell_font_style::SHELL_FONT_SPEC_##x #define CASE_MSG_INFO() util::cli::shell_stream(std::cout)()<< "[ RUNNING ] " #define CASE_MSG_ERROR() util::cli::shell_stream(std::cerr)()<< "[ RUNNING ] " // 测试中休眠 #if (defined(__cplusplus) && __cplusplus >= 201103L) || (defined(_MSC_VER) && _MSC_VER >= 1800) #include <thread> #define CASE_THREAD_SLEEP_MS(x) std::this_thread::sleep_for(std::chrono::milliseconds(x)) #define CASE_THREAD_YIELD() std::this_thread::yield() #elif defined(_MSC_VER) #include <Windows.h> #define CASE_THREAD_SLEEP_MS(x) Sleep(x) #define CASE_THREAD_YIELD() YieldProcessor() #else #include <unistd.h> #define CASE_THREAD_SLEEP_MS(x) ((x > 1000)? sleep(x / 1000): usleep(0)); usleep((x % 1000) * 1000) #if defined(__linux__) || defined(__unix__) #include <sched.h> #define CASE_THREAD_YIELD() sched_yield() #elif defined(__GNUC__) || defined(__clang__) #if defined(__i386__) || defined(__x86_64__) /** * See: Intel(R) 64 and IA-32 Architectures Software Developer's Manual V2 * PAUSE-Spin Loop Hint, 4-57 * http://www.intel.com/content/www/us/en/architecture-and-technology/64-ia-32-architectures-software-developer-instruction-set-reference-manual-325383.html?wapkw=instruction+set+reference */ #define CASE_THREAD_YIELD() __asm__ __volatile__("pause") #elif defined(__ia64__) || defined(__ia64) /** * See: Intel(R) Itanium(R) Architecture Developer's Manual, Vol.3 * hint - Performance Hint, 3:145 * http://www.intel.com/content/www/us/en/processors/itanium/itanium-architecture-vol-3-manual.html */ #define CASE_THREAD_YIELD() __asm__ __volatile__ ("hint @pause") #elif defined(__arm__) && !defined(__ANDROID__) /** * See: ARM Architecture Reference Manuals (YIELD) * http://infocenter.arm.com/help/index.jsp?topic=/com.arm.doc.subset.architecture.reference/index.html */ #define CASE_THREAD_YIELD() __asm__ __volatile__ ("yield") #else #define CASE_THREAD_YIELD() #endif #else #define CASE_THREAD_YIELD() #endif #endif #endif /* TEST_MACROS_H_ */
[ "owt5008137@live.com" ]
owt5008137@live.com
da96e0379babc133a3a87f06393307de27640b42
3ea8595a1e9f619d38d2a94377d99c5a018858b1
/src/ui/kia_steering_ui_main_window.h
908cf133f411f6d5327ab0f884614d33d781ba89
[]
no_license
imaginary-friend94/pilotguru
8d8a6a6eacd2f6157b35ca6d7704f818228c9ccb
67a95ef708557805a52fa143b5a58ae44e33767b
refs/heads/master
2021-05-14T01:32:40.294224
2018-01-17T20:48:04
2018-01-17T20:48:04
102,977,187
0
0
null
2017-09-09T18:41:27
2017-09-09T18:41:27
null
UTF-8
C++
false
false
5,370
h
#ifndef MAINWINDOW_H #define MAINWINDOW_H #include <QMainWindow> #include <QThread> #include <chrono> #include <memory> #include <glog/logging.h> #include <car/arduino_comm.hpp> #include <car/can.hpp> #include <car/kia_can.hpp> #include <car/kia_steering_angle_holder.hpp> #include <io/timestamped_json_logger.hpp> namespace Ui { class MainWindow; } constexpr char STEERING_COMMANDS_LOG_ROOT_ELEMENT[] = "steering_commands"; constexpr char STEERING_ANGLES_LOG_ROOT_ELEMENT[] = "steering_angles"; // Common logic for a separate thread continuously picking new timestamped // values from a queue and processing them. // Uses QThread instead of C++ standard library for compatibility with the // slots/signals framework used in the QT UI - directly updating UI elements // from multiple threads is not supported by QT. // This template usage must be restricted to the UI part of the program to avoid // propagating QT dependencies any deeper to the rest of the code. template <typename T> class TimestampedValueReadThread : public QThread { public: // Does not take ownership of the pointer. TimestampedValueReadThread( const pilotguru::TimestampedHistory<T> *values_history) : values_history_(values_history) { CHECK_NOTNULL(values_history_); } // Actual processing logic to be implemented by derivative classes. virtual void ProcessValue(const pilotguru::Timestamped<T> &value) = 0; void run() override { // Need a timeout waiting for new value to be able to check must_run_ // regularly. pilotguru::Timestamped<T> value_instance{{}, {0, 0}}; pilotguru::LoopWaitEffectiveTimeout loop_timeout( {0 /* seconds */, 50000 /* usec */}); while (must_run_) { timeval wait_timeout = loop_timeout.GetRemainingTimeout(); const bool wait_result = values_history_->wait_get_next( value_instance.timestamp(), &wait_timeout, &value_instance); loop_timeout.WaitFinished(); if (wait_result) { ProcessValue(value_instance); } } } void RequestStop() { must_run_ = false; } private: const pilotguru::TimestampedHistory<T> *values_history_ = nullptr; bool must_run_ = true; }; // Reads SteeringAngle values off the queue. class SteeringAngleReadThread : public TimestampedValueReadThread<pilotguru::kia::SteeringAngle> { Q_OBJECT public: SteeringAngleReadThread(const pilotguru::TimestampedHistory< pilotguru::kia::SteeringAngle> *values_history); void ProcessValue(const pilotguru::Timestamped<pilotguru::kia::SteeringAngle> &value) override; signals: void SteeringAngleChanged(int16_t angle_deci_degrees); }; // Reads Velocity values off the queue and formats average wheel velocity as // text. class VelocityReadThread : public TimestampedValueReadThread<pilotguru::kia::Velocity> { Q_OBJECT public: VelocityReadThread(const pilotguru::TimestampedHistory< pilotguru::kia::Velocity> *values_history); void ProcessValue( const pilotguru::Timestamped<pilotguru::kia::Velocity> &value) override; signals: void VelocityChanged(QString text); }; // Reads Velocity values off the queue and formats average wheel velocity as // text. class SteeringTorqueOffsetReadThread : public TimestampedValueReadThread<pilotguru::kia::KiaControlCommand> { Q_OBJECT public: SteeringTorqueOffsetReadThread( const pilotguru::TimestampedHistory<pilotguru::kia::KiaControlCommand> *values_history); void ProcessValue( const pilotguru::Timestamped<pilotguru::kia::KiaControlCommand> &value) override; signals: void SteeringTorqueChanged(QString text); }; class MainWindow : public QMainWindow { Q_OBJECT public: explicit MainWindow(const std::string &can_interface, const std::string &arduino_tty, const pilotguru::kia::SteeringAngleHolderSettings &steering_controller_settings, const std::string &log_dir, QWidget *parent = 0); virtual ~MainWindow(); private: void SendSingleSteeringCommand(); void SetTargetSteeringAngleFromInputField(); void ClearTargetSteeringAngle(); void TurnLeft(); void TurnRight(); void OnSteeringAngleChanged(int16_t angle_deci_degrees); void OnVelocityChanged(QString text); void OnSteeringTorqueChanged(QString text); void SetTargetSteeringAngle(double target_angle_degrees); void ShiftTargetSteeringAngle(double target_angle_shift_degrees); Ui::MainWindow *ui; std::unique_ptr<pilotguru::kia::CarMotionData> car_motion_data_; std::unique_ptr<pilotguru::kia::CarMotionDataUpdater> car_motion_data_updater_; std::unique_ptr<pilotguru::ArduinoCommandChannel> arduino_command_channel_; std::unique_ptr<pilotguru::kia::SteeringAngleHolderController> steering_controller_; std::unique_ptr<SteeringAngleReadThread> steering_angle_read_thread_; std::unique_ptr<VelocityReadThread> velocity_read_thread_; std::unique_ptr<SteeringTorqueOffsetReadThread> steering_torque_offset_read_thread_; std::unique_ptr< pilotguru::TimestampedJsonLogger<pilotguru::kia::KiaControlCommand>> kia_commands_logger_; std::unique_ptr< pilotguru::TimestampedJsonLogger<pilotguru::kia::SteeringAngle>> steering_angles_logger_; }; #endif // MAINWINDOW_H
[ "chechetka@gmail.com" ]
chechetka@gmail.com
e7793600380ad748b6fc1a10c2036a8f1c9b8f98
c0871c898c3ea04da723f8601685f882146690b9
/Include/Clock.hpp
3b223a888a456eca0f931eec6ec82d9feec9e7f2
[]
no_license
frouioui/NanoTekSpice
07d1c055e75e2b891f7c260176e21726d16b8345
c717ea9f3d6ef1b9132cfbf50a3a3eae6cf1941d
refs/heads/master
2020-04-18T02:00:22.753519
2019-02-18T18:02:12
2019-02-18T18:02:12
167,142,957
2
4
null
null
null
null
UTF-8
C++
false
false
815
hpp
/* ** EPITECH PROJECT, 2019 ** OOP_NanoTekSpice ** File description: ** Clock class */ #ifndef CLOCK_HPP_ #define CLOCK_HPP_ #include "Component.hpp" #include <iostream> #include <map> class Clock : public Component::MyComponent { public: Clock(); ~Clock(); nts::Tristate compute(std::size_t pin = 1) override; void setLink(std::size_t pin , nts::IComponent &other, std::size_t otherPin) override; void dump() const noexcept override; void setInput(std::size_t pin, nts::IComponent &other, std::size_t otherPin) final; void setOutput(std::size_t pin, nts::IComponent &other, std::size_t otherPin) final; void setState(const std::string &state) final; private: std::map<size_t, nts::Pin> _output; }; #endif /* !CLOCK_HPP_ */
[ "cecile.cadoul@epitech.eu" ]
cecile.cadoul@epitech.eu
e73cebd30a74212f405e641c2f9b303592853f32
d81fde186297f570ccd4f9ea5df3277a0172ab17
/Temp/il2cppOutput/il2cppOutput/mscorlib_System_Collections_Generic_List_1_gen3711602254.h
20ed3b0e09299d81fa99ff5fba08a4cad1e6eb44
[]
no_license
dsalamancad/ARPlaceMaker
832c7d87b5786f14c922c4716d03075edf2ec3ba
9c5674007b35fd50a06abb858d5f1275be231eb6
refs/heads/master
2021-01-17T20:27:51.944773
2016-05-06T04:38:43
2016-05-06T04:38:43
58,178,989
0
0
null
2016-05-06T03:41:18
2016-05-06T03:41:17
null
UTF-8
C++
false
false
2,592
h
#pragma once #include "il2cpp-config.h" #ifndef _MSC_VER # include <alloca.h> #else # include <malloc.h> #endif #include <stdint.h> // DragGesture[] struct DragGestureU5BU5D_t1463800248; #include "mscorlib_System_Object837106420.h" #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.List`1<DragGesture> struct List_1_t3711602254 : public Il2CppObject { public: // T[] System.Collections.Generic.List`1::_items DragGestureU5BU5D_t1463800248* ____items_1; // System.Int32 System.Collections.Generic.List`1::_size int32_t ____size_2; // System.Int32 System.Collections.Generic.List`1::_version int32_t ____version_3; public: inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t3711602254, ____items_1)); } inline DragGestureU5BU5D_t1463800248* get__items_1() const { return ____items_1; } inline DragGestureU5BU5D_t1463800248** get_address_of__items_1() { return &____items_1; } inline void set__items_1(DragGestureU5BU5D_t1463800248* value) { ____items_1 = value; Il2CppCodeGenWriteBarrier(&____items_1, value); } inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t3711602254, ____size_2)); } inline int32_t get__size_2() const { return ____size_2; } inline int32_t* get_address_of__size_2() { return &____size_2; } inline void set__size_2(int32_t value) { ____size_2 = value; } inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t3711602254, ____version_3)); } inline int32_t get__version_3() const { return ____version_3; } inline int32_t* get_address_of__version_3() { return &____version_3; } inline void set__version_3(int32_t value) { ____version_3 = value; } }; struct List_1_t3711602254_StaticFields { public: // T[] System.Collections.Generic.List`1::EmptyArray DragGestureU5BU5D_t1463800248* ___EmptyArray_4; public: inline static int32_t get_offset_of_EmptyArray_4() { return static_cast<int32_t>(offsetof(List_1_t3711602254_StaticFields, ___EmptyArray_4)); } inline DragGestureU5BU5D_t1463800248* get_EmptyArray_4() const { return ___EmptyArray_4; } inline DragGestureU5BU5D_t1463800248** get_address_of_EmptyArray_4() { return &___EmptyArray_4; } inline void set_EmptyArray_4(DragGestureU5BU5D_t1463800248* value) { ___EmptyArray_4 = value; Il2CppCodeGenWriteBarrier(&___EmptyArray_4, value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif
[ "contacto@danielsalamanca.com" ]
contacto@danielsalamanca.com
55ab23daf86a0ac018937eaec15243f84a745e82
fb82c37173782c58866be5f1bb2ea83ea7b2cba9
/src/ntk/v3NtkInput.cpp
42f7f33aa361606c3c81635ed397c7340c018c5b
[]
no_license
ckmarkoh/101_2_SOCV_pa3
7d6a446bbdd54e2a256965a16530132191117255
68558259ea9dc10b5e56f61adb942486f92fa1ed
refs/heads/master
2016-09-02T03:27:59.541944
2013-05-27T13:18:03
2013-05-27T13:18:03
null
0
0
null
null
null
null
UTF-8
C++
false
false
4,033
cpp
/**************************************************************************** FileName [ v3NtkInput.cpp ] PackageName [ v3/src/ntk ] Synopsis [ Base Input Handler for V3 Ntk. ] Author [ Cheng-Yin Wu ] Copyright [ Copyright(c) 2012 LaDs(III), GIEE, NTU, Taiwan ] ****************************************************************************/ #ifndef V3_NTK_INPUT_C #define V3_NTK_INPUT_C #include "v3Msg.h" #include "v3NtkUtil.h" #include "v3NtkInput.h" /* -------------------------------------------------- *\ * Class V3Parser Implementations \* -------------------------------------------------- */ // Constructor and Destructor V3NtkInput::V3NtkInput(const bool& isAig, const string& name) : V3NtkHandler(0, createV3Ntk(!isAig)), _ntkName(name) { assert (_ntk); _nameHash.clear(); _netHash.clear(); _outName.clear(); _nameHash.insert(make_pair("0", V3NetId::makeNetId(0))); _netHash.insert(make_pair(0, "0")); } V3NtkInput::~V3NtkInput() { _nameHash.clear(); _netHash.clear(); } // I/O Ancestry Functions const string V3NtkInput::getInputName(const uint32_t& index) const { assert (_ntk); if (index >= _ntk->getInputSize()) return ""; return reinterpret_cast<const V3NtkHandler* const>(this)->getNetName(_ntk->getInput(index)); } const string V3NtkInput::getOutputName(const uint32_t& index) const { assert (_ntk); if (index >= _ntk->getOutputSize()) return ""; return (index < _outName.size()) ? _outName[index] : ""; } const string V3NtkInput::getInoutName(const uint32_t& index) const { assert (_ntk); if (index >= _ntk->getInoutSize()) return ""; return reinterpret_cast<const V3NtkHandler* const>(this)->getNetName(_ntk->getInout(index)); } // Net Ancestry Functions void V3NtkInput::getNetName(V3NetId& id, string& name) const { if (V3NetUD == id || id.cp) { assert (!name.size()); return; } V3NetStrHash::const_iterator it = _netHash.find(id.id); name = (it == _netHash.end()) ? "" : it->second; } // Ntk Input Naming Functions const bool V3NtkInput::resetNetName(const uint32_t& index, const string& name) { assert (index < _ntk->getNetSize()); assert (name.size()); if (existNet(name)) { Msg(MSG_ERR) << "Net Name \"" << name << "\" Already Exists !!" << endl; return false; } V3NetStrHash::const_iterator it = _netHash.find(index); if ((_netHash.end() != it) && it->second.size()) { _nameHash.erase(_nameHash.find(it->second)); assert (!existNet(it->second)); } _nameHash.insert(make_pair(name, V3NetId::makeNetId(index))); assert (existNet(name)); _netHash[index] = name; return true; } void V3NtkInput::recordOutName(const uint32_t& index, const string& name) { assert (index < _ntk->getOutputSize()); assert (name.size()); for (uint32_t i = _outName.size(); i < _ntk->getOutputSize(); ++i) _outName.push_back(""); assert (index < _outName.size()); _outName[index] = name; } const V3NetId V3NtkInput::createNet(const string& netName, uint32_t width) { assert (width); V3NetId id = (netName.size()) ? getNetId(netName) : V3NetUD; if (id == V3NetUD) { id = _ntk->createNet(width); assert (V3NetUD != id); if (netName.size()) { _nameHash.insert(make_pair(netName, id)); _netHash.insert(make_pair(id.id, netName)); } return id; } else if (width == _ntk->getNetWidth(id)) return id; Msg(MSG_ERR) << "Existing net \"" << netName << "\" has width = " << _ntk->getNetWidth(id) << " != " << width << endl; return V3NetUD; } const V3NetId V3NtkInput::getNetId(const string& netName) const { V3StrNetHash::const_iterator it = _nameHash.find(netName); return (it != _nameHash.end()) ? it->second : V3NetUD; } // Extended Helper Functions void V3NtkInput::renderFreeNetAsInput() { V3NetId id = V3NetId::makeNetId(1); assert (!_ntk->getInputSize()); for (uint32_t i = 1; i < _ntk->getNetSize(); ++i, ++id.id) { if (V3_PI != _ntk->getGateType(id)) continue; assert (i == id.id); _ntk->createInput(id); } } #endif
[ "mark23456@hotmail.com" ]
mark23456@hotmail.com
5af1ebcceff23de82701bf3064f6129fce489e10
a81a4e3dc8669a501a50e777c86cb7a00405e258
/ShieldEkgEmgDemo/ShieldEkgEmgDemo.ino
ef3e9026cd947537c85381ce37874ce513e558ce
[]
no_license
cghenne/ECathG
a0feef95a67090b41779045941263805514f0600
e34d3b2f00e80d2c6a2d7e9b9f02979988197e52
refs/heads/master
2021-01-10T13:34:31.752632
2016-01-28T17:30:27
2016-01-28T17:30:27
49,272,108
1
0
null
null
null
null
UTF-8
C++
false
false
6,965
ino
/**********************************************************/ /* Demo program for: */ /* Board: SHIELD-EKG/EMG + Olimexino328 */ /* Manufacture: OLIMEX */ /* COPYRIGHT (C) 2012 */ /* Designed by: Penko Todorov Bozhkov */ /* Module Name: Sketch */ /* File Name: ShieldEkgEmgDemo.ino */ /* Revision: Rev.A */ /* -> Added is suppport for all Arduino boards. */ /* This code could be recompiled for all of them! */ /* Date: 19.12.2012 */ /* Built with Arduino C/C++ Compiler, version: 1.0.3 */ /**********************************************************/ /********************************************************** Purpose of this programme is to give you an easy way to connect Olimexino328 to ElectricGuru(TM), see: https://www.olimex.com/Products/EEG/OpenEEG/EEG-SMT/resources/ElecGuru40.zip where you'll be able to observe yours own EKG or EMG signal. It is based on: *********************************************************** * ModularEEG firmware for one-way transmission, v0.5.4-p2 * Copyright (c) 2002-2003, Joerg Hansmann, Jim Peters, Andreas Robinson * License: GNU General Public License (GPL) v2 *********************************************************** For proper communication packet format given below have to be supported: /////////////////////////////////////////////// ////////// Packet Format Version 2 //////////// /////////////////////////////////////////////// // 17-byte packets are transmitted from Olimexino328 at 256Hz, // using 1 start bit, 8 data bits, 1 stop bit, no parity, 57600 bits per second. // Minimial transmission speed is 256Hz * sizeof(Olimexino328_packet) * 10 = 43520 bps. struct Olimexino328_packet { uint8_t sync0; // = 0xa5 uint8_t sync1; // = 0x5a uint8_t version; // = 2 (packet version) uint8_t count; // packet counter. Increases by 1 each packet. uint16_t data[6]; // 10-bit sample (= 0 - 1023) in big endian (Motorola) format. uint8_t switches; // State of PD5 to PD2, in bits 3 to 0. }; */ /**********************************************************/ #include <compat/deprecated.h> #include <FlexiTimer2.h> //http://www.arduino.cc/playground/Main/FlexiTimer2 // All definitions #define NUMCHANNELS 1 #define HEADERLEN 1 #define PACKETLEN (NUMCHANNELS * 2 + HEADERLEN) #define SAMPFREQ 256 // ADC sampling rate 256 #define TIMER2VAL (1024/(SAMPFREQ)) // Set 256Hz sampling frequency #define LED1 13 #define CHANNEL 0 #define CAL_SIG 9 // Global constants and variables volatile unsigned char TXBuf[PACKETLEN]; //The transmission packet volatile unsigned char TXIndex; //Next byte to write in the transmission packet. volatile unsigned char counter = 0; //Additional divider used to generate CAL_SIG volatile unsigned int ADC_Value = 0; //ADC current value //~~~~~~~~~~ // Functions //~~~~~~~~~~ /****************************************************/ /* Function name: Toggle_LED1 */ /* Parameters */ /* Input : No */ /* Output : No */ /* Action: Switches-over LED1. */ /****************************************************/ void Toggle_LED1(void){ if((digitalRead(LED1))==HIGH){ digitalWrite(LED1,LOW); } else{ digitalWrite(LED1,HIGH); } } /****************************************************/ /* Function name: toggle_GAL_SIG */ /* Parameters */ /* Input : No */ /* Output : No */ /* Action: Switches-over GAL_SIG. */ /****************************************************/ void toggle_GAL_SIG(void){ if(digitalRead(CAL_SIG) == HIGH){ digitalWrite(CAL_SIG, LOW); } else{ digitalWrite(CAL_SIG, HIGH); } } /****************************************************/ /* Function name: setup */ /* Parameters */ /* Input : No */ /* Output : No */ /* Action: Initializes all peripherals */ /****************************************************/ void setup() { noInterrupts(); // Disable all interrupts before initialization // LED1 pinMode(LED1, OUTPUT); //Setup LED1 direction digitalWrite(LED1,LOW); //Setup LED1 state pinMode(CAL_SIG, OUTPUT); //Write packet header and footer TXBuf[0] = 0xaa; //Sync 0 TXBuf[1] = 0x02; //CH1 High Byte TXBuf[2] = 0x00; //CH1 Low Byte // Timer2 // Timer2 is used to setup the analag channels sampling frequency and packet update. // Whenever interrupt occures, the current read packet is sent to the PC // In addition the CAL_SIG is generated as well, so Timer1 is not required in this case! FlexiTimer2::set(TIMER2VAL, Timer2_Overflow_ISR); FlexiTimer2::start(); // Serial Port Serial.begin(9600); //Set speed to 57600 bps // MCU sleep mode = idle. //outb(MCUCR,(inp(MCUCR) | (1<<SE)) & (~(1<<SM0) | ~(1<<SM1) | ~(1<<SM2))); interrupts(); // Enable all interrupts after initialization has been completed } /****************************************************/ /* Function name: Timer2_Overflow_ISR */ /* Parameters */ /* Input : No */ /* Output : No */ /* Action: Determines ADC sampling frequency. */ /****************************************************/ void Timer2_Overflow_ISR() { //Read the 6 ADC inputs and store current values in Packet ADC_Value = analogRead(CHANNEL); TXBuf[1] = ((unsigned char)((ADC_Value & 0xFF00) >> 8)); // Write High Byte TXBuf[2] = ((unsigned char)(ADC_Value & 0x00FF)); // Write Low Byte // Send Packet for(TXIndex=0;TXIndex<3;TXIndex++){ Serial.write(TXBuf[TXIndex]); } // Generate the CAL_SIGnal counter++; // increment the devider counter if(counter == 12){ // 250/12/2 = 10.4Hz ->Toggle frequency counter = 0; toggle_GAL_SIG(); // Generate CAL signal with frequ ~10Hz // Toggle LED1 with ADC sampling frequency /2 Toggle_LED1(); } } /****************************************************/ /* Function name: loop */ /* Parameters */ /* Input : No */ /* Output : No */ /* Action: Puts MCU into sleep mode. */ /****************************************************/ void loop() { __asm__ __volatile__ ("sleep"); }
[ "cathleenghenne@miaou.local" ]
cathleenghenne@miaou.local
96274d95aa79293a8b7d00118fe92df9cc944e93
0ff4fae40a270d51875310bba44d7fa1ddc97012
/src/Cpu.cpp
13223f73c54a7517f55464b3b61b6df178199e8d
[]
no_license
zhengcharlie8/ARM_Architecture-Assembler-Simulator
3541c941a42e4fdb58b25cb657fbe17a525f7537
6d23f115d5360de68f948239bf48dfb5263bdf55
refs/heads/master
2023-01-14T10:39:08.837799
2020-11-16T20:39:54
2020-11-16T20:39:54
262,464,304
1
0
null
null
null
null
UTF-8
C++
false
false
36,289
cpp
#include "Cpu.h" #include "Util.h" // // #include <unistd.h> #include <cstdio> #include <cassert> #include <iostream> CPU::CPU(const vector<uint32_t>& program) { Reg defaultReg; defaultReg.setType(Reg::Type::WIDTH32); defaultReg.setData(0); for (int i = 0; i < 32; i++) { reg[i] = defaultReg; } cycles = 0; toEnd = 0; residue = program; vector<int> temp(5,-1); pipeline = temp; mem.loadProgram(program); } void CPU::reset() { Reg defaultReg; defaultReg.setType(Reg::Type::WIDTH32); defaultReg.setData(0); for (int i = 0; i < 32; i++) { reg[i] = defaultReg; } cycles = 0; vector<int> temp(5,-1); pipeline = temp; toEnd = 0; mem.loadProgram(residue); } void CPU::run() { while (!isHalted) { step(); } view(); printPipe(); } void CPU::printPipe() { if(isHalted){ vector<int> temp(5,-1); pipeline = temp; } printf("\nPipeline:\n"); printf("Fetch:%d\n",pipeline[0]); printf("Decode:%d\n",pipeline[1]); printf("Execute:%d\n",pipeline[2]); printf("Memory Access:%d\n",pipeline[3]); printf("Write back:%d\n\n",pipeline[4]); } void CPU::addPipe(int des) { pipeline[4]=pipeline[3]; pipeline[3]=pipeline[2]; pipeline[2]=pipeline[1]; pipeline[1]=pipeline[0]; pipeline[0]=des; } void CPU::step() { uint32_t instruction = fetch(); int choice; if(toEnd == 1) { execute(instruction); cycles += 10; cout<<"cycle: "<<cycles<<endl; return; } while(toEnd == 0){ cout<<"Press 1 to step\n"<<"press 2 to view registers\n"<<"pres 3 to view pipeline\n"<<"Press 4 to step to end\n"<<"press 5 to restart"<<endl; cin>>choice; if(choice == 1){ execute(instruction); instruction = fetch(); cycles += 10; cout<<"cycle: "<<cycles<<endl; } else if(choice == 2) view(); else if(choice == 3) printPipe(); else if(choice ==4) { execute(instruction); cycles += 10; cout<<"cycle: "<<cycles<<endl; toEnd =10; break; } else if(choice ==4) { reset(); break; } } } void CPU::view(){ for(int i = 0; i < 12 ;i++) { printf("R%d:0x%08X R%d:0x%08X\n", i, reg[i].getData(), i+16, reg[i+16].getData()); } printf("R%d:0x%08X LR:0x%08X\n", 12, reg[12].getData(), reg[28].getData()); printf("R%d:0x%08X SP:0x%08X\n", 13, reg[13].getData(), reg[29].getData()); printf("R%d:0x%08X APSR:0x%08X\n", 14, reg[14].getData(), reg[30].getData()); printf("R%d:0x%08X PC:0x%08X\n", 15, reg[15].getData(), reg[31].getData()); } uint32_t CPU::fetch() { // Get address of instruction uint32_t address = PC.getData(); // Increment PC PC.setData(address + sizeof(uint32_t)); // Fetch instruction from memory return mem.read(address, &cycles); } void CPU::execute(const uint32_t instruction) { // INSTRUCTION TYPES const static auto EXECUTION = 0; const static auto LOADSTORE = 1; const static auto BRANCH = 2; const static auto SPECIAL = 3; const int type = EB(instruction, 32, 30); switch (type) { case EXECUTION : { // EXECUTION INSTRUCTION TYPES const static auto OP_ADD = 0b00000; const static auto OP_ADDI = 0b00001; const static auto OP_SUB = 0b00010; const static auto OP_SUBI = 0b00011; const static auto OP_RSUB = 0b00100; const static auto OP_CMP = 0b00101; const static auto OP_CMPI = 0b00110; const static auto OP_AND = 0b00111; const static auto OP_ANDI = 0b01000; const static auto OP_OR = 0b01001; const static auto OP_ORI = 0b01010; const static auto OP_NOT = 0b01011; const static auto OP_XOR = 0b01100; const static auto OP_XORI = 0b01101; const static auto OP_LSR = 0b01110; const static auto OP_LSRI = 0b01111; const static auto OP_LSL = 0b10000; const static auto OP_LSLI = 0b10001; const static auto OP_ASR = 0b10010; const static auto OP_ROR = 0b10011; const static auto OP_ROL = 0b10100; const static auto OP_MUL = 0b10101; const static auto OP_UMUL = 0b10110; const static auto OP_DIV = 0b10111; const static auto OP_UDIV = 0b11000; const static auto OP_MOD = 0b11001; const static auto OP_UMOD = 0b11010; const static auto OP_MOV = 0b11011; const static auto OP_MOVI = 0b11100; const static auto OP_TRN = 0b11101; const auto op = EB(instruction, 30, 25); switch (op) { case OP_ADD : { const uint32_t dst = EB(instruction, 25, 20); const uint32_t op1 = EB(instruction, 20, 15); const uint32_t op2 = EB(instruction, 15, 10); addPipe(dst); printf("ADD r%d r%d r%d\n", dst, op1, op2); ADD(reg[dst], reg[op1], reg[op2]); break; } case OP_ADDI : { const uint32_t dst = EB(instruction, 25, 20); const uint32_t op1 = EB(instruction, 20, 15); const uint32_t imm = EB(instruction, 15, 0); addPipe(dst); printf("ADD r%d r%d imm=%d\n", dst, op1, imm); ADD(reg[dst], reg[op1], imm); break; } case OP_SUB : { const uint32_t dst = EB(instruction, 25, 20); const uint32_t op1 = EB(instruction, 20, 15); const uint32_t op2 = EB(instruction, 15, 10); addPipe(dst); printf("SUB r%d r%d r%d\n", dst, op1, op2); SUB(reg[dst], reg[op1], reg[op2]); break; } case OP_SUBI : { const uint32_t dst = EB(instruction, 25, 20); const uint32_t op1 = EB(instruction, 20, 15); const uint32_t imm = EB(instruction, 15, 0); addPipe(dst); printf("SUB r%d r%d imm=%d\n", dst, op1, imm); SUB(reg[dst], reg[op1], imm); break; } case OP_RSUB : { const uint32_t dst = EB(instruction, 25, 20); const uint32_t op1 = EB(instruction, 20, 15); const uint32_t imm = EB(instruction, 15, 0); addPipe(dst); printf("RSUB r%d imm=%d r%d\n", dst, imm, op1); RSUB(reg[dst], imm, reg[op1]); break; } case OP_CMP : { const uint32_t op1 = EB(instruction, 25, 20); const uint32_t op2 = EB(instruction, 20, 15); printf("CMP r%d r%d\n", op1, op2); CMP(reg[op1], reg[op2]); break; } case OP_CMPI : { const uint32_t op1 = EB(instruction, 25, 20); const int32_t imm = SE(EB(instruction, 20, 0), 20); printf("CMP r%d imm=%d\n", op1, imm); CMP(reg[op1], imm); break; } case OP_AND : { const uint32_t dst = EB(instruction, 25, 20); const uint32_t op1 = EB(instruction, 20, 15); const uint32_t op2 = EB(instruction, 15, 10); addPipe(dst); printf("AND r%d r%d r%d\n", dst, op1, op2); AND(reg[dst], reg[op1], reg[op2]); break; } case OP_ANDI : { const uint32_t dst = EB(instruction, 25, 20); const uint32_t op1 = EB(instruction, 20, 15); const uint32_t imm = EB(instruction, 15, 0); addPipe(dst); printf("AND r%d r%d imm=%d\n", dst, op1, imm); AND(reg[dst], reg[op1], imm); break; } case OP_OR : { const uint32_t dst = EB(instruction, 25, 20); const uint32_t op1 = EB(instruction, 20, 15); const uint32_t op2 = EB(instruction, 15, 10); addPipe(dst); printf("OR r%d r%d r%d\n", dst, op1, op2); OR(reg[dst], reg[op1], reg[op2]); break; } case OP_ORI : { const uint32_t dst = EB(instruction, 25, 20); const uint32_t op1 = EB(instruction, 20, 15); const uint32_t imm = EB(instruction, 15, 0); printf("OR r%d r%d imm=%d\n", dst, op1, imm); addPipe(dst); OR(reg[dst], reg[op1], imm); break; } case OP_NOT : { const uint32_t op1 = EB(instruction, 25, 20); const uint32_t op2 = EB(instruction, 20, 15); printf("NOT r%d r%d\n", op1, op2); NOT(reg[op1], reg[op2]); break; } case OP_XOR : { const uint32_t dst = EB(instruction, 25, 20); const uint32_t op1 = EB(instruction, 20, 15); const uint32_t op2 = EB(instruction, 15, 10); addPipe(dst); printf("XOR r%d r%d r%d\n", dst, op1, op2); XOR(reg[dst], reg[op1], reg[op2]); break; } case OP_XORI : { const uint32_t dst = EB(instruction, 25, 20); const uint32_t op1 = EB(instruction, 20, 15); const uint32_t imm = EB(instruction, 15, 0); printf("XOR r%d r%d imm=%d\n", dst, op1, imm); addPipe(dst); XOR(reg[dst], reg[op1], imm); break; } case OP_LSR : { const uint32_t dst = EB(instruction, 25, 20); const uint32_t op1 = EB(instruction, 20, 15); const uint32_t op2 = EB(instruction, 15, 10); addPipe(dst); printf("LSR r%d r%d r%d\n", dst, op1, op2); LSR(reg[dst], reg[op1], reg[op2]); break; } case OP_LSRI : { const uint32_t dst = EB(instruction, 25, 20); const uint32_t op1 = EB(instruction, 20, 15); const uint32_t imm = EB(instruction, 15, 0); addPipe(dst); printf("LSR r%d r%d imm=%d\n", dst, op1, imm); LSR(reg[dst], reg[op1], imm); break; } case OP_LSL : { const uint32_t dst = EB(instruction, 25, 20); const uint32_t op1 = EB(instruction, 20, 15); const uint32_t op2 = EB(instruction, 15, 10); addPipe(dst); printf("LSL r%d r%d r%d\n", dst, op1, op2); LSL(reg[dst], reg[op1], reg[op2]); break; } case OP_LSLI : { const uint32_t dst = EB(instruction, 25, 20); const uint32_t op1 = EB(instruction, 20, 15); const uint32_t imm = EB(instruction, 15, 0); addPipe(dst); printf("LSL r%d r%d imm=%d\n", dst, op1, imm); LSL(reg[dst], reg[op1], imm); break; } case OP_ASR : { const uint32_t dst = EB(instruction, 25, 20); const uint32_t op1 = EB(instruction, 20, 15); const uint32_t op2 = EB(instruction, 15, 10); addPipe(dst); printf("ASR r%d r%d r%d\n", dst, op1, op2); ASR(reg[dst], reg[op1], reg[op2]); break; } case OP_ROR : { const uint32_t dst = EB(instruction, 25, 20); const uint32_t op1 = EB(instruction, 20, 15); const uint32_t op2 = EB(instruction, 15, 10); addPipe(dst); printf("ROR r%d r%d r%d\n", dst, op1, op2); ROR(reg[dst], reg[op1], reg[op2]); break; } case OP_ROL : { const uint32_t dst = EB(instruction, 25, 20); const uint32_t op1 = EB(instruction, 20, 15); const uint32_t op2 = EB(instruction, 15, 10); addPipe(dst); printf("ROL r%d r%d r%d\n", dst, op1, op2); ROL(reg[dst], reg[op1], reg[op2]); break; } case OP_MUL : { const uint32_t dst = EB(instruction, 25, 20); const uint32_t op1 = EB(instruction, 20, 15); const uint32_t op2 = EB(instruction, 15, 10); addPipe(dst); printf("MUL r%d r%d r%d\n", dst, op1, op2); MUL(reg[dst], reg[op1], reg[op2]); break; } case OP_UMUL : { const uint32_t dst = EB(instruction, 25, 20); const uint32_t op1 = EB(instruction, 20, 15); const uint32_t op2 = EB(instruction, 15, 10); addPipe(dst); printf("UMUL r%d r%d r%d\n", dst, op1, op2); UMUL(reg[dst], reg[op1], reg[op2]); break; } case OP_DIV : { const uint32_t dst = EB(instruction, 25, 20); const uint32_t op1 = EB(instruction, 20, 15); const uint32_t op2 = EB(instruction, 15, 10); printf("DIV r%d r%d r%d\n", dst, op1, op2); DIV(reg[dst], reg[op1], reg[op2]); break; } case OP_UDIV : { const uint32_t dst = EB(instruction, 25, 20); const uint32_t op1 = EB(instruction, 20, 15); const uint32_t op2 = EB(instruction, 15, 10); printf("UDIV r%d r%d r%d\n", dst, op1, op2); UDIV(reg[dst], reg[op1], reg[op2]); break; } case OP_MOD : { const uint32_t dst = EB(instruction, 25, 20); const uint32_t op1 = EB(instruction, 20, 15); const uint32_t op2 = EB(instruction, 15, 10); printf("MOD r%d r%d r%d\n", dst, op1, op2); MOD(reg[dst], reg[op1], reg[op2]); break; } case OP_UMOD : { const uint32_t dst = EB(instruction, 25, 20); const uint32_t op1 = EB(instruction, 20, 15); const uint32_t op2 = EB(instruction, 15, 10); printf("UMOD r%d r%d r%d\n", dst, op1, op2); UMOD(reg[dst], reg[op1], reg[op2]); break; } case OP_MOV : { const uint32_t dst = EB(instruction, 25, 20); const uint32_t src = EB(instruction, 20, 15); printf("MOV r%d r%d\n", dst, src); MOV(reg[dst], reg[src]); break; } case OP_MOVI : { const uint32_t dst = EB(instruction, 25, 20); const uint32_t imm = EB(instruction, 20, 0); addPipe(dst); printf("MOV r%d imm=%d\n", dst, imm); MOV(reg[dst], imm); break; } case OP_TRN : { const uint32_t dst = EB(instruction, 25, 20); const uint32_t width = EB(instruction, 20, 18); printf("TRN r%d size=%d\n", dst, width); TRN(reg[dst], (Reg::Type)width); break; } } break; } case LOADSTORE : { // LOADSTORE INSTRUCTION TYPES const static auto OP_LDR = 0b0; const static auto OP_STR = 0b1; const auto op = EB(instruction, 30, 29); switch (op) { case OP_LDR: { const uint32_t width = EB(instruction, 29, 27); const uint32_t dst = EB(instruction, 27, 22); const uint32_t src = EB(instruction, 22, 17); addPipe(dst); printf("ldr size=%d r%d r%d\n", width, dst, src); LDR(reg[dst], reg[src], (Reg::Type)width); break; } case OP_STR: { const uint32_t src = EB(instruction, 29, 24); const uint32_t dst = EB(instruction, 24, 19); printf("str r%d r%d\n", src, dst); STR(reg[dst], reg[src]); break; } } break; } case BRANCH : { // BRANCH INSTRUCTION TYPES const static auto OP_B = 0b00; const static auto OP_BI = 0b01; const static auto OP_BL = 0b10; const static auto OP_CALL = 0b11; const auto op = EB(instruction, 30, 28); //TODO: check label sign extension switch (op) { case OP_B: { const uint32_t cond = EB(instruction, 28, 20); int32_t label = SE(EB(instruction, 24, 0), 20); printf("B cond=%d %d\n", cond, label); B(cond, label); break; } case OP_BI: { const uint32_t cond = EB(instruction, 28, 20); const uint32_t idx = EB(instruction, 20, 15); printf("BI cond=%d r%d\n", cond, idx); BI(cond, reg[idx]); break; } case OP_BL: { int32_t label = SE(EB(instruction, 28, 0), 28); printf("BL %d\n", label); BL(label); break; } case OP_CALL: { const uint32_t idx = EB(instruction, 28, 23); printf("CALL r%d\n", idx); CALL(reg[idx]); break; } } break; } case SPECIAL: { printf("hlt\n"); HLT(); break; } } } /******* EXECUTION INSTRUCTIONS *******/ void CPU::ADD(Reg& dst, Reg& op1, Reg& op2) { Reg::Type dst_size = Reg::chooseMaxWidth(op1, op2); dst.setType(dst_size); uint32_t op1_data = op1.getData(); uint32_t op2_data = op2.getData(); int width = dst.width(); uint32_t data; switch(width) { case 1: { uint8_t res; if (__builtin_add_overflow((uint8_t)op1_data, (uint8_t)op2_data, &res)) FLAGS.setData(OF); data = res; break; } case 2: { uint16_t res; if(__builtin_add_overflow((uint16_t)op1_data, (uint16_t)op2_data, &res)) FLAGS.setData(OF); data = res; break; } case 4: { uint32_t res; if(__builtin_add_overflow((uint32_t)op1_data, (uint32_t)op2_data, &res)) FLAGS.setData(OF); data = res; break; } } dst.setData(data); } void CPU::ADD(Reg& dst, Reg& op1, uint32_t imm) { Reg::Type dst_size = Reg::chooseMaxWidth(op1, Reg::Type::WIDTH16); dst.setType(dst_size); uint32_t op1_data = op1.getData(); uint32_t op2_data = imm; int width = dst.width(); uint32_t data; switch(width) { case 1: { uint8_t res; if (__builtin_add_overflow((uint8_t)op1_data, (uint8_t)op2_data, &res)) FLAGS.setData(OF); data = res; break; } case 2: { uint16_t res; if(__builtin_add_overflow((uint16_t)op1_data, (uint16_t)op2_data, &res)) FLAGS.setData(OF); data = res; break; } case 4: { uint32_t res; if(__builtin_add_overflow((uint32_t)op1_data, (uint32_t)op2_data, &res)) FLAGS.setData(OF); data = res; break; } } dst.setData(data); } void CPU::SUB(Reg& dst, Reg& op1, Reg& op2) { Reg::Type dst_size = Reg::chooseMaxWidth(op1, op2); dst.setType(dst_size); uint32_t op1_data = op1.getData(); uint32_t op2_data = op2.getData(); int width = dst.width(); uint32_t data; switch(width) { case 1: { uint8_t res; if (__builtin_sub_overflow((uint8_t)op1_data, (uint8_t)op2_data, &res)) FLAGS.setData(UF); data = res; break; } case 2: { uint16_t res; if(__builtin_sub_overflow((uint16_t)op1_data, (uint16_t)op2_data, &res)) FLAGS.setData(UF); data = res; break; } case 4: { uint32_t res; if(__builtin_sub_overflow((uint32_t)op1_data, (uint32_t)op2_data, &res)) FLAGS.setData(UF); data = res; break; } } dst.setData(data); } void CPU::SUB(Reg& dst, Reg& op1, uint32_t imm) { Reg::Type dst_size = Reg::chooseMaxWidth(op1, Reg::Type::WIDTH16); dst.setType(dst_size); uint32_t op1_data = op1.getData(); uint32_t op2_data = imm; int width = dst.width(); uint32_t data; switch(width) { case 1: { uint8_t res; if (__builtin_sub_overflow((uint8_t)op1_data, (uint8_t)op2_data, &res)) FLAGS.setData(UF); data = res; break; } case 2: { uint16_t res; if(__builtin_sub_overflow((uint16_t)op1_data, (uint16_t)op2_data, &res)) FLAGS.setData(UF); data = res; break; } case 4: { uint32_t res; if(__builtin_sub_overflow((uint32_t)op1_data, (uint32_t)op2_data, &res)) FLAGS.setData(UF); data = res; break; } } dst.setData(data); } void CPU::RSUB(Reg& dst, uint32_t imm, Reg& op2) { Reg::Type dst_size = Reg::chooseMaxWidth(op2, Reg::Type::WIDTH16); dst.setType(dst_size); uint32_t op1_data = imm; uint32_t op2_data = op2.getData(); int width = dst.width(); uint32_t data; switch(width) { case 1: { uint8_t res; if (__builtin_sub_overflow((uint8_t)op1_data, (uint8_t)op2_data, &res)) FLAGS.setData(UF); data = res; break; } case 2: { uint16_t res; if(__builtin_sub_overflow((uint16_t)op1_data, (uint16_t)op2_data, &res)) FLAGS.setData(UF); data = res; break; } case 4: { uint32_t res; if(__builtin_sub_overflow((uint32_t)op1_data, (uint32_t)op2_data, &res)) FLAGS.setData(UF); data = res; break; } } dst.setData(data); } void CPU::CMP(Reg& arg1, Reg& arg2) { uint32_t a1_data = arg1.getData(); uint32_t a2_data = arg2.getData(); //printf("%d %d\n", a1_data, a2_data); uint32_t flags = 0; if (a1_data > a2_data) flags |= GT; if (a1_data < a2_data) flags |= LT; if (a1_data == a2_data) flags |= EQ; if (a1_data != a2_data) flags |= NE; FLAGS.setData(flags); } void CPU::CMP(Reg& arg1, int32_t imm) { uint32_t a1_data = arg1.getData(); uint32_t a2_data = (uint32_t)imm; uint32_t flags = 0; if (a1_data > a2_data) flags |= GT; if (a1_data < a2_data) flags |= LT; if (a1_data == a2_data) flags |= EQ; if (a1_data != a2_data) flags |= NE; FLAGS.setData(flags); } void CPU::AND(Reg& dst, Reg& op1, Reg& op2) { Reg::Type dst_size = Reg::chooseMaxWidth(op1, op2); dst.setType(dst_size); uint32_t op1_data = op1.getData(); uint32_t op2_data = op2.getData(); dst.setData(op1_data & op2_data); } void CPU::AND(Reg& dst, Reg& op1, uint32_t imm) { Reg::Type dst_size = Reg::chooseMaxWidth(op1, Reg::Type::WIDTH16); dst.setType(dst_size); uint32_t op1_data = op1.getData(); uint32_t op2_data = imm; dst.setData(op1_data & op2_data); } void CPU::OR(Reg& dst, Reg& op1, Reg& op2) { Reg::Type dst_size = Reg::chooseMaxWidth(op1, op2); dst.setType(dst_size); uint32_t op1_data = op1.getData(); uint32_t op2_data = op2.getData(); dst.setData(op1_data | op2_data); } void CPU::OR(Reg& dst, Reg& op1, uint32_t imm) { Reg::Type dst_size = Reg::chooseMaxWidth(op1, Reg::Type::WIDTH16); dst.setType(dst_size); uint32_t op1_data = op1.getData(); uint32_t op2_data = imm; dst.setData(op1_data | op2_data); } void CPU::NOT(Reg& dst, Reg& arg) { dst.setType(arg.getType()); dst.setData(~arg.getData()); } void CPU::XOR(Reg& dst, Reg& op1, Reg& op2) { Reg::Type dst_size = Reg::chooseMaxWidth(op1, op2); dst.setType(dst_size); uint32_t op1_data = op1.getData(); uint32_t op2_data = op2.getData(); dst.setData(op1_data ^ op2_data); } void CPU::XOR(Reg& dst, Reg& op1, uint32_t imm) { Reg::Type dst_size = Reg::chooseMaxWidth(op1, Reg::Type::WIDTH16); dst.setType(dst_size); uint32_t op1_data = op1.getData(); uint32_t op2_data = imm; dst.setData(op1_data ^ op2_data); } void CPU::LSR(Reg& dst, Reg& op1, Reg& op2) { Reg::Type dst_size = Reg::chooseMaxWidth(op1, op2); dst.setType(dst_size); uint32_t op1_data = op1.getData(); uint32_t op2_data = op2.getData(); dst.setData(op1_data >> op2_data); } void CPU::LSR(Reg& dst, Reg& op1, uint32_t imm) { Reg::Type dst_size = Reg::chooseMaxWidth(op1, Reg::Type::WIDTH16); dst.setType(dst_size); uint32_t op1_data = op1.getData(); uint32_t op2_data = imm; dst.setData(op1_data >> op2_data); } void CPU::LSL(Reg& dst, Reg& op1, Reg& op2) { Reg::Type dst_size = Reg::chooseMaxWidth(op1, op2); dst.setType(dst_size); uint32_t op1_data = op1.getData(); uint32_t op2_data = op2.getData(); dst.setData(op1_data << op2_data); } void CPU::LSL(Reg& dst, Reg& op1, uint32_t imm) { Reg::Type dst_size = Reg::chooseMaxWidth(op1, Reg::Type::WIDTH16); dst.setType(dst_size); uint32_t op1_data = op1.getData(); uint32_t op2_data = imm; dst.setData(op1_data << op2_data); } void CPU::ASR(Reg& dst, Reg& op1, Reg& op2) { Reg::Type dst_size = Reg::chooseMaxWidth(op1, op2); dst.setType(dst_size); int32_t op1_data = op1.getData(); uint32_t op2_data = op2.getData(); dst.setData(op1_data >> op2_data); } void CPU::ROR(Reg& dst, Reg& op1, Reg& op2) { Reg::Type dst_size = Reg::chooseMaxWidth(op1, op2); dst.setType(dst_size); uint32_t op1_data = op1.getData(); uint32_t op2_data = op2.getData(); int width = dst.width(); uint32_t data; switch(width) { case 1: { uint8_t op1 = (uint8_t)op1_data; uint8_t op2 = (uint8_t)op2_data; data = (op1 >> op2 | op1 << (8 - op2)); break; } case 2: { uint8_t op1 = (uint16_t)op1_data; uint8_t op2 = (uint16_t)op2_data; data = (op1 >> op2 | op1 << (16 - op2)); break; } case 4: { uint8_t op1 = (uint32_t)op1_data; uint8_t op2 = (uint32_t)op2_data; data = (op1 >> op2 | op1 << (32 - op2)); break; } } dst.setData(data); } void CPU::ROL(Reg& dst, Reg& op1, Reg& op2) { Reg::Type dst_size = Reg::chooseMaxWidth(op1, op2); dst.setType(dst_size); uint32_t op1_data = op1.getData(); uint32_t op2_data = op2.getData(); int width = dst.width(); uint32_t data; switch(width) { case 1: { uint8_t op1 = (uint8_t)op1_data; uint8_t op2 = (uint8_t)op2_data; data = (op1 << op2 | op1 >> (8 - op2)); break; } case 2: { uint8_t op1 = (uint16_t)op1_data; uint8_t op2 = (uint16_t)op2_data; data = (op1 << op2 | op1 >> (16 - op2)); break; } case 4: { uint8_t op1 = (uint32_t)op1_data; uint8_t op2 = (uint32_t)op2_data; data = (op1 << op2 | op1 >> (32 - op2)); break; } } dst.setData(data); } void CPU::MUL(Reg& dst, Reg& op1, Reg& op2) { Reg::Type dst_size = Reg::chooseMaxWidth(op1, op2); dst.setType(dst_size); uint32_t op1_data = op1.getData(); uint32_t op2_data = op2.getData(); int width = dst.width(); uint32_t data; switch(width) { case 1: { int8_t res; if (__builtin_mul_overflow((int8_t)op1_data, (int8_t)op2_data, &res)) FLAGS.setData(OF); data = res; break; } case 2: { int16_t res; if(__builtin_mul_overflow((int16_t)op1_data, (int16_t)op2_data, &res)) FLAGS.setData(OF); data = res; break; } case 4: { int32_t res; if(__builtin_mul_overflow((int32_t)op1_data, (int32_t)op2_data, &res)) FLAGS.setData(OF); data = res; break; } } dst.setData(data); } void CPU::UMUL(Reg& dst, Reg& op1, Reg& op2) { Reg::Type dst_size = Reg::chooseMaxWidth(op1, op2); dst.setType(dst_size); uint32_t op1_data = op1.getData(); uint32_t op2_data = op2.getData(); int width = dst.width(); uint32_t data; switch(width) { case 1: { uint8_t res; if (__builtin_mul_overflow((uint8_t)op1_data, (uint8_t)op2_data, &res)) FLAGS.setData(OF); data = res; break; } case 2: { uint16_t res; if(__builtin_mul_overflow((uint16_t)op1_data, (uint16_t)op2_data, &res)) FLAGS.setData(OF); data = res; break; } case 4: { uint32_t res; if(__builtin_mul_overflow((uint32_t)op1_data, (uint32_t)op2_data, &res)) FLAGS.setData(OF); data = res; break; } } dst.setData(data); } void CPU::DIV(Reg& dst, Reg& op1, Reg& op2) { Reg::Type dst_size = Reg::chooseMaxWidth(op1, op2); dst.setType(dst_size); uint32_t op1_data = op1.getData(); uint32_t op2_data = op2.getData(); if (op2_data == 0) { FLAGS.setData(DZ); } else { int width = dst.width(); uint32_t data; switch(width) { case 1: { data = (int8_t)op1_data / (int8_t)op2_data; break; } case 2: { data = (int16_t)op1_data / (int16_t)op2_data; break; } case 4: { data = (int32_t)op1_data / (int32_t)op2_data; break; } } dst.setData(data); } } void CPU::UDIV(Reg& dst, Reg& op1, Reg& op2) { Reg::Type dst_size = Reg::chooseMaxWidth(op1, op2); dst.setType(dst_size); uint32_t op1_data = op1.getData(); uint32_t op2_data = op2.getData(); if (op2_data == 0) { FLAGS.setData(DZ); } else { int width = dst.width(); uint32_t data; switch(width) { case 1: { data = (uint8_t)op1_data / (uint8_t)op2_data; break; } case 2: { data = (uint16_t)op1_data / (uint16_t)op2_data; break; } case 4: { data = (uint32_t)op1_data / (uint32_t)op2_data; break; } } dst.setData(data); } } void CPU::MOD(Reg& dst, Reg& op1, Reg& op2) { Reg::Type dst_size = Reg::chooseMaxWidth(op1, op2); dst.setType(dst_size); uint32_t op1_data = op1.getData(); uint32_t op2_data = op2.getData(); if (op2_data == 0) { FLAGS.setData(DZ); } else { int width = dst.width(); uint32_t data; switch(width) { case 1: { data = (int8_t)op1_data % (int8_t)op2_data; break; } case 2: { data = (int16_t)op1_data % (int16_t)op2_data; break; } case 4: { data = (int32_t)op1_data % (int32_t)op2_data; break; } } dst.setData(data); } } void CPU::UMOD(Reg& dst, Reg& op1, Reg& op2) { Reg::Type dst_size = Reg::chooseMaxWidth(op1, op2); dst.setType(dst_size); uint32_t op1_data = op1.getData(); uint32_t op2_data = op2.getData(); if (op2_data == 0) { FLAGS.setData(DZ); } else { int width = dst.width(); uint32_t data; switch(width) { case 1: { data = (uint8_t)op1_data % (uint8_t)op2_data; break; } case 2: { data = (uint16_t)op1_data % (uint16_t)op2_data; break; } case 4: { data = (uint32_t)op1_data % (uint32_t)op2_data; break; } } dst.setData(data); } } void CPU::MOV(Reg& dst, uint32_t imm) { dst.setType(Reg::Type::WIDTH32); dst.setData(imm); } void CPU::MOV(Reg& dst, Reg& src) { dst.setType(src.getType()); dst.setData(src.getData()); } void CPU::TRN(Reg& arg, Reg::Type type) { uint32_t data = arg.getData(); arg.setType(type); arg.setData(data); } /******* LOAD/STORE INSTRUCTIONS *******/ void CPU::LDR(Reg& dst, Reg& src, Reg::Type type) { assert(type != Reg::Type::UNUSED); const uint32_t address = src.getData(); uint32_t data = mem.read(address, &cycles); dst.setType(type); dst.setData(data); } void CPU::STR(Reg& dst, Reg& src) { const uint32_t address = dst.getData(); const uint32_t data = src.getData(); uint32_t curr = mem.read(address, &cycles); uint64_t mask = (1 << (8*src.width())) - 1; curr &= (uint32_t) mask; curr |= data; mem.write(address, data, &cycles); } /******* LOAD/STORE INSTRUCTIONS *******/ void CPU::B(uint32_t cond, int32_t label) { if ((FLAGS.getData() & cond) == cond) { PC.setData(PC.getData() + label); } } void CPU::BI(uint32_t cond, Reg& arg) { if ((FLAGS.getData() & cond) == cond) { PC.setData(arg.getData()); } } void CPU::BL(int32_t label) { uint32_t pc = PC.getData(); LR.setType(Reg::Type::WIDTH32); LR.setData(pc); PC.setData(pc + label); } void CPU::CALL(Reg& arg) { uint32_t pc = PC.getData(); LR.setType(Reg::Type::WIDTH32); LR.setData(pc); PC.setData(arg.getData()); } /******* SPECIAL INSTRUCTIONS *******/ void CPU::HLT() { isHalted = true; }
[ "44006237+zhengcharlie8@users.noreply.github.com" ]
44006237+zhengcharlie8@users.noreply.github.com
ff5d9bf13e68fafd325c4374011a6cfdd8f3c3d5
a1ce1c416e8cd75b51fc0a05e8483dfbc8eab79e
/Engine/source/gui/game/guiProgressCtrl.cpp
df7801bd130d6949d909f621aa6f1077a2e54404
[ "MIT", "LicenseRef-scancode-unknown-license-reference" ]
permissive
wwhitehead/OmniEngine.Net
238da56998ac5473c3d3b9f0da705c7c08c0ee17
b52de3ca5e15a18a6320ced6cbabc41d6fa6be86
refs/heads/master
2020-12-26T04:16:46.475080
2015-06-18T00:16:45
2015-06-18T00:16:45
34,730,441
0
0
null
2015-04-28T12:57:08
2015-04-28T12:57:08
null
UTF-8
C++
false
false
5,620
cpp
//----------------------------------------------------------------------------- // Copyright (c) 2012 GarageGames, LLC // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to // deal in the Software without restriction, including without limitation the // rights to use, copy, modify, merge, publish, distribute, sublicense, and/or // sell copies of the Software, and to permit persons to whom the Software is // furnished to do so, subject to the following conditions: // // The above copyright notice and this permission notice shall be included in // all copies or substantial portions of the Software. // // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS // IN THE SOFTWARE. //----------------------------------------------------------------------------- #include "platform/platform.h" #include "gui/game/guiProgressCtrl.h" #include "console/console.h" #include "console/consoleTypes.h" #include "gfx/gfxDrawUtil.h" #include "console/engineAPI.h" IMPLEMENT_CONOBJECT(GuiProgressCtrl); ConsoleDocClass( GuiProgressCtrl, "@brief GUI Control which displays a horizontal bar which increases as the progress value of 0.0 - 1.0 increases.\n\n" "@tsexample\n" " new GuiProgressCtrl(JS_statusBar)\n" " {\n" " //Properties not specific to this control have been omitted from this example.\n" " };\n\n" "// Define the value to set the progress bar" "%value = \"0.5f\"\n\n" "// Set the value of the progress bar, from 0.0 - 1.0\n" "%thisGuiProgressCtrl.setValue(%value);\n" "// Get the value of the progress bar.\n" "%progress = %thisGuiProgressCtrl.getValue();\n" "@endtsexample\n\n" "@see GuiTextCtrl\n" "@see GuiControl\n\n" "@ingroup GuiValues\n" ); GuiProgressCtrl::GuiProgressCtrl() { mProgress = 0.0f; mHorizontalFill = true; mInvertFill = true; } const char* GuiProgressCtrl::getScriptValue() { static const U32 bufSize = 64; char * ret = Con::getReturnBuffer(bufSize); dSprintf(ret, bufSize, "%g", mProgress); return ret; } void GuiProgressCtrl::setScriptValue(const char *value) { //set the value if (! value) mProgress = 0.0f; else mProgress = dAtof(value); //validate the value mProgress = mClampF(mProgress, 0.f, 1.f); setUpdate(); } void GuiProgressCtrl::onPreRender() { const char * var = getVariable(); if(var) { F32 value = mClampF(dAtof(var), 0.f, 1.f); if(value != mProgress) { mProgress = value; setUpdate(); } } } // updated OnRender function void GuiProgressCtrl::onRender(Point2I offset, const RectI &updateRect) { RectI ctrlRect(offset, getExtent()); //draw the progress // check the boolean if we want it horizontal or not (set by the user, defaults to true) if (mHorizontalFill) { // the default horizontal code // horizontal S32 width = (S32)((F32)(getWidth()) * mProgress); if (width > 0) { if (mInvertFill) // default left to right if true { RectI progressRect = ctrlRect; progressRect.extent.x = width; GFX->getDrawUtil()->drawRectFill(progressRect, mProfile->mFillColor); } else // to fill right to left { RectI progressRect( ( ctrlRect.point.x + ctrlRect.extent.x ), ctrlRect.point.y, -ctrlRect.extent.x, ctrlRect.extent.y); progressRect.extent.x = -width; GFX->getDrawUtil()->drawRectFill(progressRect, mProfile->mFillColor); } } } else { // new code to check if we want it vertical // vertical S32 height = (S32)((F32)getHeight() * mProgress); if (height > 0) { if (mInvertFill) // default down to up if true { RectI progressRect(ctrlRect.point.x, ( ctrlRect.point.y + ctrlRect.extent.y ), ctrlRect.extent.x, -ctrlRect.extent.y); progressRect.extent.y = -height; GFX->getDrawUtil()->drawRectFill(progressRect, mProfile->mFillColor); } else // to fill down to up { RectI progressRect = ctrlRect; progressRect.extent.y = height; GFX->getDrawUtil()->drawRectFill(progressRect, mProfile->mFillColor); } } } //now draw the border if (mProfile->mBorder) GFX->getDrawUtil()->drawRect(ctrlRect, mProfile->mBorderColor); Parent::onRender( offset, updateRect ); //render the children renderChildControls(offset, updateRect); } // add the fields to GuiProgressCtrl void GuiProgressCtrl::initPersistFields() { // add the horizontal field addField("horizontalFill", TypeBool, Offset(mHorizontalFill, GuiProgressCtrl), "True if you want the GuiProgressCtrl to be horizontal. Defaults to true. " ); addField("invertFill", TypeBool, Offset(mInvertFill, GuiProgressCtrl), "True if you want the GuiProgressCtrl to fill Left to Right (when horizontalFill = true)" "or Down to Up (when horizontalFill = false). Defaults to true. " ); Parent::initPersistFields(); }
[ "vgee@winterleafentertainment.com" ]
vgee@winterleafentertainment.com
aa1c7fa7e4ff6c92aeceab610a53937803b9067a
efd80b360eda85aad3d887bfd009a4d3caf45cd5
/TicTacToe/main.cpp
dd00c1068b51648376c8936a6044993b622ed1de
[]
no_license
mand027/TicTacToe
8067ab9ce79587876111518876ca817238f2952b
f4e41135534a3b6ec8424c4b75e726004fddbb09
refs/heads/master
2020-07-23T18:04:12.859003
2019-09-10T20:52:11
2019-09-10T20:52:11
207,660,483
0
0
null
null
null
null
UTF-8
C++
false
false
391
cpp
// // main.cpp // TicTacToe // // Created by Armando Hernandez on 10/09/19. // Copyright © 2019 Armando Hernandez. All rights reserved. // #include <iostream> #include <stdio.h> #include "cLinkedList.hpp" int main(int argc, const char * argv[]) { Node* n0 = new Node("_________\0"); LinkedList* LL = new LinkedList(n0); LL->print(); system("pause"); return 0; }
[ "mando27tuzo@gmail.com" ]
mando27tuzo@gmail.com
9d541122afc6b4a1c6d092c5032fbe6018841129
a8a6bd3afede307e3294c5e3432add531da2ab19
/libcef/browser/net/chrome_scheme_handler.cc
19481bb6ec67ccee9f5cbec0ee46927a4767e62f
[ "BSD-3-Clause" ]
permissive
huningxin/cef
fcf411eb8703cbcd0ba7e653579b63529090dc09
c8c3ef4792d9c628655303c2c3ea95bf7114b0df
refs/heads/master
2020-05-24T00:43:03.574017
2017-02-18T02:42:15
2017-02-18T02:42:15
84,806,698
1
1
null
null
null
null
UTF-8
C++
false
false
24,002
cc
// Copyright (c) 2012 The Chromium Embedded Framework Authors. // Portions copyright (c) 2012 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "libcef/browser/net/chrome_scheme_handler.h" #include <algorithm> #include <map> #include <string> #include <utility> #include "include/cef_version.h" #include "include/cef_web_plugin.h" #include "libcef/browser/frame_host_impl.h" #include "libcef/browser/net/internal_scheme_handler.h" #include "libcef/browser/net/url_request_manager.h" #include "libcef/browser/thread_util.h" #include "libcef/common/content_client.h" #include "base/command_line.h" #include "base/files/file_util.h" #include "base/lazy_instance.h" #include "base/logging.h" #include "base/memory/ptr_util.h" #include "base/path_service.h" #include "base/strings/string_util.h" #include "base/strings/stringprintf.h" #include "base/strings/utf_string_conversions.h" #include "base/values.h" #include "cef/grit/cef_resources.h" #include "chrome/browser/browser_about_handler.h" #include "chrome/browser/ui/webui/chrome_web_ui_controller_factory.h" #include "chrome/common/url_constants.h" #include "content/browser/frame_host/debug_urls.h" #include "content/browser/webui/content_web_ui_controller_factory.h" #include "content/public/browser/browser_url_handler.h" #include "content/public/common/url_constants.h" #include "content/public/common/user_agent.h" #include "ipc/ipc_channel.h" #include "net/url_request/url_request.h" #include "v8/include/v8.h" namespace scheme { const char kChromeURL[] = "chrome://"; namespace { const char kChromeUILicenseHost[] = "license"; const char kChromeUIWebUIHostsHost[] = "webui-hosts"; // Chrome hosts implemented by WebUI. // Some WebUI handlers have Chrome dependencies that may fail in CEF without // additional changes. Do not add new hosts to this list without also manually // testing all related functionality in CEF. const char* kAllowedWebUIHosts[] = { content::kChromeUIAppCacheInternalsHost, content::kChromeUIAccessibilityHost, content::kChromeUIBlobInternalsHost, chrome::kChromeUICreditsHost, content::kChromeUIGpuHost, content::kChromeUIHistogramHost, content::kChromeUIIndexedDBInternalsHost, content::kChromeUIMediaInternalsHost, chrome::kChromeUINetExportHost, chrome::kChromeUINetInternalsHost, content::kChromeUINetworkErrorHost, content::kChromeUINetworkErrorsListingHost, content::kChromeUINetworkViewCacheHost, content::kChromeUIResourcesHost, content::kChromeUIServiceWorkerInternalsHost, chrome::kChromeUISystemInfoHost, content::kChromeUITracingHost, content::kChromeUIWebRTCInternalsHost, }; // Hosts that don't have useful output when linked directly. They'll be excluded // from the "chrome://webui-hosts" listing. const char* kUnlistedHosts[] = { content::kChromeUINetworkErrorHost, content::kChromeUIResourcesHost, }; enum ChromeHostId { CHROME_UNKNOWN = 0, CHROME_LICENSE, CHROME_VERSION, CHROME_WEBUI_HOSTS, }; // Chrome hosts implemented by CEF. const struct { const char* host; ChromeHostId host_id; } kAllowedCefHosts[] = { { kChromeUILicenseHost, CHROME_LICENSE }, { chrome::kChromeUIVersionHost, CHROME_VERSION }, { kChromeUIWebUIHostsHost, CHROME_WEBUI_HOSTS }, }; ChromeHostId GetChromeHostId(const std::string& host) { for (size_t i = 0; i < sizeof(kAllowedCefHosts) / sizeof(kAllowedCefHosts[0]); ++i) { if (base::EqualsCaseInsensitiveASCII(kAllowedCefHosts[i].host, host.c_str())) { return kAllowedCefHosts[i].host_id; } } return CHROME_UNKNOWN; } // Returns CEF and WebUI hosts. Does not include chrome debug hosts (for // crashing, etc). void GetAllowedHosts(std::vector<std::string>* hosts) { // Hosts implemented by CEF. for (size_t i = 0; i < sizeof(kAllowedCefHosts) / sizeof(kAllowedCefHosts[0]); ++i) { hosts->push_back(kAllowedCefHosts[i].host); } // Explicitly whitelisted WebUI hosts. for (size_t i = 0; i < sizeof(kAllowedWebUIHosts) / sizeof(kAllowedWebUIHosts[0]); ++i) { hosts->push_back(kAllowedWebUIHosts[i]); } } // Returns true if a host should not be listed on "chrome://webui-hosts". bool IsUnlistedHost(const std::string& host) { for (size_t i = 0; i < sizeof(kUnlistedHosts) / sizeof(kUnlistedHosts[0]); ++i) { if (host == kUnlistedHosts[i]) return true; } return false; } // Returns true if a host is WebUI and should be allowed to load. bool IsAllowedWebUIHost(const std::string& host) { // Explicitly whitelisted WebUI hosts. for (size_t i = 0; i < sizeof(kAllowedWebUIHosts) / sizeof(kAllowedWebUIHosts[0]); ++i) { if (base::EqualsCaseInsensitiveASCII(kAllowedWebUIHosts[i], host.c_str())) { return true; } } return false; } // Additional debug URLs that are not included in chrome::kChromeDebugURLs. const char* kAllowedDebugURLs[] = { content::kChromeUIBrowserCrashURL, }; // Returns true for debug URLs that receive special handling (for crashes, etc). bool IsDebugURL(const GURL& url) { // URLs handled by the renderer process in // content/renderer/render_frame_impl.cc MaybeHandleDebugURL(). if (content::IsRendererDebugURL(url)) return true; // Also include URLs handled by the browser process in // content/browser/frame_host/debug_urls.cc HandleDebugURL(). for (int i = 0; i < chrome::kNumberOfChromeDebugURLs; ++i) { GURL host(chrome::kChromeDebugURLs[i]); if (url.GetOrigin() == host.GetOrigin()) return true; } for (size_t i = 0; i < sizeof(kAllowedDebugURLs) / sizeof(kAllowedDebugURLs[0]); ++i) { GURL host(kAllowedDebugURLs[i]); if (url.GetOrigin() == host.GetOrigin()) return true; } return false; } void GetDebugURLs(std::vector<std::string>* urls) { for (int i = 0; i < chrome::kNumberOfChromeDebugURLs; ++i) { urls->push_back(chrome::kChromeDebugURLs[i]); } for (size_t i = 0; i < sizeof(kAllowedDebugURLs) / sizeof(kAllowedDebugURLs[0]); ++i) { urls->push_back(kAllowedDebugURLs[i]); } } // Intercepts all WebUI calls and either blocks them or forwards them to the // Content or Chrome WebUI factory as appropriate. class CefWebUIControllerFactory : public content::WebUIControllerFactory { public: // Returns true if WebUI is allowed to handle the specified |url|. static bool AllowWebUIForURL(const GURL& url) { if (!url.SchemeIs(content::kChromeUIScheme)) return false; if (IsAllowedWebUIHost(url.host())) return true; return false; } content::WebUIController* CreateWebUIControllerForURL( content::WebUI* web_ui, const GURL& url) const override { content::WebUIController* controller = nullptr; if (!AllowWebUIForURL(url)) return controller; controller = content::ContentWebUIControllerFactory::GetInstance()-> CreateWebUIControllerForURL(web_ui, url); if (controller != nullptr) return controller; controller = ChromeWebUIControllerFactory::GetInstance()-> CreateWebUIControllerForURL(web_ui, url); if (controller != nullptr) return controller; return nullptr; } content::WebUI::TypeID GetWebUIType(content::BrowserContext* browser_context, const GURL& url) const override { content::WebUI::TypeID type = content::WebUI::kNoWebUI; if (!AllowWebUIForURL(url)) return type; type = content::ContentWebUIControllerFactory::GetInstance()->GetWebUIType( browser_context, url); if (type != content::WebUI::kNoWebUI) return type; type = ChromeWebUIControllerFactory::GetInstance()->GetWebUIType( browser_context, url); if (type != content::WebUI::kNoWebUI) return type; return content::WebUI::kNoWebUI; } bool UseWebUIForURL(content::BrowserContext* browser_context, const GURL& url) const override { if (!AllowWebUIForURL(url)) return false; if (content::ContentWebUIControllerFactory::GetInstance()->UseWebUIForURL( browser_context, url) || ChromeWebUIControllerFactory::GetInstance()->UseWebUIForURL( browser_context, url)) { return true; } return false; } bool UseWebUIBindingsForURL(content::BrowserContext* browser_context, const GURL& url) const override { if (!AllowWebUIForURL(url)) return false; if (content::ContentWebUIControllerFactory::GetInstance()-> UseWebUIBindingsForURL(browser_context, url) || ChromeWebUIControllerFactory::GetInstance()->UseWebUIBindingsForURL( browser_context, url)) { return true; } return false; } static void BrowserURLHandlerCreated(content::BrowserURLHandler* handler) { // about: handler. Must come before chrome: handler, since it will // rewrite about: urls to chrome: URLs and then expect chrome: to // actually handle them. Also relies on a preliminary fixup phase. handler->SetFixupHandler(&FixupBrowserAboutURL); handler->AddHandlerPair(&WillHandleBrowserAboutURL, content::BrowserURLHandler::null_handler()); // chrome: & friends. handler->AddHandlerPair(&HandleWebUI, &HandleWebUIReverse); } static CefWebUIControllerFactory* GetInstance(); protected: CefWebUIControllerFactory() {} ~CefWebUIControllerFactory() override {} private: friend struct base::DefaultLazyInstanceTraits<CefWebUIControllerFactory>; // From chrome/browser/chrome_content_browser_client.cc // Returns a copy of the given url with its host set to given host and path // set to given path. Other parts of the url will be the same. static GURL ReplaceURLHostAndPath(const GURL& url, const std::string& host, const std::string& path) { url::Replacements<char> replacements; replacements.SetHost(host.c_str(), url::Component(0, host.length())); replacements.SetPath(path.c_str(), url::Component(0, path.length())); return url.ReplaceComponents(replacements); } // Maps "foo://bar/baz/" to "foo://chrome/bar/baz/". static GURL AddUberHost(const GURL& url) { const std::string uber_host = chrome::kChromeUIUberHost; std::string new_path; url.host_piece().AppendToString(&new_path); url.path_piece().AppendToString(&new_path); return ReplaceURLHostAndPath(url, uber_host, new_path); } // If url->host() is "chrome" and url->path() has characters other than the // first slash, changes the url from "foo://chrome/bar/" to "foo://bar/" and // returns true. Otherwise returns false. static bool RemoveUberHost(GURL* url) { if (url->host() != chrome::kChromeUIUberHost) return false; if (url->path().empty() || url->path() == "/") return false; const std::string old_path = url->path(); const std::string::size_type separator = old_path.find('/', 1); std::string new_host; std::string new_path; if (separator == std::string::npos) { new_host = old_path.substr(1); } else { new_host = old_path.substr(1, separator - 1); new_path = old_path.substr(separator); } // Do not allow URLs with paths empty before the first slash since we can't // have an empty host. (e.g "foo://chrome//") if (new_host.empty()) return false; *url = ReplaceURLHostAndPath(*url, new_host, new_path); DCHECK(url->is_valid()); return true; } // Handles rewriting Web UI URLs. static bool HandleWebUI(GURL* url, content::BrowserContext* browser_context) { // Do not handle special URLs such as "about:foo" if (!url->host().empty()) { const GURL chrome_url = AddUberHost(*url); // Handle valid "chrome://chrome/foo" URLs so the reverse handler will // be called. if (GetInstance()->UseWebUIForURL(browser_context, chrome_url)) return true; } if (!GetInstance()->UseWebUIForURL(browser_context, *url)) return false; return true; } // Reverse URL handler for Web UI. Maps "chrome://chrome/foo/" to // "chrome://foo/". static bool HandleWebUIReverse(GURL* url, content::BrowserContext* browser_context) { if (!url->is_valid() || !url->SchemeIs(content::kChromeUIScheme)) return false; return RemoveUberHost(url); } DISALLOW_COPY_AND_ASSIGN(CefWebUIControllerFactory); }; base::LazyInstance<CefWebUIControllerFactory>::Leaky g_web_ui_controller_factory = LAZY_INSTANCE_INITIALIZER; // static CefWebUIControllerFactory* CefWebUIControllerFactory::GetInstance() { return &g_web_ui_controller_factory.Get(); } std::string GetOSType() { #if defined(OS_WIN) return "Windows"; #elif defined(OS_MACOSX) return "Mac OS X"; #elif defined(OS_CHROMEOS) return "Chromium OS"; #elif defined(OS_ANDROID) return "Android"; #elif defined(OS_LINUX) return "Linux"; #elif defined(OS_FREEBSD) return "FreeBSD"; #elif defined(OS_OPENBSD) return "OpenBSD"; #elif defined(OS_SOLARIS) return "Solaris"; #else return "Unknown"; #endif } std::string GetCommandLine() { #if defined(OS_WIN) return base::WideToUTF8( base::CommandLine::ForCurrentProcess()->GetCommandLineString()); #elif defined(OS_POSIX) std::string command_line = ""; typedef std::vector<std::string> ArgvList; const ArgvList& argv = base::CommandLine::ForCurrentProcess()->argv(); for (ArgvList::const_iterator iter = argv.begin(); iter != argv.end(); iter++) command_line += " " + *iter; // TODO(viettrungluu): |command_line| could really have any encoding, whereas // below we assumes it's UTF-8. return command_line; #endif } std::string GetModulePath() { base::FilePath path; if (PathService::Get(base::FILE_MODULE, &path)) return CefString(path.value()); return std::string(); } class TemplateParser { public: TemplateParser() : ident_start_("$$"), ident_end_("$$") { } TemplateParser(const std::string& ident_start, const std::string& ident_end) : ident_start_(ident_start), ident_end_(ident_end) { } void Add(const std::string& key, const std::string& value) { values_.insert(std::make_pair(key, value)); } void Parse(std::string* tmpl) { int start_pos, end_pos = 0; int ident_start_len = ident_start_.length(); int ident_end_len = ident_end_.length(); while(true) { start_pos = tmpl->find(ident_start_, end_pos); if (start_pos >= 0) { end_pos = tmpl->find(ident_end_, start_pos + ident_start_len); if (end_pos >= 0) { // Found an identifier. Check if a substitution exists. std::string key = tmpl->substr(start_pos + ident_start_len, end_pos - start_pos - ident_start_len); KeyMap::const_iterator it = values_.find(key); if (it != values_.end()) { // Peform the substitution. tmpl->replace(start_pos, end_pos + ident_end_len - start_pos, it->second); end_pos = start_pos + it->second.length(); } else { // Leave the unknown identifier in place. end_pos += ident_end_len; } if (end_pos >= static_cast<int>(tmpl->length()) - ident_start_len - ident_end_len) { // Not enough room remaining for more identifiers. break; } } else { // No end identifier found. break; } } else { // No start identifier found. break; } } } private: typedef std::map<std::string, std::string> KeyMap; KeyMap values_; std::string ident_start_; std::string ident_end_; }; class Delegate : public InternalHandlerDelegate { public: Delegate() {} bool OnRequest(CefRefPtr<CefBrowser> browser, CefRefPtr<CefRequest> request, Action* action) override { GURL url = GURL(request->GetURL().ToString()); std::string path = url.path(); if (path.length() > 0) path = path.substr(1); bool handled = false; ChromeHostId host_id = GetChromeHostId(url.host()); switch (host_id) { case CHROME_LICENSE: handled = OnLicense(action); break; case CHROME_VERSION: handled = OnVersion(browser, action); break; case CHROME_WEBUI_HOSTS: handled = OnWebUIHosts(action); break; default: break; } if (!handled && host_id != CHROME_VERSION) { LOG(INFO) << "Reguest for unknown chrome resource: " << url.spec().c_str(); action->redirect_url = GURL(std::string(kChromeURL) + chrome::kChromeUIVersionHost); return true; } return handled; } bool OnLicense(Action* action) { base::StringPiece piece = CefContentClient::Get()->GetDataResource( IDR_CEF_LICENSE_TXT, ui::SCALE_FACTOR_NONE); if (piece.empty()) { NOTREACHED() << "Failed to load license txt resource."; return false; } std::string html = "<html><head><title>License</title></head><body><pre>" + piece.as_string() + "</pre></body></html>"; action->mime_type = "text/html"; action->stream = CefStreamReader::CreateForData( const_cast<char*>(html.c_str()), html.length()); action->stream_size = html.length(); return true; } bool OnVersion(CefRefPtr<CefBrowser> browser, Action* action) { base::StringPiece piece = CefContentClient::Get()->GetDataResource( IDR_CEF_VERSION_HTML, ui::SCALE_FACTOR_NONE); if (piece.empty()) { NOTREACHED() << "Failed to load version html resource."; return false; } TemplateParser parser; parser.Add("YEAR", MAKE_STRING(COPYRIGHT_YEAR)); parser.Add("CEF", CEF_VERSION); parser.Add("CHROMIUM", base::StringPrintf("%d.%d.%d.%d", CHROME_VERSION_MAJOR, CHROME_VERSION_MINOR, CHROME_VERSION_BUILD, CHROME_VERSION_PATCH)); parser.Add("OS", GetOSType()); parser.Add("WEBKIT", content::GetWebKitVersion()); parser.Add("JAVASCRIPT", v8::V8::GetVersion()); parser.Add("FLASH", std::string()); // Value populated asynchronously. parser.Add("USERAGENT", CefContentClient::Get()->GetUserAgent()); parser.Add("COMMANDLINE", GetCommandLine()); parser.Add("MODULEPATH", GetModulePath()); parser.Add("CACHEPATH", browser.get() ? browser->GetHost()->GetRequestContext()->GetCachePath() : ""); std::string tmpl = piece.as_string(); parser.Parse(&tmpl); action->mime_type = "text/html"; action->stream = CefStreamReader::CreateForData( const_cast<char*>(tmpl.c_str()), tmpl.length()); action->stream_size = tmpl.length(); return true; } bool OnWebUIHosts(Action* action) { std::string html = "<html>\n<head><title>WebUI Hosts</title></head>\n" "<body bgcolor=\"white\"><h3>WebUI Hosts</h3>\n<ul>\n"; std::vector<std::string> list; GetAllowedHosts(&list); std::sort(list.begin(), list.end()); for (size_t i = 0U; i < list.size(); ++i) { if (IsUnlistedHost(list[i])) continue; html += "<li><a href=\"chrome://" + list[i] + "\">chrome://" + list[i] + "</a></li>\n"; } list.clear(); GetDebugURLs(&list); std::sort(list.begin(), list.end()); html += "</ul>\n<h3>For Debug</h3>\n" "<p>The following pages are for debugging purposes only. Because they " "crash or hang the renderer, they're not linked directly; you can type " "them into the address bar if you need them.</p>\n<ul>\n"; for (size_t i = 0U; i < list.size(); ++i) { html += "<li>" + std::string(list[i]) + "</li>\n"; } html += "</ul>\n"; html += "</body>\n</html>"; action->mime_type = "text/html"; action->stream = CefStreamReader::CreateForData( const_cast<char*>(html.c_str()), html.length()); action->stream_size = html.length(); return true; } }; void DidFinishChromeVersionLoad(CefRefPtr<CefFrame> frame) { // Retieve Flash version information and update asynchronously. class Visitor : public CefWebPluginInfoVisitor { public: Visitor(CefRefPtr<CefFrame> frame) : frame_(frame) { } bool Visit(CefRefPtr<CefWebPluginInfo> info, int count, int total) override { std::string name = info->GetName(); if (name == "Shockwave Flash") { if (frame_->IsValid()) { std::string version = info->GetVersion(); frame_->ExecuteJavaScript( "document.getElementById('flash').innerText = '" + version + "';", std::string(), 0); } return false; } return true; } private: CefRefPtr<CefFrame> frame_; IMPLEMENT_REFCOUNTING(Visitor); }; CefVisitWebPluginInfo(new Visitor(frame)); } // Wrapper for a ChromeProtocolHandler instance from // content/browser/webui/url_data_manager_backend.cc. class ChromeProtocolHandlerWrapper : public net::URLRequestJobFactory::ProtocolHandler { public: ChromeProtocolHandlerWrapper( CefURLRequestManager* request_manager, std::unique_ptr<net::URLRequestJobFactory::ProtocolHandler> chrome_protocol_handler) : request_manager_(request_manager), chrome_protocol_handler_(std::move(chrome_protocol_handler)) { DCHECK(request_manager_); } net::URLRequestJob* MaybeCreateJob( net::URLRequest* request, net::NetworkDelegate* network_delegate) const override { // Don't handle debug URLs. if (IsDebugURL(request->url())) return nullptr; // Only allow WebUI to handle chrome:// URLs whitelisted by CEF. if (CefWebUIControllerFactory::AllowWebUIForURL(request->url())) { return chrome_protocol_handler_->MaybeCreateJob(request, network_delegate); } // Use the protocol handler registered with CEF. return request_manager_->GetRequestJob(request, network_delegate); } private: CefURLRequestManager* request_manager_; std::unique_ptr<net::URLRequestJobFactory::ProtocolHandler> chrome_protocol_handler_; }; } // namespace void RegisterChromeHandler(CefURLRequestManager* request_manager) { request_manager->AddFactory( content::kChromeUIScheme, std::string(), CreateInternalHandlerFactory(base::WrapUnique(new Delegate()))); } void RegisterWebUIControllerFactory() { // Channel all WebUI handling through CefWebUIControllerFactory. content::WebUIControllerFactory::UnregisterFactoryForTesting( content::ContentWebUIControllerFactory::GetInstance()); content::WebUIControllerFactory::RegisterFactory( CefWebUIControllerFactory::GetInstance()); } void BrowserURLHandlerCreated(content::BrowserURLHandler* handler) { CefWebUIControllerFactory::BrowserURLHandlerCreated(handler); } void DidFinishChromeLoad(CefRefPtr<CefFrame> frame, const GURL& validated_url) { ChromeHostId host_id = GetChromeHostId(validated_url.host()); switch (host_id) { case CHROME_VERSION: DidFinishChromeVersionLoad(frame); default: break; } } std::unique_ptr<net::URLRequestJobFactory::ProtocolHandler> WrapChromeProtocolHandler( CefURLRequestManager* request_manager, std::unique_ptr<net::URLRequestJobFactory::ProtocolHandler> chrome_protocol_handler) { std::unique_ptr<net::URLRequestJobFactory::ProtocolHandler> ret( new ChromeProtocolHandlerWrapper(request_manager, std::move(chrome_protocol_handler))); return ret; } } // namespace scheme
[ "magreenblatt@gmail.com" ]
magreenblatt@gmail.com
340c081fa88ef2c394500402ce620825862076de
1f84fd078570475d2510339bab2439b5193af03d
/source/vxEngineLib/include/vxEngineLib/Graphics/Font.h
d5788cc95214ba5ebaad54e08102180fdc3db851
[ "MIT" ]
permissive
DennisWandschura/vxEngine
df138077cdb9f40461c83e99a8851de593b098f2
1396a65f7328aaed50dd34634c65cac561271b9e
refs/heads/master
2021-01-16T00:17:47.703611
2015-10-11T10:44:53
2015-10-11T10:44:53
32,484,686
1
0
null
null
null
null
UTF-8
C++
false
false
1,572
h
#pragma once /* The MIT License (MIT) Copyright (c) 2015 Dennis Wandschura Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #include "FontAtlas.h" namespace Graphics { class Texture; class Font { const Texture* m_texture; FontAtlas m_atlas; // 32 public: Font(); Font(const Texture* texture, FontAtlas &&fontAtlas); Font(Font &&other); Font(const Font&) = delete; ~Font(); Font& operator=(const Font&) = delete; Font& operator=(Font &&rhs); const FontAtlasEntry* getAtlasEntry(u32 code) const; const Texture* getTexture() const { return m_texture; } }; }
[ "dennis.wandschura@gmx.de" ]
dennis.wandschura@gmx.de
e727679837e5215e8db0cb5772164aee3eb0939a
56c22711cfe618ebb43b3d5ee2a6e01311177a89
/Uncategorized/oly19practice68.cpp
f98d00a76dabc613584e371fca22834a890c092b
[ "MIT" ]
permissive
crackersamdjam/DMOJ-Solutions
f6f5709eb6648a01570b4c8992d26a664fd019c6
97992566595e2c7bf41b5da9217d8ef61bdd1d71
refs/heads/master
2023-07-09T07:14:12.105762
2021-08-09T03:05:01
2021-08-09T03:05:01
394,041,849
0
0
null
null
null
null
UTF-8
C++
false
false
2,258
cpp
#include <bits/stdc++.h> #define gc getchar_unlocked() #define pc(x) putchar_unlocked(x) template<typename T> void scan(T &x){x = 0;bool _=0;T c=gc;_=c==45;c=_?gc:c;while(c<48||c>57)c=gc;for(;c<48||c>57;c=gc);for(;c>47&&c<58;c=gc)x=(x<<3)+(x<<1)+(c&15);x=_?-x:x;} template<typename T> void printn(T n){bool _=0;_=n<0;n=_?-n:n;char snum[65];int i=0;do{snum[i++]=n%10+48;n/= 10;}while(n);--i;if (_)pc(45);while(i>=0)pc(snum[i--]);} template<typename First, typename ... Ints> void scan(First &arg, Ints&... rest){scan(arg);scan(rest...);} template<typename T> void print(T n){printn(n);pc(10);} template<typename First, typename ... Ints> void print(First arg, Ints... rest){printn(arg);pc(32);print(rest...);} using namespace std; using ll = long long; using pi = pair<int, int>; using pii = pair<ll, int>; const int MM = 1e5+1; int n, m, k; vector<pi> s; ll dis[11][MM], ans = 1e15; vector<pi> adj[MM]; queue<int> q; bool inq[MM]; void run(int id, int sc){ dis[id][sc] = 0; q.push(sc); while(!q.empty()){ int cur = q.front(); q.pop(); inq[cur] = 0; for(auto u: adj[cur]){ if(dis[id][cur] + u.second < dis[id][u.first]){ dis[id][u.first] = dis[id][cur] + u.second; if(!inq[u.first]){ inq[u.first] = 1; q.push(u.first); } } } } } int main(){ memset(dis, 0x3f, sizeof dis); scan(n, m); for(int i = 0,a,b,c; i < m; i++){ scan(a, b, c); adj[a].emplace_back(b, c); adj[b].emplace_back(a, c); } scan(k); for(int i = 1,a; i <= k; i++){ scan(a); s.push_back({a, i}); run(i, a); } run(0, 0); sort(s.begin(), s.end()); do{ ll d = dis[0][s[0].first] + dis[s.back().second][0]; for(int i = 0; i < s.size()-1; i++){ d += dis[s[i].second][s[i+1].first]; } ans = min(ans, d); //for(auto i: s) // printf("%d ", i.first); //printf("\nd: %lld\n", d); } while(next_permutation(s.begin(), s.end())); print(ans); return 0; }
[ "45298690+crackersamdjam@users.noreply.github.com" ]
45298690+crackersamdjam@users.noreply.github.com
496cc5999024c1a7ee509a13d7109bd7b930eeed
88bb5d5d01507cdab698087f03b669ec2f336663
/base/logic/json_serializer.h
8ca18673d422730fdf5661035a3154134559b52f
[]
no_license
flaght/mylib
419d246e2d8e9b8acbc9a607d236cb2c2c32eb2c
389d61e76ee8a9ca4eaad86421bed86a6bc8a97f
refs/heads/master
2021-06-18T17:21:00.207043
2019-07-14T06:16:21
2019-07-14T06:16:21
51,120,734
0
3
null
2017-08-21T08:41:12
2016-02-05T02:21:52
C++
UTF-8
C++
false
false
2,566
h
/* * json_serializer.h * * Created on: 2015年1月3日 * Author: kerry */ #ifndef JSON_SERIALIZER_H_ #define JSON_SERIALIZER_H_ #include "string_escape.h" #include "value_serializer.h" namespace base_logic{ //json class JsonValueSerializer:public ValueSerializer{ public: JsonValueSerializer(bool pretty_print = false); JsonValueSerializer(std::string* json,bool pretty_print = true); virtual ~JsonValueSerializer(); public: virtual bool Serialize(const Value& root); bool Serialize(const Value& root, std::string* str); public: virtual Value* Deserialize(int* error_code, std::string* error_str); virtual Value* Deserialize(std::string* str,int* error_code, std::string* error_str); virtual void FreeValue(base_logic::Value* value); private: void BuildJSONString(const Value* const node,int depth,bool escape); inline void IndentLine(int depth){json_string_->append(std::string(depth * 3, ' '));} void AppendQuoteString(const std::string& str){StringEscape::JsonDoubleQuote(str,true,json_string_);} private: Token ParseToken(); //Recursively build Value. Returns NULL if we don't have a valid string. //If |is_root| is true, we verify that the root element is either an object or an array. Value* BuildValue(bool is_root); bool EatComment(); void EatWhitesspaceAndComments(); void SetErrorCode(ParseError error,const wchar_t* error_pos); private: bool ReadHexDigits(Token& token, int digits); // Parses a sequence of characters into a Token::NUMBER. If the sequence of // characters is not a valid number, returns a Token::INVALID_TOKEN. Note // that DecodeNumber is used to actually convert from a string to an // int/double. Token ParseNumberToken(); Token ParseStringToken(); // A helper method for ParseNumberToken. It reads an int from the end of // token. The method returns false if there is no valid integer at the end of // the token. bool ReadInt(Token& token, bool can_have_leading_zeros); // Checks if |json_pos_| matches str. bool NextStringMatch(const std::wstring& str); Value* DecodeNumber(const Token& token); Value* DecodeString(const Token& token); private: std::string* json_string_; bool pretty_print_; const wchar_t* start_pos_; const wchar_t* json_pos_; // Used to keep track of how many nested lists/dicts there are. int stack_depth_; // A parser flag that allows trailing commas in objects and arrays. bool allow_trailing_comma_; ParseError error_code_; int error_line_; int error_col_; }; } #endif /* JSON_SERIALIZER_H_ */
[ "kerry@miglab.com" ]
kerry@miglab.com
23fcb037b94a8ee69bf6eadedd14bb3edecd1a14
13ede0a5f720ebcb523ffc2ad3847501b7ea7904
/source/backend/interp/driver.cpp
ce13d09c1a447de01ac45fae2f03ca8167a06912
[ "Apache-2.0" ]
permissive
lineCode/flax
3a3c6e5485e1d582b732e29cd5d64082ec7a01d1
f436968988c30eb842b8cfcabd60eab2a8127b7c
refs/heads/master
2020-08-22T18:08:24.306861
2019-10-12T09:46:02
2019-10-12T09:46:02
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,999
cpp
// driver.cpp // Copyright (c) 2019, zhiayang // Licensed under the Apache License Version 2.0. #include <chrono> #include "defs.h" #include "backend.h" #include "frontend.h" #include "platform.h" #include "ir/interp.h" #include "ir/module.h" #include "backends/interp.h" namespace backend { template <typename T> static void _printTiming(T ts, const std::string& thing) { if(frontend::getPrintProfileStats()) { auto dur = std::chrono::high_resolution_clock::now() - ts; auto ms = (double) dur.count() / 1000.0 / 1000.0; printf("%s took %.1f ms%s\n", thing.c_str(), ms, ms > 3000 ? strprintf(" (aka %.2f s)", ms / 1000.0).c_str() : ""); } } using namespace fir; using namespace fir::interp; FIRInterpBackend::FIRInterpBackend(CompiledData& dat, std::vector<std::string> inputs, std::string output) : Backend(BackendCaps::JIT, dat, inputs, output) { platform::compiler::performSelfDlOpen(); } FIRInterpBackend::~FIRInterpBackend() { if(this->is) delete this->is; } std::string FIRInterpBackend::str() { return "FIR Interpreter"; } void FIRInterpBackend::performCompilation() { this->is = new InterpState(this->compiledData.module); this->is->initialise(); // it suffices to compile just the entry function. this->is->compileFunction(this->compiledData.module->getEntryFunction()); } void FIRInterpBackend::optimiseProgram() { // nothing. } void FIRInterpBackend::writeOutput() { if(auto entryfn = this->compiledData.module->getEntryFunction(); entryfn) { auto ts = std::chrono::high_resolution_clock::now(); auto f = this->is->compiledFunctions[entryfn]; // add arguments if necessary, i guess. // just make null values. std::vector<interp::Value> args; for(auto a : entryfn->getArguments()) args.push_back(this->is->makeValue(a)); this->is->runFunction(f, args); _printTiming(ts, "interp"); } else { error("interp: no entry function, cannot run!"); } } }
[ "zhiayang@gmail.com" ]
zhiayang@gmail.com
815e0c46b71b08785e82863b11bea54aa1b142d1
4e0fad4fb8098de7693657f9c276f225f7e2bb68
/stira/wavelet/wavelet/WaveletTapGenerator.h
565381ec53d2fb534c376be162117dbce8e59acc
[ "MIT" ]
permissive
JackZhouSz/stira
6a9b3a0b393c5c10e67fb83719e59d9c8ee891f0
60b419f3e478397a8ab43ce9315a259567d94a26
refs/heads/master
2023-03-20T12:24:32.860327
2017-01-12T16:21:55
2017-01-12T16:21:55
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,656
h
/*********************************************************************************** * Copyright (C) 2009 by Filip Rooms * * * * Terms and conditions for using this software in any form are provided in the * * file COPYING, which can be found in the root directory of this project. * * * * Contact data: filip.rooms@gmail.com * * http://www.filiprooms.be/ * * * ***********************************************************************************/ #ifndef STIRA_WAVELET_WAVELETTAPGENERATOR_H #define STIRA_WAVELET_WAVELETTAPGENERATOR_H #include "WaveletTapGenerator.h" #include "WaveletTaps.h" namespace stira { namespace wavelet { //========================================================================================================= /** \brief struct containing filter taps needed for analysis and reconstruction */ struct WaveletFilterSet { double* pLowpassForward; ///< array containing the decomposition lowpass taps double* pLowpassInvers; ///< array containing the reconstruction lowpass taps double* pHighpassForward; ///< array containing the decomposition highpass taps double* pHighpassInvers; ///< array containing the reconstruction highpass taps int length; ///< length of the arrays (orthogonal: all arrays have the same length) WaveletType type; ///< identifier for wavelet type }; //========================================================================================================= /** \brief wavelet tap set factory * Generates a set of decomposition/reconstruction filter taps for the type of wavelet specified */ class WaveletTapGenerator { public: /** \brief constructor */ WaveletTapGenerator(); /** \brief destructor */ ~WaveletTapGenerator(); /** \brief generates the set of filter taps * \param type which type of wavelet taps to generate */ WaveletFilterSet Generate( WaveletType type ); private: WaveletFilterSet mSet; ///< set of filter taps void Initialize( WaveletType type ); ///< allocates memory for the filter taps void FillInFirstFilterTaps( ); ///< fills in the values of the first set of filter taps void FillInOtherTaps( ); ///< fills in the values of the other sets of filter taps }; } } #endif
[ "filip.rooms@gmail.com" ]
filip.rooms@gmail.com
8a75e12f79c8eff5ba46c712c65140f09fe6128a
5eee48644401fb50f421572c0c1cd69cca9c3339
/C++/ckmp.cpp
9748c8468aa90ddcb1f89b3e230cc715c5670799
[]
no_license
chensongpoixs/calgorithms
33b68655396ec88468d9b41ac4f51e84d421f3fb
84ab0b6c599642bbf7eb01f98a14ec917efe00bd
refs/heads/master
2021-07-12T05:21:01.315955
2020-07-12T13:51:21
2020-07-12T13:51:21
172,195,063
0
0
null
null
null
null
UTF-8
C++
false
false
1,342
cpp
#include<stdlib.h> #include<vector> using namespace std; inline void NEXT(const string&T, vector<int>&next){//按模式串生成vector,next(T.size()) next[0] = -1; for (int i = 1; i<T.size(); i++){ int j = next[i - 1]; while (j >= 0 && T[i - 1] != T[j]) j = next[j];//递推计算 if (j >= 0 && T[i - 1] == T[j]) next[i] = j + 1; else next[i] = 0; } } inline string::size_type COUNT_KMP(const string&S, const string&T){ //利用模式串T的next函数求T在主串S中的个数count的KMP算法 //其中T非空, vector<int>next(T.size()); NEXT(T, next); string::size_type index, count = 0; for (index = 0; index < S.size(); ++index){ int pos = 0; string::size_type iter = index; while (pos<T.size() && iter<S.size()){ if (S[iter] == T[pos]){ ++iter; ++pos; } else{ if (pos == 0) ++iter; else pos = next[pos - 1] + 1; } } if (pos == T.size() && (iter - index) == T.size()) ++count; } return count; } int main(int argc, char*argv[]) { string S="abaabcacabaabcacabaabcacabaabcacabaabcac"; string T="ab"; //cin >> S; //cin >> T; string::size_type count = COUNT_KMP(S, T); cout << count << endl; system("PAUSE"); return 0; }
[ "15850774503@163.com" ]
15850774503@163.com
2d3b10fa8fd911c22f539e92f398e6baf1bb7fe0
a94e36172db7f23a65cd5c0742c19bc9f819cda2
/exer3_16.cpp
0f933bac5833c329b9816adfc293740255ba7a1c
[]
no_license
jithinrj/CppPrimer4thEdition
29e33a8aa15f1d212abc06aae7768f19609401ea
d1886feee3d5ed211a05b146064bc1b32e0b5d87
refs/heads/master
2021-05-02T17:52:01.650507
2016-10-29T18:03:35
2016-10-29T18:03:35
63,693,939
0
1
null
null
null
null
UTF-8
C++
false
false
481
cpp
//exercise 3.16 #include <vector> #include <string> #include <iostream> //debug using std::vector; using std::string; using std::cin; using std::cout; using std::endl; int main() { vector<int> ivec1(10,42); vector<int> ivec2(10); for(vector<int>::size_type index=0; index < 10; index++) ivec2[index] = 42; vector<int> ivec3; for(vector<int>::size_type index=0; index < 10; index++) ivec3.push_back(42); return 0; }
[ "jjayakum@tektronix.com" ]
jjayakum@tektronix.com
63d637493163faa734443d1010b3e697b5f5256e
7f857b5c11b069f899b08cb6a960c45bf299d6b4
/编译原理/MiniCCompiler/CompilerGenSourceCode/demo/test.cpp
443eca9a06801c78e243aab7d77d4018b86ef0c4
[ "Apache-2.0" ]
permissive
Jamesbing-wu/ly_schoolhelper
ee47477a090ae5b66d258f47a7277785a1400caf
0605ceabfb545520c2a84371298d5710947a44ec
refs/heads/master
2022-11-30T19:38:01.592586
2020-05-07T12:58:23
2020-05-07T12:58:23
null
0
0
null
null
null
null
UTF-8
C++
false
false
511
cpp
static int p; int funct(int k) { int b; b = k + k; return b; } int minus(int k, int m) { int n; n = k - m; return n; } void main() { int a; int b; int c; c = minus(c,c); a = funct(c); b = c + funct(a) - 1; a = a - 2 + b; b = a + b; if (a < b || a != c) { a = b; a = a + b; } a = a + b; if (a > b && !(a - b != c + b)) { a = b; b = a - b; if (a > b) { a = b + a; } else { a = b - a; a = b + a; } } while (a < b) { a = b + b; b = c; } a = b; }
[ "213173625@seu.edu.cn" ]
213173625@seu.edu.cn
6b573f2010a65cf7356700d3b0e1b363c1bd9368
b26dfa6bd7f47c1673e76f083f332445dfb7520d
/Source/Core/GPU/CubeMapFBO.h
5072c86108674ff5cc86315a5fad06f93539cd99
[]
no_license
adix64/Mini3DRenderer
57aba64a0a2151e0d0e705b625eca7f8e62ae140
997ca30950739286291f4235d670de7ff5859419
refs/heads/master
2022-11-20T02:34:33.141728
2020-07-21T18:51:40
2020-07-21T18:51:40
277,940,056
1
0
null
null
null
null
UTF-8
C++
false
false
426
h
#pragma once #include <include/gl.h> // GLM #ifndef CUBE_MAP_FBO_H #define CUBE_MAP_FBO_H class CubeMapFBO { public: CubeMapFBO(); ~CubeMapFBO(); bool Init(unsigned int WindowWidth, unsigned int WindowHeight); void BindForWriting(GLenum face, int i); void BindForReading(GLenum TextureUnit, int uniform_location); private: GLuint m_fbo; GLuint m_shadowMap; GLuint m_depth; }; #endif /* CUBE_MAP_FBO_H */
[ "adix64@gmail.com" ]
adix64@gmail.com
1ecdf809420aef5042b35d17dfae497a4eb98a90
c62ca5b1ac7085a83d739e878ab06fa2658d6887
/Converter/language.cpp
f2c82b24197bf3446e36b5327aaee44b7b88bb74
[]
no_license
pepr/trDoxygenToDoxypress
6a73623ba702aaa1fc4cb67b106ab422d66c7023
6d0218c5b0f2782e1d515263544090d20c21d868
refs/heads/master
2021-01-01T05:27:27.005529
2016-04-22T12:24:58
2016-04-22T12:24:58
56,595,567
0
0
null
null
null
null
UTF-8
C++
false
false
5,144
cpp
// stub for the converter #define FALSE false #define TRUE true #include "language.h" #include "translator.h" #include "translator_en.h" #include "translator_adapter.h" #include "translator_de.h" #include "translator_cz.h" #include "translator_nl.h" #include "translator_am.h" #include "translator_sv.h" #include "translator_fr.h" #include "translator_id.h" #include "translator_it.h" #include "translator_jp.h" #include "translator_je.h" #include "translator_es.h" #include "translator_eo.h" #include "translator_fi.h" #include "translator_ru.h" #include "translator_hr.h" #include "translator_pl.h" #include "translator_pt.h" #include "translator_hu.h" #include "translator_ke.h" #include "translator_kr.h" #include "translator_ro.h" #include "translator_si.h" #include "translator_cn.h" #include "translator_tw.h" #include "translator_no.h" #include "translator_br.h" #include "translator_dk.h" #include "translator_sk.h" #include "translator_ua.h" #include "translator_gr.h" #include "translator_sr.h" #include "translator_ca.h" #include "translator_lt.h" #include "translator_lv.h" #include "translator_za.h" #include "translator_ar.h" #include "translator_fa.h" #include "translator_mk.h" #include "translator_sc.h" #include "translator_vi.h" #include "translator_tr.h" #define L_EQUAL(a) (langName == a) Translator *theTranslator{ nullptr }; bool setTranslator(const std::string & langName) { // If the translator object exists, delete it. New one will // be created immediately. if (theTranslator != nullptr) { delete theTranslator; theTranslator = nullptr; } if (L_EQUAL("english")) { theTranslator = new TranslatorEnglish; } else if (L_EQUAL("czech")) { theTranslator = new TranslatorCzech; } else if (L_EQUAL("german")) { theTranslator = new TranslatorGerman; } else if (L_EQUAL("dutch")) { theTranslator = new TranslatorDutch; } else if (L_EQUAL("armenian")) { theTranslator = new TranslatorArmenian; } else if (L_EQUAL("swedish")) { theTranslator = new TranslatorSwedish; } else if (L_EQUAL("french")) { theTranslator = new TranslatorFrench; } else if (L_EQUAL("indonesian")) { theTranslator = new TranslatorIndonesian; } else if (L_EQUAL("italian")) { theTranslator = new TranslatorItalian; } else if (L_EQUAL("japanese")) { theTranslator = new TranslatorJapanese; } else if (L_EQUAL("japanese-en")) { theTranslator = new TranslatorJapaneseEn; } else if (L_EQUAL("spanish")) { theTranslator = new TranslatorSpanish; } else if (L_EQUAL("finnish")) { theTranslator = new TranslatorFinnish; } else if (L_EQUAL("russian")) { theTranslator = new TranslatorRussian; } else if (L_EQUAL("croatian")) { theTranslator = new TranslatorCroatian; } else if (L_EQUAL("polish")) { theTranslator = new TranslatorPolish; } else if (L_EQUAL("portuguese")) { theTranslator = new TranslatorPortuguese; } else if (L_EQUAL("hungarian")) { theTranslator = new TranslatorHungarian; } else if (L_EQUAL("korean")) { theTranslator = new TranslatorKorean; } else if (L_EQUAL("korean-en")) { theTranslator = new TranslatorKoreanEn; } else if (L_EQUAL("romanian")) { theTranslator = new TranslatorRomanian; } else if (L_EQUAL("slovene")) { theTranslator = new TranslatorSlovene; } else if (L_EQUAL("chinese")) { theTranslator = new TranslatorChinese; } else if (L_EQUAL("chinese-traditional")) { theTranslator = new TranslatorChinesetraditional; } else if (L_EQUAL("norwegian")) { theTranslator = new TranslatorNorwegian; } else if (L_EQUAL("brazilian")) { theTranslator = new TranslatorBrazilian; } else if (L_EQUAL("danish")) { theTranslator = new TranslatorDanish; } else if (L_EQUAL("slovak")) { theTranslator = new TranslatorSlovak; } else if (L_EQUAL("ukrainian")) { theTranslator = new TranslatorUkrainian; } else if (L_EQUAL("greek")) { theTranslator = new TranslatorGreek; } else if (L_EQUAL("serbian")) { theTranslator = new TranslatorSerbian; } /* serbiancyr for consistency with older versions */ else if (L_EQUAL("serbian-cyrillic") || L_EQUAL("serbiancyr")) { theTranslator = new TranslatorSerbianCyrillic; } else if (L_EQUAL("catalan")) { theTranslator = new TranslatorCatalan; } else if (L_EQUAL("lithuanian")) { theTranslator = new TranslatorLithuanian; } else if (L_EQUAL("latvian")) { theTranslator = new TranslatorLatvian; } else if (L_EQUAL("afrikaans")) { theTranslator = new TranslatorAfrikaans; } else if (L_EQUAL("arabic")) { theTranslator = new TranslatorArabic; } else if (L_EQUAL("persian") || L_EQUAL("farsi")) { theTranslator = new TranslatorPersian; } else if (L_EQUAL("macedonian")) { theTranslator = new TranslatorMacedonian; } else if (L_EQUAL("vietnamese")) { theTranslator = new TranslatorVietnamese; } else if (L_EQUAL("turkish")) { theTranslator = new TranslatorTurkish; } else if (L_EQUAL("esperanto")) { theTranslator = new TranslatorEsperanto; } return theTranslator != nullptr; }
[ "prikryl@atlas.cz" ]
prikryl@atlas.cz
7d5e66a3cf946aca18ac1e708b70ec5b569ec525
22ebcde0f235b60c1c5cff32461f477ac4f72ecf
/QtSrc/xmlpatterns/expr/qletclause.cpp
3b798dfc62a13a4b0a304dbdcae58705865d0338
[]
no_license
kystyn/ui
13dc1e7c0e01761b0658be101528bea440be70d9
083a011a735f6dc65c271bc92e397c75155ca61f
refs/heads/master
2020-07-29T03:45:08.929517
2020-06-17T23:42:05
2020-06-17T23:42:05
209,656,041
0
0
null
null
null
null
UTF-8
C++
false
false
5,068
cpp
/**************************************************************************** ** ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). ** All rights reserved. ** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the QtXmlPatterns module of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:LGPL$ ** GNU Lesser General Public License Usage ** This file may be used under the terms of the GNU Lesser General Public ** License version 2.1 as published by the Free Software Foundation and ** appearing in the file LICENSE.LGPL included in the packaging of this ** file. Please review the following information to ensure the GNU Lesser ** General Public License version 2.1 requirements will be met: ** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain additional ** rights. These rights are described in the Nokia Qt LGPL Exception ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. ** ** GNU General Public License Usage ** Alternatively, this file may be used under the terms of the GNU General ** Public License version 3.0 as published by the Free Software Foundation ** and appearing in the file LICENSE.GPL included in the packaging of this ** file. Please review the following information to ensure the GNU General ** Public License version 3.0 requirements will be met: ** http://www.gnu.org/copyleft/gpl.html. ** ** Other Usage ** Alternatively, this file may be used in accordance with the terms and ** conditions contained in a signed written agreement between you and Nokia. ** ** ** ** ** ** $QT_END_LICENSE$ ** ****************************************************************************/ #include "qboolean_p.h" #include "qcommonsequencetypes_p.h" #include "qdynamiccontextstore_p.h" #include "qliteral_p.h" #include "qletclause_p.h" QT_BEGIN_NAMESPACE using namespace QPatternist; LetClause::LetClause(const Expression::Ptr &operand1, const Expression::Ptr &operand2, const VariableDeclaration::Ptr &decl) : PairContainer(operand1, operand2) , m_varDecl(decl) { Q_ASSERT(m_varDecl); } DynamicContext::Ptr LetClause::bindVariable(const DynamicContext::Ptr &context) const { context->setExpressionVariable(m_varDecl->slot, Expression::Ptr(new DynamicContextStore(m_operand1, context))); return context; } Item::Iterator::Ptr LetClause::evaluateSequence(const DynamicContext::Ptr &context) const { return m_operand2->evaluateSequence(bindVariable(context)); } Item LetClause::evaluateSingleton(const DynamicContext::Ptr &context) const { return m_operand2->evaluateSingleton(bindVariable(context)); } bool LetClause::evaluateEBV(const DynamicContext::Ptr &context) const { return m_operand2->evaluateEBV(bindVariable(context)); } void LetClause::evaluateToSequenceReceiver(const DynamicContext::Ptr &context) const { m_operand2->evaluateToSequenceReceiver(bindVariable(context)); } Expression::Ptr LetClause::typeCheck(const StaticContext::Ptr &context, const SequenceType::Ptr &reqType) { /* Consider the following query: * * <tt>let $d := \<child type=""/> * return $d//\*[let $i := @type * return $d//\*[$i]]</tt> * * The node test <tt>@type</tt> is referenced from two different places, * where each reference have a different focus. So, in the case of that the source * uses the focus, we need to use a DynamicContextStore to ensure the variable * is always evaluated with the correct focus, regardless of where it is referenced * from. * * We miss out a lot of false positives. For instance, the case of where the focus * is identical for everyone. One reason we cannot check this, is that Expression * doesn't know about its parent. */ m_varDecl->canSourceRewrite = !m_operand1->deepProperties().testFlag(RequiresFocus); if(m_varDecl->canSourceRewrite) return m_operand2->typeCheck(context, reqType); else return PairContainer::typeCheck(context, reqType); } Expression::Properties LetClause::properties() const { return m_varDecl->expression()->properties() & (Expression::RequiresFocus | Expression::IsEvaluated | Expression::DisableElimination); } SequenceType::List LetClause::expectedOperandTypes() const { SequenceType::List result; result.append(CommonSequenceTypes::ZeroOrMoreItems); result.append(CommonSequenceTypes::ZeroOrMoreItems); return result; } SequenceType::Ptr LetClause::staticType() const { return m_operand2->staticType(); } ExpressionVisitorResult::Ptr LetClause::accept(const ExpressionVisitor::Ptr &visitor) const { return visitor->visit(this); } Expression::ID LetClause::id() const { return IDLetClause; } QT_END_NAMESPACE
[ "konstantindamaskinskiy@gmail.com" ]
konstantindamaskinskiy@gmail.com
3443a8f630b141905113a7d37323ca11bc22e032
7578ce7974f1bfa67023b5dd4564d4445a4224f8
/NotifyService.h
c5e5d55f7eb712e734a5a110943e0552b4bae382
[]
no_license
kalamkar/ECG-Firmware
0d2b0ff6d60a23070034653e1d07e406482641a6
43a1d7d18915cb8873e39589a24c315bf2d309b5
refs/heads/master
2021-06-20T19:05:45.986148
2016-05-17T21:39:21
2016-05-17T21:39:21
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,290
h
// Copyright 2015 Dovetail Care Inc. All rights reserved. #ifndef __NOTIFY_SERVICE_H__ #define __NOTIFY_SERVICE_H__ static const uint16_t MAX_DATA_LEN = 20; class NotifyService { public: NotifyService(BLEDevice &_ble, const uint8_t serviceUuid[], const uint8_t charUuid[]) : ble(_ble), length(0), sensorData(charUuid, data, 0, MAX_DATA_LEN, GattCharacteristic::BLE_GATT_CHAR_PROPERTIES_NOTIFY) { GattCharacteristic *charTable[] = {&sensorData}; GattService monitorService(serviceUuid, charTable, 1); ble.addService(monitorService); } void addValue(uint8_t value) { buffer[length] = value; length++; // Notify the variation value once buffer is full if (length == MAX_DATA_LEN) { memcpy(data, buffer, MAX_DATA_LEN); ble.updateCharacteristicValue(sensorData.getValueHandle(), data, MAX_DATA_LEN); length = 0; } } private: BLEDevice &ble; uint16_t length; uint8_t buffer[MAX_DATA_LEN]; uint8_t data[MAX_DATA_LEN]; GattCharacteristic sensorData; }; #endif /* #ifndef __NOTIFY_SERVICE_H__*/
[ "kalamkar@localhost" ]
kalamkar@localhost
0e46ec6d8780a37ebb14c85590ef61770ca5a171
918153915f41cd60e5f7d70432a379666ecbff2d
/controller/GeminiController.cpp
d55af9738ba4c156153730a527f4cbc652e74a30
[]
no_license
fweiss/arduino-rr
af09659b0c6a9e320f52ae12072242dc3ae5a6ed
fda6d44ee16f97cc2173d11ddc76fcb7ab1eafbf
refs/heads/master
2021-10-16T07:16:33.997865
2019-02-08T22:18:29
2019-02-08T22:18:29
140,665,377
0
0
null
null
null
null
UTF-8
C++
false
false
4,136
cpp
/* * TaurusController.cpp * * Created on: Apr 20, 2010 * Author: frankw */ #include "GeminiController.h" #include "WProgram.h" GeminiController::GeminiController() : outWaypoint("out", 1), inWaypoint("in", 2), yardWaypoint("yard", 3), uncouplerWaypoint("uncouple", 4) { setState(START); //inWaypoint.setThresholds(500, 400); //yardWaypoint.setThresholds(600, 200); pinMode(6, OUTPUT); outTurnout = &turnouts.getTurnout(0); inTurnout = &turnouts.getTurnout(1); yardTurnout = &turnouts.getTurnout(2); shuntTurnout = &turnouts.getTurnout(3); uncouplerWaypoint.setOffDelay(0); } void GeminiController::setState(State state, unsigned long timeout) { this->deadmanDelay = timeout; this->deadmanStart = millis(); this->state = state; Serial.print(state); Serial.print(": "); Serial.println(timeout); } void GeminiController::heartBeat() { deadmanStart = millis(); } void GeminiController::update(long millis) { static const int fullSpeed = 110; static const int yardSpeed = 50; int coupleSpeed = 30; if (millis - deadmanStart > deadmanDelay) { state = END; } switch (state) { case START: shuntTurnout->setPosition(turnouts.LEFT); inWaypoint.calibrate(); outWaypoint.calibrate(); yardWaypoint.calibrate(); outTurnout->setPosition(turnouts.RIGHT); inTurnout->setPosition(turnouts.LEFT); yardTurnout->setPosition(turnouts.RIGHT); twoTrack.setSpeed(yardSpeed); setState(AROUND_SHUNT, 10000); break; case AROUND_SHUNT: if (yardWaypoint.beingUncovered()) { setSpeed(0); setState(PAUSE_BEFORE_COUPLE); } break; case PAUSE_BEFORE_COUPLE: if (expired(500)) { shuntTurnout->setPosition(turnouts.RIGHT); twoTrack.reverse(true); setSpeed(coupleSpeed+10); setState(COUPLE, 15000); } break; case COUPLE: if (uncouplerWaypoint.beingCovered()) { setSpeed(0); setState(PAUSE_AFTER_COUPLE); } break; case PAUSE_AFTER_COUPLE: if (expired(1000)) { twoTrack.reverse(false); setSpeed(yardSpeed); setState(TO_MAIN, 15000); } break; case TO_MAIN: debugWaypoint(); if (yardWaypoint.beingCovered()) { heartBeat(); } if (outWaypoint.beingUncovered()) { setSpeed(fullSpeed-10); outTurnout->setPosition(turnouts.LEFT); mainCount = 0; setState(MAIN, 12000); } break; case MAIN: if (inWaypoint.beingCovered()) { mainCount++; heartBeat(); } if (inWaypoint.beingCovered() && mainCount > 1) { inTurnout->setPosition(turnouts.RIGHT); yardTurnout->setPosition(turnouts.LEFT); twoTrack.reverse(); twoTrack.setSpeed(yardSpeed); setState(TO_YARD, 10000); } break; case TO_YARD: if (yardWaypoint.beingCovered()) { shuntTurnout->setPosition(turnouts.RIGHT); setSpeed(coupleSpeed); setState(TO_UNCOUPLER, 10000); } break; case TO_UNCOUPLER: if (uncouplerWaypoint.beingUncovered()) { setState(PAUSE_BEFORE_UNCOUPLER); } break; case POSITION_UNCOUPLER: if (expired(550)) { twoTrack.setSpeed(0); setState(PAUSE_BEFORE_UNCOUPLER); } break; case PAUSE_BEFORE_UNCOUPLER: if (expired(700)) { setSpeed(coupleSpeed); twoTrack.reverse(false); setState(BACK_UNCOUPLER); } break; case BACK_UNCOUPLER: if (expired(950)) { setSpeed(0); setState(PAUSE_AFTER_UNCOUPLER, 2000); } break; case PAUSE_AFTER_UNCOUPLER: if (expired(500)) { twoTrack.reverse(true); setSpeed(yardSpeed); setState(PARK, 6000); } break; case PARK: if (expired(2700)) { setSpeed(0); setState(END); } break; case END: twoTrack.setSpeed(0); debugWaypoint(); break; } turnouts.update(millis); twoTrack.update(millis); outWaypoint.update(millis); inWaypoint.update(millis); yardWaypoint.update(millis); uncouplerWaypoint.update(millis); } void GeminiController::begin(State state, unsigned long delay) { runDelay = delay; runStart = millis(); } bool GeminiController::expired(unsigned long delay) { return millis() - deadmanStart > delay; } void GeminiController::debugWaypoint() { Waypoint &waypoint = outWaypoint; if (waypoint.beingCovered()) { digitalWrite(6, HIGH); } if (waypoint.beingUncovered()) { digitalWrite(6, LOW); } }
[ "feweiss@gmail.com" ]
feweiss@gmail.com
4df8be04cf1412e9360089003fd7d7fa862e3c94
adc8c8798aea0e06e93b621b55f000fb7a6a4345
/art/cmdline/token_range.h
c22d6c8959f268f5138d1f30790610a7e70fe0a5
[ "Apache-2.0", "NCSA" ]
permissive
maiyao1988/my_aosp81
34bbfe1e2632a8924c25f39e59804f162390b37c
d32ab834fd9b9036b56c2715481f85bbaad38081
refs/heads/master
2022-06-16T11:13:49.694990
2020-05-14T13:42:45
2020-05-14T13:42:45
264,388,353
10
1
null
null
null
null
UTF-8
C++
false
false
14,182
h
/* * Copyright (C) 2015 The Android Open Source Project * * 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 ART_CMDLINE_TOKEN_RANGE_H_ #define ART_CMDLINE_TOKEN_RANGE_H_ #include <assert.h> #include <vector> #include <string> #include <algorithm> #include <memory> #include "android-base/strings.h" namespace art { // A range of tokens to make token matching algorithms easier. // // We try really hard to avoid copying and store only a pointer and iterators to the // interiors of the vector, so a typical copy constructor never ends up doing a deep copy. // It is up to the user to play nice and not to mutate the strings in-place. // // Tokens are only copied if a mutating operation is performed (and even then only // if it *actually* mutates the token). struct TokenRange { // Short-hand for a vector of strings. A single string and a token is synonymous. using TokenList = std::vector<std::string>; // Copying-from-vector constructor. explicit TokenRange(const TokenList& token_list) : token_list_(new TokenList(token_list)), begin_(token_list_->begin()), end_(token_list_->end()) {} // Copying-from-iterator constructor template <typename ForwardIterator> TokenRange(ForwardIterator it_begin, ForwardIterator it_end) : token_list_(new TokenList(it_begin, it_end)), begin_(token_list_->begin()), end_(token_list_->end()) {} #if 0 // Copying-from-vector constructor. TokenRange(const TokenList& token_list ATTRIBUTE_UNUSED, TokenList::const_iterator it_begin, TokenList::const_iterator it_end) : token_list_(new TokenList(it_begin, it_end)), begin_(token_list_->begin()), end_(token_list_->end()) { assert(it_begin >= token_list.begin()); assert(it_end <= token_list.end()); } #endif // Copying from char array constructor, convertings into tokens (strings) along the way. TokenRange(const char* token_list[], size_t length) : token_list_(new TokenList(&token_list[0], &token_list[length])), begin_(token_list_->begin()), end_(token_list_->end()) {} // Non-copying move-from-vector constructor. Takes over the token vector. explicit TokenRange(TokenList&& token_list) : token_list_(new TokenList(std::forward<TokenList>(token_list))), begin_(token_list_->begin()), end_(token_list_->end()) {} // Non-copying constructor. Retain reference to existing list of tokens. TokenRange(std::shared_ptr<TokenList> token_list, TokenList::const_iterator it_begin, TokenList::const_iterator it_end) : token_list_(token_list), begin_(it_begin), end_(it_end) { assert(it_begin >= token_list->begin()); assert(it_end <= token_list->end()); } // Non-copying copy constructor. TokenRange(const TokenRange&) = default; // Non-copying move constructor. TokenRange(TokenRange&&) = default; // Non-copying constructor. Retains reference to an existing list of tokens, with offset. explicit TokenRange(std::shared_ptr<TokenList> token_list) : token_list_(token_list), begin_(token_list_->begin()), end_(token_list_->end()) {} // Iterator type for begin() and end(). Guaranteed to be a RandomAccessIterator. using iterator = TokenList::const_iterator; // Iterator type for const begin() and const end(). Guaranteed to be a RandomAccessIterator. using const_iterator = iterator; // Create a token range by splitting a string. Each separator gets their own token. // Since the separator are retained as tokens, it might be useful to call // RemoveToken afterwards. static TokenRange Split(const std::string& string, std::initializer_list<char> separators) { TokenList new_token_list; std::string tok; for (auto&& c : string) { for (char sep : separators) { if (c == sep) { // We spotted a separator character. // Push back everything before the last separator as a new token. // Push back the separator as a token. if (!tok.empty()) { new_token_list.push_back(tok); tok = ""; } new_token_list.push_back(std::string() + sep); } else { // Build up the token with another character. tok += c; } } } if (!tok.empty()) { new_token_list.push_back(tok); } return TokenRange(std::move(new_token_list)); } // A RandomAccessIterator to the first element in this range. iterator begin() const { return begin_; } // A RandomAccessIterator to one past the last element in this range. iterator end() const { return end_; } // The size of the range, i.e. how many tokens are in it. size_t Size() const { return std::distance(begin_, end_); } // Are there 0 tokens in this range? bool IsEmpty() const { return Size() > 0; } // Look up a token by it's offset. const std::string& GetToken(size_t offset) const { assert(offset < Size()); return *(begin_ + offset); } // Does this token range equal the other range? // Equality is defined as having both the same size, and // each corresponding token being equal. bool operator==(const TokenRange& other) const { if (this == &other) { return true; } if (Size() != other.Size()) { return false; } return std::equal(begin(), end(), other.begin()); } // Look up the token at the requested index. const std::string& operator[](int index) const { assert(index >= 0 && static_cast<size_t>(index) < Size()); return *(begin() + index); } // Does this current range start with the other range? bool StartsWith(const TokenRange& other) const { if (this == &other) { return true; } if (Size() < other.Size()) { return false; } auto& smaller = Size() < other.Size() ? *this : other; auto& greater = Size() < other.Size() ? other : *this; return std::equal(smaller.begin(), smaller.end(), greater.begin()); } // Remove all characters 'c' from each token, potentially copying the underlying tokens. TokenRange RemoveCharacter(char c) const { TokenList new_token_list(begin(), end()); bool changed = false; for (auto&& token : new_token_list) { auto it = std::remove_if(token.begin(), token.end(), [&](char ch) { if (ch == c) { changed = true; return true; } return false; }); token.erase(it, token.end()); } if (!changed) { return *this; } return TokenRange(std::move(new_token_list)); } // Remove all tokens matching this one, potentially copying the underlying tokens. TokenRange RemoveToken(const std::string& token) { return RemoveIf([&](const std::string& tok) { return tok == token; }); } // Discard all empty tokens, potentially copying the underlying tokens. TokenRange DiscardEmpty() const { return RemoveIf([](const std::string& token) { return token.empty(); }); } // Create a non-copying subset of this range. // Length is trimmed so that the Slice does not go out of range. TokenRange Slice(size_t offset, size_t length = std::string::npos) const { assert(offset < Size()); if (length != std::string::npos && offset + length > Size()) { length = Size() - offset; } iterator it_end; if (length == std::string::npos) { it_end = end(); } else { it_end = begin() + offset + length; } return TokenRange(token_list_, begin() + offset, it_end); } // Try to match the string with tokens from this range. // Each token is used to match exactly once (after which the next token is used, and so on). // The matching happens from left-to-right in a non-greedy fashion. // If the currently-matched token is the wildcard, then the new outputted token will // contain as much as possible until the next token is matched. // // For example, if this == ["a:", "_", "b:] and "_" is the match string, then // MatchSubstrings on "a:foob:" will yield: ["a:", "foo", "b:"] // // Since the string matching can fail (e.g. ["foo"] against "bar"), then this // function can fail, in which cause it will return null. std::unique_ptr<TokenRange> MatchSubstrings(const std::string& string, const std::string& wildcard) const { TokenList new_token_list; size_t wildcard_idx = std::string::npos; size_t string_idx = 0; // Function to push all the characters matched as a wildcard so far // as a brand new token. It resets the wildcard matching. // Empty wildcards are possible and ok, but only if wildcard matching was on. auto maybe_push_wildcard_token = [&]() { if (wildcard_idx != std::string::npos) { size_t wildcard_length = string_idx - wildcard_idx; std::string wildcard_substr = string.substr(wildcard_idx, wildcard_length); new_token_list.push_back(std::move(wildcard_substr)); wildcard_idx = std::string::npos; } }; for (iterator it = begin(); it != end(); ++it) { const std::string& tok = *it; if (tok == wildcard) { maybe_push_wildcard_token(); wildcard_idx = string_idx; continue; } size_t next_token_idx = string.find(tok); if (next_token_idx == std::string::npos) { // Could not find token at all return nullptr; } else if (next_token_idx != string_idx && wildcard_idx == std::string::npos) { // Found the token at a non-starting location, and we weren't // trying to parse the wildcard. return nullptr; } new_token_list.push_back(string.substr(next_token_idx, tok.size())); maybe_push_wildcard_token(); string_idx += tok.size(); } size_t remaining = string.size() - string_idx; if (remaining > 0) { if (wildcard_idx == std::string::npos) { // Some characters were still remaining in the string, // but it wasn't trying to match a wildcard. return nullptr; } } // If some characters are remaining, the rest must be a wildcard. string_idx += remaining; maybe_push_wildcard_token(); return std::unique_ptr<TokenRange>(new TokenRange(std::move(new_token_list))); } // Do a quick match token-by-token, and see if they match. // Any tokens with a wildcard in them are only matched up until the wildcard. // If this is true, then the wildcard matching later on can still fail, so this is not // a guarantee that the argument is correct, it's more of a strong hint that the // user-provided input *probably* was trying to match this argument. // // Returns how many tokens were either matched (or ignored because there was a // wildcard present). 0 means no match. If the size() tokens are returned. size_t MaybeMatches(const TokenRange& token_list, const std::string& wildcard) const { auto token_it = token_list.begin(); auto token_end = token_list.end(); auto name_it = begin(); auto name_end = end(); size_t matched_tokens = 0; while (token_it != token_end && name_it != name_end) { // Skip token matching when the corresponding name has a wildcard in it. const std::string& name = *name_it; size_t wildcard_idx = name.find(wildcard); if (wildcard_idx == std::string::npos) { // No wildcard present // Did the definition token match the user token? if (name != *token_it) { return matched_tokens; } } else { std::string name_prefix = name.substr(0, wildcard_idx); // Did the user token start with the up-to-the-wildcard prefix? if (!StartsWith(*token_it, name_prefix)) { return matched_tokens; } } ++token_it; ++name_it; ++matched_tokens; } // If we got this far, it's either a full match or the token list was too short. return matched_tokens; } // Flatten the token range by joining every adjacent token with the separator character. // e.g. ["hello", "world"].join('$') == "hello$world" std::string Join(char separator) const { TokenList tmp(begin(), end()); return android::base::Join(tmp, separator); // TODO: Join should probably take an offset or iterators } private: static bool StartsWith(const std::string& larger, const std::string& smaller) { if (larger.size() >= smaller.size()) { return std::equal(smaller.begin(), smaller.end(), larger.begin()); } return false; } template <typename TPredicate> TokenRange RemoveIf(const TPredicate& predicate) const { // If any of the tokens in the token lists are empty, then // we need to remove them and compress the token list into a smaller one. bool remove = false; for (auto it = begin_; it != end_; ++it) { auto&& token = *it; if (predicate(token)) { remove = true; break; } } // Actually copy the token list and remove the tokens that don't match our predicate. if (remove) { auto token_list = std::make_shared<TokenList>(begin(), end()); TokenList::iterator new_end = std::remove_if(token_list->begin(), token_list->end(), predicate); token_list->erase(new_end, token_list->end()); assert(token_list_->size() > token_list->size() && "Nothing was actually removed!"); return TokenRange(token_list); } return *this; } const std::shared_ptr<std::vector<std::string>> token_list_; const iterator begin_; const iterator end_; }; } // namespace art #endif // ART_CMDLINE_TOKEN_RANGE_H_
[ "yao.mai@dingxiang-inc.com" ]
yao.mai@dingxiang-inc.com
bc6d3350d248ae1bac8df2f22a00d7c635af0562
b8390be3bbb2abc529dfbd867163f99500f73143
/side_projects/sasawatlcm/include/messaging/Decoder.hpp
a70adc4cd20213d5f312c86c3023ef0132c33da6
[]
no_license
MAAV-Software/embedded
82f1818f72d271d7b9d8beaa02671150a16945aa
41f1096aec573c5fbf9a78d7667acbc8cc24f55d
refs/heads/master
2022-05-03T17:05:40.239317
2022-04-03T18:59:55
2022-04-03T18:59:55
210,971,584
0
0
null
null
null
null
UTF-8
C++
false
false
2,190
hpp
#ifndef DECODER_HPP_ #define DECODER_HPP_ #include <stdint.h> // states for data_frame_push_byte typedef enum frame_state {READY, LEN_1, LEN_2, LEN_1_ESCP, LEN_2_ESCP, READ, READ_ESCP, CHECKSUM, CHECKSUM_ESCP, DONE, START_ERR, CHECKSUM_ERR, DATA_ERR} frameState; class Decoder { public: // MODIFIES: *this // EFFECTS: Tells the decoder that datum is the next byte in the // received packet bool push(uint8_t datum); // EFFECTS: Returns true if a full packet has been decoded. If a full // packet has been decoded, it may be accessed using // packetData() and packetSize(). bool isDone() const { return state == DONE; } // EFFECTS: Returns true if the Decoder is ready for the first byte of // a packet to be received bool isReady() const { return state == READY; } // EFFECTS: Returns true if an error has occured bool isError() const { return state == START_ERR; } // MODIFIES: *this // EFFECTS: Resets the decoding. All decoded data so far will be lost, // all errors will be cleared, the Decoder will be just like // it was just constructed void reset() { at = size = 0; state = READY; } // REQUIRES: The decoding is done. Check with isDone(). // EFFECTS: Returns a pointer to the decoded packet data. If a full // packet has not been decoded, the pointer is invalid and // should NOT be used. Check whether a full packet has been // decoded using isDone() const uint8_t* packetData() const { return buffer; } // REQUIRES: The decoding is done. Check with isDone(). // EFFECTS: Returns the size of the packet. Note that this size is // reflective of the size of the fully decoded packet! If // you access packetData() before a packet is fully decoded, // there WILL NOT be packetSize() bytes in it. uint32_t packetDataSize() const { return size; } // Creates new decoder. Decoder(); // Decodes the information in raw and assigns it into buffer. Decoder& operator=(const uint8_t* raw); private: uint32_t at; uint32_t size; uint8_t buffer[120]; frameState state; }; #endif /* Decoder.hpp */
[ "sajanptl@umich.edu" ]
sajanptl@umich.edu
968aed9d9d736e2591314d2929e18e3fc1aa2103
b2d46af9c6152323ce240374afc998c1574db71f
/cursovideojuegos/theflostiproject/3rdParty/boost/libs/iterator/test/filter_iterator_test.cpp
8f84f1a221111a02e20fd0d8a083aaa3a71ae2cc
[]
no_license
bugbit/cipsaoscar
601b4da0f0a647e71717ed35ee5c2f2d63c8a0f4
52aa8b4b67d48f59e46cb43527480f8b3552e96d
refs/heads/master
2021-01-10T21:31:18.653163
2011-09-28T16:39:12
2011-09-28T16:39:12
33,032,640
0
0
null
null
null
null
UTF-8
C++
false
false
8,203
cpp
// Copyright David Abrahams 2003, Jeremy Siek 2004. // Distributed under the Boost Software License, Version 1.0. (See // accompanying file LICENSE_1_0.txt or copy at // http://www.boost.org/LICENSE_1_0.txt) #include <boost/iterator/filter_iterator.hpp> #include <boost/iterator/reverse_iterator.hpp> #include <boost/iterator/new_iterator_tests.hpp> #include <boost/type_traits/is_convertible.hpp> #include <boost/concept_check.hpp> #include <boost/concept_archetype.hpp> #include <boost/iterator/iterator_concepts.hpp> #include <boost/iterator/iterator_archetypes.hpp> #include <boost/cstdlib.hpp> #include <deque> #include <iostream> using boost::dummyT; struct one_or_four { bool operator()(dummyT x) const { return x.foo() == 1 || x.foo() == 4; } }; template <class T> struct undefined; template <class T> struct see_type; // Test filter iterator int main() { // Concept checks // Adapting old-style iterators { typedef boost::filter_iterator<one_or_four, boost::input_iterator_archetype<dummyT> > Iter; boost::function_requires< boost::InputIteratorConcept<Iter> >(); boost::function_requires< boost_concepts::ReadableIteratorConcept<Iter> >(); boost::function_requires< boost_concepts::SinglePassIteratorConcept<Iter> >(); } { typedef boost::filter_iterator<one_or_four, boost::input_output_iterator_archetype<dummyT> > Iter; boost::function_requires< boost::InputIteratorConcept<Iter> >(); boost::function_requires< boost::OutputIteratorConcept<Iter, dummyT> >(); boost::function_requires< boost_concepts::ReadableIteratorConcept<Iter> >(); boost::function_requires< boost_concepts::WritableIteratorConcept<Iter> >(); boost::function_requires< boost_concepts::SinglePassIteratorConcept<Iter> >(); } { typedef boost::filter_iterator<one_or_four, boost::forward_iterator_archetype<dummyT> > Iter; boost::function_requires< boost::ForwardIteratorConcept<Iter> >(); boost::function_requires< boost_concepts::ReadableIteratorConcept<Iter> >(); boost::function_requires< boost_concepts::ForwardTraversalConcept<Iter> >(); } { typedef boost::filter_iterator<one_or_four, boost::mutable_forward_iterator_archetype<dummyT> > Iter; boost::function_requires< boost::Mutable_ForwardIteratorConcept<Iter> >(); boost::function_requires< boost_concepts::ReadableIteratorConcept<Iter> >(); boost::function_requires< boost_concepts::WritableIteratorConcept<Iter> >(); boost::function_requires< boost_concepts::ForwardTraversalConcept<Iter> >(); } // Adapting new-style iterators { typedef boost::iterator_archetype< const dummyT , boost::iterator_archetypes::readable_iterator_t , boost::single_pass_traversal_tag > BaseIter; typedef boost::filter_iterator<one_or_four, BaseIter> Iter; boost::function_requires< boost::InputIteratorConcept<Iter> >(); boost::function_requires< boost_concepts::ReadableIteratorConcept<Iter> >(); boost::function_requires< boost_concepts::SinglePassIteratorConcept<Iter> >(); } #if !BOOST_WORKAROUND(BOOST_MSVC, == 1200) // Causes Internal Error in linker. { typedef boost::iterator_archetype< dummyT , boost::iterator_archetypes::readable_writable_iterator_t , boost::single_pass_traversal_tag > BaseIter; typedef boost::filter_iterator<one_or_four, BaseIter> Iter; boost::function_requires< boost::InputIteratorConcept<Iter> >(); boost::function_requires< boost::OutputIteratorConcept<Iter, dummyT> >(); boost::function_requires< boost_concepts::ReadableIteratorConcept<Iter> >(); boost::function_requires< boost_concepts::WritableIteratorConcept<Iter> >(); boost::function_requires< boost_concepts::SinglePassIteratorConcept<Iter> >(); } #endif { typedef boost::iterator_archetype< const dummyT , boost::iterator_archetypes::readable_iterator_t , boost::forward_traversal_tag > BaseIter; typedef boost::filter_iterator<one_or_four, BaseIter> Iter; boost::function_requires< boost::InputIteratorConcept<Iter> >(); boost::function_requires< boost_concepts::ReadableIteratorConcept<Iter> >(); boost::function_requires< boost_concepts::ForwardTraversalConcept<Iter> >(); } #if !BOOST_WORKAROUND(BOOST_MSVC, == 1200) // Causes Internal Error in linker. { typedef boost::iterator_archetype< dummyT , boost::iterator_archetypes::readable_writable_iterator_t , boost::forward_traversal_tag > BaseIter; typedef boost::filter_iterator<one_or_four, BaseIter> Iter; boost::function_requires< boost_concepts::ReadableIteratorConcept<Iter> >(); boost::function_requires< boost_concepts::WritableIteratorConcept<Iter> >(); boost::function_requires< boost_concepts::ForwardTraversalConcept<Iter> >(); } { typedef boost::iterator_archetype< const dummyT , boost::iterator_archetypes::readable_lvalue_iterator_t , boost::forward_traversal_tag > BaseIter; typedef boost::filter_iterator<one_or_four, BaseIter> Iter; boost::function_requires< boost::ForwardIteratorConcept<Iter> >(); boost::function_requires< boost_concepts::ReadableIteratorConcept<Iter> >(); boost::function_requires< boost_concepts::LvalueIteratorConcept<Iter> >(); boost::function_requires< boost_concepts::ForwardTraversalConcept<Iter> >(); } { typedef boost::iterator_archetype< dummyT , boost::iterator_archetypes::writable_lvalue_iterator_t , boost::forward_traversal_tag > BaseIter; typedef boost::filter_iterator<one_or_four, BaseIter> Iter; boost::function_requires< boost::Mutable_ForwardIteratorConcept<Iter> >(); boost::function_requires< boost_concepts::WritableIteratorConcept<Iter> >(); boost::function_requires< boost_concepts::LvalueIteratorConcept<Iter> >(); boost::function_requires< boost_concepts::ForwardTraversalConcept<Iter> >(); } #endif // Run-time tests dummyT array[] = { dummyT(0), dummyT(1), dummyT(2), dummyT(3), dummyT(4), dummyT(5) }; const int N = sizeof(array)/sizeof(dummyT); typedef boost::filter_iterator<one_or_four, dummyT*> filter_iter; boost::bidirectional_readable_iterator_test( filter_iter(one_or_four(), array, array+N) , dummyT(1), dummyT(4)); BOOST_STATIC_ASSERT( (!boost::is_convertible< boost::iterator_traversal<filter_iter>::type , boost::random_access_traversal_tag >::value )); //# endif // On compilers not supporting partial specialization, we can do more type // deduction with deque iterators than with pointers... unless the library // is broken ;-( std::deque<dummyT> array2; std::copy(array+0, array+N, std::back_inserter(array2)); boost::bidirectional_readable_iterator_test( boost::make_filter_iterator(one_or_four(), array2.begin(), array2.end()), dummyT(1), dummyT(4)); boost::bidirectional_readable_iterator_test( boost::make_filter_iterator(one_or_four(), array2.begin(), array2.end()), dummyT(1), dummyT(4)); boost::bidirectional_readable_iterator_test( boost::make_filter_iterator( one_or_four() , boost::make_reverse_iterator(array2.end()) , boost::make_reverse_iterator(array2.begin()) ), dummyT(4), dummyT(1)); boost::bidirectional_readable_iterator_test( filter_iter(array+0, array+N), dummyT(1), dummyT(4)); boost::bidirectional_readable_iterator_test( filter_iter(one_or_four(), array, array + N), dummyT(1), dummyT(4)); std::cout << "test successful " << std::endl; return boost::exit_success; }
[ "ohernandezba@71d53fa2-cca5-e1f2-4b5e-677cbd06613a" ]
ohernandezba@71d53fa2-cca5-e1f2-4b5e-677cbd06613a
fde274bf59c368d14f526d1cd23eaaeb44b96a80
6654dd6bacf024e608fe172f8713218b16d81555
/day04/ex01/RadScorpion.hpp
241ce7059d52858d97d392e874766d679178aba7
[]
no_license
NEKuipers/CPP-Piscine
f31cd5f8cff671a2adeffe53e1f2ddc3b1386e6d
066ae43ff36cb68d120fc79a02ce197782283bbf
refs/heads/master
2022-12-10T06:17:44.957040
2020-09-17T10:09:14
2020-09-17T10:09:14
281,984,146
0
0
null
null
null
null
UTF-8
C++
false
false
1,205
hpp
/* ************************************************************************** */ /* */ /* :::::::: */ /* RadScorpion.hpp :+: :+: */ /* +:+ */ /* By: nkuipers <nkuipers@student.codam.nl> +#+ */ /* +#+ */ /* Created: 2020/08/20 13:54:28 by nkuipers #+# #+# */ /* Updated: 2020/08/26 13:53:14 by nkuipers ######## odam.nl */ /* */ /* ************************************************************************** */ #ifndef RADSCORPION_HPP # define RADSCORPION_HPP # include "Enemy.hpp" # include <iostream> class RadScorpion : public Enemy { public: RadScorpion(); virtual ~RadScorpion(); RadScorpion(const RadScorpion & copy); RadScorpion &operator=(const RadScorpion &rhs); }; #endif
[ "nkuipers@f1r6s2.codam.nl" ]
nkuipers@f1r6s2.codam.nl
33ec7a5d384a9b37e5f4a8fd52c295d38b625966
16f0a72568d7fdf67afa48bed6d5e25f2594fe9d
/lib/kernel/port/stm32f103/src/kernel/port/impl/interruptMasking.cpp
462564f7dccb7464500e97fb274ede59c6cecc40
[ "MIT" ]
permissive
daantimmer/dtos
fe1ae05d6d5e4fe10f6e85d2fb4ff60c2ec8ef5b
20b1e8463983394296690131ad0fb77a32e05574
refs/heads/master
2021-09-26T02:50:35.367922
2021-09-21T23:12:57
2021-09-21T23:12:57
180,655,241
1
0
null
null
null
null
UTF-8
C++
false
false
1,637
cpp
#include "kernel/port/interruptMasking.hpp" #include "kernel/basepri.hpp" #include "stm32f1xx.h" #if defined(CLANG_TIDY) namespace { constexpr std::uint32_t __get_BASEPRI() { return 0; } constexpr void __set_BASEPRI(std::uint32_t /*unused*/) {} } #endif auto kernel::port::EnableInterruptMasking() -> InterruptMask { if constexpr (!kernel::IsKernelPriorityHighest()) { const auto maskValue = __get_BASEPRI(); constexpr auto basePriValue = kernel::GetBasePriorityRegisterValue(); __set_BASEPRI(basePriValue); return InterruptMask{maskValue}; } else { const auto maskValue = __get_PRIMASK(); __disable_irq(); return InterruptMask{maskValue}; } } auto kernel::port::DisableInterruptMasking() -> InterruptMask { if constexpr (!kernel::IsKernelPriorityHighest()) { const auto maskValue = __get_BASEPRI(); __set_BASEPRI(0); return InterruptMask{maskValue}; } else { const auto maskValue = __get_PRIMASK(); __enable_irq(); return InterruptMask{maskValue}; } } auto kernel::port::RestoreInterruptMasking() -> void { RestoreInterruptMasking(InterruptMask{std::uint32_t{0}}); } auto kernel::port::RestoreInterruptMasking(const InterruptMask maskValue) -> void { if constexpr (!kernel::IsKernelPriorityHighest()) { __set_BASEPRI(static_cast<std::uint32_t>(maskValue)); } else { __set_PRIMASK(static_cast<std::uint32_t>(maskValue)); } }
[ "daan.timmer@gmail.com" ]
daan.timmer@gmail.com
092e7076b114967c7b36515bc7ca0a102709f2ec
de386a157b3eee186362fbbf2272244329751279
/String/suffixArray_DC3.cpp
3d3fe49e4513ca068a27d77d0add89b22af8836e
[ "MIT" ]
permissive
Bocity/ACMTemplate
90a5dccea20c380a39ac9f41a8960f64a6968058
ece72ab4719862038970f688a1642baa3a27a00f
refs/heads/master
2020-04-11T20:52:24.952428
2018-09-26T14:09:42
2018-09-26T14:09:42
null
0
0
null
null
null
null
UTF-8
C++
false
false
3,768
cpp
#include <algorithm> #include <cstdio> #include <cstring> #include <iomanip> #include <iostream> #include <map> #include <vector> #define ccnb 0 #define F(x) ((x) / 3 + ((x) % 3 == 1 ? 0 : tb)) #define G(x) ((x) < tb ? (x)*3 + 1 : ((x)-tb) * 3 + 2) using namespace std; const int N = 2e5 + 10; const int inf = 0x3f3f3f3f; struct SuffixArray { int r[N * 3]; int sa[N * 3], rk[N], height[N]; int wa[N], wb[N], wv[N], ws[N]; int m, n; void init(int *s, int len) { memset(r, 0, sizeof(r)); memset(sa, 0, sizeof(sa)); n = len; for (int i = 0; i < n; i++) { r[i] = int(s[i]); } m = 500; } int c0(int *r, int a, int b) { return r[a] == r[b] && r[a + 1] == r[b + 1] && r[a + 2] == r[b + 2]; } int c12(int k, int *r, int a, int b) { if (k == 2) return r[a] < r[b] || r[a] == r[b] && c12(1, r, a + 1, b + 1); else return r[a] < r[b] || r[a] == r[b] && wv[a + 1] < wv[b + 1]; } void my_sort(int *r, int *a, int *b, int n, int m) { int i; for (i = 0; i < n; i++) wv[i] = r[a[i]]; for (i = 0; i < m; i++) ws[i] = 0; for (i = 0; i < n; i++) ws[wv[i]]++; for (i = 1; i < m; i++) ws[i] += ws[i - 1]; for (i = n - 1; i >= 0; i--) b[--ws[wv[i]]] = a[i]; return; } void buildSA(int *r, int *sa, int n, int m) { // DC3 int i, j, *rn = r + n, *san = sa + n, ta = 0, tb = (n + 1) / 3, tbc = 0, p; r[n] = r[n + 1] = 0; for (i = 0; i < n; i++) if (i % 3 != 0) wa[tbc++] = i; my_sort(r + 2, wa, wb, tbc, m); my_sort(r + 1, wb, wa, tbc, m); my_sort(r, wa, wb, tbc, m); for (p = 1, rn[F(wb[0])] = 0, i = 1; i < tbc; i++) { rn[F(wb[i])] = c0(r, wb[i - 1], wb[i]) ? p - 1 : p++; } if (p < tbc) buildSA(rn, san, tbc, p); else for (i = 0; i < tbc; i++) san[rn[i]] = i; for (i = 0; i < tbc; i++) if (san[i] < tb) wb[ta++] = san[i] * 3; if (n % 3 == 1) wb[ta++] = n - 1; my_sort(r, wb, wa, ta, m); for (i = 0; i < tbc; i++) wv[wb[i] = G(san[i])] = i; for (i = 0, j = 0, p = 0; i < ta && j < tbc; p++) { sa[p] = c12(wb[j] % 3, r, wa[i], wb[j]) ? wa[i++] : wb[j++]; } for (; i < ta; p++) sa[p] = wa[i++]; for (; j < tbc; p++) sa[p] = wb[j++]; return; } void getHeight() { int i, j, k = 0; for (i = 1; i <= n; i++) rk[sa[i]] = i; for (i = 0; i < n; height[rk[i++]] = k) for (k ? k-- : 0, j = sa[rk[i] - 1]; r[i + k] == r[j + k]; k++) ; return; } void call(int *s, int len) { init(s, len); buildSA(r, sa, n + 1, m); getHeight(); } int d[N][20]; void initRMQ(int *A, int n) { for (int i = 1; i <= n; i++) d[i][0] = A[i]; for (int j = 1; (1 << j) <= n; j++) { for (int i = 1; i + j - 1 <= n; i++) { d[i][j] = min(d[i][j - 1], d[i + (1 << (j - 1))][j - 1]); } } } int RMQ(int L, int R) { int k = 0; while ((1 << (k + 1)) <= R - L + 1) k++; return min(d[L][k], d[R - (1 << k) + 1][k]); } void initLCP() { initRMQ(height, n); } int LCP(int i, int j) { if (rk[i] > rk[j]) swap(i, j); return RMQ(rk[i] + 1, rk[j]); } } solver;
[ "961337146@qq.com" ]
961337146@qq.com
5698faffd2e94ccc735e83fa255a4f0b7ff444da
1bd9e3cda029e15d43a2e537663495ff27e317e2
/buoyantPimpleFoam_timevaryingBC/heatfluxtimevary/61/alphat
60d6c002b7af7cb3cb03f8961ee5efde8cb4c053
[]
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
990,306
/*--------------------------------*- 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 "61"; object alphat; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // dimensions [1 -1 -1 0 0 0 0]; internalField nonuniform List<scalar> 78750 ( 1.03217e-08 5.63947e-07 8.12658e-07 1.04083e-06 1.2491e-06 1.43254e-06 1.59273e-06 1.73159e-06 1.85067e-06 1.95121e-06 2.03454e-06 2.10145e-06 2.15237e-06 2.18785e-06 2.20858e-06 2.21519e-06 2.20821e-06 2.18811e-06 2.15526e-06 2.11041e-06 2.05266e-06 1.98114e-06 1.89614e-06 1.79781e-06 1.68589e-06 1.56053e-06 1.42261e-06 1.27404e-06 1.11741e-06 9.54776e-07 7.86869e-07 6.13789e-07 4.39295e-07 2.77827e-07 6.36482e-09 2.94882e-09 1.50811e-06 3.79513e-06 7.10136e-06 1.14999e-05 1.3496e-05 1.49935e-05 1.6183e-05 1.69328e-05 1.72465e-05 1.76928e-05 1.82315e-05 1.8654e-05 1.86351e-05 1.84934e-05 1.82449e-05 1.79041e-05 1.74841e-05 1.69968e-05 1.64523e-05 1.58562e-05 1.52114e-05 1.45225e-05 1.37895e-05 1.30093e-05 1.21767e-05 1.12848e-05 1.03271e-05 9.30194e-06 7.55284e-06 5.07614e-06 3.14988e-06 2.34196e-06 1.74563e-06 2.54657e-08 3.695e-09 2.14992e-06 4.60004e-06 7.66567e-06 1.17399e-05 1.69967e-05 1.94433e-05 2.07996e-05 2.18326e-05 2.25797e-05 2.30739e-05 2.33442e-05 2.34154e-05 2.33097e-05 2.30467e-05 2.26448e-05 2.1966e-05 2.11764e-05 2.03665e-05 1.95444e-05 1.87281e-05 1.79483e-05 1.72122e-05 1.64873e-05 1.5621e-05 1.46533e-05 1.36331e-05 1.23156e-05 1.02189e-05 7.64757e-06 5.22429e-06 3.75729e-06 3.89731e-06 1.86195e-06 4.07691e-08 6.96351e-09 2.0569e-06 4.59505e-06 8.02443e-06 1.25223e-05 1.78809e-05 2.29448e-05 2.45778e-05 2.55793e-05 2.62758e-05 2.67023e-05 2.66633e-05 2.54008e-05 2.407e-05 2.27786e-05 2.15179e-05 2.02886e-05 1.9094e-05 1.79441e-05 1.68599e-05 1.58728e-05 1.50234e-05 1.43402e-05 1.38172e-05 1.33956e-05 1.29385e-05 1.22226e-05 1.09965e-05 9.14531e-06 6.9257e-06 5.01163e-06 4.11999e-06 5.24255e-06 1.78163e-06 5.2126e-08 1.01584e-08 2.11037e-06 4.83216e-06 8.73488e-06 1.40253e-05 2.0207e-05 2.57676e-05 2.75164e-05 2.84405e-05 2.90415e-05 2.93591e-05 2.88002e-05 2.69506e-05 2.50287e-05 2.31938e-05 2.14686e-05 1.98538e-05 1.83402e-05 1.69224e-05 1.56089e-05 1.44291e-05 1.34294e-05 1.26511e-05 1.21032e-05 1.17394e-05 1.14232e-05 1.09094e-05 9.91648e-06 8.34394e-06 6.49586e-06 5.01057e-06 4.59188e-06 6.23467e-06 1.72449e-06 6.1712e-08 1.41554e-08 2.1343e-06 5.01028e-06 9.3894e-06 1.55393e-05 2.25317e-05 2.83346e-05 3.02345e-05 3.10916e-05 3.16136e-05 3.12533e-05 2.92037e-05 2.69435e-05 2.47499e-05 2.271e-05 2.08497e-05 1.91568e-05 1.76037e-05 1.61643e-05 1.48273e-05 1.36082e-05 1.25519e-05 1.17081e-05 1.10959e-05 1.06821e-05 1.03501e-05 9.87579e-06 8.99711e-06 7.63797e-06 6.10854e-06 4.99098e-06 4.9955e-06 6.73723e-06 1.71069e-06 6.96828e-08 1.79017e-08 2.17738e-06 5.19706e-06 1.00065e-05 1.69763e-05 2.47667e-05 3.07931e-05 3.25436e-05 3.33538e-05 3.38162e-05 3.17627e-05 2.91772e-05 2.65461e-05 2.40841e-05 2.18792e-05 1.99374e-05 1.82245e-05 1.66934e-05 1.53e-05 1.40155e-05 1.28413e-05 1.18147e-05 1.09795e-05 1.03467e-05 9.88636e-06 9.50281e-06 9.01385e-06 8.21183e-06 7.05471e-06 5.82423e-06 5.0375e-06 5.43534e-06 6.8989e-06 1.70783e-06 7.66742e-08 2.16851e-08 2.21501e-06 5.33846e-06 1.04684e-05 1.8056e-05 2.63696e-05 3.2419e-05 3.46935e-05 3.54664e-05 3.41945e-05 3.16764e-05 2.87614e-05 2.58901e-05 2.32833e-05 2.10118e-05 1.90624e-05 1.7385e-05 1.59196e-05 1.46105e-05 1.34174e-05 1.23296e-05 1.13728e-05 1.05747e-05 9.92785e-06 9.3968e-06 8.90479e-06 8.3218e-06 7.51734e-06 6.49999e-06 5.51912e-06 5.02268e-06 5.77458e-06 6.90732e-06 1.71845e-06 8.29889e-08 2.52226e-08 2.25337e-06 5.45756e-06 1.08364e-05 1.89246e-05 2.766e-05 3.36983e-05 3.6311e-05 3.62264e-05 3.43144e-05 3.1413e-05 2.82153e-05 2.51629e-05 2.24591e-05 2.01492e-05 1.8198e-05 1.6544e-05 1.51228e-05 1.38762e-05 1.27627e-05 1.1772e-05 1.09245e-05 1.02242e-05 9.632e-06 9.09226e-06 8.53309e-06 7.86732e-06 7.03791e-06 6.10759e-06 5.30962e-06 5.04639e-06 6.10695e-06 6.82398e-06 1.73193e-06 8.91124e-08 2.86571e-08 2.28354e-06 5.53898e-06 1.10872e-05 1.95258e-05 2.85274e-05 3.44935e-05 3.68508e-05 3.64629e-05 3.42586e-05 3.11173e-05 2.77531e-05 2.46037e-05 2.18546e-05 1.95311e-05 1.75852e-05 1.59485e-05 1.45547e-05 1.33463e-05 1.2284e-05 1.13592e-05 1.05909e-05 9.96574e-06 9.41911e-06 8.87521e-06 8.2613e-06 7.52347e-06 6.66488e-06 5.79248e-06 5.13054e-06 5.05306e-06 6.37375e-06 6.74147e-06 1.75042e-06 9.52154e-08 3.20065e-08 2.31198e-06 5.61004e-06 1.13002e-05 2.0033e-05 2.9242e-05 3.51237e-05 3.72443e-05 3.65787e-05 3.41159e-05 3.07783e-05 2.72922e-05 2.40816e-05 2.1309e-05 1.89802e-05 1.70361e-05 1.54044e-05 1.40194e-05 1.28279e-05 1.17972e-05 1.09261e-05 1.02373e-05 9.70004e-06 9.22512e-06 8.7134e-06 8.08341e-06 7.30346e-06 6.42459e-06 5.59161e-06 5.02919e-06 5.10116e-06 6.64794e-06 6.64029e-06 1.76894e-06 1.01367e-07 3.5391e-08 2.33691e-06 5.66753e-06 1.14711e-05 2.04356e-05 2.97806e-05 3.55577e-05 3.74749e-05 3.65975e-05 3.39586e-05 3.05039e-05 2.69572e-05 2.37249e-05 2.09495e-05 1.86226e-05 1.66782e-05 1.50424e-05 1.36513e-05 1.24554e-05 1.14277e-05 1.05738e-05 9.92304e-06 9.43668e-06 9.01118e-06 8.53045e-06 7.90333e-06 7.10955e-06 6.23096e-06 5.43787e-06 4.95788e-06 5.15604e-06 6.90131e-06 6.55419e-06 1.78878e-06 1.07491e-07 3.87595e-08 2.36018e-06 5.72177e-06 1.16326e-05 2.08099e-05 3.02631e-05 3.59261e-05 3.76451e-05 3.65684e-05 3.37721e-05 3.02228e-05 2.66377e-05 2.3401e-05 2.06336e-05 1.83139e-05 1.637e-05 1.47273e-05 1.33244e-05 1.21163e-05 1.10826e-05 1.02367e-05 9.61533e-06 9.17264e-06 8.79434e-06 8.35143e-06 7.74401e-06 6.95791e-06 6.09514e-06 5.34344e-06 4.93553e-06 5.24681e-06 7.1739e-06 6.46408e-06 1.8079e-06 1.13548e-07 4.22812e-08 2.3839e-06 5.77737e-06 1.17943e-05 2.11664e-05 3.06876e-05 3.62155e-05 3.77479e-05 3.65063e-05 3.35995e-05 3.00011e-05 2.64117e-05 2.31914e-05 2.04423e-05 1.81327e-05 1.61875e-05 1.45325e-05 1.3109e-05 1.18759e-05 1.08184e-05 9.95657e-06 9.33544e-06 8.90828e-06 8.55594e-06 8.14241e-06 7.56182e-06 6.80137e-06 5.97207e-06 5.26975e-06 4.93177e-06 5.34917e-06 7.44465e-06 6.3864e-06 1.82725e-06 1.19482e-07 4.57701e-08 2.40579e-06 5.83009e-06 1.19493e-05 2.15045e-05 3.10795e-05 3.64731e-05 3.7827e-05 3.64312e-05 3.34263e-05 2.9792e-05 2.621e-05 2.30147e-05 2.02897e-05 1.79936e-05 1.60486e-05 1.43816e-05 1.29361e-05 1.16751e-05 1.05892e-05 9.7053e-06 9.07627e-06 8.65521e-06 8.32045e-06 7.93257e-06 7.38266e-06 6.65814e-06 5.87297e-06 5.22541e-06 4.95705e-06 5.47848e-06 7.73229e-06 6.31123e-06 1.84609e-06 1.25282e-07 4.94535e-08 2.42948e-06 5.88872e-06 1.21183e-05 2.18562e-05 3.14574e-05 3.66966e-05 3.78767e-05 3.63497e-05 3.32786e-05 2.96379e-05 2.60839e-05 2.29252e-05 2.02292e-05 1.79478e-05 1.60017e-05 1.43191e-05 1.28461e-05 1.15492e-05 1.04238e-05 9.50222e-06 8.84557e-06 8.41132e-06 8.07819e-06 7.70685e-06 7.18777e-06 6.50686e-06 5.77537e-06 5.18866e-06 4.99153e-06 5.61604e-06 8.01855e-06 6.24829e-06 1.8651e-06 1.30947e-07 5.30797e-08 2.45134e-06 5.94419e-06 1.22797e-05 2.21889e-05 3.18085e-05 3.69018e-05 3.79207e-05 3.62746e-05 3.3148e-05 2.9509e-05 2.59886e-05 2.287e-05 2.02055e-05 1.79406e-05 1.5995e-05 1.42975e-05 1.27965e-05 1.1462e-05 1.02939e-05 9.32986e-06 8.63863e-06 8.18335e-06 7.84441e-06 7.48463e-06 6.99582e-06 6.36226e-06 5.68966e-06 5.16755e-06 5.04354e-06 5.77257e-06 8.31425e-06 6.19133e-06 1.88395e-06 1.36483e-07 5.68983e-08 2.47513e-06 6.00591e-06 1.24572e-05 2.25427e-05 3.21605e-05 3.70935e-05 3.79565e-05 3.62102e-05 3.30513e-05 2.94335e-05 2.59587e-05 2.28864e-05 2.02561e-05 1.80087e-05 1.60628e-05 1.43481e-05 1.28151e-05 1.14374e-05 1.02184e-05 9.20024e-06 8.45913e-06 7.96835e-06 7.6117e-06 7.25591e-06 6.79531e-06 6.21157e-06 5.60199e-06 5.14776e-06 5.09867e-06 5.93289e-06 8.6046e-06 6.14626e-06 1.90305e-06 1.41907e-07 6.06535e-08 2.49734e-06 6.06515e-06 1.2629e-05 2.28814e-05 3.24925e-05 3.72759e-05 3.79966e-05 3.61607e-05 3.29767e-05 2.93836e-05 2.59561e-05 2.29315e-05 2.03372e-05 1.81096e-05 1.6166e-05 1.44361e-05 1.28721e-05 1.14503e-05 1.0178e-05 9.10142e-06 8.30398e-06 7.77081e-06 7.39006e-06 7.03351e-06 6.59901e-06 6.06555e-06 5.5208e-06 5.13636e-06 5.16404e-06 6.10558e-06 8.8971e-06 6.10722e-06 1.92204e-06 1.47216e-07 6.45859e-08 2.52119e-06 6.12991e-06 1.28162e-05 2.32421e-05 3.28322e-05 3.74579e-05 3.80427e-05 3.61324e-05 3.29392e-05 2.93823e-05 2.60086e-05 2.30347e-05 2.04784e-05 1.82721e-05 1.63317e-05 1.45864e-05 1.29894e-05 1.15193e-05 1.01871e-05 9.04268e-06 8.1759e-06 7.5884e-06 7.17392e-06 6.81007e-06 6.39855e-06 5.91505e-06 5.43624e-06 5.12308e-06 5.22911e-06 6.27933e-06 9.18221e-06 6.07895e-06 1.94136e-06 1.52428e-07 6.84625e-08 2.54377e-06 6.19323e-06 1.30014e-05 2.35954e-05 3.31609e-05 3.76378e-05 3.80974e-05 3.61199e-05 3.29204e-05 2.93996e-05 2.60789e-05 2.31566e-05 2.06408e-05 1.84599e-05 1.65273e-05 1.47712e-05 1.31444e-05 1.16267e-05 1.02327e-05 9.01659e-06 8.07434e-06 7.42593e-06 6.97165e-06 6.59555e-06 6.20365e-06 5.76834e-06 5.35494e-06 5.11341e-06 5.29898e-06 6.45968e-06 9.46314e-06 6.05454e-06 1.96031e-06 1.57521e-07 7.25002e-08 2.5676e-06 6.26122e-06 1.32009e-05 2.3971e-05 3.3502e-05 3.78263e-05 3.8167e-05 3.61329e-05 3.29362e-05 2.94567e-05 2.61916e-05 2.33224e-05 2.0849e-05 1.86959e-05 1.67738e-05 1.50089e-05 1.33528e-05 1.17857e-05 1.03252e-05 9.02998e-06 8.00164e-06 7.28224e-06 6.77986e-06 6.38527e-06 6.00875e-06 5.61917e-06 5.27021e-06 5.10056e-06 5.36701e-06 6.64005e-06 9.73668e-06 6.03927e-06 1.97959e-06 1.62506e-07 7.6492e-08 2.59025e-06 6.32822e-06 1.34012e-05 2.43463e-05 3.38413e-05 3.80203e-05 3.82486e-05 3.61594e-05 3.29632e-05 2.95221e-05 2.63112e-05 2.34966e-05 2.10695e-05 1.89499e-05 1.70451e-05 1.52781e-05 1.3598e-05 1.19841e-05 1.04565e-05 9.07874e-06 7.95906e-06 7.16241e-06 6.60601e-06 6.18763e-06 5.82198e-06 5.47457e-06 5.18763e-06 5.08879e-06 5.43642e-06 6.82288e-06 1.00015e-05 6.02564e-06 1.99822e-06 1.6735e-07 8.06266e-08 2.61359e-06 6.39845e-06 1.36135e-05 2.47433e-05 3.41995e-05 3.82339e-05 3.83519e-05 3.62106e-05 3.30168e-05 2.9615e-05 2.64593e-05 2.37006e-05 2.13223e-05 1.92394e-05 1.73558e-05 1.55907e-05 1.38894e-05 1.22296e-05 1.06331e-05 9.1679e-06 7.94924e-06 7.06674e-06 6.44876e-06 6.00021e-06 5.64004e-06 5.33046e-06 5.10266e-06 5.07347e-06 5.50292e-06 7.0047e-06 1.02586e-05 6.01873e-06 2.01691e-06 1.72056e-07 8.47203e-08 2.63564e-06 6.46711e-06 1.38254e-05 2.51402e-05 3.45591e-05 3.84525e-05 3.84667e-05 3.62679e-05 3.30706e-05 2.97053e-05 2.6605e-05 2.39052e-05 2.15805e-05 1.95409e-05 1.76861e-05 1.59307e-05 1.42151e-05 1.25142e-05 1.08502e-05 9.29597e-06 7.97478e-06 7.00045e-06 6.31486e-06 5.83031e-06 5.47e-06 5.19318e-06 5.02067e-06 5.05904e-06 5.56995e-06 7.18728e-06 1.05045e-05 6.01261e-06 2.035e-06 1.76589e-07 8.89336e-08 2.65802e-06 6.5375e-06 1.40443e-05 2.55447e-05 3.4901e-05 3.86512e-05 3.85698e-05 3.63306e-05 3.31371e-05 2.98111e-05 2.67678e-05 2.41283e-05 2.18592e-05 1.98662e-05 1.80447e-05 1.63041e-05 1.45793e-05 1.28408e-05 1.11107e-05 9.46582e-06 8.03799e-06 6.9646e-06 6.20443e-06 5.67728e-06 5.31037e-06 5.06029e-06 4.93827e-06 5.04126e-06 5.63284e-06 7.36738e-06 1.07449e-05 6.01008e-06 2.05252e-06 1.80944e-07 9.31059e-08 2.67932e-06 6.60617e-06 1.42589e-05 2.59337e-05 3.52227e-05 3.88336e-05 3.86603e-05 3.63866e-05 3.31972e-05 2.99097e-05 2.69239e-05 2.43471e-05 2.21383e-05 2.01981e-05 1.84175e-05 1.66999e-05 1.49738e-05 1.32039e-05 1.14109e-05 9.67608e-06 8.14042e-06 6.96275e-06 6.12238e-06 5.54679e-06 5.16705e-06 4.93749e-06 4.8608e-06 5.02531e-06 5.6971e-06 7.55121e-06 1.0983e-05 6.01278e-06 2.06982e-06 1.85101e-07 9.73775e-08 2.70095e-06 6.67691e-06 1.44796e-05 2.63216e-05 3.55312e-05 3.90015e-05 3.87391e-05 3.64362e-05 3.32609e-05 3.00151e-05 2.70872e-05 2.45739e-05 2.24272e-05 2.05432e-05 1.88081e-05 1.71195e-05 1.53986e-05 1.36032e-05 1.17513e-05 9.92771e-06 8.28294e-06 6.99525e-06 6.06889e-06 5.43878e-06 5.0395e-06 4.82352e-06 4.78605e-06 5.00781e-06 5.75808e-06 7.73341e-06 1.12144e-05 6.02214e-06 2.08734e-06 1.89064e-07 1.01602e-07 2.72139e-06 6.74663e-06 1.47021e-05 2.66938e-05 3.58174e-05 3.91496e-05 3.88004e-05 3.64701e-05 3.33161e-05 3.01109e-05 2.724e-05 2.47923e-05 2.27119e-05 2.08897e-05 1.9207e-05 1.75552e-05 1.58475e-05 1.40339e-05 1.21282e-05 1.0218e-05 8.46418e-06 7.06297e-06 6.04645e-06 5.35687e-06 4.93203e-06 4.72299e-06 4.71875e-06 4.99392e-06 5.82276e-06 7.92447e-06 1.14438e-05 6.03639e-06 2.10509e-06 1.92819e-07 1.0589e-07 2.74127e-06 6.81473e-06 1.49216e-05 2.70586e-05 3.60884e-05 3.92826e-05 3.88492e-05 3.64938e-05 3.33623e-05 3.02005e-05 2.73897e-05 2.501e-05 2.29981e-05 2.12406e-05 1.96146e-05 1.80055e-05 1.63181e-05 1.44934e-05 1.25397e-05 1.05462e-05 8.68365e-06 7.1658e-06 6.05508e-06 5.301e-06 4.84439e-06 4.63527e-06 4.65767e-06 4.98159e-06 5.88737e-06 8.11683e-06 1.16683e-05 6.0552e-06 2.12297e-06 1.96367e-07 1.1013e-07 2.76047e-06 6.88183e-06 1.51384e-05 2.74106e-05 3.63405e-05 3.9398e-05 3.88813e-05 3.65013e-05 3.33934e-05 3.02775e-05 2.75283e-05 2.52178e-05 2.32769e-05 2.15883e-05 2.00246e-05 1.84649e-05 1.68055e-05 1.49773e-05 1.29817e-05 1.09086e-05 8.93882e-06 7.30335e-06 6.096e-06 5.27358e-06 4.77985e-06 4.56427e-06 4.60717e-06 4.97537e-06 5.95637e-06 8.31411e-06 1.18898e-05 6.07772e-06 2.14092e-06 1.99699e-07 1.1441e-07 2.77921e-06 6.94799e-06 1.53538e-05 2.77552e-05 3.65779e-05 3.94983e-05 3.88996e-05 3.6496e-05 3.34131e-05 3.03474e-05 2.76599e-05 2.54183e-05 2.35496e-05 2.19325e-05 2.04352e-05 1.89305e-05 1.73058e-05 1.54816e-05 1.34511e-05 1.13034e-05 9.22849e-06 7.47483e-06 6.16856e-06 5.27416e-06 4.73802e-06 4.50947e-06 4.56622e-06 4.97322e-06 6.02616e-06 8.51103e-06 1.21057e-05 6.10366e-06 2.15887e-06 2.02823e-07 1.1864e-07 2.79744e-06 7.01331e-06 1.55664e-05 2.80876e-05 3.67974e-05 3.95813e-05 3.89003e-05 3.6472e-05 3.34136e-05 3.04027e-05 2.77772e-05 2.56052e-05 2.38113e-05 2.22693e-05 2.0843e-05 1.93988e-05 1.78153e-05 1.60022e-05 1.39434e-05 1.17262e-05 9.54936e-06 7.6788e-06 6.27278e-06 5.30377e-06 4.72087e-06 4.4737e-06 4.53841e-06 4.97947e-06 6.10151e-06 8.71183e-06 1.23181e-05 6.13248e-06 2.17676e-06 2.05737e-07 1.22897e-07 2.81555e-06 7.07856e-06 1.57786e-05 2.84127e-05 3.70028e-05 3.96494e-05 3.88859e-05 3.6433e-05 3.33986e-05 3.04413e-05 2.78788e-05 2.57786e-05 2.40617e-05 2.25975e-05 2.12453e-05 1.98661e-05 1.83296e-05 1.65343e-05 1.44545e-05 1.2174e-05 9.89934e-06 7.9139e-06 6.40771e-06 5.36174e-06 4.72788e-06 4.45644e-06 4.52284e-06 4.99199e-06 6.17853e-06 8.91218e-06 1.25257e-05 6.16414e-06 2.19457e-06 2.0845e-07 1.27102e-07 2.83346e-06 7.14359e-06 1.59883e-05 2.87258e-05 3.71908e-05 3.97e-05 3.88537e-05 3.63754e-05 3.33648e-05 3.0462e-05 2.79642e-05 2.59378e-05 2.43e-05 2.2916e-05 2.1641e-05 2.03303e-05 1.88456e-05 1.7074e-05 1.49793e-05 1.26415e-05 1.0274e-05 8.17737e-06 6.57208e-06 5.44794e-06 4.75991e-06 4.45943e-06 4.52215e-06 5.01509e-06 6.2645e-06 9.11591e-06 1.27302e-05 6.198e-06 2.21222e-06 2.10965e-07 1.31304e-07 2.85152e-06 7.20941e-06 1.61971e-05 2.90308e-05 3.73656e-05 3.97355e-05 3.8805e-05 3.6301e-05 3.3315e-05 3.04673e-05 2.80349e-05 2.60831e-05 2.45255e-05 2.32233e-05 2.20276e-05 2.07887e-05 1.93598e-05 1.76173e-05 1.55141e-05 1.31252e-05 1.06705e-05 8.46686e-06 6.76399e-06 5.5609e-06 4.81589e-06 4.48205e-06 4.53609e-06 5.04824e-06 6.35701e-06 9.32176e-06 1.29321e-05 6.23439e-06 2.22971e-06 2.13295e-07 1.35429e-07 2.86925e-06 7.27578e-06 1.64014e-05 2.93258e-05 3.7525e-05 3.97542e-05 3.87394e-05 3.62089e-05 3.32439e-05 3.0449e-05 2.80847e-05 2.62118e-05 2.47376e-05 2.35188e-05 2.24044e-05 2.12396e-05 1.98698e-05 1.81605e-05 1.60538e-05 1.36196e-05 1.10836e-05 8.77849e-06 6.98097e-06 5.69936e-06 4.89571e-06 4.52515e-06 4.56622e-06 5.09334e-06 6.45787e-06 9.53232e-06 1.31328e-05 6.2728e-06 2.24702e-06 2.15441e-07 1.39538e-07 2.88609e-06 7.34109e-06 1.66074e-05 2.96161e-05 3.76723e-05 3.97598e-05 3.866e-05 3.61033e-05 3.31618e-05 3.04211e-05 2.81224e-05 2.63237e-05 2.49321e-05 2.37992e-05 2.27682e-05 2.16798e-05 2.03724e-05 1.87005e-05 1.65956e-05 1.41221e-05 1.15106e-05 9.10963e-06 7.22059e-06 5.86134e-06 4.99794e-06 4.58788e-06 4.61214e-06 5.15007e-06 6.56648e-06 9.74682e-06 1.33335e-05 6.31376e-06 2.2642e-06 2.1742e-07 1.43569e-07 2.90258e-06 7.40541e-06 1.68094e-05 2.98932e-05 3.78022e-05 3.97474e-05 3.85615e-05 3.59769e-05 3.3057e-05 3.03707e-05 2.81416e-05 2.6422e-05 2.51128e-05 2.40648e-05 2.31188e-05 2.21091e-05 2.0866e-05 1.92345e-05 1.71355e-05 1.46279e-05 1.19473e-05 9.45672e-06 7.48032e-06 6.04524e-06 5.12187e-06 4.67042e-06 4.67474e-06 5.21979e-06 6.68439e-06 9.96666e-06 1.35339e-05 6.35681e-06 2.28125e-06 2.19243e-07 1.47552e-07 2.91843e-06 7.46868e-06 1.70106e-05 3.01629e-05 3.79187e-05 3.97202e-05 3.84478e-05 3.58357e-05 3.29383e-05 3.03063e-05 2.81463e-05 2.65055e-05 2.52803e-05 2.4317e-05 2.34544e-05 2.25241e-05 2.13478e-05 1.97596e-05 1.76706e-05 1.51343e-05 1.23907e-05 9.81681e-06 7.75732e-06 6.2485e-06 5.26538e-06 4.77122e-06 4.75307e-06 5.30199e-06 6.81134e-06 1.01915e-05 1.37347e-05 6.4023e-06 2.29827e-06 2.2093e-07 1.51433e-07 2.93359e-06 7.53017e-06 1.72066e-05 3.04184e-05 3.80181e-05 3.96758e-05 3.83155e-05 3.56745e-05 3.27989e-05 3.02218e-05 2.81329e-05 2.65727e-05 2.54327e-05 2.45557e-05 2.37772e-05 2.2925e-05 2.18163e-05 2.0274e-05 1.81984e-05 1.56383e-05 1.28378e-05 1.01874e-05 8.04974e-06 6.46971e-06 5.42749e-06 4.88978e-06 4.84721e-06 5.3974e-06 6.94866e-06 1.04231e-05 1.39368e-05 6.45008e-06 2.31527e-06 2.22493e-07 1.55258e-07 2.9483e-06 7.5908e-06 1.7401e-05 3.0665e-05 3.81036e-05 3.96162e-05 3.81673e-05 3.54975e-05 3.2644e-05 3.01222e-05 2.8105e-05 2.66257e-05 2.55708e-05 2.47799e-05 2.40855e-05 2.33114e-05 2.22689e-05 2.07736e-05 1.8715e-05 1.61361e-05 1.32854e-05 1.05656e-05 8.35506e-06 6.7068e-06 5.60655e-06 5.02491e-06 4.95645e-06 5.50571e-06 7.09634e-06 1.06615e-05 1.41409e-05 6.50038e-06 2.33234e-06 2.23948e-07 1.58969e-07 2.96223e-06 7.64926e-06 1.75895e-05 3.08973e-05 3.81724e-05 3.95394e-05 3.80008e-05 3.53013e-05 3.24698e-05 3.00038e-05 2.80598e-05 2.66628e-05 2.56938e-05 2.49892e-05 2.43789e-05 2.3683e-05 2.27067e-05 2.12579e-05 1.92185e-05 1.66255e-05 1.3731e-05 1.09493e-05 8.67157e-06 6.95839e-06 5.80153e-06 5.17599e-06 5.08066e-06 5.62737e-06 7.25539e-06 1.09081e-05 1.4348e-05 6.55327e-06 2.34953e-06 2.25306e-07 1.62597e-07 2.9756e-06 7.70638e-06 1.77751e-05 3.11195e-05 3.82269e-05 3.94466e-05 3.78174e-05 3.50883e-05 3.22795e-05 2.98701e-05 2.80002e-05 2.66859e-05 2.58028e-05 2.5184e-05 2.46569e-05 2.40382e-05 2.31274e-05 2.17251e-05 1.97061e-05 1.71036e-05 1.4172e-05 1.13362e-05 8.9973e-06 7.22279e-06 6.01099e-06 5.34185e-06 5.21898e-06 5.76184e-06 7.42553e-06 1.11625e-05 1.45582e-05 6.60874e-06 2.36687e-06 2.26584e-07 1.66105e-07 2.98818e-06 7.76132e-06 1.79551e-05 3.13277e-05 3.82645e-05 3.93364e-05 3.76157e-05 3.48568e-05 3.20711e-05 2.97192e-05 2.79249e-05 2.66945e-05 2.58976e-05 2.53645e-05 2.49199e-05 2.43773e-05 2.3531e-05 2.21747e-05 2.01768e-05 1.75688e-05 1.4607e-05 1.17251e-05 9.33104e-06 7.49895e-06 6.23413e-06 5.52203e-06 5.37135e-06 5.90954e-06 7.60769e-06 1.1426e-05 1.47728e-05 6.66711e-06 2.38446e-06 2.27797e-07 1.69514e-07 3.00019e-06 7.81472e-06 1.81314e-05 3.15251e-05 3.82874e-05 3.92097e-05 3.73965e-05 3.46081e-05 3.18465e-05 2.95532e-05 2.78358e-05 2.66899e-05 2.59793e-05 2.55312e-05 2.5168e-05 2.46997e-05 2.39162e-05 2.26049e-05 2.06287e-05 1.80174e-05 1.50327e-05 1.21138e-05 9.67113e-06 7.78549e-06 6.46976e-06 5.71549e-06 5.53696e-06 6.06995e-06 7.80173e-06 1.16989e-05 1.49919e-05 6.72823e-06 2.40231e-06 2.28963e-07 1.72794e-07 3.01142e-06 7.86586e-06 1.83017e-05 3.17084e-05 3.82936e-05 3.90652e-05 3.71587e-05 3.43411e-05 3.16048e-05 2.93715e-05 2.77325e-05 2.66719e-05 2.60479e-05 2.56844e-05 2.54014e-05 2.50059e-05 2.42832e-05 2.30154e-05 2.10614e-05 1.84503e-05 1.54479e-05 1.25006e-05 1.00159e-05 8.08112e-06 6.71706e-06 5.9219e-06 5.71591e-06 6.2436e-06 8.00858e-06 1.1982e-05 1.52164e-05 6.79239e-06 2.42053e-06 2.30098e-07 1.75964e-07 3.02207e-06 7.91537e-06 1.84679e-05 3.18803e-05 3.82849e-05 3.89038e-05 3.6903e-05 3.4057e-05 3.13475e-05 2.91756e-05 2.76163e-05 2.66417e-05 2.61039e-05 2.58242e-05 2.562e-05 2.5295e-05 2.46304e-05 2.34041e-05 2.14723e-05 1.88647e-05 1.58518e-05 1.28847e-05 1.03644e-05 8.38465e-06 6.97482e-06 6.14016e-06 5.9074e-06 6.43016e-06 8.22851e-06 1.22763e-05 1.54467e-05 6.85964e-06 2.43916e-06 2.31215e-07 1.79004e-07 3.03195e-06 7.96255e-06 1.8628e-05 3.20385e-05 3.82596e-05 3.87243e-05 3.66285e-05 3.3755e-05 3.10742e-05 2.89654e-05 2.74873e-05 2.65995e-05 2.61481e-05 2.59513e-05 2.58244e-05 2.55678e-05 2.49586e-05 2.37711e-05 2.18606e-05 1.92591e-05 1.62418e-05 1.32632e-05 1.07146e-05 8.69494e-06 7.24239e-06 6.36993e-06 6.11133e-06 6.6298e-06 8.46203e-06 1.25823e-05 1.56826e-05 6.92993e-06 2.45826e-06 2.32327e-07 1.81928e-07 3.04121e-06 8.0079e-06 1.87833e-05 3.21846e-05 3.82188e-05 3.85272e-05 3.63358e-05 3.34364e-05 3.07863e-05 2.87424e-05 2.73469e-05 2.65463e-05 2.61808e-05 2.6066e-05 2.60146e-05 2.58237e-05 2.52669e-05 2.41156e-05 2.22252e-05 1.96321e-05 1.66166e-05 1.36354e-05 1.10653e-05 9.01078e-06 7.5188e-06 6.61057e-06 6.32744e-06 6.84268e-06 8.70975e-06 1.29009e-05 1.59254e-05 7.00372e-06 2.47794e-06 2.33453e-07 1.84726e-07 3.0497e-06 8.05092e-06 1.89326e-05 3.23171e-05 3.81612e-05 3.83113e-05 3.60243e-05 3.31009e-05 3.04841e-05 2.85072e-05 2.71959e-05 2.64832e-05 2.62033e-05 2.61694e-05 2.61915e-05 2.60638e-05 2.55559e-05 2.44374e-05 2.25655e-05 1.99823e-05 1.69743e-05 1.39989e-05 1.14145e-05 9.33058e-06 7.80286e-06 6.86113e-06 6.55493e-06 7.06828e-06 8.97164e-06 1.32324e-05 1.61741e-05 7.08064e-06 2.49821e-06 2.34602e-07 1.87412e-07 3.05757e-06 8.09209e-06 1.90771e-05 3.24375e-05 3.80875e-05 3.80772e-05 3.56946e-05 3.27495e-05 3.01688e-05 2.8261e-05 2.70353e-05 2.64108e-05 2.62161e-05 2.62617e-05 2.63554e-05 2.62878e-05 2.58254e-05 2.47364e-05 2.28811e-05 2.03091e-05 1.73137e-05 1.4352e-05 1.17606e-05 9.65311e-06 8.09379e-06 7.12131e-06 6.79392e-06 7.30699e-06 9.24828e-06 1.35773e-05 1.64296e-05 7.16095e-06 2.51912e-06 2.35788e-07 1.89982e-07 3.06469e-06 8.13104e-06 1.9216e-05 3.25443e-05 3.79962e-05 3.78236e-05 3.53462e-05 3.23824e-05 2.98412e-05 2.80049e-05 2.68663e-05 2.63306e-05 2.62205e-05 2.63442e-05 2.65072e-05 2.64966e-05 2.60757e-05 2.50122e-05 2.31711e-05 2.0611e-05 1.76327e-05 1.46922e-05 1.21013e-05 9.97646e-06 8.39014e-06 7.39007e-06 7.04384e-06 7.55891e-06 9.5405e-06 1.3937e-05 1.6692e-05 7.24438e-06 2.5407e-06 2.37019e-07 1.92452e-07 3.0712e-06 8.16825e-06 1.93505e-05 3.26387e-05 3.78879e-05 3.75508e-05 3.49796e-05 3.20006e-05 2.95023e-05 2.77399e-05 2.66899e-05 2.62433e-05 2.62173e-05 2.64177e-05 2.66475e-05 2.66906e-05 2.63074e-05 2.52655e-05 2.34361e-05 2.0888e-05 1.79307e-05 1.50181e-05 1.24346e-05 1.02989e-05 8.69083e-06 7.66696e-06 7.30449e-06 7.82378e-06 9.8483e-06 1.43112e-05 1.69605e-05 7.33089e-06 2.56296e-06 2.38305e-07 1.9482e-07 3.07698e-06 8.20331e-06 1.94795e-05 3.27194e-05 3.77611e-05 3.72579e-05 3.45946e-05 3.16044e-05 2.9153e-05 2.74673e-05 2.65075e-05 2.61505e-05 2.6208e-05 2.64837e-05 2.67778e-05 2.68711e-05 2.65213e-05 2.5497e-05 2.36765e-05 2.11405e-05 1.82075e-05 1.53284e-05 1.27587e-05 1.06182e-05 8.99373e-06 7.95012e-06 7.57482e-06 8.10209e-06 1.01721e-05 1.47005e-05 1.72338e-05 7.41999e-06 2.58587e-06 2.39648e-07 1.971e-07 3.0822e-06 8.23683e-06 1.96047e-05 3.27878e-05 3.76166e-05 3.6945e-05 3.41916e-05 3.11947e-05 2.87943e-05 2.7188e-05 2.63202e-05 2.60536e-05 2.61943e-05 2.65438e-05 2.68998e-05 2.70398e-05 2.67191e-05 2.57081e-05 2.38938e-05 2.13696e-05 1.84638e-05 1.56225e-05 1.30719e-05 1.09326e-05 9.29718e-06 8.23863e-06 7.85461e-06 8.39389e-06 1.05123e-05 1.51048e-05 1.75115e-05 7.51157e-06 2.60944e-06 2.41055e-07 1.9929e-07 3.08673e-06 8.26837e-06 1.97249e-05 3.28426e-05 3.74531e-05 3.66113e-05 3.37702e-05 3.07716e-05 2.84266e-05 2.69028e-05 2.61287e-05 2.59531e-05 2.61768e-05 2.6599e-05 2.70146e-05 2.71979e-05 2.69021e-05 2.59006e-05 2.40899e-05 2.15778e-05 1.8702e-05 1.5901e-05 1.33737e-05 1.12406e-05 9.59966e-06 8.5311e-06 8.14276e-06 8.69881e-06 1.08697e-05 1.55253e-05 1.77929e-05 7.60507e-06 2.63361e-06 2.42521e-07 2.01401e-07 3.09071e-06 8.29845e-06 1.98413e-05 3.28847e-05 3.72712e-05 3.62573e-05 3.33314e-05 3.03365e-05 2.80516e-05 2.66131e-05 2.59345e-05 2.58505e-05 2.61569e-05 2.66505e-05 2.71235e-05 2.73466e-05 2.70718e-05 2.60759e-05 2.42669e-05 2.17678e-05 1.89255e-05 1.61654e-05 1.36635e-05 1.15408e-05 9.89936e-06 8.82612e-06 8.43882e-06 9.01691e-06 1.1245e-05 1.59623e-05 1.80774e-05 7.70037e-06 2.65837e-06 2.44045e-07 2.0344e-07 3.09409e-06 8.32693e-06 1.99537e-05 3.29135e-05 3.70698e-05 3.58821e-05 3.28752e-05 2.98897e-05 2.76695e-05 2.63193e-05 2.57377e-05 2.57461e-05 2.61351e-05 2.66992e-05 2.72273e-05 2.74871e-05 2.72294e-05 2.6236e-05 2.44277e-05 2.19437e-05 1.91394e-05 1.64189e-05 1.39432e-05 1.18337e-05 1.0196e-05 9.1228e-06 8.74145e-06 9.34671e-06 1.16373e-05 1.64149e-05 1.8364e-05 7.79697e-06 2.68366e-06 2.45625e-07 2.0541e-07 3.09695e-06 8.35402e-06 2.00623e-05 3.29291e-05 3.68495e-05 3.54869e-05 3.24032e-05 2.94333e-05 2.72826e-05 2.60233e-05 2.55402e-05 2.56413e-05 2.61125e-05 2.67457e-05 2.73268e-05 2.76201e-05 2.73757e-05 2.63817e-05 2.45733e-05 2.21067e-05 1.93444e-05 1.66626e-05 1.42131e-05 1.21188e-05 1.04884e-05 9.41998e-06 9.05003e-06 9.68865e-06 1.20468e-05 1.6883e-05 1.8652e-05 7.89476e-06 2.70947e-06 2.4726e-07 2.07321e-07 3.09931e-06 8.37991e-06 2.01678e-05 3.29316e-05 3.66094e-05 3.5071e-05 3.19155e-05 2.89678e-05 2.68915e-05 2.57257e-05 2.53425e-05 2.55367e-05 2.60897e-05 2.67911e-05 2.74232e-05 2.7747e-05 2.75125e-05 2.65151e-05 2.47057e-05 2.22583e-05 1.9541e-05 1.68979e-05 1.4475e-05 1.23974e-05 1.07771e-05 9.71717e-06 9.36332e-06 1.00408e-05 1.24712e-05 1.73638e-05 1.89398e-05 7.99316e-06 2.73568e-06 2.48954e-07 2.09168e-07 3.10114e-06 8.40442e-06 2.02696e-05 3.29207e-05 3.635e-05 3.46357e-05 3.14139e-05 2.84953e-05 2.64981e-05 2.54286e-05 2.51462e-05 2.54334e-05 2.60674e-05 2.68356e-05 2.75167e-05 2.78681e-05 2.76402e-05 2.66367e-05 2.48253e-05 2.23983e-05 1.9728e-05 1.71239e-05 1.47284e-05 1.26693e-05 1.10618e-05 1.00141e-05 9.68116e-06 1.04035e-05 1.29115e-05 1.78564e-05 1.9227e-05 8.09225e-06 2.76237e-06 2.50708e-07 2.10961e-07 3.1025e-06 8.42786e-06 2.03686e-05 3.28961e-05 3.60703e-05 3.41802e-05 3.08984e-05 2.80159e-05 2.61029e-05 2.51327e-05 2.49522e-05 2.53321e-05 2.60462e-05 2.68799e-05 2.76081e-05 2.79846e-05 2.77604e-05 2.67483e-05 2.49342e-05 2.25283e-05 1.99061e-05 1.73416e-05 1.49744e-05 1.2935e-05 1.13425e-05 1.03102e-05 1.00023e-05 1.07749e-05 1.33656e-05 1.83592e-05 1.95116e-05 8.19101e-06 2.78927e-06 2.52516e-07 2.12694e-07 3.10331e-06 8.44979e-06 2.04634e-05 3.28572e-05 3.57709e-05 3.37058e-05 3.03705e-05 2.75313e-05 2.57076e-05 2.48408e-05 2.4762e-05 2.52331e-05 2.60259e-05 2.69235e-05 2.76967e-05 2.80959e-05 2.78727e-05 2.68502e-05 2.50329e-05 2.26492e-05 2.00758e-05 1.75513e-05 1.52133e-05 1.31954e-05 1.162e-05 1.06059e-05 1.03272e-05 1.11553e-05 1.38329e-05 1.88711e-05 1.97941e-05 8.2896e-06 2.81645e-06 2.54372e-07 2.14366e-07 3.10362e-06 8.47047e-06 2.05547e-05 3.28038e-05 3.54505e-05 3.32116e-05 2.983e-05 2.70411e-05 2.53116e-05 2.45534e-05 2.45759e-05 2.51368e-05 2.6007e-05 2.6967e-05 2.77835e-05 2.82029e-05 2.79783e-05 2.69439e-05 2.51235e-05 2.27633e-05 2.02381e-05 1.77534e-05 1.54453e-05 1.34501e-05 1.18939e-05 1.09009e-05 1.06551e-05 1.15438e-05 1.43123e-05 1.93901e-05 2.0072e-05 8.38721e-06 2.84395e-06 2.56279e-07 2.1598e-07 3.10335e-06 8.48955e-06 2.06417e-05 3.27359e-05 3.51099e-05 3.26986e-05 2.92783e-05 2.65465e-05 2.49144e-05 2.42656e-05 2.43903e-05 2.50415e-05 2.5989e-05 2.70104e-05 2.78681e-05 2.83052e-05 2.80772e-05 2.70301e-05 2.52079e-05 2.28738e-05 2.0395e-05 1.7949e-05 1.5671e-05 1.36999e-05 1.21649e-05 1.11957e-05 1.09865e-05 1.19405e-05 1.48033e-05 1.99151e-05 2.03449e-05 8.48338e-06 2.87159e-06 2.58229e-07 2.17535e-07 3.10254e-06 8.50716e-06 2.07245e-05 3.26529e-05 3.4748e-05 3.21663e-05 2.87156e-05 2.60486e-05 2.45185e-05 2.39815e-05 2.42093e-05 2.49507e-05 2.59746e-05 2.70557e-05 2.79522e-05 2.84043e-05 2.81706e-05 2.71106e-05 2.52892e-05 2.29847e-05 2.0549e-05 1.81394e-05 1.58913e-05 1.39453e-05 1.24334e-05 1.14907e-05 1.13216e-05 1.23454e-05 1.53049e-05 2.04438e-05 2.06125e-05 8.57805e-06 2.89923e-06 2.60214e-07 2.19044e-07 3.10126e-06 8.52357e-06 2.08042e-05 3.25552e-05 3.43647e-05 3.16149e-05 2.81423e-05 2.5547e-05 2.41226e-05 2.36993e-05 2.40311e-05 2.48632e-05 2.59632e-05 2.7103e-05 2.80362e-05 2.85006e-05 2.82594e-05 2.71867e-05 2.5369e-05 2.3098e-05 2.07019e-05 1.8326e-05 1.61068e-05 1.41865e-05 1.26991e-05 1.17849e-05 1.16594e-05 1.27576e-05 1.58167e-05 2.09752e-05 2.08738e-05 8.67096e-06 2.92685e-06 2.62232e-07 2.20501e-07 3.09943e-06 8.5384e-06 2.08796e-05 3.24417e-05 3.3959e-05 3.10444e-05 2.75589e-05 2.50425e-05 2.37276e-05 2.34197e-05 2.38565e-05 2.47798e-05 2.59559e-05 2.71531e-05 2.81209e-05 2.8595e-05 2.8344e-05 2.72584e-05 2.54467e-05 2.3212e-05 2.08531e-05 1.85088e-05 1.63179e-05 1.44239e-05 1.29629e-05 1.208e-05 1.20014e-05 1.3178e-05 1.63377e-05 2.15074e-05 2.11281e-05 8.76169e-06 2.95427e-06 2.64277e-07 2.21928e-07 3.0972e-06 8.55226e-06 2.09522e-05 3.23127e-05 3.35306e-05 3.04547e-05 2.69658e-05 2.45353e-05 2.33334e-05 2.31427e-05 2.36857e-05 2.4701e-05 2.59534e-05 2.72075e-05 2.82081e-05 2.86892e-05 2.8426e-05 2.73268e-05 2.55222e-05 2.33249e-05 2.10014e-05 1.86874e-05 1.65242e-05 1.46571e-05 1.32238e-05 1.23743e-05 1.23461e-05 1.36062e-05 1.68683e-05 2.20405e-05 2.13755e-05 8.85032e-06 2.9815e-06 2.66349e-07 2.23315e-07 3.09444e-06 8.56451e-06 2.102e-05 3.21662e-05 3.30787e-05 2.98466e-05 2.63641e-05 2.40263e-05 2.29403e-05 2.28681e-05 2.3518e-05 2.46259e-05 2.59549e-05 2.72656e-05 2.82978e-05 2.87839e-05 2.85069e-05 2.73934e-05 2.55965e-05 2.34364e-05 2.11465e-05 1.88614e-05 1.67258e-05 1.48863e-05 1.34823e-05 1.26693e-05 1.26959e-05 1.40415e-05 1.74064e-05 2.25716e-05 2.16149e-05 8.93645e-06 3.00843e-06 2.68438e-07 2.24668e-07 3.0912e-06 8.57543e-06 2.10838e-05 3.20022e-05 3.26024e-05 2.92199e-05 2.57543e-05 2.35159e-05 2.25489e-05 2.25962e-05 2.33536e-05 2.45547e-05 2.59607e-05 2.73278e-05 2.83904e-05 2.888e-05 2.85876e-05 2.74597e-05 2.56713e-05 2.35467e-05 2.12883e-05 1.90309e-05 1.69225e-05 1.51116e-05 1.37394e-05 1.2967e-05 1.30538e-05 1.44865e-05 1.79535e-05 2.31016e-05 2.18468e-05 9.02027e-06 3.0351e-06 2.70544e-07 2.25985e-07 3.08735e-06 8.58428e-06 2.11413e-05 3.18189e-05 3.21019e-05 2.85758e-05 2.51376e-05 2.30049e-05 2.21594e-05 2.23266e-05 2.31912e-05 2.44854e-05 2.59689e-05 2.73924e-05 2.84851e-05 2.89772e-05 2.86693e-05 2.7528e-05 2.57496e-05 2.36578e-05 2.14279e-05 1.91964e-05 1.7115e-05 1.53333e-05 1.3995e-05 1.32664e-05 1.34173e-05 1.49397e-05 1.85072e-05 2.36276e-05 2.20699e-05 9.1011e-06 3.06129e-06 2.72651e-07 2.27265e-07 3.083e-06 8.5915e-06 2.11935e-05 3.16162e-05 3.15772e-05 2.79159e-05 2.4516e-05 2.24953e-05 2.17742e-05 2.20607e-05 2.30313e-05 2.44182e-05 2.5979e-05 2.74591e-05 2.85815e-05 2.9076e-05 2.87533e-05 2.76011e-05 2.58357e-05 2.37721e-05 2.15665e-05 1.93586e-05 1.73033e-05 1.55519e-05 1.42494e-05 1.3568e-05 1.37874e-05 1.54026e-05 1.90692e-05 2.41508e-05 2.22854e-05 9.17947e-06 3.08711e-06 2.74752e-07 2.28508e-07 3.07799e-06 8.59645e-06 2.1239e-05 3.13933e-05 3.10282e-05 2.72407e-05 2.38892e-05 2.19858e-05 2.13947e-05 2.1798e-05 2.28719e-05 2.43505e-05 2.59888e-05 2.75258e-05 2.86782e-05 2.91757e-05 2.88402e-05 2.76815e-05 2.59332e-05 2.38932e-05 2.17073e-05 1.952e-05 1.74895e-05 1.57681e-05 1.45028e-05 1.3871e-05 1.4162e-05 1.58727e-05 1.9636e-05 2.4668e-05 2.24926e-05 9.25504e-06 3.11244e-06 2.76847e-07 2.29712e-07 3.0723e-06 8.59882e-06 2.12767e-05 3.11494e-05 3.04553e-05 2.65518e-05 2.32589e-05 2.14764e-05 2.10149e-05 2.15345e-05 2.27117e-05 2.42822e-05 2.59981e-05 2.75918e-05 2.87741e-05 2.92746e-05 2.89283e-05 2.77666e-05 2.6039e-05 2.40192e-05 2.18496e-05 1.96808e-05 1.76743e-05 1.59832e-05 1.47564e-05 1.41769e-05 1.45431e-05 1.63519e-05 2.02095e-05 2.51807e-05 2.26927e-05 9.3283e-06 3.13736e-06 2.78935e-07 2.30883e-07 3.06598e-06 8.59878e-06 2.13071e-05 3.08842e-05 2.9858e-05 2.58499e-05 2.26263e-05 2.09689e-05 2.06377e-05 2.12732e-05 2.25532e-05 2.42152e-05 2.60083e-05 2.76584e-05 2.887e-05 2.93739e-05 2.90184e-05 2.78571e-05 2.61523e-05 2.41502e-05 2.19943e-05 1.98421e-05 1.78583e-05 1.61973e-05 1.50098e-05 1.44844e-05 1.49285e-05 1.68372e-05 2.07856e-05 2.56854e-05 2.28845e-05 9.3989e-06 3.16177e-06 2.81006e-07 2.32022e-07 3.05892e-06 8.59591e-06 2.13294e-05 3.05965e-05 2.92354e-05 2.51346e-05 2.19907e-05 2.04625e-05 2.02623e-05 2.10136e-05 2.23962e-05 2.41494e-05 2.60193e-05 2.7725e-05 2.89652e-05 2.94725e-05 2.91092e-05 2.7951e-05 2.627e-05 2.4284e-05 2.21402e-05 2.00036e-05 1.80424e-05 1.64121e-05 1.52651e-05 1.4796e-05 1.5321e-05 1.73313e-05 2.13665e-05 2.61844e-05 2.30697e-05 9.46704e-06 3.18569e-06 2.83065e-07 2.33133e-07 3.0511e-06 8.58985e-06 2.13422e-05 3.02854e-05 2.85872e-05 2.44063e-05 2.13526e-05 1.99574e-05 1.98889e-05 2.07562e-05 2.22417e-05 2.40865e-05 2.60329e-05 2.77933e-05 2.90612e-05 2.95718e-05 2.92025e-05 2.80501e-05 2.63922e-05 2.44203e-05 2.22872e-05 2.01652e-05 1.8226e-05 1.6626e-05 1.55202e-05 1.51091e-05 1.57176e-05 1.7831e-05 2.19485e-05 2.66744e-05 2.32472e-05 9.53279e-06 3.20911e-06 2.85097e-07 2.34226e-07 3.04269e-06 8.58114e-06 2.13471e-05 2.99502e-05 2.79126e-05 2.36655e-05 2.07123e-05 1.94537e-05 1.95179e-05 2.05019e-05 2.20913e-05 2.40281e-05 2.6051e-05 2.78655e-05 2.91601e-05 2.96741e-05 2.93007e-05 2.81571e-05 2.65195e-05 2.45589e-05 2.24349e-05 2.03274e-05 1.84106e-05 1.68421e-05 1.57789e-05 1.54277e-05 1.61215e-05 1.83382e-05 2.25329e-05 2.71569e-05 2.34175e-05 9.59582e-06 3.23195e-06 2.87105e-07 2.35312e-07 3.03362e-06 8.5694e-06 2.13428e-05 2.95898e-05 2.72112e-05 2.29125e-05 2.00694e-05 1.89505e-05 1.91479e-05 2.02494e-05 2.19438e-05 2.39741e-05 2.60741e-05 2.79424e-05 2.92633e-05 2.97813e-05 2.9407e-05 2.82758e-05 2.66538e-05 2.47002e-05 2.25832e-05 2.04891e-05 1.85946e-05 1.70576e-05 1.60377e-05 1.5748e-05 1.65303e-05 1.88515e-05 2.31179e-05 2.76307e-05 2.35812e-05 9.65655e-06 3.25424e-06 2.89085e-07 2.36405e-07 3.0241e-06 8.55519e-06 2.13302e-05 2.92028e-05 2.64828e-05 2.2148e-05 1.94244e-05 1.84479e-05 1.8779e-05 1.99988e-05 2.18001e-05 2.39258e-05 2.61043e-05 2.80266e-05 2.93734e-05 2.98961e-05 2.95236e-05 2.84079e-05 2.67963e-05 2.48453e-05 2.27331e-05 2.06519e-05 1.87798e-05 1.72752e-05 1.63002e-05 1.60747e-05 1.69453e-05 1.93703e-05 2.37024e-05 2.80953e-05 2.37381e-05 9.71505e-06 3.27603e-06 2.91031e-07 2.3752e-07 3.01417e-06 8.53847e-06 2.13089e-05 2.87883e-05 2.57283e-05 2.13735e-05 1.87777e-05 1.79456e-05 1.84099e-05 1.97482e-05 2.1658e-05 2.38817e-05 2.61408e-05 2.8118e-05 2.94909e-05 3.00189e-05 2.96502e-05 2.85512e-05 2.69453e-05 2.49929e-05 2.28831e-05 2.0814e-05 1.89648e-05 1.74944e-05 1.65677e-05 1.641e-05 1.73677e-05 1.98959e-05 2.42878e-05 2.8552e-05 2.3889e-05 9.77121e-06 3.29725e-06 2.92947e-07 2.38685e-07 3.00407e-06 8.52006e-06 2.12799e-05 2.83458e-05 2.49489e-05 2.05902e-05 1.81294e-05 1.74449e-05 1.804e-05 1.94962e-05 2.15169e-05 2.3842e-05 2.61846e-05 2.82183e-05 2.96175e-05 3.01512e-05 2.97875e-05 2.87043e-05 2.71004e-05 2.51434e-05 2.30345e-05 2.09771e-05 1.91513e-05 1.77165e-05 1.68402e-05 1.67526e-05 1.77978e-05 2.04271e-05 2.48712e-05 2.89985e-05 2.40339e-05 9.82538e-06 3.31796e-06 2.94821e-07 2.39891e-07 2.99382e-06 8.49964e-06 2.12415e-05 2.78746e-05 2.41481e-05 1.98019e-05 1.74798e-05 1.69422e-05 1.76649e-05 1.92386e-05 2.13728e-05 2.38035e-05 2.62336e-05 2.83264e-05 2.97533e-05 3.02939e-05 2.99363e-05 2.88663e-05 2.726e-05 2.52958e-05 2.31863e-05 2.11404e-05 1.93388e-05 1.79409e-05 1.71173e-05 1.71021e-05 1.82361e-05 2.09652e-05 2.54544e-05 2.94372e-05 2.41728e-05 9.8773e-06 3.33815e-06 2.96647e-07 2.41168e-07 2.98368e-06 8.47818e-06 2.11958e-05 2.73769e-05 2.33305e-05 1.90125e-05 1.68307e-05 1.64352e-05 1.72824e-05 1.89735e-05 2.12239e-05 2.37642e-05 2.62859e-05 2.8441e-05 2.9898e-05 3.04481e-05 3.00989e-05 2.90373e-05 2.74239e-05 2.54498e-05 2.33389e-05 2.13044e-05 1.95274e-05 1.81677e-05 1.73984e-05 1.74573e-05 1.86808e-05 2.15076e-05 2.60341e-05 2.98658e-05 2.4306e-05 9.92721e-06 3.35779e-06 2.98419e-07 2.42511e-07 2.97368e-06 8.45528e-06 2.11404e-05 2.68539e-05 2.25022e-05 1.82274e-05 1.61854e-05 1.59262e-05 1.68928e-05 1.86994e-05 2.1067e-05 2.37206e-05 2.63385e-05 2.856e-05 3.00511e-05 3.06151e-05 3.02779e-05 2.92188e-05 2.75929e-05 2.56059e-05 2.34926e-05 2.14694e-05 1.97177e-05 1.83971e-05 1.76836e-05 1.78187e-05 1.91329e-05 2.20555e-05 2.66121e-05 3.0286e-05 2.44338e-05 9.97523e-06 3.37697e-06 3.00132e-07 2.43934e-07 2.96412e-06 8.43195e-06 2.10771e-05 2.63087e-05 2.16696e-05 1.7451e-05 1.55457e-05 1.54145e-05 1.64938e-05 1.84128e-05 2.08983e-05 2.36684e-05 2.63866e-05 2.86789e-05 3.02084e-05 3.07912e-05 3.04696e-05 2.94075e-05 2.77645e-05 2.57626e-05 2.36464e-05 2.1635e-05 1.99091e-05 1.86287e-05 1.79724e-05 1.8185e-05 1.95903e-05 2.2606e-05 2.71845e-05 3.06953e-05 2.45555e-05 1.00212e-05 3.39559e-06 3.01775e-07 2.45444e-07 2.95505e-06 8.40822e-06 2.1006e-05 2.57456e-05 2.08398e-05 1.66884e-05 1.49146e-05 1.49021e-05 1.60863e-05 1.81132e-05 2.07159e-05 2.36049e-05 2.64278e-05 2.87955e-05 3.03682e-05 3.09749e-05 3.06716e-05 2.96025e-05 2.79389e-05 2.59205e-05 2.3801e-05 2.18014e-05 2.01019e-05 1.88626e-05 1.82648e-05 1.85565e-05 2.00537e-05 2.31601e-05 2.77531e-05 3.10959e-05 2.46724e-05 1.00655e-05 3.41377e-06 3.03357e-07 2.47047e-07 2.94675e-06 8.38454e-06 2.09275e-05 2.51683e-05 2.00184e-05 1.59429e-05 1.42937e-05 1.43894e-05 1.56695e-05 1.77987e-05 2.05165e-05 2.35254e-05 2.64561e-05 2.89034e-05 3.0524e-05 3.11592e-05 3.0875e-05 2.97967e-05 2.81115e-05 2.60769e-05 2.3955e-05 2.19682e-05 2.0296e-05 1.90986e-05 1.85605e-05 1.89326e-05 2.05218e-05 2.37155e-05 2.83149e-05 3.14848e-05 2.47832e-05 1.0108e-05 3.43145e-06 3.04857e-07 2.48764e-07 2.93961e-06 8.36195e-06 2.08442e-05 2.45807e-05 1.92104e-05 1.52175e-05 1.36848e-05 1.38779e-05 1.52451e-05 1.74706e-05 2.03009e-05 2.34304e-05 2.64719e-05 2.90035e-05 3.06777e-05 3.13466e-05 3.10804e-05 2.99902e-05 2.82824e-05 2.62322e-05 2.41089e-05 2.21359e-05 2.04917e-05 1.93373e-05 1.88599e-05 1.93134e-05 2.09944e-05 2.42723e-05 2.88708e-05 3.18642e-05 2.48894e-05 1.01491e-05 3.44875e-06 3.06291e-07 2.50597e-07 2.93356e-06 8.34063e-06 2.07563e-05 2.39865e-05 1.842e-05 1.45139e-05 1.30888e-05 1.33676e-05 1.48131e-05 1.71284e-05 2.00671e-05 2.33157e-05 2.64696e-05 2.90895e-05 3.08234e-05 3.15322e-05 3.12813e-05 3.01768e-05 2.84469e-05 2.63832e-05 2.42608e-05 2.23032e-05 2.06882e-05 1.95774e-05 1.91621e-05 1.96982e-05 2.14714e-05 2.48296e-05 2.94189e-05 3.22318e-05 2.49894e-05 1.01882e-05 3.46549e-06 3.07622e-07 2.52583e-07 2.92877e-06 8.32238e-06 2.06677e-05 2.3389e-05 1.76501e-05 1.38335e-05 1.25067e-05 1.28608e-05 1.43754e-05 1.67738e-05 1.98167e-05 2.31834e-05 2.64511e-05 2.91632e-05 3.09631e-05 3.17176e-05 3.14781e-05 3.03566e-05 2.8605e-05 2.65297e-05 2.44106e-05 2.24705e-05 2.08867e-05 1.98227e-05 1.94722e-05 2.00873e-05 2.1951e-05 2.53858e-05 2.99589e-05 3.25891e-05 2.50845e-05 1.02261e-05 3.4819e-06 3.08864e-07 2.54737e-07 2.92564e-06 8.30787e-06 2.05769e-05 2.27932e-05 1.69059e-05 1.31784e-05 1.19394e-05 1.23568e-05 1.39305e-05 1.64046e-05 1.95471e-05 2.30293e-05 2.64105e-05 2.92166e-05 3.10864e-05 3.18905e-05 3.16594e-05 3.05204e-05 2.87497e-05 2.66673e-05 2.45557e-05 2.26369e-05 2.10877e-05 2.00733e-05 1.97895e-05 2.04827e-05 2.2435e-05 2.59414e-05 3.04901e-05 3.29342e-05 2.51721e-05 1.02614e-05 3.4976e-06 3.09967e-07 2.5707e-07 2.92443e-06 8.29929e-06 2.04901e-05 2.22022e-05 1.61905e-05 1.25504e-05 1.13888e-05 1.18571e-05 1.348e-05 1.60228e-05 1.92606e-05 2.28564e-05 2.63504e-05 2.92514e-05 3.11935e-05 3.20476e-05 3.18227e-05 3.06666e-05 2.88802e-05 2.67949e-05 2.4695e-05 2.28011e-05 2.12893e-05 2.03268e-05 2.0111e-05 2.08821e-05 2.29213e-05 2.64946e-05 3.10124e-05 3.32693e-05 2.52555e-05 1.02957e-05 3.513e-06 3.10951e-07 2.59522e-07 2.9248e-06 8.29465e-06 2.04022e-05 2.16228e-05 1.55104e-05 1.1952e-05 1.08555e-05 1.13599e-05 1.30198e-05 1.56224e-05 1.89499e-05 2.26567e-05 2.62632e-05 2.92601e-05 3.12761e-05 3.21783e-05 3.19583e-05 3.07878e-05 2.89911e-05 2.69094e-05 2.48273e-05 2.29633e-05 2.14928e-05 2.05851e-05 2.04392e-05 2.12883e-05 2.34123e-05 2.70468e-05 3.15254e-05 3.3592e-05 2.53305e-05 1.0327e-05 3.5276e-06 3.11763e-07 2.62124e-07 2.92707e-06 8.29635e-06 2.0318e-05 2.1057e-05 1.48683e-05 1.13853e-05 1.03395e-05 1.08671e-05 1.25524e-05 1.52048e-05 1.86148e-05 2.24285e-05 2.61466e-05 2.9241e-05 3.13335e-05 3.22794e-05 3.20623e-05 3.08801e-05 2.90789e-05 2.7007e-05 2.49484e-05 2.31189e-05 2.16936e-05 2.08436e-05 2.07694e-05 2.16973e-05 2.39051e-05 2.75962e-05 3.20295e-05 3.39051e-05 2.54012e-05 1.03573e-05 3.54188e-06 3.12428e-07 2.64837e-07 2.93083e-06 8.30283e-06 2.02352e-05 2.05096e-05 1.42647e-05 1.08516e-05 9.84289e-06 1.03798e-05 1.20776e-05 1.47681e-05 1.82516e-05 2.21673e-05 2.59957e-05 2.91896e-05 3.13616e-05 3.23459e-05 3.213e-05 3.09404e-05 2.9142e-05 2.7088e-05 2.50599e-05 2.32708e-05 2.18951e-05 2.11061e-05 2.11058e-05 2.21132e-05 2.44026e-05 2.81443e-05 3.25244e-05 3.4206e-05 2.54637e-05 1.03847e-05 3.55534e-06 3.12887e-07 2.67623e-07 2.9359e-06 8.31412e-06 2.01541e-05 1.99825e-05 1.37014e-05 1.03513e-05 9.36676e-06 9.90092e-06 1.15975e-05 1.43118e-05 1.78562e-05 2.18657e-05 2.58015e-05 2.90962e-05 3.13499e-05 3.23688e-05 3.21543e-05 3.09624e-05 2.91745e-05 2.71462e-05 2.51556e-05 2.34125e-05 2.20908e-05 2.13664e-05 2.14426e-05 2.25307e-05 2.49009e-05 2.8689e-05 3.30103e-05 3.44976e-05 2.55221e-05 1.04113e-05 3.56855e-06 3.1319e-07 2.70496e-07 2.942e-06 8.33007e-06 2.00765e-05 1.94728e-05 1.31736e-05 9.88296e-06 8.91478e-06 9.43443e-06 1.1116e-05 1.3839e-05 1.74303e-05 2.15232e-05 2.55612e-05 2.8956e-05 3.1292e-05 3.23439e-05 3.21336e-05 3.09464e-05 2.91778e-05 2.71842e-05 2.52388e-05 2.35482e-05 2.22858e-05 2.16298e-05 2.17849e-05 2.29544e-05 2.54033e-05 2.92313e-05 3.34858e-05 3.47762e-05 2.55723e-05 1.04351e-05 3.58088e-06 3.13268e-07 2.73418e-07 2.94893e-06 8.34994e-06 1.99994e-05 1.89791e-05 1.26788e-05 9.44365e-06 8.48326e-06 8.98003e-06 1.0636e-05 1.33536e-05 1.69762e-05 2.11385e-05 2.52689e-05 2.8759e-05 3.11744e-05 3.22596e-05 3.2059e-05 3.08856e-05 2.91465e-05 2.71963e-05 2.53036e-05 2.36712e-05 2.24725e-05 2.18884e-05 2.21252e-05 2.33778e-05 2.59048e-05 2.97688e-05 3.3952e-05 3.50461e-05 2.56198e-05 1.04588e-05 3.5931e-06 3.13185e-07 2.76423e-07 2.95669e-06 8.37506e-06 1.99259e-05 1.84954e-05 1.22109e-05 9.03129e-06 8.07466e-06 8.54263e-06 1.01629e-05 1.28616e-05 1.64997e-05 2.07164e-05 2.49278e-05 2.85064e-05 3.09944e-05 3.21119e-05 3.1927e-05 3.07776e-05 2.90791e-05 2.7183e-05 2.5352e-05 2.37856e-05 2.26568e-05 2.21488e-05 2.24695e-05 2.38058e-05 2.64088e-05 3.03022e-05 3.44063e-05 3.5301e-05 2.56569e-05 1.0479e-05 3.6043e-06 3.12843e-07 2.79479e-07 2.96499e-06 8.40413e-06 1.98513e-05 1.80198e-05 1.17668e-05 8.64178e-06 7.68422e-06 8.11772e-06 9.69532e-06 1.23648e-05 1.60046e-05 2.02606e-05 2.45403e-05 2.81989e-05 3.07498e-05 3.1898e-05 3.17354e-05 3.06204e-05 2.89731e-05 2.71402e-05 2.53783e-05 2.38833e-05 2.28283e-05 2.24003e-05 2.28088e-05 2.42312e-05 2.69098e-05 3.08291e-05 3.48512e-05 3.55492e-05 2.56941e-05 1.04999e-05 3.61557e-06 3.12334e-07 2.82595e-07 2.97399e-06 8.43883e-06 1.97783e-05 1.7548e-05 1.13423e-05 8.27339e-06 7.31278e-06 7.70809e-06 9.23671e-06 1.18666e-05 1.54942e-05 1.9774e-05 2.41082e-05 2.78366e-05 3.0438e-05 3.16139e-05 3.148e-05 3.04107e-05 2.88268e-05 2.70683e-05 2.53851e-05 2.39701e-05 2.29972e-05 2.26554e-05 2.31508e-05 2.46598e-05 2.74118e-05 3.13506e-05 3.52832e-05 3.5781e-05 2.57183e-05 1.05163e-05 3.62555e-06 3.1152e-07 2.85737e-07 2.98331e-06 8.47724e-06 1.9701e-05 1.7081e-05 1.09371e-05 7.92388e-06 6.95705e-06 7.30962e-06 8.78278e-06 1.13637e-05 1.49664e-05 1.9255e-05 2.3629e-05 2.74152e-05 3.0057e-05 3.12597e-05 3.11613e-05 3.01477e-05 2.86374e-05 2.69622e-05 2.53655e-05 2.40372e-05 2.31526e-05 2.29016e-05 2.34861e-05 2.5083e-05 2.79081e-05 3.18642e-05 3.57062e-05 3.60077e-05 2.57436e-05 1.05336e-05 3.63564e-06 3.1053e-07 2.88902e-07 2.99309e-06 8.52092e-06 1.96225e-05 1.66176e-05 1.05493e-05 7.59273e-06 6.61735e-06 6.92273e-06 8.33349e-06 1.08555e-05 1.44198e-05 1.87012e-05 2.30992e-05 2.69299e-05 2.96034e-05 3.08341e-05 3.07799e-05 2.9834e-05 2.84093e-05 2.68283e-05 2.53272e-05 2.40935e-05 2.3303e-05 2.31469e-05 2.38224e-05 2.55072e-05 2.84026e-05 3.23695e-05 3.61145e-05 3.62165e-05 2.57545e-05 1.05457e-05 3.64422e-06 3.092e-07 2.92064e-07 3.00305e-06 8.56831e-06 1.95385e-05 1.61612e-05 1.01803e-05 7.28014e-06 6.29304e-06 6.54646e-06 7.88787e-06 1.03406e-05 1.38514e-05 1.81073e-05 2.25101e-05 2.63698e-05 2.90685e-05 3.03306e-05 3.033e-05 2.94626e-05 2.81336e-05 2.66557e-05 2.52582e-05 2.4126e-05 2.34358e-05 2.33795e-05 2.41499e-05 2.59249e-05 2.88907e-05 3.28669e-05 3.65151e-05 3.64219e-05 2.57683e-05 1.05596e-05 3.65313e-06 3.07714e-07 2.95225e-07 3.01337e-06 8.62079e-06 1.94513e-05 1.57107e-05 9.82836e-06 6.98504e-06 5.98339e-06 6.17994e-06 7.44496e-06 9.81839e-06 1.32621e-05 1.74748e-05 2.1864e-05 2.57374e-05 2.84559e-05 2.9755e-05 2.98196e-05 2.90438e-05 2.78222e-05 2.64568e-05 2.51705e-05 2.41458e-05 2.35603e-05 2.36069e-05 2.44738e-05 2.63388e-05 2.93718e-05 3.33514e-05 3.68973e-05 3.66068e-05 2.57657e-05 1.05675e-05 3.66026e-06 3.0586e-07 2.98375e-07 3.02392e-06 8.6776e-06 1.93589e-05 1.52704e-05 9.49601e-06 6.70899e-06 5.68955e-06 5.82369e-06 7.00416e-06 9.28684e-06 1.26477e-05 1.67978e-05 2.11525e-05 2.5022e-05 2.77544e-05 2.90954e-05 2.92359e-05 2.85633e-05 2.74598e-05 2.62164e-05 2.50496e-05 2.41396e-05 2.3665e-05 2.38195e-05 2.47873e-05 2.67453e-05 2.98463e-05 3.38286e-05 3.72735e-05 3.67902e-05 2.57678e-05 1.05778e-05 3.66793e-06 3.03874e-07 3.01535e-07 3.03498e-06 8.74087e-06 1.92638e-05 1.48394e-05 9.18176e-06 6.45127e-06 5.41138e-06 5.47768e-06 6.56557e-06 8.74652e-06 1.201e-05 1.60796e-05 2.03817e-05 2.42332e-05 2.69771e-05 2.83676e-05 2.8596e-05 2.80386e-05 2.70632e-05 2.59497e-05 2.49084e-05 2.41178e-05 2.37575e-05 2.40223e-05 2.50922e-05 2.71424e-05 3.0308e-05 3.42877e-05 3.76275e-05 3.69506e-05 2.57523e-05 1.05816e-05 3.67355e-06 3.01504e-07 3.04713e-07 3.04658e-06 8.81047e-06 1.91648e-05 1.44227e-05 8.88941e-06 6.21502e-06 5.15143e-06 5.14346e-06 6.12915e-06 8.19553e-06 1.13448e-05 1.53136e-05 1.95418e-05 2.33574e-05 2.61077e-05 2.75537e-05 2.7881e-05 2.74506e-05 2.6614e-05 2.56398e-05 2.47322e-05 2.40681e-05 2.38284e-05 2.42089e-05 2.53857e-05 2.75318e-05 3.07638e-05 3.47413e-05 3.79782e-05 3.71121e-05 2.57427e-05 1.05882e-05 3.67987e-06 2.99014e-07 3.07936e-07 3.05909e-06 8.88873e-06 1.90636e-05 1.40203e-05 8.61887e-06 6.00109e-06 4.91141e-06 4.82269e-06 5.69586e-06 7.6343e-06 1.06531e-05 1.45023e-05 1.86388e-05 2.24078e-05 2.5165e-05 2.66754e-05 2.71133e-05 2.68204e-05 2.61308e-05 2.5302e-05 2.45327e-05 2.39987e-05 2.38821e-05 2.43796e-05 2.5664e-05 2.79048e-05 3.11996e-05 3.51704e-05 3.83018e-05 3.72475e-05 2.57144e-05 1.05876e-05 3.68387e-06 2.96136e-07 3.11184e-07 3.07243e-06 8.9753e-06 1.89594e-05 1.36402e-05 8.37641e-06 5.815e-06 4.69655e-06 4.51966e-06 5.26791e-06 7.06206e-06 9.93042e-06 1.36377e-05 1.76603e-05 2.1366e-05 2.41273e-05 2.57095e-05 2.62696e-05 2.61262e-05 2.55943e-05 2.49201e-05 2.42971e-05 2.39e-05 2.39124e-05 2.45325e-05 2.59298e-05 2.82694e-05 3.16297e-05 3.55955e-05 3.86246e-05 3.73865e-05 2.5694e-05 1.05908e-05 3.68882e-06 2.93161e-07 3.14441e-07 3.0867e-06 9.07133e-06 1.88531e-05 1.32838e-05 8.16374e-06 5.65989e-06 4.51129e-06 4.239e-06 4.84889e-06 6.48142e-06 9.18017e-06 1.27261e-05 1.66181e-05 2.02509e-05 2.30188e-05 2.46809e-05 2.53735e-05 2.53884e-05 2.50211e-05 2.45066e-05 2.40338e-05 2.37765e-05 2.39198e-05 2.46631e-05 2.61731e-05 2.86102e-05 3.20325e-05 3.59897e-05 3.89157e-05 3.74969e-05 2.56546e-05 1.05865e-05 3.69127e-06 2.8981e-07 3.17652e-07 3.10157e-06 9.17524e-06 1.87456e-05 1.29606e-05 7.98869e-06 5.54372e-06 4.3645e-06 3.9894e-06 4.44485e-06 5.89342e-06 8.39705e-06 1.17558e-05 1.5495e-05 1.90409e-05 2.18157e-05 2.35691e-05 2.44047e-05 2.45887e-05 2.43956e-05 2.4049e-05 2.37332e-05 2.36215e-05 2.39011e-05 2.47728e-05 2.64009e-05 2.89398e-05 3.24274e-05 3.63789e-05 3.92061e-05 3.76117e-05 2.56238e-05 1.05862e-05 3.6948e-06 2.86385e-07 3.20758e-07 3.11678e-06 9.28659e-06 1.86362e-05 1.26706e-05 7.85195e-06 5.47045e-06 4.26441e-06 3.78238e-06 4.06797e-06 5.30924e-06 7.59192e-06 1.07397e-05 1.43078e-05 1.77561e-05 2.05386e-05 2.23912e-05 2.33828e-05 2.37436e-05 2.37304e-05 2.35562e-05 2.34009e-05 2.34373e-05 2.38541e-05 2.48538e-05 2.65992e-05 2.92381e-05 3.27884e-05 3.67322e-05 3.9462e-05 3.76976e-05 2.55765e-05 1.05794e-05 3.6959e-06 2.82632e-07 3.23691e-07 3.13174e-06 9.40258e-06 1.8525e-05 1.24175e-05 7.75783e-06 5.44727e-06 4.2228e-06 3.63376e-06 3.73411e-06 4.73987e-06 6.76814e-06 9.67304e-06 1.30453e-05 1.63813e-05 1.91713e-05 2.1131e-05 2.2289e-05 2.28389e-05 2.30134e-05 2.30179e-05 2.30285e-05 2.32181e-05 2.3777e-05 2.49096e-05 2.67773e-05 2.95207e-05 3.31373e-05 3.70772e-05 3.97147e-05 3.77858e-05 2.55358e-05 1.05759e-05 3.69795e-06 2.78821e-07 3.26407e-07 3.14602e-06 9.52196e-06 1.84085e-05 1.21927e-05 7.70028e-06 5.47412e-06 4.24825e-06 3.56249e-06 3.47012e-06 4.21487e-06 5.95489e-06 8.58439e-06 1.17357e-05 1.49437e-05 1.77379e-05 1.9809e-05 2.11396e-05 2.18852e-05 2.22546e-05 2.24412e-05 2.26205e-05 2.29647e-05 2.36657e-05 2.493e-05 2.69188e-05 2.97652e-05 3.34464e-05 3.73827e-05 3.99326e-05 3.78493e-05 2.5486e-05 1.05685e-05 3.69811e-06 2.74778e-07 3.28886e-07 3.15928e-06 9.64307e-06 1.82837e-05 1.19919e-05 7.67613e-06 5.55155e-06 4.34823e-06 3.58661e-06 3.30408e-06 3.76552e-06 5.17915e-06 7.49157e-06 1.0386e-05 1.34405e-05 1.62284e-05 1.84125e-05 1.99225e-05 2.08709e-05 2.14422e-05 2.18177e-05 2.21686e-05 2.2671e-05 2.35178e-05 2.49175e-05 2.70315e-05 2.99848e-05 3.37348e-05 3.76727e-05 4.01413e-05 3.79091e-05 2.54368e-05 1.05621e-05 3.69861e-06 2.70659e-07 3.31139e-07 3.17153e-06 9.7668e-06 1.81426e-05 1.17996e-05 7.6725e-06 5.67202e-06 4.52308e-06 3.72117e-06 3.26963e-06 3.44027e-06 4.49688e-06 6.45247e-06 9.05072e-06 1.19181e-05 1.46759e-05 1.69628e-05 1.86514e-05 1.98054e-05 2.0582e-05 2.11511e-05 2.16782e-05 2.23383e-05 2.33308e-05 2.48646e-05 2.71025e-05 3.01618e-05 3.39802e-05 3.79218e-05 4.03171e-05 3.79519e-05 2.53897e-05 1.05561e-05 3.69824e-06 2.66449e-07 3.33192e-07 3.18297e-06 9.89339e-06 1.79806e-05 1.16113e-05 7.68298e-06 5.82696e-06 4.76866e-06 3.97377e-06 3.39221e-06 3.28011e-06 3.95457e-06 5.51102e-06 7.7663e-06 1.04027e-05 1.30903e-05 1.54592e-05 1.73205e-05 1.86815e-05 1.96661e-05 2.04306e-05 2.11381e-05 2.19603e-05 2.30959e-05 2.47646e-05 2.71293e-05 3.02983e-05 3.4191e-05 3.81446e-05 4.0476e-05 3.7984e-05 2.53354e-05 1.05478e-05 3.69736e-06 2.62103e-07 3.35057e-07 3.19391e-06 1.00254e-05 1.77898e-05 1.14158e-05 7.69587e-06 6.0032e-06 5.07341e-06 4.34407e-06 3.69397e-06 3.33306e-06 3.61826e-06 4.74158e-06 6.60801e-06 8.96248e-06 1.15213e-05 1.39322e-05 1.59468e-05 1.75088e-05 1.87016e-05 1.96634e-05 2.05516e-05 2.15392e-05 2.28243e-05 2.46247e-05 2.71135e-05 3.03924e-05 3.43592e-05 3.83269e-05 4.06033e-05 3.80045e-05 2.52932e-05 1.05444e-05 3.69663e-06 2.57827e-07 3.36722e-07 3.20438e-06 1.01617e-05 1.75714e-05 1.12185e-05 7.71286e-06 6.19748e-06 5.42888e-06 4.82474e-06 4.18151e-06 3.62675e-06 3.53015e-06 4.18962e-06 5.61842e-06 7.63309e-06 9.99605e-06 1.23969e-05 1.45355e-05 1.62862e-05 1.76827e-05 1.88393e-05 1.99055e-05 2.10542e-05 2.24864e-05 2.44229e-05 2.70373e-05 3.04248e-05 3.44752e-05 3.84735e-05 4.07105e-05 3.8014e-05 2.52412e-05 1.0536e-05 3.69521e-06 2.53341e-07 3.38143e-07 3.21435e-06 1.03034e-05 1.73215e-05 1.10149e-05 7.72816e-06 6.40148e-06 5.82317e-06 5.40311e-06 4.85419e-06 4.18671e-06 3.74151e-06 3.92132e-06 4.87014e-06 6.48677e-06 8.58149e-06 1.09015e-05 1.3116e-05 1.50312e-05 1.66232e-05 1.79738e-05 1.92201e-05 2.05316e-05 2.21098e-05 2.41788e-05 2.69215e-05 3.04251e-05 3.45544e-05 3.85774e-05 4.07825e-05 3.80087e-05 2.51997e-05 1.0534e-05 3.69573e-06 2.49057e-07 3.39261e-07 3.22327e-06 1.04453e-05 1.70471e-05 1.08149e-05 7.74659e-06 6.61443e-06 6.24861e-06 6.06459e-06 5.698e-06 5.01403e-06 4.2722e-06 3.96613e-06 4.39742e-06 5.5634e-06 7.32223e-06 9.47756e-06 1.17041e-05 1.37464e-05 1.55148e-05 1.70489e-05 1.8467e-05 1.99341e-05 2.16522e-05 2.38498e-05 2.67191e-05 3.03415e-05 3.45696e-05 3.8649e-05 4.08467e-05 3.80111e-05 2.51671e-05 1.05313e-05 3.69498e-06 2.44515e-07 3.40065e-07 3.23128e-06 1.05906e-05 1.67456e-05 1.06122e-05 7.76219e-06 6.82874e-06 6.69289e-06 6.79006e-06 6.69203e-06 6.10225e-06 5.14134e-06 4.36086e-06 4.24672e-06 4.92027e-06 6.28707e-06 8.19055e-06 1.03509e-05 1.2469e-05 1.43895e-05 1.60997e-05 1.76897e-05 1.93131e-05 2.11695e-05 2.34904e-05 2.64792e-05 3.02131e-05 3.45319e-05 3.86608e-05 4.08535e-05 3.79701e-05 2.51135e-05 1.05242e-05 3.69403e-06 2.40085e-07 3.40516e-07 3.23792e-06 1.07337e-05 1.6426e-05 1.04173e-05 7.78201e-06 7.04743e-06 7.15235e-06 7.56486e-06 7.81086e-06 7.42947e-06 6.34656e-06 5.11353e-06 4.42189e-06 4.55863e-06 5.48217e-06 7.05812e-06 9.0697e-06 1.11978e-05 1.32274e-05 1.50882e-05 1.68343e-05 1.86044e-05 2.05948e-05 2.30409e-05 2.6158e-05 3.00181e-05 3.44487e-05 3.86558e-05 4.08768e-05 3.79734e-05 2.50995e-05 1.05264e-05 3.69366e-06 2.35448e-07 3.40656e-07 3.24383e-06 1.08824e-05 1.60794e-05 1.02177e-05 7.79676e-06 7.26236e-06 7.6165e-06 8.37021e-06 9.0215e-06 8.957e-06 7.87171e-06 6.2381e-06 4.94871e-06 4.51e-06 4.95146e-06 6.14708e-06 7.93131e-06 9.99979e-06 1.20948e-05 1.40864e-05 1.59812e-05 1.7891e-05 2.00018e-05 2.25516e-05 2.57728e-05 2.97381e-05 3.42684e-05 3.85511e-05 4.08021e-05 3.78838e-05 2.50236e-05 1.05107e-05 3.6903e-06 2.30829e-07 3.40415e-07 3.24875e-06 1.10307e-05 1.57201e-05 1.00261e-05 7.81534e-06 7.47873e-06 8.08483e-06 9.19476e-06 1.02951e-05 1.06425e-05 9.68975e-06 7.73768e-06 5.83288e-06 4.76787e-06 4.68527e-06 5.45715e-06 6.93366e-06 8.85814e-06 1.09481e-05 1.30229e-05 1.50407e-05 1.70836e-05 1.93248e-05 2.20014e-05 2.53543e-05 2.94563e-05 3.41147e-05 3.84983e-05 4.08036e-05 3.78912e-05 2.50282e-05 1.05199e-05 3.69085e-06 2.2618e-07 3.39884e-07 3.25395e-06 1.11922e-05 1.53339e-05 9.82622e-06 7.82719e-06 7.68945e-06 8.55119e-06 1.00271e-05 1.16006e-05 1.24219e-05 1.17271e-05 9.58003e-06 7.07785e-06 5.34241e-06 4.69805e-06 5.01975e-06 6.14219e-06 7.86381e-06 9.89628e-06 1.20185e-05 1.41341e-05 1.62816e-05 1.8613e-05 2.13635e-05 2.47871e-05 2.89803e-05 3.37485e-05 3.82441e-05 4.06324e-05 3.77606e-05 2.49462e-05 1.04995e-05 3.68526e-06 2.21473e-07 3.39007e-07 3.25927e-06 1.13596e-05 1.49368e-05 9.63352e-06 7.84309e-06 7.90016e-06 9.01463e-06 1.08559e-05 1.29084e-05 1.42391e-05 1.39152e-05 1.17342e-05 8.69075e-06 6.23171e-06 4.96564e-06 4.7973e-06 5.52213e-06 6.9702e-06 8.86916e-06 1.09783e-05 1.31626e-05 1.54222e-05 1.78823e-05 2.07645e-05 2.43208e-05 2.866e-05 3.35728e-05 3.81869e-05 4.06388e-05 3.77692e-05 2.49465e-05 1.05074e-05 3.6852e-06 2.16693e-07 3.38034e-07 3.26671e-06 1.15529e-05 1.4513e-05 9.43334e-06 7.85619e-06 8.1083e-06 9.4771e-06 1.16847e-05 1.42094e-05 1.60421e-05 1.61408e-05 1.40851e-05 1.06295e-05 7.44272e-06 5.51278e-06 4.83183e-06 5.14746e-06 6.28152e-06 7.9987e-06 1.0044e-05 1.22433e-05 1.45496e-05 1.70564e-05 1.9975e-05 2.35693e-05 2.79831e-05 3.30149e-05 3.77782e-05 4.03719e-05 3.7615e-05 2.48907e-05 1.04936e-05 3.6789e-06 2.12151e-07 3.37075e-07 3.27674e-06 1.17679e-05 1.40782e-05 9.24184e-06 7.87723e-06 8.31837e-06 9.93594e-06 1.25021e-05 1.54819e-05 1.77944e-05 1.83411e-05 1.65421e-05 1.28193e-05 8.91468e-06 6.27216e-06 5.05264e-06 4.95043e-06 5.7395e-06 7.22683e-06 9.16278e-06 1.13619e-05 1.37455e-05 1.63685e-05 1.94146e-05 2.31404e-05 2.77066e-05 3.28986e-05 3.77893e-05 4.04247e-05 3.76075e-05 2.48249e-05 1.04755e-05 3.67307e-06 2.06854e-07 3.36504e-07 3.2924e-06 1.20306e-05 1.36242e-05 9.05414e-06 7.90408e-06 8.53712e-06 1.04088e-05 1.33387e-05 1.6766e-05 1.95334e-05 2.05194e-05 1.90703e-05 1.52481e-05 1.06657e-05 7.26428e-06 5.48278e-06 4.97049e-06 5.42195e-06 6.65935e-06 8.43293e-06 1.05461e-05 1.28972e-05 1.55176e-05 1.8576e-05 2.23314e-05 2.69731e-05 3.22875e-05 3.73261e-05 4.01013e-05 3.74162e-05 2.47713e-05 1.04588e-05 3.66312e-06 2.02156e-07 3.36238e-07 3.31523e-06 1.23417e-05 1.31697e-05 8.88789e-06 7.9472e-06 8.76617e-06 1.08856e-05 1.41709e-05 1.80307e-05 2.12236e-05 2.26194e-05 2.1563e-05 1.77902e-05 1.25776e-05 8.35392e-06 5.98748e-06 5.09467e-06 5.25944e-06 6.27954e-06 7.92023e-06 9.98885e-06 1.23723e-05 1.5072e-05 1.82284e-05 2.20956e-05 2.68852e-05 3.23634e-05 3.75069e-05 4.02377e-05 3.733e-05 2.4504e-05 1.03569e-05 3.63953e-06 1.94817e-07 3.3586e-07 3.3477e-06 1.27099e-05 1.27449e-05 8.76046e-06 8.01894e-06 9.01037e-06 1.13634e-05 1.49925e-05 1.92781e-05 2.28973e-05 2.47205e-05 2.41566e-05 2.06938e-05 1.49892e-05 9.79399e-06 6.69553e-06 5.36888e-06 5.24813e-06 6.04245e-06 7.51379e-06 9.45438e-06 1.17539e-05 1.44209e-05 1.75973e-05 2.15291e-05 2.6411e-05 3.19829e-05 3.71671e-05 3.9887e-05 3.69856e-05 2.42836e-05 1.02762e-05 3.61401e-06 1.87709e-07 3.34339e-07 3.39198e-06 1.3129e-05 1.23715e-05 8.68817e-06 8.12612e-06 9.25846e-06 1.17797e-05 1.56475e-05 2.02625e-05 2.42531e-05 2.64637e-05 2.63975e-05 2.34736e-05 1.76287e-05 1.14715e-05 7.50672e-06 5.68766e-06 5.3028e-06 5.94533e-06 7.35908e-06 9.30206e-06 1.16359e-05 1.43465e-05 1.75647e-05 2.15448e-05 2.65028e-05 3.21818e-05 3.74102e-05 3.99966e-05 3.67141e-05 2.37197e-05 1.00563e-05 3.56813e-06 1.76149e-07 3.30164e-07 3.44878e-06 1.35685e-05 1.21328e-05 8.71116e-06 8.28192e-06 9.49644e-06 1.20809e-05 1.60129e-05 2.07592e-05 2.50441e-05 2.77091e-05 2.82881e-05 2.63451e-05 2.12036e-05 1.42933e-05 9.01256e-06 6.28829e-06 5.38648e-06 5.7121e-06 6.94967e-06 8.80277e-06 1.10959e-05 1.38191e-05 1.71192e-05 2.12312e-05 2.63049e-05 3.20081e-05 3.71063e-05 3.94886e-05 3.60764e-05 2.32722e-05 9.9227e-06 3.53622e-06 1.65322e-07 3.22673e-07 3.52354e-06 1.40404e-05 1.20414e-05 8.83476e-06 8.48908e-06 9.71558e-06 1.22224e-05 1.59671e-05 2.05173e-05 2.48063e-05 2.77622e-05 2.89009e-05 2.79152e-05 2.41642e-05 1.77454e-05 1.14188e-05 7.47806e-06 5.76689e-06 5.59479e-06 6.56563e-06 8.3683e-06 1.0731e-05 1.34997e-05 1.67523e-05 2.07485e-05 2.57215e-05 3.14686e-05 3.67756e-05 3.93517e-05 3.58887e-05 2.29382e-05 9.80452e-06 3.51852e-06 1.52999e-07 3.11797e-07 3.61933e-06 1.45732e-05 1.2205e-05 9.11702e-06 8.79357e-06 9.95772e-06 1.22497e-05 1.55773e-05 1.96434e-05 2.37225e-05 2.69457e-05 2.87632e-05 2.8908e-05 2.69766e-05 2.23333e-05 1.57552e-05 1.00811e-05 6.80766e-06 5.56173e-06 5.76805e-06 7.08093e-06 9.25776e-06 1.21154e-05 1.55928e-05 1.98571e-05 2.51065e-05 3.10454e-05 3.63629e-05 3.87964e-05 3.53115e-05 2.27872e-05 9.87506e-06 3.54102e-06 1.44189e-07 2.99327e-07 3.74274e-06 1.52334e-05 1.26395e-05 9.59087e-06 9.25536e-06 1.03307e-05 1.2359e-05 1.51745e-05 1.85694e-05 2.21192e-05 2.52361e-05 2.74121e-05 2.83336e-05 2.77435e-05 2.52677e-05 2.06545e-05 1.48196e-05 9.86569e-06 6.93626e-06 5.86445e-06 6.23738e-06 7.74468e-06 1.02271e-05 1.35454e-05 1.7625e-05 2.26103e-05 2.86058e-05 3.47676e-05 3.85703e-05 3.62941e-05 2.40395e-05 1.03566e-05 3.64766e-06 1.41898e-07 2.86652e-07 3.91006e-06 1.62309e-05 1.33255e-05 1.02324e-05 9.86011e-06 1.08191e-05 1.25348e-05 1.47713e-05 1.73905e-05 2.02131e-05 2.29397e-05 2.51897e-05 2.66123e-05 2.69129e-05 2.57989e-05 2.30175e-05 1.86931e-05 1.37723e-05 9.64666e-06 7.10458e-06 6.18027e-06 6.59518e-06 8.19591e-06 1.10314e-05 1.52532e-05 2.09565e-05 2.77993e-05 3.43829e-05 3.81291e-05 3.58758e-05 2.41954e-05 1.05898e-05 3.69475e-06 1.38649e-07 2.762e-07 4.11385e-06 1.74648e-05 1.44089e-05 1.12014e-05 1.07838e-05 1.16304e-05 1.30469e-05 1.47652e-05 1.67164e-05 1.88803e-05 2.11635e-05 2.33512e-05 2.51535e-05 2.62902e-05 2.6513e-05 2.55711e-05 2.32276e-05 1.94673e-05 1.49082e-05 1.07833e-05 8.06893e-06 6.97451e-06 7.23807e-06 8.74369e-06 1.15984e-05 1.61365e-05 2.27355e-05 3.08295e-05 3.73412e-05 3.7626e-05 2.69355e-05 1.15989e-05 3.86815e-06 1.48313e-07 2.70945e-07 4.41788e-06 1.94611e-05 1.52685e-05 1.20591e-05 1.16937e-05 1.24362e-05 1.35208e-05 1.47304e-05 1.60969e-05 1.76842e-05 1.94689e-05 2.12953e-05 2.28766e-05 2.3851e-05 2.38828e-05 2.27903e-05 2.07011e-05 1.8071e-05 1.54012e-05 1.29703e-05 1.09414e-05 9.54173e-06 9.06142e-06 9.74751e-06 1.18512e-05 1.57923e-05 2.2095e-05 3.02807e-05 3.68301e-05 3.66817e-05 2.57499e-05 1.11005e-05 3.72549e-06 1.40016e-07 2.74926e-07 4.76516e-06 2.14627e-05 1.66197e-05 1.35569e-05 1.32578e-05 1.3822e-05 1.45329e-05 1.53281e-05 1.63383e-05 1.76656e-05 1.93398e-05 2.13196e-05 2.34627e-05 2.54684e-05 2.68755e-05 2.71598e-05 2.58646e-05 2.28561e-05 1.88162e-05 1.50271e-05 1.22675e-05 1.05983e-05 9.91514e-06 1.02684e-05 1.19182e-05 1.54215e-05 2.16184e-05 3.04688e-05 3.81726e-05 3.85857e-05 2.66831e-05 1.10001e-05 3.63919e-06 1.35092e-07 2.91199e-07 5.43666e-06 2.3102e-05 1.64672e-05 1.44873e-05 1.46726e-05 1.51459e-05 1.55928e-05 1.62496e-05 1.727e-05 1.85759e-05 1.99432e-05 2.11778e-05 2.22374e-05 2.31799e-05 2.39888e-05 2.44416e-05 2.41612e-05 2.2888e-05 2.07812e-05 1.83753e-05 1.62958e-05 1.49789e-05 1.46634e-05 1.55858e-05 1.81425e-05 2.28299e-05 2.94373e-05 3.55331e-05 3.74483e-05 3.27505e-05 2.04238e-05 8.91365e-06 3.21942e-06 1.01361e-07 3.05737e-07 6.29355e-06 2.09269e-05 1.72726e-05 1.72193e-05 1.79021e-05 1.8209e-05 1.86563e-05 1.97838e-05 2.17224e-05 2.42192e-05 2.6702e-05 2.84913e-05 2.92126e-05 2.90046e-05 2.82368e-05 2.71822e-05 2.59981e-05 2.47247e-05 2.34279e-05 2.2309e-05 2.16305e-05 2.16283e-05 2.25128e-05 2.44683e-05 2.75233e-05 3.12188e-05 3.43763e-05 3.55285e-05 3.33393e-05 2.62638e-05 1.56507e-05 7.45067e-06 2.96602e-06 6.87044e-08 2.82142e-07 7.87121e-06 1.35684e-05 1.46127e-05 1.67443e-05 1.8272e-05 1.92567e-05 2.03441e-05 2.17679e-05 2.349e-05 2.53887e-05 2.73153e-05 2.90842e-05 3.05603e-05 3.18202e-05 3.29838e-05 3.37935e-05 3.41186e-05 3.41189e-05 3.38875e-05 3.34817e-05 3.29394e-05 3.22658e-05 3.14305e-05 3.03651e-05 2.89725e-05 2.71478e-05 2.47976e-05 2.18445e-05 1.82379e-05 1.40507e-05 9.69119e-06 5.82597e-06 2.76512e-06 3.467e-08 1.55274e-07 7.30328e-06 9.88508e-06 1.29633e-05 1.56133e-05 1.7738e-05 1.98111e-05 2.20489e-05 2.45155e-05 2.72161e-05 3.00905e-05 3.30059e-05 3.57393e-05 3.79167e-05 3.90702e-05 3.91386e-05 3.83308e-05 3.67842e-05 3.47071e-05 3.23546e-05 2.9929e-05 2.75623e-05 2.53328e-05 2.32738e-05 2.13859e-05 1.96468e-05 1.80185e-05 1.64521e-05 1.48884e-05 1.32624e-05 1.15116e-05 9.55848e-06 7.17881e-06 3.8674e-06 2.05554e-08 5.45799e-08 2.997e-06 4.68793e-06 6.09529e-06 7.11512e-06 7.90514e-06 8.58421e-06 9.16774e-06 9.66084e-06 1.00678e-05 1.03915e-05 1.06347e-05 1.08005e-05 1.08924e-05 1.09143e-05 1.08634e-05 1.07544e-05 1.05927e-05 1.03844e-05 1.01355e-05 9.85324e-06 9.54453e-06 9.21518e-06 8.86907e-06 8.50818e-06 8.13301e-06 7.73869e-06 7.18938e-06 6.41016e-06 5.53929e-06 4.58021e-06 3.54418e-06 2.45242e-06 1.33193e-06 8.11138e-09 5.86834e-10 1.72195e-08 2.53368e-08 3.69924e-08 5.18499e-08 6.97027e-08 9.02878e-08 1.13239e-07 1.38089e-07 1.64291e-07 1.91244e-07 2.18317e-07 2.4488e-07 2.70325e-07 2.94085e-07 3.15638e-07 3.34509e-07 3.50259e-07 3.62377e-07 3.70491e-07 3.7424e-07 3.73326e-07 3.67616e-07 3.57377e-07 3.42899e-07 3.24866e-07 3.04365e-07 2.82829e-07 2.61867e-07 2.43059e-07 2.27621e-07 2.15219e-07 1.99295e-07 1.60658e-07 3.84839e-09 2.89076e-10 8.30556e-10 7.27429e-09 3.25813e-08 9.21705e-08 1.98831e-07 3.61754e-07 5.8601e-07 8.71707e-07 1.21248e-06 1.5944e-06 1.9959e-06 2.38953e-06 2.74574e-06 3.03739e-06 3.24397e-06 3.35474e-06 3.36967e-06 3.29263e-06 3.14045e-06 2.93081e-06 2.68114e-06 2.40704e-06 2.1216e-06 1.83542e-06 1.55701e-06 1.29271e-06 1.04561e-06 8.12129e-07 5.74969e-07 3.23307e-07 1.18317e-07 2.90606e-08 1.11388e-08 1.04856e-08 3.19963e-10 1.07449e-09 1.03864e-08 4.83501e-08 1.38494e-07 2.97651e-07 5.34074e-07 8.49846e-07 1.23993e-06 1.69164e-06 2.18609e-06 2.70139e-06 3.21616e-06 3.71204e-06 4.17481e-06 4.59442e-06 4.96373e-06 5.27493e-06 5.51891e-06 5.68775e-06 5.76979e-06 5.75025e-06 5.61392e-06 5.34987e-06 4.95744e-06 4.44997e-06 3.84987e-06 3.169e-06 2.38158e-06 1.46693e-06 6.22965e-07 1.63609e-07 3.28916e-08 1.64127e-08 1.73366e-08 7.09148e-10 1.68273e-09 1.39437e-08 6.47231e-08 1.91408e-07 4.34584e-07 8.34541e-07 1.4208e-06 2.19732e-06 3.13129e-06 4.15961e-06 5.20658e-06 6.20158e-06 7.09104e-06 7.84146e-06 8.43848e-06 8.88341e-06 9.18584e-06 9.35038e-06 9.40161e-06 9.3531e-06 9.21166e-06 8.97431e-06 8.62762e-06 8.1498e-06 7.51321e-06 6.67775e-06 5.56759e-06 4.08281e-06 2.33651e-06 9.15307e-07 2.31527e-07 4.55466e-08 2.18901e-08 2.27975e-08 1.45014e-09 2.59332e-09 1.86346e-08 9.22697e-08 3.00015e-07 7.50034e-07 1.561e-06 2.80004e-06 4.4202e-06 6.2652e-06 8.14214e-06 9.88898e-06 1.14003e-05 1.26229e-05 1.35408e-05 1.41622e-05 1.45109e-05 1.46172e-05 1.45096e-05 1.42329e-05 1.3822e-05 1.33055e-05 1.27014e-05 1.20122e-05 1.12186e-05 1.02676e-05 9.04961e-06 7.39091e-06 5.19303e-06 2.8231e-06 1.08039e-06 2.7663e-07 5.56573e-08 2.63491e-08 2.70518e-08 2.41945e-09 4.06859e-09 2.75238e-08 1.45639e-07 5.09155e-07 1.34366e-06 2.85602e-06 5.04882e-06 7.66813e-06 1.03715e-05 1.2893e-05 1.50812e-05 1.68705e-05 1.8245e-05 1.92153e-05 1.98055e-05 2.00475e-05 1.99766e-05 1.96293e-05 1.90565e-05 1.83031e-05 1.741e-05 1.64073e-05 1.5305e-05 1.40806e-05 1.26576e-05 1.08875e-05 8.49159e-06 5.46704e-06 3.06169e-06 1.17544e-06 3.07718e-07 6.35352e-08 2.97768e-08 3.02409e-08 3.23027e-09 5.26653e-09 3.63143e-08 2.00941e-07 7.23226e-07 1.92202e-06 4.01846e-06 6.88899e-06 1.01342e-05 1.33544e-05 1.62882e-05 1.88054e-05 2.08599e-05 2.24504e-05 2.35941e-05 2.43128e-05 2.46317e-05 2.45748e-05 2.41693e-05 2.27723e-05 2.13259e-05 2.00141e-05 1.8686e-05 1.72829e-05 1.57007e-05 1.37389e-05 1.12167e-05 8.24875e-06 5.37269e-06 3.12308e-06 1.26999e-06 3.37746e-07 7.05759e-08 3.28146e-08 3.31247e-08 3.90729e-09 6.28505e-09 4.41592e-08 2.50759e-07 9.1714e-07 2.44729e-06 5.07226e-06 8.55656e-06 1.23761e-05 1.60719e-05 1.93694e-05 2.18867e-05 2.34946e-05 2.50985e-05 2.67933e-05 2.80321e-05 2.87876e-05 2.87965e-05 2.83176e-05 2.67153e-05 2.49895e-05 2.33032e-05 2.14254e-05 1.93247e-05 1.69932e-05 1.43676e-05 1.14156e-05 8.31343e-06 5.48005e-06 3.27399e-06 1.40838e-06 3.79275e-07 7.89779e-08 3.58844e-08 3.60121e-08 4.48129e-09 7.24833e-09 5.26254e-08 3.04151e-07 1.12177e-06 2.98868e-06 6.12295e-06 1.01663e-05 1.44911e-05 1.8603e-05 2.22238e-05 2.42769e-05 2.60166e-05 2.7775e-05 2.92266e-05 3.05507e-05 3.17457e-05 3.25635e-05 3.17175e-05 3.05047e-05 2.88975e-05 2.69514e-05 2.4563e-05 2.17519e-05 1.86363e-05 1.53174e-05 1.1902e-05 8.59849e-06 5.7185e-06 3.48739e-06 1.57705e-06 4.28074e-07 8.81891e-08 3.9071e-08 3.90077e-08 4.99099e-09 8.10511e-09 6.00952e-08 3.50917e-07 1.30056e-06 3.46058e-06 7.03815e-06 1.1579e-05 1.63768e-05 2.09035e-05 2.46397e-05 2.67727e-05 2.86889e-05 3.03565e-05 3.18751e-05 3.32931e-05 3.45973e-05 3.55743e-05 3.51075e-05 3.42452e-05 3.29199e-05 3.08834e-05 2.81204e-05 2.46873e-05 2.08161e-05 1.67773e-05 1.28214e-05 9.20015e-06 6.15531e-06 3.81326e-06 1.80681e-06 4.93484e-07 9.96633e-08 4.24595e-08 4.2096e-08 5.50712e-09 8.99396e-09 6.83167e-08 4.03033e-07 1.50097e-06 3.98672e-06 8.04143e-06 1.3097e-05 1.83694e-05 2.33061e-05 2.71817e-05 2.94845e-05 3.14652e-05 3.32193e-05 3.48309e-05 3.63261e-05 3.76993e-05 3.87717e-05 3.85847e-05 3.7963e-05 3.67834e-05 3.47504e-05 3.17115e-05 2.77769e-05 2.32523e-05 1.85433e-05 1.40313e-05 1.00258e-05 6.73606e-06 4.22146e-06 2.07914e-06 5.7036e-07 1.12616e-07 4.59662e-08 4.5217e-08 6.04543e-09 9.9014e-09 7.68049e-08 4.57058e-07 1.7088e-06 4.52845e-06 9.06364e-06 1.46345e-05 2.03868e-05 2.57458e-05 2.98293e-05 3.23106e-05 3.43599e-05 3.62263e-05 3.79393e-05 3.95111e-05 4.09391e-05 4.20744e-05 4.20963e-05 4.16377e-05 4.05387e-05 3.84759e-05 3.52453e-05 3.09278e-05 2.58709e-05 2.05704e-05 1.55159e-05 1.10839e-05 7.48384e-06 4.73828e-06 2.41424e-06 6.65934e-07 1.28168e-07 4.95819e-08 4.82879e-08 6.60353e-09 1.08077e-08 8.55199e-08 5.13551e-07 1.92762e-06 5.09458e-06 1.01153e-05 1.61948e-05 2.24179e-05 2.81948e-05 3.25516e-05 3.51852e-05 3.73837e-05 3.93852e-05 4.12097e-05 4.28621e-05 4.43386e-05 4.55124e-05 4.5681e-05 4.53088e-05 4.42112e-05 4.20613e-05 3.86402e-05 3.40031e-05 2.85123e-05 2.27101e-05 1.71592e-05 1.22969e-05 8.35299e-06 5.33789e-06 2.79436e-06 7.75308e-07 1.45573e-07 5.32283e-08 5.12698e-08 7.20884e-09 1.17536e-08 9.51502e-08 5.77018e-07 2.17409e-06 5.72572e-06 1.12683e-05 1.78804e-05 2.45859e-05 3.07833e-05 3.53824e-05 3.8163e-05 4.0507e-05 4.26438e-05 4.45828e-05 4.63173e-05 4.78385e-05 4.90352e-05 4.9304e-05 4.89666e-05 4.78216e-05 4.55522e-05 4.19403e-05 3.70319e-05 3.11809e-05 2.4951e-05 1.89498e-05 1.36644e-05 9.3551e-06 6.03776e-06 3.23532e-06 9.04685e-07 1.65837e-07 5.69309e-08 5.41332e-08 7.82797e-09 1.2694e-08 1.04941e-07 6.42489e-07 2.42866e-06 6.3694e-06 1.24254e-05 1.95547e-05 2.67319e-05 3.33477e-05 3.8243e-05 4.1193e-05 4.36891e-05 4.5967e-05 4.80264e-05 4.98477e-05 5.14134e-05 5.26223e-05 5.29518e-05 5.26053e-05 5.13686e-05 4.89437e-05 4.51282e-05 3.99692e-05 3.38103e-05 2.72161e-05 2.08154e-05 1.51303e-05 1.04528e-05 6.81499e-06 3.72054e-06 1.04929e-06 1.88261e-07 6.06441e-08 5.68712e-08 8.49329e-09 1.37446e-08 1.16259e-07 7.18093e-07 2.71993e-06 7.09189e-06 1.36956e-05 2.13584e-05 2.90089e-05 3.60345e-05 4.1163e-05 4.42774e-05 4.69212e-05 4.93368e-05 5.15138e-05 5.34187e-05 5.50235e-05 5.6233e-05 5.65903e-05 5.62044e-05 5.48523e-05 5.2258e-05 4.8241e-05 4.28535e-05 3.64283e-05 2.9519e-05 2.2761e-05 1.66989e-05 1.16544e-05 7.68182e-06 4.263e-06 1.21464e-06 2.1379e-07 6.44188e-08 5.9484e-08 9.1703e-09 1.49449e-08 1.28668e-07 7.9941e-07 3.02817e-06 7.83968e-06 1.49841e-05 2.31672e-05 3.12813e-05 3.8713e-05 4.41194e-05 4.74029e-05 5.01914e-05 5.27412e-05 5.50329e-05 5.70179e-05 5.86565e-05 5.98544e-05 6.02077e-05 5.97537e-05 5.82619e-05 5.54805e-05 5.12567e-05 4.56532e-05 3.89931e-05 3.18126e-05 2.47399e-05 1.83302e-05 1.29304e-05 8.61811e-06 4.8467e-06 1.39594e-06 2.41746e-07 6.82237e-08 6.19768e-08 9.88992e-09 1.63203e-08 1.42921e-07 8.91598e-07 3.37228e-06 8.65621e-06 1.63608e-05 2.50679e-05 3.36389e-05 4.14635e-05 4.71023e-05 5.05419e-05 5.34683e-05 5.6145e-05 5.85426e-05 6.05982e-05 6.22609e-05 6.34327e-05 6.37494e-05 6.32085e-05 6.15697e-05 5.86024e-05 5.41826e-05 4.8384e-05 4.15205e-05 3.41078e-05 2.67575e-05 2.00278e-05 1.42857e-05 9.63131e-06 5.48057e-06 1.59746e-06 2.72918e-07 7.21109e-08 6.43584e-08 1.06212e-08 1.77245e-08 1.57638e-07 9.87368e-07 3.72835e-06 9.48895e-06 1.77465e-05 2.69681e-05 3.59905e-05 4.42063e-05 5.01239e-05 5.37211e-05 5.6777e-05 5.95703e-05 6.20616e-05 6.41746e-05 6.58482e-05 6.6977e-05 6.72263e-05 6.65689e-05 6.47667e-05 6.16066e-05 5.69933e-05 5.10142e-05 4.39741e-05 3.63654e-05 2.87762e-05 2.17586e-05 1.56941e-05 1.07022e-05 6.14797e-06 1.81388e-06 3.06546e-07 7.60457e-08 6.66331e-08 1.1393e-08 1.92458e-08 1.73891e-07 1.0929e-06 4.11602e-06 1.03769e-05 1.91961e-05 2.89295e-05 3.83944e-05 4.6989e-05 5.31539e-05 5.69007e-05 6.00808e-05 6.29833e-05 6.55576e-05 6.77149e-05 6.93865e-05 7.04592e-05 7.06188e-05 6.98242e-05 6.7851e-05 6.45003e-05 5.97029e-05 5.35598e-05 4.63675e-05 3.85934e-05 3.0799e-05 2.35229e-05 1.71563e-05 1.18333e-05 6.85342e-06 2.04785e-06 3.43186e-07 8.00675e-08 6.88092e-08 1.21789e-08 2.08113e-08 1.9087e-07 1.20364e-06 4.52014e-06 1.1288e-05 2.06646e-05 3.09032e-05 4.08059e-05 4.97762e-05 5.62239e-05 6.01196e-05 6.34153e-05 6.64163e-05 6.90623e-05 7.12551e-05 7.29126e-05 7.39129e-05 7.39588e-05 7.30007e-05 7.08348e-05 6.72856e-05 6.23043e-05 5.60059e-05 4.86792e-05 4.07662e-05 3.27984e-05 2.52941e-05 1.86491e-05 1.30059e-05 7.57977e-06 2.29328e-06 3.81934e-07 8.41304e-08 7.08878e-08 1.3005e-08 2.24973e-08 2.09459e-07 1.32451e-06 4.95552e-06 1.22497e-05 2.2188e-05 3.29269e-05 4.32586e-05 5.25938e-05 5.92933e-05 6.33323e-05 6.67417e-05 6.98378e-05 7.25492e-05 7.47699e-05 7.64041e-05 7.73214e-05 7.72392e-05 7.61044e-05 7.37372e-05 6.99879e-05 6.48258e-05 5.8379e-05 5.09302e-05 4.28969e-05 3.47794e-05 2.70727e-05 2.01715e-05 1.42194e-05 8.32863e-06 2.55143e-06 4.23104e-07 8.82592e-08 7.28756e-08 1.38485e-08 2.42357e-08 2.28875e-07 1.4511e-06 5.40744e-06 1.32317e-05 2.37257e-05 3.4958e-05 4.57136e-05 5.54103e-05 6.2394e-05 6.65754e-05 7.00897e-05 7.32716e-05 7.60448e-05 7.82879e-05 7.98887e-05 8.07102e-05 8.04842e-05 7.91581e-05 7.65754e-05 7.26159e-05 6.72706e-05 6.06778e-05 5.31145e-05 4.49747e-05 3.67267e-05 2.88415e-05 2.17061e-05 1.54579e-05 9.08447e-06 2.81608e-06 4.65711e-07 9.23991e-08 7.47696e-08 1.47322e-08 2.60984e-08 2.49985e-07 1.58829e-06 5.8905e-06 1.42606e-05 2.53117e-05 3.70314e-05 4.82022e-05 5.82502e-05 6.54883e-05 6.98073e-05 7.34255e-05 7.66901e-05 7.952e-05 8.17791e-05 8.33395e-05 8.40585e-05 8.3681e-05 8.21584e-05 7.93566e-05 7.51858e-05 6.96589e-05 6.29224e-05 5.52491e-05 4.70114e-05 3.86472e-05 3.06024e-05 2.3252e-05 1.672e-05 9.8481e-06 3.08771e-06 5.09891e-07 9.65596e-08 7.65727e-08 1.56361e-08 2.8023e-08 2.72044e-07 1.73176e-06 6.39031e-06 1.53081e-05 2.69093e-05 3.91095e-05 5.06904e-05 6.10864e-05 6.86034e-05 7.30601e-05 7.67768e-05 8.01188e-05 8.29995e-05 8.52678e-05 8.67802e-05 8.73883e-05 8.68503e-05 8.51237e-05 8.20978e-05 7.77115e-05 7.20003e-05 6.5119e-05 5.73362e-05 4.90049e-05 4.05345e-05 3.23459e-05 2.47981e-05 1.79941e-05 1.06074e-05 3.36091e-06 5.54729e-07 1.00685e-07 7.82788e-08 1.65794e-08 3.00715e-08 2.95816e-07 1.88579e-06 6.91906e-06 1.63949e-05 2.85438e-05 4.12164e-05 5.31972e-05 6.39297e-05 7.16984e-05 7.62867e-05 8.00997e-05 8.35193e-05 8.64494e-05 8.87223e-05 9.01822e-05 9.06764e-05 8.9976e-05 8.80464e-05 8.47989e-05 8.01988e-05 7.43039e-05 6.72786e-05 5.93868e-05 5.09646e-05 4.2395e-05 3.40749e-05 2.63449e-05 1.92795e-05 1.13639e-05 3.63613e-06 6.00301e-07 1.04779e-07 7.98881e-08 1.75443e-08 3.21884e-08 3.20635e-07 2.0465e-06 7.46418e-06 1.74979e-05 3.01868e-05 4.33249e-05 5.57008e-05 6.67669e-05 7.48037e-05 7.95234e-05 8.34283e-05 8.69199e-05 8.98931e-05 9.21643e-05 9.35655e-05 9.39406e-05 9.30735e-05 9.09391e-05 8.74702e-05 8.26571e-05 7.65787e-05 6.94085e-05 6.14052e-05 5.2891e-05 4.42256e-05 3.57824e-05 2.78848e-05 2.05683e-05 1.21088e-05 3.90914e-06 6.45863e-07 1.08793e-07 8.13946e-08 1.85458e-08 3.44252e-08 3.4714e-07 2.21737e-06 8.03495e-06 1.86317e-05 3.1855e-05 4.54488e-05 5.82092e-05 6.95981e-05 7.78761e-05 8.27229e-05 8.67193e-05 9.02815e-05 9.32955e-05 9.55625e-05 9.69037e-05 9.71605e-05 9.61296e-05 9.37959e-05 9.01127e-05 8.50928e-05 7.8834e-05 7.15182e-05 6.34014e-05 5.4793e-05 4.60329e-05 3.74733e-05 2.94195e-05 2.18608e-05 1.2844e-05 4.18055e-06 6.91501e-07 1.12731e-07 8.27985e-08 1.95677e-08 3.67299e-08 3.74696e-07 2.3947e-06 8.61967e-06 1.9776e-05 3.3524e-05 4.75652e-05 6.07033e-05 7.24095e-05 8.09383e-05 8.59105e-05 8.99945e-05 9.36231e-05 9.66729e-05 9.89313e-05 0.000100209 0.000100347 9.91529e-05 9.66237e-05 9.27316e-05 8.75099e-05 8.10725e-05 7.36103e-05 6.53772e-05 5.66716e-05 4.78166e-05 3.91457e-05 3.09454e-05 2.31522e-05 1.35644e-05 4.44762e-06 7.36694e-07 1.16558e-07 8.40966e-08 2.06217e-08 3.91445e-08 4.03827e-07 2.58128e-06 9.22556e-06 2.09418e-05 3.52059e-05 4.96835e-05 6.31881e-05 7.52008e-05 8.39532e-05 8.90467e-05 9.32188e-05 9.69134e-05 9.99972e-05 0.000102246 0.000103461 0.000103482 0.000102132 9.94162e-05 9.53252e-05 8.99103e-05 8.32998e-05 7.56924e-05 6.73406e-05 5.85336e-05 4.95819e-05 4.0803e-05 3.24648e-05 2.4444e-05 1.42724e-05 4.71136e-06 7.81603e-07 1.2028e-07 8.52898e-08 2.16933e-08 4.16221e-08 4.33948e-07 2.77368e-06 9.84206e-06 2.21116e-05 3.68807e-05 5.17849e-05 6.56484e-05 7.79615e-05 8.69413e-05 9.2154e-05 9.64104e-05 0.000100167 0.000103281 0.000105516 0.000106668 0.000106576 0.000105074 0.000102179 9.7898e-05 9.22983e-05 8.55204e-05 7.77695e-05 6.92967e-05 6.03837e-05 5.13316e-05 4.24459e-05 3.39756e-05 2.57324e-05 1.49642e-05 4.96963e-06 8.25789e-07 1.23869e-07 8.63781e-08 2.27903e-08 4.41943e-08 4.65453e-07 2.97388e-06 1.04739e-05 2.32921e-05 3.85547e-05 5.38733e-05 6.8084e-05 8.06868e-05 8.98679e-05 9.51952e-05 9.95356e-05 0.000103353 0.000106496 0.000108719 0.000109811 0.000109611 0.000107966 0.000104905 0.000100447 9.46739e-05 8.77363e-05 7.98437e-05 7.12475e-05 6.22252e-05 5.30705e-05 4.40794e-05 3.54831e-05 2.7022e-05 1.56443e-05 5.22434e-06 8.69586e-07 1.2734e-07 8.73644e-08 2.38992e-08 4.68163e-08 4.9777e-07 3.17855e-06 1.11115e-05 2.44681e-05 4.02112e-05 5.59332e-05 7.04821e-05 8.33674e-05 9.275e-05 9.81888e-05 0.00010261 0.000106485 0.000109655 0.000111864 0.000112896 0.000112593 0.000110814 0.000107595 0.000102972 9.70369e-05 8.99473e-05 8.19167e-05 7.31963e-05 6.40613e-05 5.48006e-05 4.57039e-05 3.69854e-05 2.83097e-05 1.63104e-05 5.47426e-06 9.1271e-07 1.30671e-07 8.82504e-08 2.50281e-08 4.95099e-08 5.31112e-07 3.38854e-06 1.17561e-05 2.56416e-05 4.1852e-05 5.79647e-05 7.28407e-05 8.59982e-05 9.55532e-05 0.0001011 0.000105602 0.000109535 0.000112732 0.000114929 0.000115906 0.000115508 0.000113605 0.000110244 0.000105469 9.93836e-05 9.21513e-05 8.39873e-05 7.51432e-05 6.5893e-05 5.65237e-05 4.73217e-05 3.84849e-05 2.95968e-05 1.69632e-05 5.71956e-06 9.55162e-07 1.33857e-07 8.9039e-08 2.61694e-08 5.22462e-08 5.65057e-07 3.60086e-06 1.23985e-05 2.67979e-05 4.34614e-05 5.99539e-05 7.51481e-05 8.85707e-05 9.8289e-05 0.000103941 0.000108522 0.000112513 0.000115734 0.00011792 0.000118846 0.00011836 0.000116344 0.000112851 0.000107938 0.000101715 9.43493e-05 8.60578e-05 7.70918e-05 6.7725e-05 5.82448e-05 4.89382e-05 3.99878e-05 3.08903e-05 1.76078e-05 5.9628e-06 9.97406e-07 1.36913e-07 8.97348e-08 2.73241e-08 5.50432e-08 5.99953e-07 3.8181e-06 1.30464e-05 2.7948e-05 4.50488e-05 6.19074e-05 7.74082e-05 9.10857e-05 0.000100938 0.000106691 0.000111353 0.000115402 0.000118651 0.000120828 0.000121709 0.000121144 0.000119026 0.000115416 0.000110379 0.000104031 9.65433e-05 8.81314e-05 7.90466e-05 6.95627e-05 5.99687e-05 5.0554e-05 4.14881e-05 3.21793e-05 1.82385e-05 6.20066e-06 1.03868e-06 1.39781e-07 9.03406e-08 2.84835e-08 5.78722e-08 6.35449e-07 4.03803e-06 1.36919e-05 2.90806e-05 4.66034e-05 6.3815e-05 7.96122e-05 9.35365e-05 0.000103511 0.000109359 0.000114103 0.00011821 0.000121487 0.000123659 0.0001245 0.000123864 0.000121654 0.00011794 0.000112792 0.000106332 9.87308e-05 9.02037e-05 8.10001e-05 7.13963e-05 6.16874e-05 5.21675e-05 4.29926e-05 3.3475e-05 1.88585e-05 6.43498e-06 1.07933e-06 1.42454e-07 9.08585e-08 2.96473e-08 6.07404e-08 6.71675e-07 4.25995e-06 1.43356e-05 3.01993e-05 4.8131e-05 6.56838e-05 8.17666e-05 9.59289e-05 0.000106039 0.000111975 0.000116777 0.000120927 0.000124231 0.000126401 0.000127208 0.00012651 0.000124221 0.000120414 0.000115168 0.000108608 0.000100905 9.22708e-05 8.29549e-05 7.32345e-05 6.3411e-05 5.37866e-05 4.45097e-05 3.47902e-05 1.9478e-05 6.66965e-06 1.11983e-06 1.44901e-07 9.12951e-08 3.08115e-08 6.36391e-08 7.08294e-07 4.48352e-06 1.49759e-05 3.1301e-05 4.96273e-05 6.75086e-05 8.38659e-05 9.82561e-05 0.000108482 0.000114507 0.000119375 0.000123565 0.000126884 0.00012905 0.00012983 0.00012908 0.000126722 0.000122837 0.000117506 0.000110858 0.000103064 9.43343e-05 8.49168e-05 7.50929e-05 6.51698e-05 5.54461e-05 4.60192e-05 3.59072e-05 2.00657e-05 6.89469e-06 1.15859e-06 1.46971e-07 9.16581e-08 3.19744e-08 6.65717e-08 7.45294e-07 4.70802e-06 1.56107e-05 3.23824e-05 5.10883e-05 6.92849e-05 8.59056e-05 0.000100514 0.00011084 0.00011695 0.000121882 0.000126115 0.000129454 0.000131612 0.000132365 0.000131573 0.00012916 0.000125209 0.000119808 0.000113086 0.000105214 9.63999e-05 8.68903e-05 7.69704e-05 6.69526e-05 5.71267e-05 4.75182e-05 3.68587e-05 2.0626e-05 7.10902e-06 1.19484e-06 1.48508e-07 9.19564e-08 3.3131e-08 6.95153e-08 7.82641e-07 4.93326e-06 1.62395e-05 3.34433e-05 5.25139e-05 7.10127e-05 8.7885e-05 0.000102702 0.00011311 0.000119301 0.000124297 0.000128574 0.000131933 0.000134091 0.00013482 0.000133989 0.000131531 0.000127529 0.000122072 0.000115289 0.000107351 9.84622e-05 8.88685e-05 7.88578e-05 6.87464e-05 5.88136e-05 4.90095e-05 3.77835e-05 2.11636e-05 7.31152e-06 1.22765e-06 1.493e-07 9.21926e-08 3.42783e-08 7.24481e-08 8.19927e-07 5.15691e-06 1.68568e-05 3.4476e-05 5.3896e-05 7.26838e-05 8.97969e-05 0.000104813 0.000115287 0.000121552 0.000126611 0.000130931 0.000134313 0.000136474 0.000137188 0.000136326 0.000133832 0.000129791 0.000124291 0.000117461 0.000109468 0.000100515 9.08455e-05 8.07493e-05 7.05469e-05 6.05057e-05 5.04965e-05 3.86806e-05 2.16773e-05 7.50023e-06 1.25613e-06 1.49204e-07 9.23717e-08 3.54168e-08 7.53793e-08 8.57313e-07 5.3798e-06 1.74646e-05 3.54841e-05 5.52383e-05 7.43021e-05 9.16444e-05 0.00010685 0.000117374 0.000123709 0.000128827 0.000133188 0.000136595 0.000138762 0.000139467 0.000138584 0.000136064 0.000131993 0.000126462 0.000119597 0.000111562 0.000102555 9.28169e-05 8.26416e-05 7.23518e-05 6.22013e-05 5.19752e-05 3.95364e-05 2.2156e-05 7.67043e-06 1.28e-06 1.48568e-07 9.24997e-08 3.65454e-08 7.83001e-08 8.94607e-07 5.60066e-06 1.80598e-05 3.64629e-05 5.65359e-05 7.58622e-05 9.34227e-05 0.000108808 0.00011937 0.000125769 0.000130943 0.000135345 0.000138777 0.000140954 0.000141656 0.000140762 0.000138225 0.000134136 0.000128585 0.000121698 0.000113631 0.000104579 9.47811e-05 8.45324e-05 7.41579e-05 6.38959e-05 5.34411e-05 4.03539e-05 2.26067e-05 7.82983e-06 1.30275e-06 1.48332e-07 9.259e-08 3.76621e-08 8.12095e-08 9.31831e-07 5.81963e-06 1.86431e-05 3.74141e-05 5.77908e-05 7.73667e-05 9.51342e-05 0.000110691 0.00012128 0.000127738 0.000132966 0.000137407 0.000140864 0.000143055 0.000143759 0.00014286 0.000140317 0.00013622 0.000130661 0.000123761 0.000115674 0.000106586 9.67368e-05 8.64204e-05 7.59641e-05 6.55891e-05 5.48982e-05 4.11551e-05 2.3054e-05 7.99538e-06 1.32943e-06 1.49216e-07 9.26503e-08 3.87641e-08 8.40997e-08 9.68856e-07 6.03593e-06 1.92127e-05 3.83356e-05 5.90012e-05 7.88139e-05 9.67778e-05 0.000112496 0.000123102 0.000129614 0.000134893 0.000139372 0.000142856 0.000145062 0.000145774 0.000144878 0.000142339 0.000138245 0.000132686 0.000125784 0.000117686 0.000108574 9.86806e-05 8.83028e-05 7.77684e-05 6.72814e-05 5.63511e-05 4.19532e-05 2.35093e-05 8.17141e-06 1.35999e-06 1.508e-07 9.26837e-08 3.98482e-08 8.69635e-08 1.00559e-06 6.24907e-06 1.97679e-05 3.92271e-05 6.01672e-05 8.02046e-05 9.83544e-05 0.000114227 0.00012484 0.000131402 0.000136728 0.000141245 0.000144756 0.000146979 0.000147703 0.000146816 0.000144288 0.000140207 0.000134661 0.000127766 0.000119666 0.000110539 0.000100611 9.0181e-05 7.95755e-05 6.89799e-05 5.78102e-05 4.27555e-05 2.39748e-05 8.35639e-06 1.39297e-06 1.52584e-07 9.2694e-08 4.09147e-08 8.98036e-08 1.04207e-06 6.45924e-06 2.03095e-05 4.00901e-05 6.12911e-05 8.15413e-05 9.98669e-05 0.000115884 0.000126494 0.000133102 0.000138473 0.000143026 0.000146564 0.000148807 0.000149546 0.000148675 0.000146165 0.000142104 0.000136579 0.000129702 0.000121612 0.000112478 0.000102526 9.20526e-05 8.13841e-05 7.06854e-05 5.92761e-05 4.35563e-05 2.44438e-05 8.54549e-06 1.42704e-06 1.54415e-07 9.26827e-08 4.1962e-08 9.26104e-08 1.07812e-06 6.66562e-06 2.0836e-05 4.09236e-05 6.23723e-05 8.28239e-05 0.000101316 0.00011747 0.000128069 0.000134717 0.00014013 0.000144719 0.000148284 0.000150548 0.000151305 0.000150453 0.000147968 0.000143936 0.00013844 0.000131588 0.000123515 0.000114384 0.000104419 9.39135e-05 8.31934e-05 7.24006e-05 6.07508e-05 4.43512e-05 2.49113e-05 8.73579e-06 1.46159e-06 1.56255e-07 9.26526e-08 4.2992e-08 9.53905e-08 1.11385e-06 6.86869e-06 2.13488e-05 4.17297e-05 6.34136e-05 8.40556e-05 0.000102704 0.000118987 0.000129564 0.000136248 0.000141701 0.000146323 0.000149914 0.0001522 0.000152979 0.000152151 0.000149696 0.000145699 0.00014024 0.000133423 0.000125376 0.00011626 0.000106293 9.57682e-05 8.50085e-05 7.41304e-05 6.22398e-05 4.5144e-05 2.538e-05 8.92869e-06 1.49691e-06 1.58124e-07 9.26104e-08 4.40034e-08 9.81335e-08 1.14907e-06 7.06756e-06 2.18463e-05 4.25068e-05 6.44137e-05 8.52359e-05 0.000104032 0.000120437 0.000130987 0.000137701 0.000143191 0.000147844 0.000151461 0.00015377 0.000154573 0.000153772 0.000151351 0.000147394 0.000141978 0.000135204 0.000127194 0.000118101 0.000108144 9.76118e-05 8.68241e-05 7.58684e-05 6.37361e-05 4.59279e-05 2.58441e-05 9.12079e-06 1.53225e-06 1.5998e-07 9.25571e-08 4.49962e-08 1.00832e-07 1.18365e-06 7.26139e-06 2.23268e-05 4.32531e-05 6.53712e-05 8.63636e-05 0.0001053 0.000121819 0.000132335 0.000139076 0.000144599 0.000149282 0.000152926 0.000155259 0.000156086 0.000155316 0.000152933 0.00014902 0.000143653 0.000136927 0.000128959 0.0001199 0.000109962 9.94363e-05 8.86341e-05 7.76107e-05 6.52362e-05 4.67001e-05 2.63019e-05 9.31171e-06 1.56765e-06 1.61837e-07 9.24979e-08 4.59721e-08 1.03487e-07 1.21757e-06 7.45028e-06 2.27911e-05 4.39701e-05 6.62883e-05 8.74415e-05 0.00010651 0.000123137 0.00013361 0.000140373 0.000145927 0.000150638 0.000154306 0.000156664 0.000157519 0.000156782 0.00015444 0.000150575 0.000145262 0.000138591 0.000130674 0.000121658 0.000111751 0.000101243 9.04415e-05 7.93681e-05 6.67597e-05 4.74757e-05 2.67655e-05 9.50738e-06 1.60422e-06 1.63759e-07 9.24426e-08 4.69335e-08 1.06092e-07 1.25066e-06 7.63339e-06 2.32376e-05 4.46565e-05 6.7164e-05 8.84695e-05 0.000107662 0.000124391 0.000134817 0.000141597 0.000147176 0.000151913 0.000155606 0.000157988 0.000158872 0.00015817 0.000155872 0.00015206 0.000146804 0.000140196 0.000132342 0.000123386 0.000113529 0.000103052 9.22513e-05 8.11185e-05 6.82726e-05 4.82483e-05 2.72296e-05 9.70467e-06 1.64129e-06 1.65711e-07 9.23972e-08 4.78841e-08 1.08666e-07 1.28324e-06 7.81242e-06 2.36705e-05 4.53181e-05 6.80051e-05 8.94543e-05 0.000108765 0.000125589 0.000135963 0.000142756 0.000148359 0.000153119 0.000156834 0.000159242 0.000160154 0.000159489 0.000157238 0.000153481 0.000148288 0.000141748 0.000133966 0.000125084 0.000115303 0.00010489 9.41047e-05 8.28306e-05 6.94793e-05 4.89803e-05 2.76764e-05 9.89769e-06 1.67799e-06 1.67656e-07 9.2362e-08 4.88255e-08 1.11205e-07 1.3152e-06 7.987e-06 2.40894e-05 4.59551e-05 6.88124e-05 9.03977e-05 0.000109819 0.000126734 0.000137052 0.000143854 0.000149477 0.000154258 0.000157995 0.000160427 0.00016137 0.000160743 0.00015854 0.00015484 0.000149714 0.000143246 0.000135542 0.000126744 0.000117049 0.000106714 9.59496e-05 8.45059e-05 7.04643e-05 4.96823e-05 2.81077e-05 1.00854e-05 1.71393e-06 1.6957e-07 9.23382e-08 4.97581e-08 1.13702e-07 1.34639e-06 8.15634e-06 2.44928e-05 4.65659e-05 6.95846e-05 9.12987e-05 0.000110825 0.000127825 0.000138086 0.000144894 0.000150535 0.000155335 0.000159092 0.000161548 0.000162522 0.000161934 0.000159781 0.00015614 0.000151081 0.000144688 0.000137066 0.000128357 0.000118756 0.000108505 9.77649e-05 8.6149e-05 7.14214e-05 5.03642e-05 2.85279e-05 1.02693e-05 1.74933e-06 1.71468e-07 9.23281e-08 5.06877e-08 1.16178e-07 1.37711e-06 8.32211e-06 2.48848e-05 4.71559e-05 7.03277e-05 9.21634e-05 0.000111788 0.000128869 0.000139067 0.000145879 0.000151535 0.000156352 0.000160128 0.000162607 0.000163611 0.000163062 0.000160959 0.000157378 0.000152387 0.000146069 0.00013853 0.000129912 0.00012041 0.00011025 9.95417e-05 8.77582e-05 7.23487e-05 5.10253e-05 2.89359e-05 1.04486e-05 1.78398e-06 1.73336e-07 9.23299e-08 5.16134e-08 1.18604e-07 1.40691e-06 8.48199e-06 2.52605e-05 4.77195e-05 7.10364e-05 9.29876e-05 0.000112706 0.000129863 0.00014 0.000146812 0.000152481 0.000157313 0.000161107 0.000163608 0.00016464 0.000164131 0.000162077 0.000158556 0.000153632 0.000147389 0.000139933 0.000131408 0.000122008 0.000111944 0.000101274 8.93286e-05 7.32459e-05 5.16659e-05 2.93322e-05 1.06237e-05 1.81802e-06 1.75182e-07 9.23445e-08 5.25415e-08 1.21024e-07 1.43645e-06 8.63962e-06 2.5628e-05 4.82672e-05 7.17218e-05 9.37817e-05 0.000113588 0.000130816 0.000140889 0.000147699 0.000153379 0.000158225 0.000162034 0.000164555 0.000165615 0.000165143 0.000163139 0.000159675 0.000154817 0.000148648 0.000141274 0.000132843 0.000123546 0.000113582 0.000102957 9.08586e-05 7.41119e-05 5.22847e-05 2.97156e-05 1.07937e-05 1.85124e-06 1.76997e-07 9.23707e-08 5.34681e-08 1.23401e-07 1.46516e-06 8.79204e-06 2.59814e-05 4.87922e-05 7.23775e-05 9.45406e-05 0.000114431 0.000131726 0.000141734 0.000148541 0.000154229 0.000159087 0.000162911 0.000165451 0.000166537 0.000166102 0.000164145 0.000160737 0.000155944 0.000149846 0.000142553 0.000134213 0.00012502 0.000115159 0.000104583 9.23379e-05 7.49453e-05 5.28815e-05 3.00864e-05 1.09589e-05 1.88366e-06 1.78779e-07 9.24112e-08 5.43955e-08 1.25759e-07 1.49343e-06 8.94118e-06 2.63247e-05 4.92994e-05 7.30089e-05 9.52695e-05 0.000115239 0.000132598 0.000142541 0.000149341 0.000155037 0.000159906 0.000163742 0.0001663 0.000167412 0.000167012 0.000165101 0.000161748 0.000157017 0.000150987 0.000143771 0.00013552 0.000126429 0.00011667 0.000106145 9.37616e-05 7.57434e-05 5.34535e-05 3.0442e-05 1.11176e-05 1.91499e-06 1.80518e-07 9.24676e-08 5.53226e-08 1.2807e-07 1.52075e-06 9.08471e-06 2.66535e-05 4.97836e-05 7.36107e-05 9.59639e-05 0.000116008 0.000133428 0.000143307 0.0001501 0.000155803 0.000160681 0.00016453 0.000167105 0.000168242 0.000167876 0.000166009 0.000162709 0.000158037 0.000152073 0.00014493 0.000136765 0.000127772 0.000118113 0.000107641 9.51278e-05 7.65068e-05 5.40017e-05 3.07834e-05 1.12705e-05 1.94522e-06 1.8221e-07 9.2537e-08 5.6251e-08 1.30347e-07 1.54738e-06 9.22386e-06 2.69701e-05 5.02476e-05 7.41855e-05 9.6626e-05 0.000116741 0.000134219 0.000144039 0.000150824 0.000156532 0.000161419 0.000165279 0.000167871 0.000169032 0.0001687 0.000166877 0.000163627 0.000159011 0.000153109 0.000146035 0.000137951 0.000129052 0.000119488 0.000109068 9.64306e-05 7.7233e-05 5.4523e-05 3.11076e-05 1.14153e-05 1.97392e-06 1.83836e-07 9.2623e-08 5.71825e-08 1.32595e-07 1.57338e-06 9.35909e-06 2.72758e-05 5.06934e-05 7.47358e-05 9.72583e-05 0.00011744 0.000134973 0.000144733 0.000151511 0.000157225 0.00016212 0.000165991 0.000168599 0.000169784 0.000169486 0.000167703 0.000164502 0.000159939 0.000154096 0.000147088 0.000139079 0.000130269 0.000120797 0.000110426 9.76726e-05 7.79275e-05 5.50237e-05 3.14207e-05 1.15559e-05 2.00177e-06 1.85418e-07 9.27206e-08 5.8114e-08 1.34803e-07 1.59861e-06 9.48968e-06 2.75692e-05 5.11187e-05 7.52589e-05 9.78582e-05 0.000118103 0.000135687 0.000145392 0.000152164 0.000157883 0.000162786 0.000166668 0.000169291 0.000170501 0.000170235 0.000168493 0.000165338 0.000160827 0.000155039 0.000148094 0.000140158 0.000131431 0.000122045 0.000111724 9.88637e-05 7.85991e-05 5.55121e-05 3.17295e-05 1.1696e-05 2.02976e-06 1.87019e-07 9.28291e-08 5.90475e-08 1.37004e-07 1.62362e-06 9.61847e-06 2.78561e-05 5.15312e-05 7.57628e-05 9.84332e-05 0.000118736 0.000136369 0.000146013 0.00015278 0.000158506 0.000163417 0.000167309 0.000169948 0.000171181 0.000170947 0.000169244 0.000166134 0.000161672 0.000155941 0.000149059 0.000141194 0.000132544 0.00012323 0.000112946 9.99833e-05 7.92393e-05 5.59792e-05 3.20252e-05 1.18306e-05 2.05671e-06 1.88569e-07 9.29422e-08 5.99767e-08 1.39153e-07 1.64768e-06 9.74181e-06 2.81293e-05 5.19222e-05 7.62389e-05 9.89753e-05 0.000119333 0.000137011 0.000146595 0.000153359 0.000159093 0.000164011 0.000167914 0.00017057 0.000171828 0.000171626 0.000169961 0.000166893 0.000162479 0.000156801 0.000149983 0.000142195 0.000133626 0.000124372 0.000114071 0.000100957 7.98308e-05 5.64132e-05 3.23016e-05 1.19571e-05 2.08223e-06 1.90048e-07 9.30557e-08 6.09068e-08 1.41291e-07 1.67147e-06 9.86309e-06 2.83957e-05 5.23004e-05 7.66959e-05 9.94924e-05 0.000119899 0.00013762 0.000147139 0.000153906 0.000159648 0.000164573 0.000168486 0.00017116 0.000172444 0.000172274 0.000170646 0.000167619 0.000163248 0.00015762 0.000150863 0.000143148 0.000134658 0.000125461 0.000115109 0.000101632 8.03732e-05 5.68138e-05 3.25574e-05 1.20744e-05 2.10602e-06 1.91433e-07 9.31655e-08 6.18375e-08 1.43383e-07 1.69434e-06 9.97918e-06 2.86494e-05 5.26588e-05 7.71273e-05 9.99789e-05 0.00012043 0.000138166 0.000147645 0.000154422 0.00016017 0.000165102 0.000169027 0.000171721 0.000173032 0.000172894 0.000171303 0.000168314 0.000163984 0.000158402 0.000151699 0.000144049 0.000135628 0.000126478 0.000116073 0.000102264 8.08824e-05 5.7191e-05 3.27989e-05 1.21854e-05 2.1286e-06 1.92753e-07 9.32755e-08 6.27737e-08 1.45462e-07 1.71684e-06 1.00928e-05 2.88958e-05 5.30041e-05 7.75399e-05 0.000100441 0.000120932 0.000138621 0.000148118 0.000154908 0.000160663 0.000165603 0.000169543 0.000172259 0.000173599 0.000173494 0.000171938 0.000168986 0.000164693 0.000159152 0.000152496 0.000144902 0.00013654 0.000127429 0.000116969 0.000102858 8.13617e-05 5.75475e-05 3.30285e-05 1.22915e-05 2.15024e-06 1.94026e-07 9.33904e-08 6.37172e-08 1.47525e-07 1.7389e-06 1.02037e-05 2.91347e-05 5.33361e-05 7.79338e-05 0.00010088 0.000121406 0.00013904 0.000148554 0.00015536 0.000161123 0.000166075 0.000170033 0.000172775 0.000174145 0.000174074 0.000172552 0.000169634 0.000165376 0.00015987 0.000153255 0.000145707 0.000137394 0.000128311 0.000117799 0.000103411 8.18089e-05 5.78808e-05 3.32436e-05 1.23911e-05 2.1706e-06 1.9523e-07 9.35069e-08 6.46648e-08 1.49566e-07 1.76048e-06 1.03117e-05 2.93656e-05 5.36543e-05 7.8308e-05 0.000101294 0.000121851 0.000139421 0.000148952 0.000155775 0.000161551 0.000166519 0.000170499 0.000173269 0.000174671 0.000174635 0.000173148 0.000170262 0.000166034 0.000160559 0.000153978 0.000146467 0.000138192 0.000129128 0.000118563 0.000103925 8.22245e-05 5.81909e-05 3.34443e-05 1.24843e-05 2.18968e-06 1.9636e-07 9.36219e-08 6.56164e-08 1.51609e-07 1.78196e-06 1.04187e-05 2.95923e-05 5.39632e-05 7.86671e-05 0.000101687 0.00012227 0.000139763 0.000149307 0.00015615 0.000161945 0.000166933 0.00017094 0.000173741 0.000175179 0.000175178 0.000173726 0.000170871 0.000166671 0.000161223 0.000154668 0.000147185 0.000138938 0.000129884 0.000119265 0.0001044 8.26079e-05 5.84771e-05 3.36297e-05 1.25706e-05 2.20738e-06 1.97409e-07 9.37293e-08 6.65649e-08 1.53604e-07 1.80256e-06 1.05209e-05 2.98074e-05 5.4254e-05 7.90024e-05 0.000102051 0.000122655 0.000140055 0.00014961 0.000156477 0.000162296 0.000167312 0.000171351 0.000174189 0.000175665 0.000175701 0.000174284 0.00017146 0.000167286 0.000161859 0.000155325 0.000147863 0.000139631 0.000130579 0.000119906 0.000104834 8.29572e-05 5.8737e-05 3.37976e-05 1.26487e-05 2.22342e-06 1.98355e-07 9.38222e-08 6.75127e-08 1.55544e-07 1.82211e-06 1.06174e-05 3.00088e-05 5.45232e-05 7.93096e-05 0.000102382 0.000123004 0.000140293 0.000149857 0.000156753 0.000162605 0.000167655 0.000171733 0.000174612 0.000176129 0.000176206 0.000174825 0.00017203 0.00016788 0.000162473 0.000155954 0.000148504 0.000140279 0.000131218 0.00012049 0.000105233 8.32774e-05 5.89748e-05 3.39512e-05 1.27202e-05 2.23814e-06 1.99217e-07 9.38995e-08 6.84628e-08 1.57437e-07 1.84073e-06 1.07088e-05 3.01976e-05 5.47717e-05 7.9589e-05 0.000102679 0.000123313 0.000140481 0.000150053 0.000156984 0.000162875 0.000167967 0.00017209 0.000175015 0.000176579 0.000176698 0.000175354 0.00017259 0.000168463 0.000163072 0.000156564 0.000149118 0.00014089 0.00013181 0.000121023 0.000105597 8.35685e-05 5.91908e-05 3.40911e-05 1.27857e-05 2.25164e-06 1.99996e-07 9.39612e-08 6.94158e-08 1.59282e-07 1.8584e-06 1.0795e-05 3.03739e-05 5.49997e-05 7.98404e-05 0.000102942 0.000123583 0.000140612 0.000150191 0.000157164 0.000163102 0.000168246 0.000172421 0.000175398 0.000177011 0.000177175 0.00017587 0.000173136 0.000169032 0.000163656 0.000157155 0.000149708 0.000141469 0.000132362 0.000121512 0.000105925 8.38287e-05 5.93822e-05 3.42142e-05 1.28432e-05 2.2635e-06 2.00664e-07 9.40007e-08 7.0374e-08 1.61087e-07 1.87522e-06 1.08766e-05 3.05385e-05 5.52082e-05 8.00644e-05 0.000103171 0.000123813 0.000140678 0.000150264 0.000157286 0.000163284 0.000168487 0.000172722 0.000175757 0.000177424 0.000177637 0.000176372 0.000173671 0.000169589 0.000164227 0.000157729 0.000150275 0.000142017 0.000132875 0.000121958 0.000106222 8.40615e-05 5.95518e-05 3.43226e-05 1.28937e-05 2.27393e-06 2.01233e-07 9.40185e-08 7.13401e-08 1.62871e-07 1.89149e-06 1.09549e-05 3.06942e-05 5.54e-05 8.02636e-05 0.000103367 0.000124005 0.000140685 0.000150276 0.000157356 0.000163423 0.000168696 0.000172998 0.000176097 0.000177823 0.000178087 0.000176865 0.000174197 0.00017014 0.000164791 0.000158295 0.000150831 0.000142547 0.000133362 0.000122372 0.000106493 8.42705e-05 5.97025e-05 3.44186e-05 1.29386e-05 2.28316e-06 2.01715e-07 9.40148e-08 7.23111e-08 1.64643e-07 1.90734e-06 1.10306e-05 3.08423e-05 5.55772e-05 8.04402e-05 0.000103532 0.000124158 0.000140626 0.000150219 0.000157367 0.000163515 0.00016887 0.000173248 0.000176418 0.000178206 0.000178525 0.000177348 0.000174716 0.000170683 0.000165348 0.000158854 0.000151376 0.000143064 0.00013383 0.000122762 0.000106739 8.44571e-05 5.98346e-05 3.45014e-05 1.29769e-05 2.29102e-06 2.02097e-07 9.39883e-08 7.32794e-08 1.66328e-07 1.92158e-06 1.1098e-05 3.0972e-05 5.57266e-05 8.05808e-05 0.000103655 0.000124262 0.000140487 0.00015008 0.000157306 0.00016355 0.000168998 0.000173464 0.000176711 0.000178568 0.000178945 0.000177817 0.000175222 0.000171216 0.000165897 0.000159404 0.000151912 0.000143567 0.00013428 0.000123131 0.000106964 8.46245e-05 5.99506e-05 3.45729e-05 1.301e-05 2.29777e-06 2.02396e-07 9.3937e-08 7.42523e-08 1.67987e-07 1.93512e-06 1.11612e-05 3.10909e-05 5.58569e-05 8.06934e-05 0.000103741 0.000124322 0.000140277 0.000149867 0.000157181 0.000163534 0.00016909 0.000173652 0.000176985 0.000178915 0.000179355 0.000178278 0.000175723 0.000171746 0.000166442 0.000159952 0.000152446 0.000144068 0.000134725 0.00012349 0.000107172 8.47752e-05 6.00518e-05 3.46335e-05 1.30375e-05 2.30334e-06 2.02601e-07 9.38568e-08 7.5222e-08 1.69551e-07 1.94686e-06 1.12154e-05 3.11904e-05 5.59582e-05 8.07684e-05 0.000103781 0.00012433 0.00013998 0.000149565 0.00015698 0.000163459 0.000169135 0.000173806 0.000177232 0.000179242 0.000179749 0.000178726 0.000176213 0.000172267 0.000166982 0.000160495 0.000152975 0.000144564 0.000135166 0.000123841 0.000107363 8.49098e-05 6.01387e-05 3.46834e-05 1.30598e-05 2.30782e-06 2.0272e-07 9.37475e-08 7.61956e-08 1.71051e-07 1.95725e-06 1.12626e-05 3.1274e-05 5.60343e-05 8.08092e-05 0.000103779 0.000124288 0.000139595 0.000149173 0.000156702 0.000163323 0.000169136 0.000173927 0.000177455 0.000179551 0.00018013 0.000179165 0.000176697 0.000172783 0.000167518 0.000161036 0.000153505 0.000145064 0.000135611 0.000124196 0.000107546 8.50345e-05 6.02159e-05 3.47255e-05 1.30781e-05 2.31145e-06 2.02764e-07 9.36083e-08 7.71755e-08 1.72467e-07 1.96591e-06 1.13014e-05 3.13397e-05 5.60831e-05 8.08136e-05 0.000103732 0.000124193 0.00013912 0.000148688 0.000156345 0.000163126 0.000169092 0.000174016 0.000177656 0.000179844 0.000180498 0.000179594 0.000177173 0.000173294 0.00016805 0.000161575 0.000154035 0.000145565 0.00013606 0.000124554 0.00010772 8.51516e-05 6.02862e-05 3.47623e-05 1.30938e-05 2.3145e-06 2.02754e-07 9.34441e-08 7.8169e-08 1.73829e-07 1.97329e-06 1.13337e-05 3.13907e-05 5.6108e-05 8.07844e-05 0.000103642 0.000124046 0.000138549 0.000148106 0.000155907 0.000162869 0.000169004 0.000174072 0.000177833 0.00018012 0.000180853 0.000180014 0.000177643 0.0001738 0.000168579 0.000162114 0.000154566 0.00014607 0.000136518 0.000124921 0.000107891 8.52654e-05 6.03532e-05 3.47964e-05 1.3108e-05 2.31729e-06 2.02707e-07 9.32565e-08 7.91793e-08 1.75137e-07 1.97937e-06 1.13597e-05 3.14276e-05 5.61097e-05 8.07223e-05 0.000103509 0.000123846 0.000137878 0.000147422 0.000155386 0.000162548 0.000168871 0.000174098 0.000177987 0.000180378 0.000181195 0.000180422 0.000178104 0.000174299 0.000169103 0.000162647 0.000155093 0.000146576 0.000136978 0.00012529 0.000108053 8.53709e-05 6.04129e-05 3.48247e-05 1.31192e-05 2.31941e-06 2.02604e-07 9.30477e-08 8.02057e-08 1.76372e-07 1.98378e-06 1.13771e-05 3.14453e-05 5.60811e-05 8.06188e-05 0.000103325 0.000123586 0.000137098 0.000146632 0.000154779 0.000162166 0.000168692 0.000174088 0.000178113 0.000180612 0.000181518 0.000180814 0.00017855 0.000174786 0.000169616 0.000163172 0.000155615 0.000147078 0.00013744 0.000125664 0.000108209 8.54714e-05 6.04688e-05 3.48505e-05 1.31295e-05 2.32138e-06 2.02477e-07 9.28201e-08 8.12592e-08 1.77609e-07 1.98765e-06 1.13909e-05 3.14526e-05 5.60315e-05 8.04821e-05 0.000103095 0.00012327 0.000136198 0.000145733 0.000154094 0.000161729 0.000168473 0.000174045 0.000178209 0.000180821 0.000181815 0.000181184 0.000178976 0.000175252 0.000170109 0.000163677 0.00015612 0.000147567 0.000137891 0.000126029 0.000108347 8.55556e-05 6.05103e-05 3.48647e-05 1.31335e-05 2.322e-06 2.02255e-07 9.2567e-08 8.23299e-08 1.78758e-07 1.98952e-06 1.1394e-05 3.14343e-05 5.5941e-05 8.02894e-05 0.000102796 0.000122878 0.000135159 0.000144728 0.000153341 0.000161243 0.000168212 0.000173962 0.000178269 0.000180995 0.000182084 0.000181528 0.000179378 0.000175697 0.000170582 0.000164164 0.000156607 0.000148041 0.000138334 0.00012639 0.000108473 8.56317e-05 6.05467e-05 3.48765e-05 1.31368e-05 2.32258e-06 2.02023e-07 9.22981e-08 8.34394e-08 1.79979e-07 1.99187e-06 1.13979e-05 3.14118e-05 5.58314e-05 8.00544e-05 0.000102422 0.000121783 0.000133958 0.000143724 0.000152593 0.000160733 0.000167908 0.000173832 0.000178284 0.000181131 0.000182318 0.00018184 0.00017975 0.000176113 0.000171026 0.000164623 0.000157068 0.000148493 0.000138758 0.000126735 0.000108575 8.56865e-05 6.05654e-05 3.48752e-05 1.31335e-05 2.32178e-06 2.01697e-07 9.20072e-08 8.45784e-08 1.81149e-07 1.99281e-06 1.13958e-05 3.13766e-05 5.57008e-05 7.97879e-05 0.000102004 0.000120571 0.000132661 0.000142619 0.000151752 0.000160149 0.000167547 0.000173657 0.000178262 0.000181232 0.00018252 0.000182122 0.000180093 0.000176499 0.00017144 0.000165051 0.000157498 0.000148915 0.000139156 0.000127058 0.000108651 8.57199e-05 6.05677e-05 3.48627e-05 1.31249e-05 2.31994e-06 2.01303e-07 9.16953e-08 8.57713e-08 1.82386e-07 1.99458e-06 1.13983e-05 3.13469e-05 5.55674e-05 7.95039e-05 0.000101551 0.000119252 0.000131249 0.000141421 0.000150841 0.000159512 0.000167144 0.000173448 0.000178209 0.000181306 0.000182695 0.000182376 0.000180406 0.000176854 0.000171821 0.000165445 0.000157895 0.000149307 0.00013953 0.000127358 0.000108695 8.57273e-05 6.055e-05 3.48368e-05 1.31101e-05 2.31686e-06 2.00827e-07 9.13641e-08 8.70228e-08 1.836e-07 1.99498e-06 1.13948e-05 3.1305e-05 5.54118e-05 7.91847e-05 0.000101047 0.000117825 0.000129723 0.000140119 0.000149845 0.000158807 0.000166687 0.000173191 0.000178114 0.00018134 0.00018283 0.00018259 0.000180678 0.000177166 0.000172157 0.000165793 0.000158246 0.000149655 0.000139862 0.000127622 0.000108698 8.57008e-05 6.05059e-05 3.47928e-05 1.30867e-05 2.31212e-06 2.00248e-07 9.10102e-08 8.83372e-08 1.84871e-07 1.9954e-06 1.13913e-05 3.12591e-05 5.52418e-05 7.88358e-05 0.000100497 0.000116295 0.00012809 0.000138729 0.000148781 0.000158048 0.000166184 0.000172894 0.00017798 0.000181335 0.000182927 0.000182764 0.000180907 0.000177432 0.000172445 0.00016609 0.000158546 0.000149953 0.000140148 0.000127842 0.000108655 8.56351e-05 6.04312e-05 3.47283e-05 1.30536e-05 2.30542e-06 1.99546e-07 9.06337e-08 8.97195e-08 1.86108e-07 1.99432e-06 1.13811e-05 3.1198e-05 5.5044e-05 7.8445e-05 9.98911e-05 0.000114639 0.000126345 0.000137256 0.000147654 0.000157235 0.000165628 0.000172543 0.000177792 0.000181276 0.000182969 0.000182881 0.000181079 0.000177638 0.00017267 0.000166324 0.000158782 0.000150189 0.000140377 0.000128008 0.000108558 8.55251e-05 6.03227e-05 3.46414e-05 1.30103e-05 2.29676e-06 1.98724e-07 9.02322e-08 9.11605e-08 1.87304e-07 1.99149e-06 1.13608e-05 3.11109e-05 5.48011e-05 7.79904e-05 9.92128e-05 0.000112849 0.000124512 0.00013573 0.000146476 0.00015636 0.000165 0.000172115 0.000177526 0.00018114 0.000182935 0.000182924 0.000181175 0.000177768 0.000172819 0.00016648 0.000158939 0.000150347 0.000140528 0.000128102 0.000108394 8.53572e-05 6.01681e-05 3.45226e-05 1.29517e-05 2.28501e-06 1.97708e-07 8.97948e-08 9.26699e-08 1.88498e-07 1.98766e-06 1.13345e-05 3.10013e-05 5.45048e-05 7.74321e-05 9.74873e-05 0.000110913 0.000122764 0.000134259 0.000145282 0.000155417 0.000164281 0.00017159 0.000177164 0.000180912 0.000182811 0.000182877 0.000181182 0.000177809 0.000172876 0.000166544 0.000159004 0.000150414 0.000140593 0.000128118 0.000108165 8.5136e-05 5.9973e-05 3.43776e-05 1.28813e-05 2.27098e-06 1.9655e-07 8.93276e-08 9.42526e-08 1.89694e-07 1.98318e-06 1.1307e-05 3.08893e-05 5.42006e-05 7.68572e-05 9.57526e-05 0.000108949 0.000120937 0.000132685 0.000143982 0.000154378 0.000163472 0.000170979 0.000176718 0.000180599 0.000182603 0.000182746 0.000181104 0.000177766 0.000172854 0.00016653 0.000158992 0.0001504 0.000140573 0.00012805 0.000107865 8.48565e-05 5.97336e-05 3.42035e-05 1.27976e-05 2.25428e-06 1.95224e-07 8.88303e-08 9.5913e-08 1.90859e-07 1.97716e-06 1.12723e-05 3.07595e-05 5.38641e-05 7.62342e-05 9.3939e-05 0.000106908 0.000119045 0.000131052 0.00014262 0.000153266 0.000162582 0.000170279 0.000176177 0.000180188 0.000182291 0.000182509 0.000180919 0.000177615 0.000172728 0.000166422 0.000158896 0.000150302 0.000140425 0.000127736 0.000107473 8.45034e-05 5.94395e-05 3.39941e-05 1.2698e-05 2.23452e-06 1.93713e-07 8.83026e-08 9.76451e-08 1.91967e-07 1.96935e-06 1.12296e-05 3.06104e-05 5.34945e-05 7.55653e-05 9.20854e-05 0.00010483 0.000117107 0.00012936 0.000141186 0.000152072 0.000161601 0.000169482 0.000175534 0.000179669 0.00018187 0.000182158 0.000180618 0.000177349 0.000172486 0.0001662 0.000158689 0.000150094 0.000140155 0.000127215 0.000106989 8.4075e-05 5.90882e-05 3.37474e-05 1.25813e-05 2.21134e-06 1.91988e-07 8.77386e-08 9.94521e-08 1.93033e-07 1.95978e-06 1.11779e-05 3.04396e-05 5.30877e-05 7.48454e-05 9.01706e-05 0.000102707 0.000115132 0.000127625 0.000139694 0.000150802 0.000160528 0.00016858 0.000174779 0.000179032 0.000181325 0.000181681 0.000180188 0.000176951 0.000172111 0.000165843 0.000158346 0.00014975 0.000139754 0.000126589 0.000106413 8.35704e-05 5.86789e-05 3.34628e-05 1.24476e-05 2.18486e-06 1.90058e-07 8.71354e-08 1.01301e-07 1.93932e-07 1.9465e-06 1.11061e-05 3.02226e-05 5.26134e-05 7.40503e-05 8.81875e-05 0.000100558 0.000113141 0.000125853 0.000138133 0.000149435 0.000159338 0.000167551 0.000173888 0.000178256 0.000180637 0.000181057 0.000179609 0.000176403 0.000171584 0.000165333 0.00015785 0.000149254 0.000139211 0.000125854 0.000105741 8.29851e-05 5.82075e-05 3.31374e-05 1.22953e-05 2.15468e-06 1.87888e-07 8.64889e-08 1.032e-07 1.94764e-07 1.93104e-06 1.10195e-05 2.99609e-05 5.20543e-05 7.28159e-05 8.6135e-05 9.84626e-05 0.000111187 0.000124061 0.0001365 0.000147961 0.000158022 0.000166385 0.000172856 0.000177335 0.000179802 0.000180285 0.00017888 0.000175704 0.000170906 0.000164671 0.000157201 0.00014861 0.000138531 0.000125014 0.00010498 8.23284e-05 5.76833e-05 3.27789e-05 1.21288e-05 2.12184e-06 1.85547e-07 8.58023e-08 1.05139e-07 1.95485e-07 1.91312e-06 1.09196e-05 2.96631e-05 5.14237e-05 7.09994e-05 8.40632e-05 9.64165e-05 0.000109226 0.000122207 0.000134773 0.000146376 0.000156584 0.000165087 0.000171682 0.000176265 0.000178812 0.000179352 0.000177988 0.000174839 0.000170062 0.000163844 0.00015639 0.000147809 0.000137709 0.000124066 0.000104127 8.15963e-05 5.71028e-05 3.23846e-05 1.19467e-05 2.08596e-06 1.83006e-07 8.5078e-08 1.07125e-07 1.96117e-07 1.89308e-06 1.08094e-05 2.93414e-05 5.0757e-05 6.91727e-05 8.1974e-05 9.43389e-05 0.000107227 0.000120307 0.000132988 0.000144716 0.000155052 0.000163677 0.00017038 0.000175052 0.000177667 0.000178258 0.000176928 0.000173804 0.000169045 0.000162844 0.000155407 0.000146841 0.000136736 0.000123017 0.00010319 8.07992e-05 5.64761e-05 3.19626e-05 1.17534e-05 2.04807e-06 1.80332e-07 8.43183e-08 1.09129e-07 1.96604e-07 1.87021e-06 1.06833e-05 2.89822e-05 5.00359e-05 6.73187e-05 7.98631e-05 9.22313e-05 0.000105182 0.000118345 0.000131123 0.00014296 0.000153408 0.000162139 0.000168936 0.000173683 0.000176356 0.000176988 0.000175689 0.000172587 0.000167846 0.000161662 0.000154247 0.000145702 0.000135609 0.000121856 0.000102157 7.9925e-05 5.5792e-05 3.15042e-05 1.15442e-05 2.00712e-06 1.77454e-07 8.35191e-08 1.11139e-07 1.96896e-07 1.84393e-06 1.05395e-05 2.85826e-05 4.92562e-05 6.54317e-05 7.77259e-05 9.00919e-05 0.000103096 0.000116329 0.000129189 0.000141117 0.000151658 0.000160476 0.000167346 0.000172152 0.00017487 0.000175533 0.000174257 0.000171173 0.000166448 0.000160283 0.00015289 0.000144374 0.000134315 0.000120593 0.000101042 7.89877e-05 5.50644e-05 3.10208e-05 1.13256e-05 1.96459e-06 1.74468e-07 8.26842e-08 1.13143e-07 1.97067e-07 1.81566e-06 1.03838e-05 2.81522e-05 4.84297e-05 6.3527e-05 7.55779e-05 8.79361e-05 0.000100981 0.000114269 0.000127193 0.000139192 0.000149805 0.000158689 0.000165614 0.000170463 0.000173211 0.000173896 0.000172637 0.000169568 0.000164859 0.000158714 0.000151347 0.000142867 0.00013286 0.000119212 9.98275e-05 7.79689e-05 5.42754e-05 3.04981e-05 1.10899e-05 1.91876e-06 1.71262e-07 8.18052e-08 1.15118e-07 1.97025e-07 1.78416e-06 1.02106e-05 2.76811e-05 4.75449e-05 6.15932e-05 7.34139e-05 8.57626e-05 9.88381e-05 0.000112162 0.000125128 0.000137174 0.000147834 0.000156759 0.000163719 0.000168592 0.000171359 0.000172056 0.000170808 0.000167752 0.000163059 0.000156934 0.000149597 0.000141163 0.000131233 0.000117734 9.85364e-05 7.68945e-05 5.34501e-05 2.99562e-05 1.0848e-05 1.8721e-06 1.67992e-07 8.08913e-08 1.1705e-07 1.96862e-07 1.75107e-06 1.0026e-05 2.7179e-05 4.66145e-05 5.96458e-05 7.12598e-05 8.36026e-05 9.66951e-05 0.000110031 0.000123011 0.000135075 0.000145753 0.000154694 0.000161664 0.000166544 0.000169315 0.000170017 0.000168777 0.000165734 0.00016106 0.000154962 0.000147662 0.000139282 0.000129447 0.000116141 9.71472e-05 7.57405e-05 5.25655e-05 2.93769e-05 1.05902e-05 1.82244e-06 1.64521e-07 7.99375e-08 1.18927e-07 1.96654e-07 1.71724e-06 9.83097e-06 2.6641e-05 4.56359e-05 5.76842e-05 6.91357e-05 8.14788e-05 9.45668e-05 0.000107883 0.000120841 0.000132889 0.000143555 0.000152483 0.000159437 0.000164302 0.000167062 0.00016776 0.000166525 0.000163495 0.000158844 0.000152778 0.000145524 0.000137212 0.0001275 0.00011446 9.5692e-05 7.45409e-05 5.16532e-05 2.87847e-05 1.03296e-05 1.77265e-06 1.61027e-07 7.89512e-08 1.20723e-07 1.9663e-07 1.68436e-06 9.62509e-06 2.60394e-05 4.41431e-05 5.57236e-05 6.71177e-05 7.94307e-05 9.24624e-05 0.000105715 0.00011862 0.000130623 0.000141248 0.000150134 0.000157047 0.000161876 0.00016461 0.000165296 0.000164063 0.00016105 0.000156428 0.000150403 0.000143203 0.00013497 0.000125397 0.000112668 9.41437e-05 7.32661e-05 5.06856e-05 2.81585e-05 1.00552e-05 1.72035e-06 1.57366e-07 7.7935e-08 1.22459e-07 1.97857e-07 1.65834e-06 9.43278e-06 2.54303e-05 4.24462e-05 5.38057e-05 6.51474e-05 7.74031e-05 9.03623e-05 0.000103541 0.000116375 0.000128309 0.000138862 0.000147673 0.000154513 0.000159277 0.000161964 0.000162627 0.000161395 0.000158402 0.000153815 0.000147841 0.000140707 0.000132569 0.000123163 0.000110807 9.25466e-05 7.19607e-05 4.97022e-05 2.75274e-05 9.78144e-06 1.66862e-06 1.53723e-07 7.68899e-08 1.24111e-07 2.01668e-07 1.63562e-06 9.22939e-06 2.47843e-05 4.07613e-05 5.19096e-05 6.32043e-05 7.54102e-05 8.82959e-05 0.000101386 0.000114124 0.000125954 0.000136395 0.000145094 0.00015183 0.000156507 0.00015913 0.000159757 0.000158522 0.000155553 0.000151012 0.0001451 0.000138044 0.000130011 0.000120787 0.000108846 9.08644e-05 7.05872e-05 4.86695e-05 2.68672e-05 9.49677e-06 1.61501e-06 1.49965e-07 7.5832e-08 1.25649e-07 2.05189e-07 1.60649e-06 9.00319e-06 2.41076e-05 3.91214e-05 5.00649e-05 6.13079e-05 7.34615e-05 8.62699e-05 9.92604e-05 0.00011188 0.000123574 0.000133866 0.000142413 0.000149011 0.000153578 0.000156123 0.000156705 0.000155463 0.000152521 0.000148034 0.000142197 0.000135236 0.000127329 0.000118315 0.00010684 8.91553e-05 6.9201e-05 4.76337e-05 2.62093e-05 9.21571e-06 1.56251e-06 1.46253e-07 7.47441e-08 1.27066e-07 2.06494e-07 1.5696e-06 8.76088e-06 2.34121e-05 3.75066e-05 4.82541e-05 5.94526e-05 7.15667e-05 8.43064e-05 9.71902e-05 0.000109666 0.000121185 0.000131284 0.000139637 0.000146061 0.00015049 0.000152943 0.000153477 0.000152228 0.000149318 0.000144895 0.000139144 0.000132286 0.00012451 0.000115716 0.000104748 8.73753e-05 6.77596e-05 4.65605e-05 2.55319e-05 8.92872e-06 1.50923e-06 1.42511e-07 7.36696e-08 1.28355e-07 2.06382e-07 1.52947e-06 8.51221e-06 2.27074e-05 3.59357e-05 4.64924e-05 5.76518e-05 6.97414e-05 8.24255e-05 9.51993e-05 0.000107506 0.000118808 0.000128665 0.000136778 0.000142991 0.000147256 0.000149602 0.000150086 0.000148837 0.000145964 0.000141614 0.000135969 0.000129247 0.00012164 0.000113072 0.000102442 8.55904e-05 6.6326e-05 4.54992e-05 2.48651e-05 8.64843e-06 1.45753e-06 1.38829e-07 7.25584e-08 1.29531e-07 2.05464e-07 1.48758e-06 8.2602e-06 2.19984e-05 3.44023e-05 4.47739e-05 5.59054e-05 6.79956e-05 8.06496e-05 9.33188e-05 0.000105432 0.000116469 0.000126028 0.000133849 0.000139809 0.000143884 0.000146106 0.000146535 0.000145293 0.000142475 0.000138209 0.000132681 0.000126108 0.000118666 0.000110289 9.99423e-05 8.37325e-05 6.48398e-05 4.44063e-05 2.41856e-05 8.36639e-06 1.40599e-06 1.35201e-07 7.149e-08 1.30585e-07 2.0405e-07 1.44481e-06 8.00655e-06 2.12881e-05 3.2916e-05 4.31093e-05 5.42251e-05 6.63459e-05 7.90039e-05 9.15827e-05 0.00010348 0.000114201 0.000123398 0.00013087 0.000136538 0.000140396 0.000142485 0.000142857 0.00014163 0.000138886 0.000134737 0.000129344 0.000122924 0.000115666 0.000107498 9.74583e-05 8.18966e-05 6.33776e-05 4.33327e-05 2.35176e-05 8.08999e-06 1.35561e-06 1.31576e-07 7.03611e-08 1.31524e-07 2.0233e-07 1.40194e-06 7.75388e-06 2.05814e-05 3.14747e-05 4.14975e-05 5.26141e-05 6.48039e-05 7.75145e-05 9.00321e-05 0.0001017 0.000112048 0.000120809 0.000127865 0.00013319 0.000136803 0.000138743 0.000139054 0.000137843 0.000135178 0.000131155 0.000125921 0.000119664 0.000112561 0.000104571 9.48313e-05 8.00007e-05 6.18754e-05 4.22403e-05 2.28482e-05 7.81763e-06 1.30665e-06 1.28118e-07 6.93188e-08 1.32335e-07 2.00338e-07 1.35846e-06 7.49927e-06 1.98741e-05 3.00788e-05 3.99404e-05 5.10756e-05 6.33761e-05 7.61958e-05 8.8694e-05 0.000100129 0.000110051 0.000118297 0.000124864 0.000129796 0.000133136 0.000134919 0.00013517 0.000133984 0.00013141 0.000127531 0.00012248 0.000116429 0.000109533 0.000101748 9.23073e-05 7.81559e-05 6.04143e-05 4.11723e-05 2.21875e-05 7.54781e-06 1.25803e-06 1.24571e-07 6.81707e-08 1.33018e-07 1.98134e-07 1.31472e-06 7.2442e-06 1.91687e-05 2.87236e-05 3.84362e-05 4.96131e-05 6.20732e-05 7.50694e-05 8.76047e-05 9.88163e-05 0.000108264 0.000115913 0.000121906 0.000126382 0.000129412 0.000131019 0.000131206 0.000130045 0.000127564 0.000123824 0.000118945 0.000113083 0.00010638 9.88086e-05 8.96846e-05 7.62628e-05 5.89297e-05 4.01062e-05 2.15441e-05 7.29123e-06 1.21257e-06 1.21407e-07 6.7172e-08 1.33561e-07 1.95633e-07 1.26907e-06 6.98065e-06 1.84516e-05 2.7398e-05 3.69759e-05 4.82196e-05 6.089e-05 7.41339e-05 8.67719e-05 9.77859e-05 0.000106727 0.000113702 0.000119036 0.00012299 0.000125671 0.000127088 0.000127211 0.000126087 0.000123715 0.000120138 0.000115457 0.000109813 0.000103342 9.60236e-05 8.72352e-05 7.44412e-05 5.74928e-05 3.90594e-05 2.08979e-05 7.02904e-06 1.16579e-06 1.17994e-07 6.60017e-08 1.33966e-07 1.92898e-07 1.22227e-06 6.71134e-06 1.77274e-05 2.60983e-05 3.55607e-05 4.69027e-05 5.98387e-05 7.34056e-05 8.62183e-05 9.70719e-05 0.00010549 0.000111725 0.000116315 0.000119668 0.000121943 0.000123133 0.000123172 0.000122071 0.000119799 0.000116374 0.000111875 0.000106429 0.000100157 9.30524e-05 8.45873e-05 7.25563e-05 5.60269e-05 3.80191e-05 2.02822e-05 6.79019e-06 1.12456e-06 1.15101e-07 6.50581e-08 1.34206e-07 1.89768e-07 1.17141e-06 6.41934e-06 1.69653e-05 2.48055e-05 3.41758e-05 4.56402e-05 5.88855e-05 7.28419e-05 8.59023e-05 9.66488e-05 0.000104555 0.000110017 0.000113798 0.000116481 0.000118296 0.000119227 0.000119167 0.000118092 0.000115934 0.00011268 0.000108391 0.000103175 9.71454e-05 9.02985e-05 8.21659e-05 7.07476e-05 5.45991e-05 3.69776e-05 1.96428e-05 6.53657e-06 1.08027e-06 1.11821e-07 6.38833e-08 1.34312e-07 1.86506e-07 1.12004e-06 6.11385e-06 1.59333e-05 2.35397e-05 3.2863e-05 4.44615e-05 5.80518e-05 7.24604e-05 8.58368e-05 9.65284e-05 0.000103945 0.000108618 0.000111541 0.000113486 0.000114771 0.000115384 0.000115179 0.000114094 0.000112021 0.000108914 0.000104806 9.97841e-05 9.39483e-05 8.73092e-05 7.94973e-05 6.88632e-05 5.31421e-05 3.59505e-05 1.90404e-05 6.3076e-06 1.04179e-06 1.09177e-07 6.30294e-08 1.34277e-07 1.83037e-07 1.06751e-06 5.80223e-06 1.48973e-05 2.2286e-05 3.15417e-05 4.32756e-05 5.72465e-05 7.21667e-05 8.59234e-05 9.66208e-05 0.000103608 0.00010754 0.000109612 0.00011078 0.000111475 0.000111715 0.000111328 0.000110215 0.000108226 0.000105277 0.000101374 9.65827e-05 9.09901e-05 8.46098e-05 7.71223e-05 6.70583e-05 5.1713e-05 3.49039e-05 1.83974e-05 6.05512e-06 9.98162e-07 1.05913e-07 6.18248e-08 1.34176e-07 1.79615e-07 1.01706e-06 5.49959e-06 1.38949e-05 2.10604e-05 3.02536e-05 4.21535e-05 5.65531e-05 7.20167e-05 8.61494e-05 9.68525e-05 0.000103465 0.000106749 0.000108028 0.000108405 0.000108442 0.000108224 0.000107582 0.000106386 0.000104435 0.000101603 9.78604e-05 9.32475e-05 8.78343e-05 8.16464e-05 7.44646e-05 6.51762e-05 5.02685e-05 3.3896e-05 1.78143e-05 5.83778e-06 9.62277e-07 1.03465e-07 6.10272e-08 1.33969e-07 1.7595e-07 9.63922e-07 5.18233e-06 1.29051e-05 1.98245e-05 2.89324e-05 4.09941e-05 5.58283e-05 7.18044e-05 8.62308e-05 9.69149e-05 0.000103302 0.000106176 0.00010683 0.000106455 0.000105775 0.00010501 0.000104038 0.000102717 0.000100789 9.80791e-05 9.45195e-05 9.01259e-05 8.49508e-05 7.9019e-05 7.21482e-05 6.33377e-05 4.88206e-05 3.28324e-05 1.71633e-05 5.58579e-06 9.19065e-07 1.00154e-07 5.97616e-08 1.33739e-07 1.72495e-07 9.1481e-07 4.88391e-06 1.19611e-05 1.86288e-05 2.76574e-05 3.99277e-05 5.52624e-05 7.16787e-05 8.5777e-05 9.47344e-05 0.000101843 0.000105896 0.000106249 0.000105047 0.000103492 0.000102035 0.000100622 9.91034e-05 9.71532e-05 9.45229e-05 9.10992e-05 8.68688e-05 8.18698e-05 7.61271e-05 6.94835e-05 6.10306e-05 4.73756e-05 3.18447e-05 1.66037e-05 5.38211e-06 8.86027e-07 9.78905e-08 5.90081e-08 1.33438e-07 1.68726e-07 8.61071e-07 4.56399e-06 1.10176e-05 1.74085e-05 2.63333e-05 3.88239e-05 5.46751e-05 7.1167e-05 8.26627e-05 9.14176e-05 9.83488e-05 0.000103591 0.000106091 0.000104399 0.000101764 9.93727e-05 9.73596e-05 9.55675e-05 9.35806e-05 9.10536e-05 8.78068e-05 8.3794e-05 7.9034e-05 7.354e-05 6.71548e-05 5.90038e-05 4.58383e-05 3.07155e-05 1.59194e-05 5.12268e-06 8.41912e-07 9.43947e-08 5.76343e-08 1.33174e-07 1.65252e-07 8.11729e-07 4.26682e-06 1.01269e-05 1.62418e-05 2.50797e-05 3.78514e-05 5.41161e-05 6.91833e-05 7.94485e-05 8.79195e-05 9.45901e-05 9.96303e-05 0.000103262 0.000103803 0.000100555 9.70844e-05 9.4265e-05 9.20686e-05 8.99792e-05 8.75182e-05 8.44111e-05 8.05643e-05 7.59758e-05 7.06524e-05 6.44602e-05 5.66524e-05 4.44101e-05 2.97611e-05 1.53922e-05 4.93553e-06 8.11755e-07 9.224e-08 5.6898e-08 1.3291e-07 1.61401e-07 7.55499e-07 3.93853e-06 9.21843e-06 1.5018e-05 2.37127e-05 3.67333e-05 5.33392e-05 6.59584e-05 7.59111e-05 8.4062e-05 9.04418e-05 9.52573e-05 9.87556e-05 0.000101161 9.95102e-05 9.52393e-05 9.14275e-05 8.86577e-05 8.64046e-05 8.40331e-05 8.11288e-05 7.75166e-05 7.31613e-05 6.8059e-05 6.20804e-05 5.45137e-05 4.2652e-05 2.84573e-05 1.46074e-05 4.64477e-06 7.63032e-07 8.8477e-08 5.52928e-08 1.3269e-07 1.57857e-07 7.04182e-07 3.6353e-06 8.363e-06 1.38401e-05 2.23726e-05 3.55671e-05 5.16501e-05 6.27456e-05 7.23246e-05 8.00836e-05 8.61005e-05 9.06261e-05 9.39364e-05 9.62713e-05 9.78165e-05 9.36482e-05 8.87719e-05 8.52174e-05 8.26639e-05 8.03205e-05 7.75924e-05 7.41945e-05 7.00463e-05 6.5134e-05 5.93533e-05 5.21224e-05 4.11552e-05 2.74664e-05 1.40645e-05 4.45379e-06 7.3333e-07 8.70733e-08 5.4458e-08 1.32424e-07 1.53726e-07 6.43716e-07 3.29128e-06 7.47112e-06 1.25656e-05 2.08247e-05 3.40036e-05 4.84964e-05 5.92266e-05 6.84201e-05 7.57826e-05 8.14322e-05 8.56609e-05 8.87717e-05 9.10263e-05 9.26167e-05 9.2363e-05 8.68502e-05 8.21521e-05 7.90092e-05 7.66121e-05 7.41143e-05 7.10255e-05 6.71637e-05 6.2494e-05 5.69124e-05 4.98343e-05 3.89386e-05 2.57838e-05 1.30583e-05 4.09964e-06 6.79408e-07 8.39531e-08 5.23204e-08 1.32054e-07 1.49813e-07 5.89358e-07 2.98119e-06 6.64346e-06 1.13252e-05 1.92115e-05 3.22916e-05 4.53246e-05 5.56663e-05 6.44758e-05 7.14499e-05 7.67323e-05 8.06483e-05 8.3525e-05 8.56531e-05 8.72394e-05 8.83361e-05 8.50591e-05 7.93559e-05 7.51828e-05 7.23761e-05 6.99394e-05 6.71306e-05 6.35949e-05 5.92192e-05 5.38943e-05 4.71504e-05 3.70821e-05 2.45281e-05 1.23696e-05 3.86392e-06 6.43979e-07 8.21424e-08 5.11104e-08 1.31426e-07 1.45065e-07 5.24961e-07 2.62498e-06 5.78243e-06 9.94881e-06 1.71569e-05 2.96351e-05 4.1416e-05 5.13636e-05 5.99056e-05 6.66692e-05 7.17654e-05 7.55142e-05 7.82571e-05 8.03163e-05 8.19234e-05 8.31096e-05 8.36902e-05 7.79499e-05 7.24195e-05 6.88274e-05 6.62386e-05 6.3614e-05 6.0375e-05 5.63004e-05 5.12333e-05 4.46475e-05 3.44801e-05 2.2529e-05 1.11882e-05 3.46056e-06 5.82056e-07 7.70876e-08 4.82858e-08 1.30223e-07 1.40544e-07 4.75425e-07 2.34816e-06 5.07302e-06 8.7181e-06 1.50415e-05 2.6369e-05 3.72019e-05 4.65621e-05 5.48101e-05 6.14637e-05 6.65275e-05 7.02625e-05 7.29844e-05 7.50116e-05 7.6632e-05 7.78814e-05 7.85468e-05 7.62823e-05 6.95097e-05 6.45794e-05 6.14581e-05 5.88646e-05 5.58843e-05 5.21119e-05 4.73446e-05 4.11785e-05 3.20532e-05 2.08088e-05 1.02075e-05 3.12053e-06 5.29519e-07 7.36914e-08 4.67514e-08 1.28187e-07 1.3478e-07 4.16902e-07 2.03283e-06 4.41345e-06 7.51584e-06 1.2648e-05 2.17781e-05 3.18636e-05 4.02094e-05 4.80358e-05 5.47376e-05 6.0087e-05 6.41616e-05 6.71854e-05 6.94426e-05 7.12769e-05 7.27736e-05 7.36979e-05 7.38713e-05 6.9305e-05 6.301e-05 5.86984e-05 5.57055e-05 5.28205e-05 4.93209e-05 4.48769e-05 3.90707e-05 3.03392e-05 1.9576e-05 9.54285e-06 2.92248e-06 5.03634e-07 7.06293e-08 4.4277e-08 1.24667e-07 1.29553e-07 3.90577e-07 1.88877e-06 4.12077e-06 6.90729e-06 1.10952e-05 1.79144e-05 2.73714e-05 3.40728e-05 4.08186e-05 4.71464e-05 5.2639e-05 5.70831e-05 6.04959e-05 6.31443e-05 6.53241e-05 6.70633e-05 6.82483e-05 6.86559e-05 6.6693e-05 5.97538e-05 5.42569e-05 5.05556e-05 4.75867e-05 4.43683e-05 4.02946e-05 3.49582e-05 2.73954e-05 1.73968e-05 8.26689e-06 2.48131e-06 4.34621e-07 6.61361e-08 4.29676e-08 1.19579e-07 1.22906e-07 3.53779e-07 1.68455e-06 3.94371e-06 6.59082e-06 1.01019e-05 1.47618e-05 2.12484e-05 2.84755e-05 3.35155e-05 3.87668e-05 4.4e-05 4.88271e-05 5.28939e-05 5.60999e-05 5.87595e-05 6.10502e-05 6.28039e-05 6.37901e-05 6.39525e-05 6.16488e-05 5.50563e-05 4.95853e-05 4.55853e-05 4.22124e-05 3.86275e-05 3.42184e-05 2.82873e-05 1.84265e-05 9.05816e-06 2.81273e-06 4.94973e-07 6.89936e-08 4.24269e-08 1.13468e-07 1.19038e-07 3.66781e-07 1.72397e-06 4.37304e-06 7.30806e-06 1.08138e-05 1.45312e-05 1.85666e-05 2.3603e-05 3.01548e-05 3.44464e-05 3.84927e-05 4.26297e-05 4.65807e-05 4.9984e-05 5.2662e-05 5.48648e-05 5.66622e-05 5.78224e-05 5.81318e-05 5.74885e-05 5.27435e-05 4.70092e-05 4.22716e-05 3.82784e-05 3.44194e-05 3.01459e-05 2.48546e-05 1.59563e-05 7.47164e-06 2.20829e-06 3.89327e-07 6.14592e-08 4.12614e-08 1.0843e-07 1.17035e-07 3.76896e-07 1.71668e-06 4.8368e-06 8.20589e-06 1.16426e-05 1.46151e-05 1.71765e-05 1.97803e-05 2.29649e-05 2.72895e-05 3.31148e-05 3.91248e-05 4.23854e-05 4.55506e-05 4.8434e-05 5.08262e-05 5.2622e-05 5.37752e-05 5.43647e-05 5.41746e-05 5.30786e-05 4.94115e-05 4.32429e-05 3.81679e-05 3.40174e-05 3.00381e-05 2.55309e-05 1.88905e-05 9.84878e-06 3.15296e-06 5.38173e-07 6.92706e-08 4.27576e-08 1.06276e-07 1.2217e-07 4.60883e-07 2.07603e-06 5.57276e-06 1.00045e-05 1.42009e-05 1.72933e-05 1.90319e-05 2.0729e-05 2.2907e-05 2.59479e-05 3.02311e-05 3.59581e-05 4.23595e-05 4.49605e-05 4.72079e-05 4.90478e-05 5.04193e-05 5.12327e-05 5.15053e-05 5.12019e-05 5.01248e-05 4.82575e-05 4.36233e-05 3.81351e-05 3.31662e-05 2.84413e-05 2.34054e-05 1.5351e-05 7.32944e-06 2.18916e-06 3.75363e-07 5.75203e-08 3.9891e-08 1.07103e-07 1.33053e-07 6.12243e-07 2.73076e-06 6.50401e-06 1.00112e-05 1.28075e-05 1.55573e-05 1.85989e-05 1.99485e-05 2.1467e-05 2.3703e-05 2.67775e-05 3.06537e-05 3.55676e-05 4.11089e-05 4.29809e-05 4.37927e-05 4.39752e-05 4.3625e-05 4.28488e-05 4.17534e-05 4.0402e-05 3.8807e-05 3.69222e-05 3.46476e-05 3.18143e-05 2.81493e-05 2.32544e-05 1.6724e-05 8.98238e-06 2.79425e-06 4.39942e-07 5.78906e-08 3.74728e-08 1.05222e-07 1.46681e-07 8.71927e-07 3.63484e-06 6.94767e-06 8.86536e-06 1.02123e-05 1.17321e-05 1.3697e-05 1.6173e-05 1.91204e-05 2.24497e-05 2.60407e-05 2.9761e-05 3.34675e-05 3.70107e-05 4.02309e-05 4.29956e-05 4.52111e-05 4.67506e-05 4.74928e-05 4.73709e-05 4.62929e-05 4.41608e-05 4.0871e-05 3.63195e-05 3.04388e-05 2.33348e-05 1.55614e-05 8.37659e-06 3.32516e-06 8.87648e-07 1.54439e-07 3.1259e-08 2.2757e-08 6.80959e-08 1.71767e-07 1.82337e-06 5.39861e-06 6.36144e-06 6.74606e-06 7.21746e-06 7.72599e-06 8.28355e-06 8.91566e-06 9.63206e-06 1.04247e-05 1.12698e-05 1.21301e-05 1.29569e-05 1.36941e-05 1.42817e-05 1.46595e-05 1.47737e-05 1.45677e-05 1.41115e-05 1.33665e-05 1.23406e-05 1.10518e-05 9.5367e-06 7.84584e-06 6.06473e-06 4.30972e-06 2.72278e-06 1.46081e-06 6.28477e-07 2.0272e-07 4.72248e-08 1.12719e-08 7.52895e-09 3.10541e-08 1.76032e-06 2.15837e-06 2.46858e-06 2.76821e-06 2.99483e-06 3.15489e-06 3.26272e-06 3.32847e-06 3.36082e-06 3.36683e-06 3.35195e-06 3.3201e-06 3.27396e-06 3.21516e-06 3.14454e-06 3.06234e-06 2.96823e-06 2.86117e-06 2.73795e-06 2.60421e-06 2.45364e-06 2.28623e-06 2.09898e-06 1.891e-06 1.66196e-06 1.41443e-06 1.15492e-06 8.95541e-07 6.53955e-07 4.49234e-07 2.93078e-07 1.83274e-07 1.05805e-07 1.84684e-09 7.54979e-11 5.85014e-09 1.07876e-08 1.65708e-08 2.33683e-08 3.14431e-08 4.10455e-08 5.23418e-08 6.53801e-08 8.00863e-08 9.62774e-08 1.13687e-07 1.31995e-07 1.50849e-07 1.69886e-07 1.88743e-07 2.07061e-07 2.24475e-07 2.40606e-07 2.55057e-07 2.67406e-07 2.77255e-07 2.84217e-07 2.87941e-07 2.88152e-07 2.84687e-07 2.77545e-07 2.66924e-07 2.53268e-07 2.37243e-07 2.19617e-07 2.00927e-07 1.79134e-07 1.42303e-07 3.47955e-09 1.13942e-10 1.18952e-10 2.88447e-10 1.41125e-09 5.44569e-09 1.5623e-08 3.60773e-08 7.11516e-08 1.24405e-07 1.97457e-07 2.89026e-07 3.94541e-07 5.06515e-07 6.15649e-07 7.12422e-07 7.88792e-07 8.39587e-07 8.63182e-07 8.61386e-07 8.38133e-07 7.99464e-07 7.50899e-07 6.97067e-07 6.41285e-07 5.85622e-07 5.31236e-07 4.78725e-07 4.27851e-07 3.75353e-07 3.0781e-07 2.0299e-07 8.64633e-08 2.45156e-08 1.03098e-08 9.80758e-09 2.8573e-10 3.25751e-10 1.08435e-09 5.52935e-09 2.01392e-08 5.43336e-08 1.18628e-07 2.21932e-07 3.68162e-07 5.53664e-07 7.67221e-07 9.92738e-07 1.21304e-06 1.41314e-06 1.58215e-06 1.71393e-06 1.80663e-06 1.86043e-06 1.8782e-06 1.86354e-06 1.82214e-06 1.75879e-06 1.67722e-06 1.5799e-06 1.46809e-06 1.34225e-06 1.20179e-06 1.04102e-06 8.37498e-07 5.5786e-07 2.57589e-07 7.84969e-08 2.2891e-08 1.52304e-08 1.643e-08 8.5828e-10 9.51277e-10 2.85524e-09 1.43367e-08 5.36822e-08 1.51458e-07 3.48268e-07 6.83817e-07 1.1765e-06 1.80676e-06 2.5191e-06 3.2403e-06 3.90014e-06 4.44487e-06 4.84235e-06 5.08152e-06 5.16896e-06 5.12398e-06 4.96943e-06 4.73429e-06 4.44723e-06 4.132e-06 3.80611e-06 3.48006e-06 3.15727e-06 2.83347e-06 2.49172e-06 2.08846e-06 1.55193e-06 8.96222e-07 3.58229e-07 1.00217e-07 2.88933e-08 2.00154e-08 2.14971e-08 1.8893e-09 2.09128e-09 6.75727e-09 3.62251e-08 1.42639e-07 4.21383e-07 9.97844e-07 1.95827e-06 3.2628e-06 4.74806e-06 6.21851e-06 7.52256e-06 8.57071e-06 9.32275e-06 9.77129e-06 9.93071e-06 9.83111e-06 9.51449e-06 9.02898e-06 8.42639e-06 7.75537e-06 7.0573e-06 6.36277e-06 5.68924e-06 5.03812e-06 4.38896e-06 3.69053e-06 2.86767e-06 1.90505e-06 9.87394e-07 3.76153e-07 1.06172e-07 3.24461e-08 2.33115e-08 2.48839e-08 2.77146e-09 3.14668e-09 1.18858e-08 6.78137e-08 2.70783e-07 7.90753e-07 1.79612e-06 3.30177e-06 5.1246e-06 7.0169e-06 8.78699e-06 1.03216e-05 1.15639e-05 1.24903e-05 1.30952e-05 1.33855e-05 1.33795e-05 1.31063e-05 1.26044e-05 1.19195e-05 1.11004e-05 1.01935e-05 9.23609e-06 8.24964e-06 7.23322e-06 6.15625e-06 4.96196e-06 3.36848e-06 1.95689e-06 1.04103e-06 4.21396e-07 1.19338e-07 3.61872e-08 2.58205e-08 2.74548e-08 3.3653e-09 3.85788e-09 1.53639e-08 8.85482e-08 3.50675e-07 1.0095e-06 2.25424e-06 4.07782e-06 6.25119e-06 8.4878e-06 1.05726e-05 1.23832e-05 1.37687e-05 1.49947e-05 1.58201e-05 1.62883e-05 1.64369e-05 1.62889e-05 1.58733e-05 1.52256e-05 1.43847e-05 1.33885e-05 1.22666e-05 1.09069e-05 9.24302e-06 7.41968e-06 5.46441e-06 3.59717e-06 2.13063e-06 1.16568e-06 4.96155e-07 1.39031e-07 4.05475e-08 2.85222e-08 3.02743e-08 3.93762e-09 4.61289e-09 2.005e-08 1.18463e-07 4.72394e-07 1.35829e-06 2.99507e-06 5.30455e-06 7.95189e-06 1.05954e-05 1.30115e-05 1.49032e-05 1.65454e-05 1.80635e-05 1.90945e-05 1.96762e-05 1.99072e-05 1.98119e-05 1.9418e-05 1.87554e-05 1.78535e-05 1.67379e-05 1.54235e-05 1.35582e-05 1.10702e-05 8.52187e-06 6.09971e-06 4.00977e-06 2.42757e-06 1.36628e-06 6.08795e-07 1.68005e-07 4.56702e-08 3.14005e-08 3.32267e-08 4.36837e-09 5.20644e-09 2.39678e-08 1.42949e-07 5.67629e-07 1.61673e-06 3.51876e-06 6.15326e-06 9.1395e-06 1.21153e-05 1.48513e-05 1.69584e-05 1.88837e-05 2.07336e-05 2.20921e-05 2.29147e-05 2.33569e-05 2.34355e-05 2.31687e-05 2.25759e-05 2.16714e-05 2.0463e-05 1.89475e-05 1.66233e-05 1.32793e-05 9.94327e-06 6.97928e-06 4.58075e-06 2.81563e-06 1.62021e-06 7.57827e-07 2.07838e-07 5.29831e-08 3.44911e-08 3.62891e-08 4.82935e-09 5.87496e-09 2.87257e-08 1.73382e-07 6.89384e-07 1.95652e-06 4.21726e-06 7.28279e-06 1.06977e-05 1.40682e-05 1.71604e-05 1.96961e-05 2.19712e-05 2.40282e-05 2.54603e-05 2.64752e-05 2.7088e-05 2.73118e-05 2.7158e-05 2.66352e-05 2.57396e-05 2.44558e-05 2.27547e-05 1.99918e-05 1.58423e-05 1.17209e-05 8.15836e-06 5.36196e-06 3.33524e-06 1.95461e-06 9.54232e-07 2.6161e-07 6.2435e-08 3.77394e-08 3.93779e-08 5.32203e-09 6.62442e-09 3.44625e-08 2.10312e-07 8.35925e-07 2.35612e-06 5.01161e-06 8.52816e-06 1.238e-05 1.61524e-05 1.96126e-05 2.25579e-05 2.51619e-05 2.73975e-05 2.90758e-05 3.03071e-05 3.11045e-05 3.14763e-05 3.14281e-05 3.09606e-05 3.00541e-05 2.86737e-05 2.67672e-05 2.3296e-05 1.8453e-05 1.36511e-05 9.51551e-06 6.28924e-06 3.95374e-06 2.35033e-06 1.18706e-06 3.2584e-07 7.33212e-08 4.10248e-08 4.24019e-08 5.81827e-09 7.40101e-09 4.06139e-08 2.49896e-07 9.91928e-07 2.77574e-06 5.83148e-06 9.79815e-06 1.40881e-05 1.827e-05 2.21114e-05 2.55087e-05 2.84256e-05 3.08523e-05 3.27923e-05 3.42564e-05 3.52539e-05 3.57851e-05 3.58487e-05 3.5438e-05 3.45175e-05 3.30343e-05 3.09178e-05 2.66935e-05 2.122e-05 1.57933e-05 1.1092e-05 7.4024e-06 4.70977e-06 2.83921e-06 1.47582e-06 4.06766e-07 8.65345e-08 4.43663e-08 4.53386e-08 6.35747e-09 8.28824e-09 4.81188e-08 2.98663e-07 1.18422e-06 3.2866e-06 6.80658e-06 1.12722e-05 1.603e-05 2.06363e-05 2.4863e-05 2.86095e-05 3.18404e-05 3.45487e-05 3.67396e-05 3.84218e-05 3.96e-05 4.02658e-05 4.04107e-05 4.00231e-05 3.90525e-05 3.74318e-05 3.50774e-05 2.99942e-05 2.39588e-05 1.7993e-05 1.27755e-05 8.63133e-06 5.56501e-06 3.40167e-06 1.80885e-06 5.01297e-07 1.01615e-07 4.77295e-08 4.81782e-08 6.91607e-09 9.23727e-09 5.64353e-08 3.52671e-07 1.39513e-06 3.83569e-06 7.8305e-06 1.27956e-05 1.80222e-05 2.30583e-05 2.76789e-05 3.17859e-05 3.53448e-05 3.83488e-05 4.08021e-05 4.271e-05 4.40708e-05 4.48646e-05 4.50758e-05 4.46909e-05 4.36461e-05 4.18646e-05 3.88396e-05 3.32455e-05 2.67245e-05 2.02723e-05 1.45745e-05 9.98438e-06 6.53193e-06 4.05278e-06 2.20038e-06 6.14914e-07 1.19445e-07 5.11584e-08 5.09202e-08 7.49301e-09 1.02606e-08 6.58347e-08 4.13948e-07 1.63313e-06 4.44494e-06 8.94225e-06 1.44223e-05 2.01264e-05 2.55983e-05 3.06167e-05 3.50864e-05 3.89735e-05 4.22709e-05 4.49812e-05 4.71063e-05 4.86367e-05 4.95391e-05 4.97912e-05 4.93808e-05 4.82325e-05 4.62625e-05 4.2399e-05 3.63632e-05 2.944e-05 2.25632e-05 1.64293e-05 1.14161e-05 7.58015e-06 4.77403e-06 2.63774e-06 7.44291e-07 1.39581e-07 5.46372e-08 5.35719e-08 8.10322e-09 1.13809e-08 7.64875e-08 4.83453e-07 1.90094e-06 5.11752e-06 1.01433e-05 1.61523e-05 2.23424e-05 2.82554e-05 3.36748e-05 3.85084e-05 4.27231e-05 4.63118e-05 4.92749e-05 5.16098e-05 5.3298e-05 5.42913e-05 5.45609e-05 5.40997e-05 5.28232e-05 5.06439e-05 4.58556e-05 3.93999e-05 3.21324e-05 2.48852e-05 1.83525e-05 1.29348e-05 8.71719e-06 5.57363e-06 3.1296e-06 8.93171e-07 1.62668e-07 5.8206e-08 5.61397e-08 8.72449e-09 1.256e-08 8.80834e-08 5.59192e-07 2.19024e-06 5.83008e-06 1.1391e-05 1.79291e-05 2.46066e-05 3.09647e-05 3.67903e-05 4.19924e-05 4.65378e-05 5.0418e-05 5.36315e-05 5.61706e-05 5.80063e-05 5.90745e-05 5.93407e-05 5.88053e-05 5.73784e-05 5.44466e-05 4.9163e-05 4.23571e-05 3.47749e-05 2.71998e-05 2.03086e-05 1.45123e-05 9.92275e-06 6.43798e-06 3.66483e-06 1.05843e-06 1.88284e-07 6.18488e-08 5.86284e-08 9.38163e-09 1.38391e-08 1.01032e-07 6.43845e-07 2.51085e-06 6.60485e-06 1.27216e-05 1.97985e-05 2.69677e-05 3.37717e-05 4.00012e-05 4.55671e-05 5.04366e-05 5.46006e-05 5.80557e-05 6.07889e-05 6.27587e-05 6.38852e-05 6.41284e-05 6.34979e-05 6.19011e-05 5.80308e-05 5.23376e-05 4.52511e-05 3.73999e-05 2.95305e-05 2.23087e-05 1.61533e-05 1.12001e-05 7.37086e-06 4.24793e-06 1.2425e-06 2.16893e-07 6.55956e-08 6.10425e-08 1.0053e-08 1.51643e-08 1.14845e-07 7.3441e-07 2.85113e-06 7.41236e-06 1.40864e-05 2.17005e-05 2.93619e-05 3.66142e-05 4.32502e-05 4.91812e-05 5.43733e-05 5.88169e-05 6.25074e-05 6.54264e-05 6.75188e-05 6.86898e-05 6.88938e-05 6.81482e-05 6.57272e-05 6.14332e-05 5.54334e-05 4.80858e-05 3.99881e-05 3.18552e-05 2.43318e-05 1.78389e-05 1.25334e-05 8.3602e-06 4.8676e-06 1.44183e-06 2.47998e-07 6.94205e-08 6.33808e-08 1.07587e-08 1.65465e-08 1.29719e-07 8.32428e-07 3.21678e-06 8.26506e-06 1.5505e-05 2.36581e-05 3.18107e-05 3.95078e-05 4.65445e-05 5.28322e-05 5.83363e-05 6.30456e-05 6.69135e-05 6.98945e-05 7.21342e-05 7.34539e-05 7.35469e-05 7.22473e-05 6.9352e-05 6.47337e-05 5.84628e-05 5.08791e-05 4.25593e-05 3.41885e-05 2.63859e-05 1.95728e-05 1.39248e-05 9.40766e-06 5.52556e-06 1.65766e-06 2.8186e-07 7.3339e-08 6.56437e-08 1.14819e-08 1.78969e-08 1.4502e-07 9.34799e-07 3.59792e-06 9.14239e-06 1.69492e-05 2.56408e-05 3.42849e-05 4.24265e-05 4.98611e-05 5.64999e-05 6.23065e-05 6.72671e-05 7.12127e-05 7.419e-05 7.63765e-05 7.7603e-05 7.75467e-05 7.60321e-05 7.28638e-05 6.79586e-05 6.14275e-05 5.36215e-05 4.50995e-05 3.65137e-05 2.84555e-05 2.13411e-05 1.53626e-05 1.05039e-05 6.21196e-06 1.88659e-06 3.17983e-07 7.73215e-08 6.78269e-08 1.22382e-08 1.91469e-08 1.60665e-07 1.04261e-06 4.00038e-06 1.00579e-05 1.8439e-05 2.76709e-05 3.68043e-05 4.53848e-05 5.32087e-05 6.01868e-05 6.62811e-05 7.14753e-05 7.54709e-05 7.8421e-05 8.05263e-05 8.1622e-05 8.13933e-05 7.96583e-05 7.62376e-05 7.1079e-05 6.43214e-05 5.63218e-05 4.76209e-05 3.884e-05 3.05458e-05 2.31452e-05 1.68468e-05 1.16488e-05 6.92683e-06 2.12905e-06 3.56498e-07 8.13749e-08 6.99303e-08 1.30169e-08 2.02351e-08 1.76682e-07 1.15702e-06 4.42787e-06 1.10167e-05 1.99799e-05 2.97538e-05 3.9375e-05 4.83893e-05 5.6594e-05 6.38993e-05 7.02657e-05 7.5674e-05 7.97081e-05 8.26019e-05 8.45934e-05 8.55293e-05 8.51073e-05 8.31482e-05 7.949e-05 7.4102e-05 6.71431e-05 5.89729e-05 5.01138e-05 4.11573e-05 3.2646e-05 2.49744e-05 1.83678e-05 1.28341e-05 7.66098e-06 2.38162e-06 3.96885e-07 8.54668e-08 7.19481e-08 1.38336e-08 2.1663e-08 1.95743e-07 1.28793e-06 4.9019e-06 1.20477e-05 2.16002e-05 3.19129e-05 4.20137e-05 5.14513e-05 6.0024e-05 6.76414e-05 7.42623e-05 7.98643e-05 8.38866e-05 8.67081e-05 8.85768e-05 8.93428e-05 8.87187e-05 8.65339e-05 8.26469e-05 7.70476e-05 6.99081e-05 6.15866e-05 5.25859e-05 4.34684e-05 3.47527e-05 2.68263e-05 1.9923e-05 1.40574e-05 8.41217e-06 2.64366e-06 4.39091e-07 8.95899e-08 7.38747e-08 1.46816e-08 2.35537e-08 2.18179e-07 1.43455e-06 5.41486e-06 1.31314e-05 2.32728e-05 3.41196e-05 4.46944e-05 5.45483e-05 6.34804e-05 7.13995e-05 7.82626e-05 8.40441e-05 8.80185e-05 9.07511e-05 9.24855e-05 9.30727e-05 9.22412e-05 8.9832e-05 8.57247e-05 7.99283e-05 7.26238e-05 6.41653e-05 5.50355e-05 4.57688e-05 3.68609e-05 2.86933e-05 2.15046e-05 1.53114e-05 9.17233e-06 2.91183e-06 4.82584e-07 9.37079e-08 7.57019e-08 1.55671e-08 2.55158e-08 2.41514e-07 1.58701e-06 5.94346e-06 1.42339e-05 2.4962e-05 3.63408e-05 4.73871e-05 5.76532e-05 6.69385e-05 7.51506e-05 8.22446e-05 8.81922e-05 9.2081e-05 9.47132e-05 9.63068e-05 9.67126e-05 9.56754e-05 9.30491e-05 8.87326e-05 8.2753e-05 7.52984e-05 6.67157e-05 5.74672e-05 4.80609e-05 3.89714e-05 3.05742e-05 2.31105e-05 1.65938e-05 9.93903e-06 3.18516e-06 5.2723e-07 9.78074e-08 7.74233e-08 1.64833e-08 2.75855e-08 2.66415e-07 1.74921e-06 6.49738e-06 1.53675e-05 2.66779e-05 3.85818e-05 5.00925e-05 6.07633e-05 7.03932e-05 7.88885e-05 8.62021e-05 9.22852e-05 9.60735e-05 9.85958e-05 0.000100039 0.000100261 9.90223e-05 9.61883e-05 9.16758e-05 8.55273e-05 7.79359e-05 6.92391e-05 5.98798e-05 5.03417e-05 4.10797e-05 3.24636e-05 2.4735e-05 1.78987e-05 1.0706e-05 3.46084e-06 5.72555e-07 1.01855e-07 7.90313e-08 1.74354e-08 2.97825e-08 2.93125e-07 1.92238e-06 7.08034e-06 1.65405e-05 2.84336e-05 4.08581e-05 5.28251e-05 6.38903e-05 7.38529e-05 8.26186e-05 9.01388e-05 9.62488e-05 9.99725e-05 0.00010238 0.000103673 0.000103718 0.000102286 9.92574e-05 9.45633e-05 8.82595e-05 8.05427e-05 7.17409e-05 6.22777e-05 5.26138e-05 4.31864e-05 3.43596e-05 2.63766e-05 1.92245e-05 1.14716e-05 3.73809e-06 6.18431e-07 1.05838e-07 8.05225e-08 1.8416e-08 3.20733e-08 3.21135e-07 2.10318e-06 7.68017e-06 1.77287e-05 3.0197e-05 4.3135e-05 5.55518e-05 6.70041e-05 7.72912e-05 8.63175e-05 9.4033e-05 0.000100136 0.000103778 0.000106065 0.000107209 0.000107083 0.00010547 0.00010226 9.73986e-05 9.09529e-05 8.31212e-05 7.42221e-05 6.46601e-05 5.48753e-05 4.52886e-05 3.62588e-05 2.80319e-05 2.05676e-05 1.22317e-05 4.01489e-06 6.64506e-07 1.09731e-07 8.18921e-08 1.9428e-08 3.44757e-08 3.50736e-07 2.29327e-06 8.30129e-06 1.89392e-05 3.19754e-05 4.54172e-05 5.82732e-05 7.01018e-05 8.07022e-05 8.99783e-05 9.78785e-05 0.000103929 0.000107473 0.000109637 0.000110638 0.000110352 0.000108572 0.000105197 0.000100185 9.3612e-05 8.56764e-05 7.66871e-05 6.70306e-05 5.71283e-05 4.73873e-05 3.81618e-05 2.96995e-05 2.19258e-05 1.29849e-05 4.29061e-06 7.10653e-07 1.13526e-07 8.31414e-08 2.04648e-08 3.69769e-08 3.81775e-07 2.49155e-06 8.93955e-06 2.01649e-05 3.37615e-05 4.76987e-05 6.09847e-05 7.31795e-05 8.40826e-05 9.35974e-05 0.000101671 0.00010762 0.000111049 0.000113091 0.000113959 0.000113526 0.000111594 0.000108071 0.000102925 9.62375e-05 8.82077e-05 7.91342e-05 6.93877e-05 5.93718e-05 4.9482e-05 4.00687e-05 3.13795e-05 2.32991e-05 1.37301e-05 4.56455e-06 7.56758e-07 1.17212e-07 8.42682e-08 2.15276e-08 3.95748e-08 4.14188e-07 2.69743e-06 9.5922e-06 2.14001e-05 3.55463e-05 4.99674e-05 6.36722e-05 7.62221e-05 8.74169e-05 9.71599e-05 0.000105398 0.000111196 0.000114498 0.000116422 0.000117169 0.000116606 0.00011454 0.000110885 0.000105621 9.88329e-05 9.07183e-05 8.15666e-05 7.17334e-05 6.16067e-05 5.15719e-05 4.19772e-05 3.30686e-05 2.46835e-05 1.44652e-05 4.83565e-06 8.0258e-07 1.20774e-07 8.52779e-08 2.2612e-08 4.22678e-08 4.48016e-07 2.91103e-06 1.02591e-05 2.26447e-05 3.73307e-05 5.22246e-05 6.63364e-05 7.92291e-05 9.07034e-05 0.000100663 0.000109055 0.000114651 0.000117815 0.000119629 0.000120268 0.000119591 0.000117407 0.000113639 0.000108272 0.000101396 9.32066e-05 8.3983e-05 7.40672e-05 6.38334e-05 5.36589e-05 4.38908e-05 3.47716e-05 2.60838e-05 1.51923e-05 5.10486e-06 8.48331e-07 1.24222e-07 8.6171e-08 2.37173e-08 4.50585e-08 4.83307e-07 3.13249e-06 1.09399e-05 2.38975e-05 3.91122e-05 5.44664e-05 6.89723e-05 8.2195e-05 9.39364e-05 0.000104101 0.000112636 0.000117979 0.000120998 0.000122713 0.000123261 0.000122487 0.000120202 0.000116337 0.000110883 0.000103933 9.56772e-05 8.63868e-05 7.63913e-05 6.6053e-05 5.57424e-05 4.58063e-05 3.64828e-05 2.74932e-05 1.5908e-05 5.37049e-06 8.93605e-07 1.27529e-07 8.6954e-08 2.48354e-08 4.79287e-08 5.19891e-07 3.36117e-06 1.16334e-05 2.51573e-05 4.08888e-05 5.66899e-05 7.15758e-05 8.51146e-05 9.71098e-05 0.000107467 0.000116136 0.000121178 0.000124049 0.000125679 0.00012615 0.000125293 0.000122922 0.000118976 0.00011345 0.000106437 9.81231e-05 8.87708e-05 7.8699e-05 6.82603e-05 5.782e-05 4.77253e-05 3.82075e-05 2.8918e-05 1.66146e-05 5.63358e-06 9.38649e-07 1.30706e-07 8.76292e-08 2.59692e-08 5.08732e-08 5.57587e-07 3.59549e-06 1.23344e-05 2.64157e-05 4.26514e-05 5.88855e-05 7.41371e-05 8.7978e-05 0.000100214 0.000110752 0.000119545 0.000124229 0.000126969 0.000128531 0.000128937 0.000128008 0.000125568 0.000121556 0.000115973 0.00010891 0.000100547 9.11403e-05 8.09976e-05 7.04629e-05 5.98976e-05 4.96504e-05 3.99456e-05 3.03572e-05 1.73141e-05 5.8952e-06 9.83579e-07 1.33744e-07 8.82035e-08 2.71174e-08 5.38757e-08 5.96102e-07 3.83339e-06 1.30363e-05 2.76624e-05 4.43877e-05 6.10408e-05 7.66449e-05 9.07747e-05 0.000103238 0.000113943 0.000122623 0.000127131 0.000129782 0.000131277 0.000131623 0.000130637 0.000128143 0.000124082 0.000118455 0.000111352 0.000102948 9.34914e-05 8.3281e-05 7.2654e-05 6.19687e-05 5.15751e-05 4.16875e-05 3.17978e-05 1.79957e-05 6.14967e-06 1.02727e-06 1.36566e-07 8.86783e-08 2.82789e-08 5.69326e-08 6.35358e-07 4.07413e-06 1.37365e-05 2.88924e-05 4.60908e-05 6.31477e-05 7.90901e-05 9.34961e-05 0.000106175 0.000117038 0.000125502 0.000129881 0.000132455 0.000133896 0.000134199 0.000133173 0.000130641 0.000126545 0.000120887 0.000113754 0.000105317 9.58155e-05 8.55406e-05 7.48237e-05 6.40241e-05 5.34983e-05 4.34515e-05 3.32736e-05 1.86769e-05 6.40518e-06 1.07109e-06 1.39199e-07 8.90589e-08 2.94463e-08 6.00175e-08 6.74983e-07 4.3156e-06 1.44299e-05 3.00987e-05 4.77526e-05 6.51974e-05 8.14642e-05 9.61339e-05 0.000109018 0.00012003 0.000128234 0.000132477 0.000134983 0.000136386 0.000136661 0.00013561 0.000133055 0.000128939 0.000123262 0.00011611 0.00010765 9.81132e-05 8.77867e-05 7.69971e-05 6.61013e-05 5.54507e-05 4.52201e-05 3.46853e-05 1.93382e-05 6.65485e-06 1.11388e-06 1.41513e-07 8.93555e-08 3.06166e-08 6.31253e-08 7.14922e-07 4.5574e-06 1.51154e-05 3.12797e-05 4.9371e-05 6.7187e-05 8.37633e-05 9.86836e-05 0.000111762 0.000122912 0.000130812 0.000134917 0.000137367 0.000138748 0.000139012 0.000137952 0.000135388 0.000131264 0.000125581 0.000118422 0.00010995 0.000100391 9.00262e-05 7.91806e-05 6.82086e-05 5.74445e-05 4.69763e-05 3.57509e-05 1.9957e-05 6.8902e-06 1.15385e-06 1.43303e-07 8.9578e-08 3.1784e-08 6.62368e-08 7.54918e-07 4.79802e-06 1.57893e-05 3.24309e-05 5.09414e-05 6.91123e-05 8.59835e-05 0.000101142 0.000114403 0.000125683 0.000133242 0.000137207 0.000139614 0.00014099 0.000141259 0.000140203 0.000137644 0.000133526 0.000127848 0.000120694 0.00011222 0.000102649 9.22573e-05 8.13658e-05 7.0325e-05 5.94465e-05 4.87232e-05 3.67849e-05 2.0549e-05 7.11246e-06 1.1903e-06 1.44332e-07 8.97339e-08 3.29468e-08 6.9347e-08 7.94897e-07 5.037e-06 1.64506e-05 3.35511e-05 5.24626e-05 7.0972e-05 8.81235e-05 0.000103507 0.00011694 0.000128342 0.000135526 0.00013935 0.000141728 0.000143115 0.000143402 0.000142363 0.00013982 0.000135717 0.000130056 0.000122917 0.000114453 0.00010488 9.44693e-05 8.35408e-05 7.24388e-05 6.14489e-05 5.04619e-05 3.77846e-05 2.11124e-05 7.31829e-06 1.22167e-06 1.44316e-07 8.98289e-08 3.41014e-08 7.24376e-08 8.34577e-07 5.2727e-06 1.70956e-05 3.4635e-05 5.39287e-05 7.27604e-05 9.01784e-05 0.000105775 0.000119371 0.000130888 0.000137667 0.000141352 0.000143716 0.000145129 0.000145447 0.000144433 0.000141914 0.000137836 0.000132201 0.000125087 0.000116642 0.000107075 9.66561e-05 8.56999e-05 7.45457e-05 6.34492e-05 5.21889e-05 3.87337e-05 2.16325e-05 7.5005e-06 1.24695e-06 1.43515e-07 8.98727e-08 3.52469e-08 7.5505e-08 8.73904e-07 5.50476e-06 1.77234e-05 3.56819e-05 5.53386e-05 7.44757e-05 9.21458e-05 0.000107944 0.000121694 0.000133318 0.00013967 0.000143225 0.00014559 0.000147041 0.000147397 0.000146417 0.000143929 0.000139884 0.000134284 0.000127205 0.000118787 0.000109236 9.88158e-05 8.78401e-05 7.66407e-05 6.54405e-05 5.38969e-05 3.96339e-05 2.21164e-05 7.66759e-06 1.27023e-06 1.43082e-07 8.98809e-08 3.63789e-08 7.85395e-08 9.12768e-07 5.73263e-06 1.83332e-05 3.66908e-05 5.66916e-05 7.61173e-05 9.40249e-05 0.000110013 0.000123908 0.000135634 0.000141536 0.000144985 0.00014737 0.000148863 0.000149258 0.000148314 0.000145864 0.00014186 0.000136305 0.000129267 0.000120884 0.000111357 0.000100944 8.99558e-05 7.87178e-05 6.74172e-05 5.5586e-05 4.05095e-05 2.25924e-05 7.83951e-06 1.29754e-06 1.43922e-07 8.98661e-08 3.74948e-08 8.15379e-08 9.51141e-07 5.95617e-06 1.89252e-05 3.76633e-05 5.79901e-05 7.7688e-05 9.58186e-05 0.000111983 0.000126009 0.000137592 0.000143264 0.00014668 0.00014908 0.0001506 0.00015103 0.000150125 0.000147721 0.000143766 0.000138261 0.000131273 0.000122933 0.000113436 0.000103038 9.20463e-05 8.07787e-05 6.93852e-05 5.72695e-05 4.13835e-05 2.30793e-05 8.02406e-06 1.32929e-06 1.45508e-07 8.98328e-08 3.85917e-08 8.44891e-08 9.88862e-07 6.17456e-06 1.94978e-05 3.85978e-05 5.92336e-05 7.91892e-05 9.75305e-05 0.000113861 0.00012801 0.000139316 0.000144882 0.00014828 0.000150697 0.00015225 0.000152718 0.000151857 0.000149502 0.000145602 0.000140154 0.000133221 0.00012493 0.000115472 0.000105096 9.41099e-05 8.28215e-05 7.13432e-05 5.89471e-05 4.22542e-05 2.35721e-05 8.21538e-06 1.36296e-06 1.47258e-07 8.97804e-08 3.96689e-08 8.73871e-08 1.02583e-06 6.38723e-06 2.00502e-05 3.94938e-05 6.04219e-05 8.06208e-05 9.91611e-05 0.000115648 0.000129913 0.000140936 0.0001464 0.000149785 0.000152227 0.000153817 0.000154327 0.000153512 0.000151209 0.000147366 0.000141978 0.000135104 0.000126868 0.000117453 0.000107109 9.61394e-05 8.48426e-05 7.32903e-05 6.06178e-05 4.31144e-05 2.40624e-05 8.40809e-06 1.39724e-06 1.4904e-07 8.97116e-08 4.07257e-08 9.02312e-08 1.06204e-06 6.59427e-06 2.0583e-05 4.03527e-05 6.1557e-05 8.19855e-05 0.000100713 0.000117348 0.000131722 0.000142455 0.000147818 0.000151196 0.000153668 0.000155299 0.000155854 0.000155087 0.000152836 0.000149051 0.000143726 0.000136918 0.000128743 0.00011938 0.000109076 9.81342e-05 8.68473e-05 7.52434e-05 6.23072e-05 4.39776e-05 2.45599e-05 8.60663e-06 1.4329e-06 1.50891e-07 8.96358e-08 4.17612e-08 9.30181e-08 1.09744e-06 6.79543e-06 2.10961e-05 4.11751e-05 6.26404e-05 8.32852e-05 0.000102189 0.000118963 0.00013344 0.000143876 0.000149142 0.000152517 0.000155023 0.000156699 0.000157301 0.000156583 0.000154386 0.000150659 0.000145399 0.00013866 0.000130557 0.000121265 0.000111022 0.000100123 8.88467e-05 7.71846e-05 6.3984e-05 4.48365e-05 2.50577e-05 8.80701e-06 1.46913e-06 1.5277e-07 8.95588e-08 4.27743e-08 9.57421e-08 1.13193e-06 6.99025e-06 2.1589e-05 4.19609e-05 6.36726e-05 8.45215e-05 0.000103592 0.000120496 0.00013507 0.000145207 0.000150377 0.000153755 0.000156299 0.000158024 0.000158676 0.000158009 0.000155866 0.000152199 0.000147005 0.000140339 0.000132316 0.000123109 0.000112955 0.000102137 9.08896e-05 7.90808e-05 6.53101e-05 4.56511e-05 2.55376e-05 9.00324e-06 1.50505e-06 1.54638e-07 8.9486e-08 4.3766e-08 9.84021e-08 1.16549e-06 7.1786e-06 2.20617e-05 4.2711e-05 6.46554e-05 8.56967e-05 0.000104924 0.000121951 0.000136616 0.000146453 0.000151531 0.000154916 0.000157503 0.00015928 0.000159985 0.000159371 0.000157283 0.000153676 0.000148549 0.000141959 0.000134021 0.000124908 0.000114855 0.000104131 9.292e-05 8.09396e-05 6.64323e-05 4.64397e-05 2.60057e-05 9.19645e-06 1.54069e-06 1.56505e-07 8.94254e-08 4.47371e-08 1.00988e-07 1.19791e-06 7.35954e-06 2.25127e-05 4.3424e-05 6.55881e-05 8.68113e-05 0.000106186 0.000123331 0.000138082 0.000147622 0.000152613 0.000156009 0.000158642 0.000160474 0.000161234 0.000160673 0.000158642 0.000155094 0.000150034 0.000143519 0.000135667 0.000126653 0.000116708 0.000106085 9.49153e-05 8.27637e-05 6.75288e-05 4.72122e-05 2.64665e-05 9.3878e-06 1.57617e-06 1.58378e-07 8.93828e-08 4.56925e-08 1.03522e-07 1.22956e-06 7.53516e-06 2.2947e-05 4.41072e-05 6.64792e-05 8.7874e-05 0.000107389 0.000124643 0.000139476 0.000148723 0.00015363 0.000157041 0.000159724 0.000161613 0.000162428 0.000161921 0.000159944 0.000156456 0.00015146 0.00014502 0.000137253 0.000128338 0.000118505 0.000107991 9.68717e-05 8.45567e-05 6.86035e-05 4.79726e-05 2.6923e-05 9.5789e-06 1.61179e-06 1.60279e-07 8.9363e-08 4.66336e-08 1.06008e-07 1.26045e-06 7.70564e-06 2.33658e-05 4.47629e-05 6.73321e-05 8.88893e-05 0.000108536 0.000125894 0.000140803 0.00014976 0.000154587 0.000158016 0.000160752 0.0001627 0.00016357 0.000163117 0.000161193 0.000157761 0.000152828 0.000146459 0.000138777 0.00012996 0.000120241 0.000109841 9.87804e-05 8.63111e-05 6.96523e-05 4.87182e-05 2.73733e-05 9.76881e-06 1.64738e-06 1.622e-07 8.93663e-08 4.75619e-08 1.08452e-07 1.29068e-06 7.87154e-06 2.37703e-05 4.53934e-05 6.815e-05 8.98611e-05 0.000109632 0.000127088 0.00014207 0.000150735 0.000155486 0.000158938 0.00016173 0.000163738 0.000164664 0.000164262 0.00016239 0.000159011 0.000154138 0.000147838 0.000140237 0.000131519 0.000121914 0.000111634 0.00010064 8.80254e-05 7.06736e-05 4.94475e-05 2.78166e-05 9.95726e-06 1.68293e-06 1.64139e-07 8.93913e-08 4.84804e-08 1.10856e-07 1.32023e-06 8.03278e-06 2.41609e-05 4.59996e-05 6.89342e-05 9.07914e-05 0.000110681 0.000128229 0.000143278 0.000151648 0.000156328 0.000159809 0.00016266 0.000164728 0.000165708 0.000165355 0.000163531 0.000160204 0.000155389 0.000149155 0.000141632 0.00013301 0.000123521 0.000113363 0.000102443 8.96943e-05 7.16647e-05 5.01581e-05 2.82507e-05 1.01431e-05 1.71821e-06 1.66082e-07 8.94353e-08 4.93926e-08 1.13214e-07 1.34899e-06 8.18891e-06 2.45367e-05 4.65804e-05 6.96841e-05 9.16797e-05 0.000111681 0.000129316 0.00014443 0.000152508 0.000157123 0.000160638 0.000163551 0.000165679 0.00016671 0.000166402 0.000164624 0.000161346 0.000156584 0.000150413 0.000142966 0.000134437 0.000125061 0.000115028 0.000104187 9.13125e-05 7.26248e-05 5.08495e-05 2.86757e-05 1.03265e-05 1.75323e-06 1.68032e-07 8.94988e-08 5.03044e-08 1.15566e-07 1.37756e-06 8.34315e-06 2.49047e-05 4.71453e-05 7.04096e-05 9.25359e-05 0.000112642 0.000130359 0.000145534 0.000153318 0.000157876 0.000161433 0.000164408 0.000166592 0.00016767 0.000167405 0.000165668 0.000162436 0.000157725 0.000151612 0.000144236 0.000135797 0.000126534 0.000116626 0.00010587 9.28815e-05 7.35546e-05 5.15228e-05 2.90926e-05 1.05079e-05 1.78816e-06 1.7e-07 8.95832e-08 5.12131e-08 1.17889e-07 1.40561e-06 8.49375e-06 2.52616e-05 4.76902e-05 7.11069e-05 9.33564e-05 0.000113561 0.000131355 0.000146587 0.000154073 0.00015859 0.000162197 0.000165234 0.000167468 0.000168586 0.000168359 0.000166662 0.000163473 0.000158811 0.000152756 0.00014545 0.000137098 0.000127942 0.000118157 0.000107489 9.43997e-05 7.44595e-05 5.21827e-05 2.95044e-05 1.06887e-05 1.82314e-06 1.71989e-07 8.96894e-08 5.21199e-08 1.20208e-07 1.43355e-06 8.64286e-06 2.56119e-05 4.82214e-05 7.17825e-05 9.41473e-05 0.000114443 0.000132306 0.000147514 0.000154772 0.000159289 0.000162946 0.000166031 0.000168306 0.000169462 0.000169271 0.00016761 0.00016446 0.000159844 0.000153847 0.000146616 0.000138359 0.000129315 0.000119635 0.000109013 9.58035e-05 7.5319e-05 5.28129e-05 2.99004e-05 1.0864e-05 1.85735e-06 1.73955e-07 8.98114e-08 5.30228e-08 1.22492e-07 1.46082e-06 8.78776e-06 2.59505e-05 4.87328e-05 7.24317e-05 9.4906e-05 0.000115287 0.000133214 0.000148216 0.000155425 0.000159963 0.000163662 0.000166791 0.000169106 0.000170298 0.000170141 0.000168515 0.000165401 0.000160829 0.000154886 0.000147729 0.00013957 0.000130647 0.000121075 0.000110432 9.68178e-05 7.61158e-05 5.34042e-05 3.02753e-05 1.10312e-05 1.8902e-06 1.7586e-07 8.99425e-08 5.39249e-08 1.24754e-07 1.48768e-06 8.92968e-06 2.62798e-05 4.92275e-05 7.30574e-05 9.56352e-05 0.000116097 0.000134083 0.000148882 0.000156046 0.000160607 0.000164349 0.000167522 0.000169876 0.000171102 0.000170977 0.000169382 0.000166303 0.00016177 0.000155879 0.00014879 0.000140724 0.000131913 0.000122438 0.000111765 9.7743e-05 7.68687e-05 5.39644e-05 3.06321e-05 1.11915e-05 1.92194e-06 1.77718e-07 9.00849e-08 5.48294e-08 1.26998e-07 1.51411e-06 9.06872e-06 2.66003e-05 4.97066e-05 7.36608e-05 9.63365e-05 0.000116874 0.000134916 0.000149511 0.000156631 0.000161219 0.000165006 0.000168223 0.000170616 0.000171875 0.000171779 0.000170213 0.000167164 0.000162667 0.000156822 0.000149797 0.000141816 0.000133109 0.000123721 0.000113019 9.8617e-05 7.75809e-05 5.44961e-05 3.09722e-05 1.13451e-05 1.95249e-06 1.79519e-07 9.02337e-08 5.57359e-08 1.29223e-07 1.54015e-06 9.20502e-06 2.69123e-05 5.01702e-05 7.42422e-05 9.701e-05 0.000117618 0.000135713 0.000150106 0.000157186 0.000161802 0.000165635 0.000168897 0.000171328 0.000172618 0.00017255 0.00017101 0.000167989 0.000163524 0.00015772 0.000150751 0.000142847 0.000134234 0.000124928 0.000114196 9.94403e-05 7.82521e-05 5.49977e-05 3.12938e-05 1.1491e-05 1.98175e-06 1.81259e-07 9.03855e-08 5.66474e-08 1.31454e-07 1.56617e-06 9.34051e-06 2.72199e-05 5.06238e-05 7.48076e-05 9.76617e-05 0.000118336 0.000136478 0.000150667 0.000157709 0.000162356 0.000166237 0.000169544 0.000172011 0.000173332 0.00017329 0.000171774 0.000168776 0.000164338 0.00015857 0.000151651 0.000143817 0.00013529 0.000126057 0.000115296 0.00010021 7.88793e-05 5.54658e-05 3.15936e-05 1.16271e-05 2.0091e-06 1.82893e-07 9.05349e-08 5.75593e-08 1.33664e-07 1.59174e-06 9.47306e-06 2.75189e-05 5.10621e-05 7.53513e-05 9.82861e-05 0.000119022 0.000137208 0.00015119 0.000158197 0.000162878 0.000166809 0.000170162 0.000172668 0.000174018 0.000174 0.000172506 0.000169529 0.000165115 0.000159378 0.000152503 0.00014473 0.000136279 0.000127112 0.000116322 0.00010093 7.94643e-05 5.59015e-05 3.18718e-05 1.1753e-05 2.03442e-06 1.84411e-07 9.06813e-08 5.84734e-08 1.35879e-07 1.61732e-06 9.60503e-06 2.78141e-05 5.14913e-05 7.58798e-05 9.88894e-05 0.000119681 0.000137907 0.000151676 0.000158648 0.000163368 0.000167352 0.000170753 0.000173297 0.000174677 0.000174682 0.000173208 0.00017025 0.000165856 0.000160145 0.000153307 0.000145588 0.000137206 0.000128096 0.000117278 0.000101603 8.00099e-05 5.63071e-05 3.21304e-05 1.18699e-05 2.05794e-06 1.8583e-07 9.08263e-08 5.93879e-08 1.38073e-07 1.64248e-06 9.73428e-06 2.81014e-05 5.19066e-05 7.63886e-05 9.94674e-05 0.00012031 0.000138572 0.000152122 0.000159062 0.000163824 0.000167865 0.000171317 0.0001739 0.00017531 0.000175339 0.000173883 0.000170941 0.000166565 0.000160876 0.000154071 0.000146399 0.000138076 0.000129017 0.00011817 0.000102233 8.05218e-05 5.66882e-05 3.23741e-05 1.19805e-05 2.08023e-06 1.87183e-07 9.09704e-08 6.03046e-08 1.40267e-07 1.66757e-06 9.86264e-06 2.83848e-05 5.23131e-05 7.6883e-05 0.000100025 0.000120914 0.000139208 0.000152532 0.000159442 0.00016425 0.000168352 0.000171857 0.000174481 0.000175922 0.000175974 0.000174536 0.000171609 0.000167248 0.000161578 0.0001548 0.000147167 0.000138896 0.00012988 0.000119003 0.000102823 8.10004e-05 5.70448e-05 3.26027e-05 1.20845e-05 2.10126e-06 1.88464e-07 9.11122e-08 6.1224e-08 1.4243e-07 1.69201e-06 9.98724e-06 2.86586e-05 5.27046e-05 7.73573e-05 0.000100559 0.000121489 0.00013981 0.0001529 0.000159781 0.000164639 0.000168807 0.000172368 0.000175036 0.000176509 0.000176585 0.000175165 0.000172252 0.000167903 0.000162248 0.000155492 0.000147893 0.000139665 0.000130684 0.000119776 0.000103372 8.14453e-05 5.73763e-05 3.28154e-05 1.21816e-05 2.12095e-06 1.89668e-07 9.12492e-08 6.21479e-08 1.44557e-07 1.71574e-06 1.01078e-05 2.89222e-05 5.30794e-05 7.78095e-05 0.000101065 0.000122034 0.00014038 0.000153237 0.00016009 0.000165 0.000169235 0.000172856 0.00017557 0.000177076 0.000177176 0.000175774 0.000172874 0.000168536 0.000162894 0.000156155 0.000148583 0.00014039 0.000131436 0.000120494 0.000103881 8.18559e-05 5.76816e-05 3.30113e-05 1.22712e-05 2.13914e-06 1.90783e-07 9.13791e-08 6.30776e-08 1.4667e-07 1.73914e-06 1.02263e-05 2.91794e-05 5.34423e-05 7.82439e-05 0.000101549 0.00012255 0.000140917 0.000153545 0.000160372 0.000165336 0.000169642 0.000173324 0.000176085 0.000177626 0.00017775 0.000176365 0.000173478 0.000169149 0.000163517 0.000156793 0.000149241 0.000141076 0.000132141 0.000121162 0.000104351 8.22343e-05 5.79622e-05 3.31911e-05 1.23535e-05 2.15589e-06 1.91811e-07 9.15e-08 6.40067e-08 1.48742e-07 1.76181e-06 1.03407e-05 2.94267e-05 5.37893e-05 7.86573e-05 0.000102007 0.000123037 0.000141422 0.000153818 0.00016062 0.000165642 0.00017002 0.000173766 0.000176577 0.000178154 0.000178304 0.000176937 0.000174062 0.000169742 0.000164118 0.000157404 0.000149868 0.000141723 0.0001328 0.000121778 0.000104783 8.25795e-05 5.82168e-05 3.33538e-05 1.24279e-05 2.17107e-06 1.92742e-07 9.16076e-08 6.4938e-08 1.50792e-07 1.78404e-06 1.04525e-05 2.96666e-05 5.41236e-05 7.90527e-05 0.000102442 0.000123497 0.000141896 0.000154062 0.000160842 0.000165921 0.000170374 0.000174186 0.000177048 0.000178663 0.00017884 0.000177492 0.000174629 0.000170318 0.0001647 0.000157994 0.00015047 0.000142338 0.000133417 0.00012235 0.000105179 8.28936e-05 5.84471e-05 3.35004e-05 1.24949e-05 2.18477e-06 1.93576e-07 9.16982e-08 6.587e-08 1.5282e-07 1.80586e-06 1.0562e-05 2.98999e-05 5.44459e-05 7.94311e-05 0.000102855 0.000123932 0.000142342 0.000154286 0.000161044 0.000166182 0.000170711 0.000174591 0.000177506 0.00017916 0.000179365 0.000178036 0.000175185 0.000170882 0.00016527 0.00015857 0.000151054 0.00014293 0.000134004 0.000122883 0.00010554 8.31772e-05 5.86535e-05 3.36313e-05 1.25548e-05 2.19701e-06 1.94313e-07 9.17721e-08 6.67998e-08 1.54817e-07 1.82716e-06 1.06686e-05 3.01257e-05 5.47556e-05 7.97921e-05 0.000103247 0.000124342 0.00014276 0.000154481 0.000161221 0.00016642 0.000171027 0.000174977 0.000177947 0.000179641 0.000179875 0.000178567 0.000175729 0.000171435 0.000165829 0.000159134 0.000151624 0.000143503 0.000134566 0.000123383 0.000105866 8.3429e-05 5.88334e-05 3.37438e-05 1.2606e-05 2.20746e-06 1.94931e-07 9.18212e-08 6.77267e-08 1.56778e-07 1.84786e-06 1.0772e-05 3.03434e-05 5.50523e-05 8.01354e-05 0.000103617 0.000124726 0.000143151 0.000154649 0.000161372 0.000166636 0.000171324 0.000175346 0.000178372 0.000180109 0.000180372 0.000179085 0.000176261 0.000171976 0.000166376 0.000159687 0.000152181 0.000144062 0.000135107 0.000123855 0.00010616 8.36488e-05 5.89853e-05 3.38357e-05 1.26467e-05 2.21572e-06 1.95399e-07 9.18366e-08 6.86545e-08 1.58708e-07 1.86798e-06 1.08722e-05 3.05532e-05 5.53356e-05 8.04607e-05 0.000103965 0.000125086 0.000143514 0.00015479 0.0001615 0.000166833 0.000171604 0.000175701 0.000178785 0.000180564 0.000180858 0.000179592 0.000176783 0.000172508 0.000166916 0.000160234 0.000152734 0.000144615 0.000135639 0.000124313 0.000106433 8.385e-05 5.91218e-05 3.39167e-05 1.26824e-05 2.22293e-06 1.95785e-07 9.18239e-08 6.95839e-08 1.60613e-07 1.88763e-06 1.09699e-05 3.07558e-05 5.56063e-05 8.0768e-05 0.000104291 0.00012542 0.00014385 0.000154907 0.000161609 0.000167015 0.000171874 0.000176048 0.000179191 0.000181013 0.000181337 0.000180093 0.0001773 0.000173036 0.000167454 0.000160781 0.000153289 0.000145171 0.000136174 0.000124766 0.000106688 8.40343e-05 5.9244e-05 3.39879e-05 1.27135e-05 2.22918e-06 1.96097e-07 9.17869e-08 7.05076e-08 1.62444e-07 1.906e-06 1.10609e-05 3.09436e-05 5.58547e-05 8.10473e-05 0.000104585 0.000125719 0.000144149 0.000154982 0.000161683 0.000167171 0.000172126 0.000176381 0.000179585 0.000181451 0.000181806 0.000180584 0.000177808 0.000173558 0.000167988 0.000161327 0.000153847 0.000145733 0.000136714 0.000125219 0.000106926 8.42e-05 5.9349e-05 3.40459e-05 1.27378e-05 2.23402e-06 1.96302e-07 9.17199e-08 7.14305e-08 1.64206e-07 1.92312e-06 1.11453e-05 3.11156e-05 5.60786e-05 8.12951e-05 0.000104842 0.000125978 0.000144407 0.000155008 0.000161714 0.000167294 0.000172353 0.000176693 0.00017996 0.00018187 0.000182258 0.00018106 0.000178303 0.000174068 0.000168513 0.000161867 0.000154402 0.000146295 0.000137257 0.000125671 0.00010715 8.43534e-05 5.94429e-05 3.40953e-05 1.27577e-05 2.23791e-06 1.96431e-07 9.16248e-08 7.23514e-08 1.65897e-07 1.93899e-06 1.12232e-05 3.1272e-05 5.62775e-05 8.15099e-05 0.00010506 0.000126195 0.00014462 0.000154996 0.000161717 0.0001674 0.000172568 0.000176996 0.000180327 0.000182282 0.000182703 0.00018153 0.000178793 0.000174576 0.000169038 0.000162411 0.000154966 0.000146871 0.000137815 0.000126133 0.000107365 8.44958e-05 5.95269e-05 3.41375e-05 1.2774e-05 2.24104e-06 1.96494e-07 9.15023e-08 7.32704e-08 1.6754e-07 1.95398e-06 1.12962e-05 3.1416e-05 5.64556e-05 8.16962e-05 0.000105243 0.000126372 0.000144791 0.000154923 0.000161673 0.000167475 0.000172761 0.000177281 0.000180676 0.000182677 0.000183133 0.000181987 0.000179273 0.000175077 0.00016956 0.000162956 0.000155535 0.000147459 0.00013839 0.000126608 0.00010757 8.46287e-05 5.96015e-05 3.4172e-05 1.27865e-05 2.24336e-06 1.96489e-07 9.13535e-08 7.41877e-08 1.69068e-07 1.9669e-06 1.13588e-05 3.15372e-05 5.65998e-05 8.18401e-05 0.000105378 0.000126496 0.000144909 0.000154771 0.000161572 0.000167512 0.000172923 0.000177533 0.000180993 0.000183042 0.000183535 0.000182421 0.000179733 0.000175561 0.000170068 0.000163492 0.000156102 0.00014805 0.000138972 0.00012709 0.000107769 8.47551e-05 5.967e-05 3.42015e-05 1.27962e-05 2.24508e-06 1.96431e-07 9.11818e-08 7.51157e-08 1.70554e-07 1.9789e-06 1.14163e-05 3.16449e-05 5.67203e-05 8.19499e-05 0.000105469 0.000126567 0.00014481 0.000154569 0.000161478 0.00016755 0.000173072 0.000177768 0.000181295 0.000183395 0.000183928 0.000182847 0.000180187 0.000176041 0.000170577 0.000164034 0.00015668 0.00014866 0.000139579 0.000127595 0.000107971 8.48847e-05 5.97416e-05 3.42336e-05 1.28075e-05 2.24716e-06 1.96381e-07 9.09945e-08 7.60519e-08 1.71979e-07 1.98966e-06 1.14675e-05 3.17377e-05 5.68164e-05 8.20265e-05 0.000105519 0.000126591 0.000144534 0.000154305 0.000161338 0.000167546 0.000173185 0.000177974 0.00018157 0.000183723 0.000184299 0.000183252 0.000180623 0.000176509 0.000171078 0.000164572 0.000157258 0.000149273 0.000140193 0.000128107 0.00010817 8.50118e-05 5.98109e-05 3.42637e-05 1.28175e-05 2.24897e-06 1.96298e-07 9.07911e-08 7.69932e-08 1.73326e-07 1.99888e-06 1.15106e-05 3.18117e-05 5.68829e-05 8.20643e-05 0.000105523 0.000126562 0.000144184 0.000153971 0.000161139 0.000167494 0.000173258 0.000178144 0.000181814 0.000184024 0.000184645 0.000183636 0.000181042 0.000176965 0.000171576 0.000165114 0.000157844 0.000149892 0.000140808 0.000128619 0.000108368 8.51405e-05 5.98827e-05 3.42961e-05 1.2829e-05 2.2511e-06 1.96223e-07 9.05751e-08 7.79512e-08 1.74645e-07 2.0073e-06 1.15493e-05 3.18738e-05 5.69278e-05 8.20709e-05 0.000105487 0.000126488 0.000143773 0.000153578 0.000160888 0.0001674 0.000173297 0.000178285 0.000182033 0.000184302 0.000184969 0.000184 0.000181443 0.000177407 0.000172066 0.000165661 0.000158444 0.000150518 0.000141406 0.000129097 0.00010855 8.52551e-05 5.99432e-05 3.43202e-05 1.28364e-05 2.25239e-06 1.96086e-07 9.03411e-08 7.89217e-08 1.7587e-07 2.01384e-06 1.15786e-05 3.19147e-05 5.69394e-05 8.20336e-05 0.000105399 0.000126356 0.000143284 0.000153112 0.000160576 0.000167256 0.000173293 0.00017839 0.00018222 0.000184551 0.000185266 0.000184337 0.000181819 0.000177825 0.000172536 0.000166195 0.000159046 0.000151159 0.00014198 0.000129397 0.000108716 8.53627e-05 6.00016e-05 3.43447e-05 1.28445e-05 2.25394e-06 1.95958e-07 9.00952e-08 7.99179e-08 1.77098e-07 2.01994e-06 1.16053e-05 3.19471e-05 5.69327e-05 8.19669e-05 0.000105272 0.000126175 0.000142713 0.000152567 0.000160201 0.000167062 0.000173251 0.000178465 0.000182381 0.000184776 0.000185541 0.000184654 0.000182174 0.000178223 0.000172988 0.000166714 0.000159636 0.000151792 0.000142541 0.000129609 0.000108871 8.54635e-05 6.00565e-05 3.43673e-05 1.28519e-05 2.25534e-06 1.95812e-07 8.98368e-08 8.09338e-08 1.78191e-07 2.02332e-06 1.16189e-05 3.19515e-05 5.68839e-05 8.18464e-05 0.000105081 0.000125925 0.000142043 0.000151927 0.000159745 0.000166803 0.000173158 0.000178497 0.000182505 0.000184969 0.000185786 0.000184941 0.000182501 0.000178593 0.000173412 0.000167206 0.000160202 0.000152405 0.000143085 0.000129805 0.000109014 8.5559e-05 6.01102e-05 3.4391e-05 1.28605e-05 2.25709e-06 1.95681e-07 8.95701e-08 8.19864e-08 1.79266e-07 2.02581e-06 1.16278e-05 3.19424e-05 5.68086e-05 8.16853e-05 0.000104838 0.000125611 0.00014128 0.000151198 0.000159216 0.000166488 0.000173019 0.000178493 0.000182599 0.000185133 0.000186003 0.000185199 0.000182797 0.000178931 0.000173803 0.000167664 0.000160736 0.000152986 0.0001436 0.000129974 0.000109137 8.5639e-05 6.01533e-05 3.44082e-05 1.28663e-05 2.25833e-06 1.95511e-07 8.9289e-08 8.30709e-08 1.80261e-07 2.02639e-06 1.16274e-05 3.19123e-05 5.66985e-05 8.14759e-05 0.000104534 0.000125226 0.000140403 0.000150358 0.000158594 0.000166101 0.000172827 0.000178447 0.000182657 0.000185266 0.000186189 0.000185426 0.000183061 0.000179236 0.000174159 0.000168086 0.000161232 0.000153532 0.000144083 0.00013011 0.000109233 8.5699e-05 6.01826e-05 3.44172e-05 1.28686e-05 2.25886e-06 1.9529e-07 8.89933e-08 8.41881e-08 1.81139e-07 2.02434e-06 1.1614e-05 3.18535e-05 5.65444e-05 8.12083e-05 0.000104159 0.000124762 0.0001394 0.000149394 0.000157868 0.00016563 0.000172567 0.000178343 0.000182665 0.000185351 0.00018633 0.00018561 0.000183282 0.000179496 0.00017447 0.000168463 0.000161685 0.000154036 0.000144526 0.000130212 0.000109304 8.57414e-05 6.02017e-05 3.44218e-05 1.28698e-05 2.25932e-06 1.95061e-07 8.8688e-08 8.53589e-08 1.81997e-07 2.02103e-06 1.15937e-05 3.17773e-05 5.63588e-05 8.08942e-05 0.000103724 0.000124224 0.000138277 0.000148316 0.000157049 0.000165088 0.000172251 0.000178191 0.000182628 0.000185393 0.000186427 0.00018575 0.000183458 0.00017971 0.000174732 0.000168788 0.000162083 0.000154485 0.000144916 0.000130268 0.000109336 8.57529e-05 6.01981e-05 3.44118e-05 1.28643e-05 2.25847e-06 1.94747e-07 8.83664e-08 8.65762e-08 1.82831e-07 2.01637e-06 1.15653e-05 3.16808e-05 5.61386e-05 8.05306e-05 0.000103226 0.000123611 0.000137018 0.000147117 0.000156142 0.000164479 0.000171878 0.000177987 0.00018254 0.000185385 0.000186477 0.000185843 0.000183588 0.000179878 0.000174946 0.000169063 0.00016243 0.000154882 0.000145258 0.000130281 0.000109333 8.57396e-05 6.01788e-05 3.43937e-05 1.28561e-05 2.25715e-06 1.94398e-07 8.80294e-08 8.7848e-08 1.83665e-07 2.01076e-06 1.15307e-05 3.15652e-05 5.5882e-05 8.01119e-05 0.000102655 0.000122887 0.000135612 0.000145816 0.000155166 0.000163813 0.000171446 0.00017772 0.000182387 0.000185314 0.000186464 0.000185874 0.000183655 0.000179982 0.000175095 0.000169272 0.000162706 0.000155207 0.000145528 0.000130237 0.000109284 8.56898e-05 6.01337e-05 3.43603e-05 1.28415e-05 2.25466e-06 1.93973e-07 8.76736e-08 8.91767e-08 1.8452e-07 2.00465e-06 1.14927e-05 3.14355e-05 5.55907e-05 7.96311e-05 0.000101986 0.000121348 0.000134049 0.000144533 0.0001542 0.000163117 0.00017096 0.000177392 0.000182176 0.000185187 0.000186399 0.000185852 0.00018367 0.000180032 0.000175187 0.00016942 0.000162919 0.000155465 0.000145733 0.000130134 0.000109185 8.56012e-05 6.0061e-05 3.431e-05 1.28197e-05 2.25079e-06 1.93452e-07 8.72913e-08 9.05808e-08 1.8542e-07 1.99825e-06 1.14535e-05 3.13008e-05 5.52846e-05 7.91219e-05 0.000101274 0.000119734 0.000132387 0.00014314 0.000153132 0.000162334 0.000170402 0.000177 0.000181904 0.000185001 0.000186273 0.00018577 0.000183621 0.000180016 0.000175212 0.000169496 0.000163056 0.000155643 0.000145856 0.000129964 0.000109029 8.54684e-05 5.99576e-05 3.42421e-05 1.27908e-05 2.24566e-06 1.92848e-07 8.68885e-08 9.20643e-08 1.86357e-07 1.99127e-06 1.1411e-05 3.11546e-05 5.49528e-05 7.857e-05 0.000100501 0.000118008 0.00013061 0.000141649 0.000151982 0.000161482 0.000169781 0.000176551 0.000181577 0.000184759 0.00018609 0.000185628 0.000183511 0.000179936 0.000175168 0.0001695 0.000163116 0.00015574 0.000145896 0.000129718 0.000108808 8.52829e-05 5.98149e-05 3.41491e-05 1.27508e-05 2.23833e-06 1.92094e-07 8.64497e-08 9.3633e-08 1.87321e-07 1.98345e-06 1.1364e-05 3.09954e-05 5.4594e-05 7.79743e-05 9.96681e-05 0.000116173 0.00012872 0.000140054 0.000150742 0.000160551 0.000169088 0.000176032 0.00018118 0.000184448 0.000185836 0.000185413 0.000183325 0.000179778 0.000175043 0.000169418 0.000163084 0.000155739 0.000145838 0.000129385 0.000108512 8.50358e-05 5.96268e-05 3.40278e-05 1.26985e-05 2.22862e-06 1.91183e-07 8.5975e-08 9.52904e-08 1.8831e-07 1.9747e-06 1.13114e-05 3.08195e-05 5.42024e-05 7.73285e-05 9.87691e-05 0.000114224 0.000126729 0.00013838 0.000149436 0.000159556 0.00016833 0.000175443 0.000180711 0.000184059 0.000185502 0.000185115 0.000183053 0.000179529 0.000174824 0.000169239 0.000162951 0.000155632 0.000145673 0.000128962 0.000108138 8.47249e-05 5.93907e-05 3.38757e-05 1.26325e-05 2.21626e-06 1.90087e-07 8.54508e-08 9.70282e-08 1.893e-07 1.96461e-06 1.12502e-05 3.06187e-05 5.37642e-05 7.66141e-05 9.7738e-05 0.00011215 0.000124665 0.00013666 0.000148083 0.000158503 0.000167499 0.000174774 0.000180157 0.000183585 0.00018508 0.000184726 0.000182687 0.000179184 0.000174504 0.000168953 0.000162701 0.000155399 0.000145381 0.000128432 0.00010767 8.43359e-05 5.90953e-05 3.3685e-05 1.25491e-05 2.20045e-06 1.88764e-07 8.48773e-08 9.88365e-08 1.90243e-07 1.95255e-06 1.1177e-05 3.03821e-05 5.32548e-05 7.57773e-05 9.56628e-05 0.000109923 0.000122687 0.000135 0.000146712 0.000157374 0.000166565 0.000173993 0.000179489 0.000182997 0.000184546 0.000184226 0.000182211 0.000178727 0.000174071 0.000168551 0.000162333 0.000155045 0.000144969 0.0001278 0.000107114 8.38765e-05 5.8748e-05 3.34621e-05 1.24519e-05 2.182e-06 1.8725e-07 8.42502e-08 1.00732e-07 1.9126e-07 1.94076e-06 1.11061e-05 3.01468e-05 5.2739e-05 7.49237e-05 9.36119e-05 0.000107684 0.000120644 0.000133251 0.00014525 0.000156158 0.000165549 0.000173128 0.000178734 0.000182318 0.000183914 0.000183624 0.000181626 0.000178159 0.000173521 0.000168024 0.000161829 0.000154546 0.000144409 0.000127047 0.000106451 8.33265e-05 5.83311e-05 3.31936e-05 1.23341e-05 2.15946e-06 1.85469e-07 8.35724e-08 1.02701e-07 1.92205e-07 1.92668e-06 1.10235e-05 2.98836e-05 5.21773e-05 7.4008e-05 9.14825e-05 0.000105376 0.000118546 0.000131454 0.000143737 0.000154883 0.000164461 0.000172181 0.000177889 0.00018154 0.000183178 0.000182911 0.000180927 0.000177471 0.000172848 0.00016737 0.000161193 0.000153907 0.000143712 0.000126181 0.000105691 8.26983e-05 5.78561e-05 3.28881e-05 1.21999e-05 2.13371e-06 1.83459e-07 8.28336e-08 1.04735e-07 1.93136e-07 1.91146e-06 1.0934e-05 2.95995e-05 5.15776e-05 7.30411e-05 8.93131e-05 0.000103042 0.000116423 0.000129621 0.000142174 0.000153543 0.000163295 0.000171145 0.000176944 0.000180653 0.000182324 0.000182073 0.000180097 0.000176646 0.000172032 0.000166564 0.000160393 0.000153095 0.000142843 0.000125185 0.000104817 8.19767e-05 5.73117e-05 3.25393e-05 1.20472e-05 2.10439e-06 1.81215e-07 8.20494e-08 1.0681e-07 1.93919e-07 1.89299e-06 1.0826e-05 2.92699e-05 5.09062e-05 7.19914e-05 8.70667e-05 0.00010068 0.00011429 0.000127769 0.000140569 0.000152138 0.000162047 0.000170013 0.000175892 0.00017965 0.000181346 0.000181104 0.000179129 0.000175682 0.000171079 0.000165632 0.000159468 0.000152103 0.000141595 0.000124048 0.000103824 8.11571e-05 5.66924e-05 3.21412e-05 1.1872e-05 2.07057e-06 1.78657e-07 8.11905e-08 1.08912e-07 1.94641e-07 1.87285e-06 1.07047e-05 2.88939e-05 5.0137e-05 7.02234e-05 8.47552e-05 9.84195e-05 0.000112232 0.000125923 0.000138916 0.000150652 0.000160698 0.000168769 0.000174717 0.000178515 0.000180226 0.000179985 0.000178006 0.000174558 0.000169962 0.000164522 0.000158345 0.0001509 0.000140192 0.000122771 0.00010271 8.02403e-05 5.60028e-05 3.17008e-05 1.16795e-05 2.03357e-06 1.75892e-07 8.02901e-08 1.11032e-07 1.95269e-07 1.85106e-06 1.05744e-05 2.84908e-05 4.93137e-05 6.81589e-05 8.24295e-05 9.61748e-05 0.000110155 0.000124029 0.000137197 0.00014909 0.000159265 0.000167432 0.000173441 0.000177266 0.000178982 0.000178733 0.000176743 0.00017329 0.000168693 0.000163252 0.000157051 0.000149524 0.000138641 0.000121361 0.000101479 7.92263e-05 5.52382e-05 3.12107e-05 1.14646e-05 1.99212e-06 1.72811e-07 7.93112e-08 1.13166e-07 1.95789e-07 1.82752e-06 1.04352e-05 2.80642e-05 4.84518e-05 6.60893e-05 8.00944e-05 9.3906e-05 0.000108046 0.000122099 0.000135438 0.000147479 0.000157769 0.000166014 0.000172065 0.000175903 0.000177608 0.000177338 0.000175328 0.000171859 0.00016725 0.000161792 0.000155549 0.000147939 0.00013693 0.000119808 0.000100127 7.81161e-05 5.44051e-05 3.06805e-05 1.12339e-05 1.94782e-06 1.69551e-07 7.8303e-08 1.15299e-07 1.96179e-07 1.80201e-06 1.02853e-05 2.76087e-05 4.75421e-05 6.39939e-05 7.77448e-05 9.16273e-05 0.00010593 0.000120159 0.00013366 0.000145836 0.000156224 0.000164526 0.000170598 0.000174428 0.000176108 0.000175804 0.000173762 0.000170269 0.000165642 0.00016016 0.000153873 0.000146185 0.000135076 0.000118128 9.86661e-05 7.69163e-05 5.35042e-05 3.01063e-05 1.09839e-05 1.89978e-06 1.66016e-07 7.72207e-08 1.17401e-07 1.96381e-07 1.77398e-06 1.01221e-05 2.71194e-05 4.65793e-05 6.18694e-05 7.5382e-05 8.93399e-05 0.000103803 0.000118204 0.00013186 0.000144158 0.000154628 0.000162967 0.000169036 0.000172835 0.000174471 0.000174118 0.000172031 0.0001685 0.000163838 0.000158313 0.000151962 0.000144198 0.000133053 0.000116297 9.70756e-05 7.56128e-05 5.25285e-05 2.94876e-05 1.07162e-05 1.84858e-06 1.62295e-07 7.61165e-08 1.1945e-07 1.9641e-07 1.7436e-06 9.94453e-06 2.65911e-05 4.55571e-05 5.97039e-05 7.30122e-05 8.70641e-05 0.000101691 0.000116256 0.000130054 0.000142457 0.000152987 0.000161341 0.000167385 0.000171132 0.000172703 0.000172288 0.000170149 0.000166574 0.000161873 0.000156301 0.000149888 0.000142056 0.0001309 0.000114352 9.53897e-05 7.42334e-05 5.14968e-05 2.88335e-05 1.04337e-05 1.79455e-06 1.58347e-07 7.49408e-08 1.21417e-07 1.96445e-07 1.71233e-06 9.75248e-06 2.601e-05 4.44033e-05 5.75021e-05 7.06778e-05 8.48359e-05 9.961e-05 0.000114317 0.000128236 0.000140727 0.000151299 0.000159645 0.000165641 0.000169313 0.000170798 0.000170303 0.000168098 0.000164469 0.000159714 0.000154079 0.000147587 0.000139688 0.000128579 0.000112258 9.35778e-05 7.27543e-05 5.03954e-05 2.81404e-05 1.0137e-05 1.73825e-06 1.54289e-07 7.37692e-08 1.23292e-07 1.97215e-07 1.68301e-06 9.54675e-06 2.53454e-05 4.24623e-05 5.52833e-05 6.84604e-05 8.26819e-05 9.75498e-05 0.000112371 0.0001264 0.00013897 0.00014957 0.000157889 0.000163813 0.000167386 0.000168768 0.000168178 0.000165897 0.000162211 0.000157405 0.00015171 0.000145149 0.000137197 0.000126147 0.000110069 9.1685e-05 7.12094e-05 4.92432e-05 2.74134e-05 9.8258e-06 1.67916e-06 1.50002e-07 7.25232e-08 1.25091e-07 2.00803e-07 1.66078e-06 9.34708e-06 2.46726e-05 4.05882e-05 5.31017e-05 6.62348e-05 8.0511e-05 9.54908e-05 0.000110449 0.000124602 0.000137246 0.000147852 0.000156112 0.000161928 0.000165371 0.000166621 0.000165917 0.000163543 0.000159783 0.000154911 0.000149143 0.000142497 0.000134494 0.000123568 0.000107751 8.96866e-05 6.95855e-05 4.80412e-05 2.66634e-05 9.50902e-06 1.61964e-06 1.45741e-07 7.13188e-08 1.26763e-07 2.04711e-07 1.62754e-06 9.09457e-06 2.39111e-05 3.86799e-05 5.09061e-05 6.40104e-05 7.83567e-05 9.34636e-05 0.00010857 0.000122849 0.000135557 0.000146147 0.000154315 0.000159989 0.00016327 0.000164365 0.00016353 0.000161056 0.000157221 0.000152289 0.000146461 0.000139753 0.000131718 0.000120904 0.000105362 8.76283e-05 6.79112e-05 4.67972e-05 2.58831e-05 9.17876e-06 1.55753e-06 1.41253e-07 7.00302e-08 1.28277e-07 2.05666e-07 1.5821e-06 8.81258e-06 2.31147e-05 3.68036e-05 4.87382e-05 6.1797e-05 7.6212e-05 9.14606e-05 0.000106735 0.00012115 0.000133915 0.000144463 0.000152503 0.000157994 0.000161076 0.000161986 0.000160999 0.000158409 0.000154485 0.000149474 0.000143564 0.000136777 0.000128719 0.000118103 0.000102855 8.54761e-05 6.61698e-05 4.55151e-05 2.50899e-05 8.84841e-06 1.49619e-06 1.36894e-07 6.88173e-08 1.29642e-07 2.04705e-07 1.52822e-06 8.50167e-06 2.22672e-05 3.49131e-05 4.65586e-05 5.95744e-05 7.40737e-05 8.94895e-05 0.000104956 0.000119516 0.000132328 0.000142805 0.000150678 0.000155948 0.0001588 0.000159503 0.000158352 0.000155643 0.000151636 0.000146562 0.000140595 0.000133757 0.000125697 0.000115255 0.00010031 8.32908e-05 6.43973e-05 4.42023e-05 2.42709e-05 8.50608e-06 1.43253e-06 1.32304e-07 6.75012e-08 1.3085e-07 2.02632e-07 1.46937e-06 8.17167e-06 2.13861e-05 3.3037e-05 4.43966e-05 5.73686e-05 7.19653e-05 8.75724e-05 0.000103252 0.000117965 0.000130804 0.000141173 0.000148831 0.000153834 0.000156417 0.000156886 0.000155552 0.000152713 0.000148611 0.000143458 0.000137409 0.000130493 0.000122435 0.000112276 9.76613e-05 8.10264e-05 6.25742e-05 4.28685e-05 2.34537e-05 8.17144e-06 1.3713e-06 1.27982e-07 6.63116e-08 1.31878e-07 1.9964e-07 1.40318e-06 7.8083e-06 2.04446e-05 3.11448e-05 4.22209e-05 5.51506e-05 6.98607e-05 8.56855e-05 0.000101601 0.00011647 0.000129319 0.000139543 0.000146947 0.000151648 0.00015394 0.000154163 0.000152645 0.00014968 0.000145501 0.0001403 0.000134215 0.000127273 0.000119222 0.000109182 9.50037e-05 7.8753e-05 6.07353e-05 4.15103e-05 2.26112e-05 7.82415e-06 1.30755e-06 1.23394e-07 6.49956e-08 1.32728e-07 1.96067e-07 1.33289e-06 7.42396e-06 1.9465e-05 2.92616e-05 4.00655e-05 5.2962e-05 6.78057e-05 8.38742e-05 0.000100042 0.000115055 0.000127872 0.000137896 0.000144991 0.000149351 0.000151325 0.000151287 0.000149572 0.000146474 0.000142208 0.000136945 0.000130805 0.000123806 0.000115728 0.000105822 9.2247e-05 7.64125e-05 5.8863e-05 4.01511e-05 2.17891e-05 7.49463e-06 1.2484e-06 1.19269e-07 6.38773e-08 1.33376e-07 1.91797e-07 1.25487e-06 6.99728e-06 1.84093e-05 2.73599e-05 3.79069e-05 5.07729e-05 6.57611e-05 8.20918e-05 9.8519e-05 0.000113655 0.000126393 0.000136163 0.00014292 0.00014694 0.000148614 0.000148329 0.000146429 0.000143207 0.000138872 0.000133576 0.000127425 0.000120429 0.00011239 0.00010264 8.95355e-05 7.41027e-05 5.70001e-05 3.87781e-05 2.09417e-05 7.15099e-06 1.18637e-06 1.14824e-07 6.25988e-08 1.33821e-07 1.87212e-07 1.17425e-06 6.54234e-06 1.70857e-05 2.54795e-05 3.5809e-05 4.86358e-05 6.37724e-05 8.03822e-05 9.70654e-05 0.000112269 0.000124825 0.000134248 0.000140633 0.000144339 0.000145758 0.000145257 0.000143174 0.000139811 0.000135377 0.000130018 0.000123819 0.000116783 0.000108746 9.91742e-05 8.67417e-05 7.17509e-05 5.51364e-05 3.74402e-05 2.01436e-05 6.8375e-06 1.13113e-06 1.11023e-07 6.15918e-08 1.34053e-07 1.82299e-07 1.09103e-06 6.06569e-06 1.55965e-05 2.36112e-05 3.3708e-05 4.64701e-05 6.17631e-05 7.86864e-05 9.56441e-05 0.000110858 0.000122982 0.000131243 0.000137275 0.000141442 0.000142987 0.0001423 0.000139995 0.000136463 0.00013193 0.000126532 0.000120341 0.000113348 0.0001054 9.60239e-05 8.40418e-05 6.94677e-05 5.33084e-05 3.61037e-05 1.93275e-05 6.51151e-06 1.07272e-06 1.06781e-07 6.03269e-08 1.34106e-07 1.77365e-07 1.01029e-06 5.59907e-06 1.41754e-05 2.17904e-05 3.16314e-05 4.43375e-05 5.98379e-05 7.7146e-05 9.43721e-05 0.000109245 0.000119503 0.00012723 0.000133051 0.000137057 0.000139355 0.000139471 0.000137008 0.000133137 0.000128348 0.000122811 0.000116558 0.000109549 0.000101648 9.24999e-05 8.12387e-05 6.7136e-05 5.14872e-05 3.48203e-05 1.85804e-05 6.22602e-06 1.02313e-06 1.03365e-07 5.9407e-08 1.33967e-07 1.72146e-07 9.27138e-07 5.11776e-06 1.27875e-05 1.9984e-05 2.95435e-05 4.21858e-05 5.79183e-05 7.5617e-05 9.28488e-05 0.000106124 0.000115526 0.000123003 0.000128608 0.000132449 0.00013465 0.000135334 0.000134045 0.000130108 0.000125014 0.000119275 0.000112972 0.000106025 9.82674e-05 8.93622e-05 7.85399e-05 6.48692e-05 4.96825e-05 3.3508e-05 1.77862e-05 5.91459e-06 9.6808e-07 9.93042e-08 5.81329e-08 1.33681e-07 1.67098e-07 8.48848e-07 4.65688e-06 1.14736e-05 1.82427e-05 2.7508e-05 4.00988e-05 5.61021e-05 7.41895e-05 9.12462e-05 0.000102307 0.00011142 0.000118616 0.000123975 0.000127626 0.000129706 0.000130351 0.000129607 0.000126781 0.000121588 0.00011554 0.000109034 0.000102026 9.43365e-05 8.56987e-05 7.55657e-05 6.2539e-05 4.78919e-05 3.22693e-05 1.70813e-05 5.65283e-06 9.23654e-07 9.62851e-08 5.73264e-08 1.33218e-07 1.61797e-07 7.68321e-07 4.18351e-06 1.01932e-05 1.65123e-05 2.54488e-05 3.79754e-05 5.42523e-05 7.24452e-05 8.75662e-05 9.82675e-05 0.000107077 0.000113988 0.000119105 0.000122578 0.000124559 0.000125191 0.000124518 0.000122557 0.000118269 0.000112149 0.000105479 9.8462e-05 9.0921e-05 8.25436e-05 7.27631e-05 6.02596e-05 4.60856e-05 3.0961e-05 1.62958e-05 5.35028e-06 8.70914e-07 9.23312e-08 5.60203e-08 1.32646e-07 1.56831e-07 6.94836e-07 3.7432e-06 9.00231e-06 1.48702e-05 2.34705e-05 3.59501e-05 5.25528e-05 7.08548e-05 8.37338e-05 9.41028e-05 0.000102569 0.000109157 0.000114003 0.000117276 0.000119142 0.000119751 0.000119141 0.000117312 0.000114302 0.000108351 0.000101497 9.43629e-05 8.68448e-05 7.86446e-05 6.93106e-05 5.78833e-05 4.42962e-05 2.975e-05 1.56235e-05 5.10771e-06 8.30679e-07 8.96479e-08 5.53176e-08 1.31935e-07 1.51637e-07 6.1896e-07 3.29134e-06 7.8421e-06 1.32356e-05 2.14579e-05 3.38581e-05 5.06451e-05 6.78543e-05 7.96093e-05 8.96237e-05 9.77341e-05 0.000104003 0.000108593 0.000111695 0.000113483 0.000114115 0.000113617 0.000111972 0.000109206 0.000104684 9.80101e-05 9.08412e-05 8.34005e-05 7.542e-05 6.64288e-05 5.55178e-05 4.24211e-05 2.83938e-05 1.48157e-05 4.80295e-06 7.7832e-07 8.56256e-08 5.39173e-08 1.31158e-07 1.46897e-07 5.51743e-07 2.88307e-06 6.78431e-06 1.1711e-05 1.95598e-05 3.19351e-05 4.89343e-05 6.40591e-05 7.54248e-05 8.50122e-05 9.26991e-05 9.85925e-05 0.000102889 0.000105795 0.000107495 0.000108148 0.000107765 0.000106304 0.000103782 0.00010019 9.38153e-05 8.65691e-05 7.91145e-05 7.13016e-05 6.27981e-05 5.30858e-05 4.0623e-05 2.71984e-05 1.41628e-05 4.57067e-06 7.40592e-07 8.35116e-08 5.32751e-08 1.30283e-07 1.41929e-07 4.81575e-07 2.46154e-06 5.74842e-06 1.01795e-05 1.75905e-05 2.98976e-05 4.71932e-05 5.99111e-05 7.08635e-05 8.00031e-05 8.72582e-05 9.27855e-05 9.68143e-05 9.95658e-05 0.000101229 0.000101962 0.000101755 0.00010054 9.83195e-05 9.50727e-05 9.01074e-05 8.31086e-05 7.57136e-05 6.80703e-05 5.9875e-05 5.0563e-05 3.86344e-05 2.57534e-05 1.33093e-05 4.26195e-06 6.9272e-07 8.12386e-08 5.16687e-08 1.29333e-07 1.37485e-07 4.21573e-07 2.0916e-06 4.81813e-06 8.75616e-06 1.57179e-05 2.78811e-05 4.39952e-05 5.58305e-05 6.62869e-05 7.48869e-05 8.16275e-05 8.6725e-05 9.04421e-05 9.30127e-05 9.46296e-05 9.54427e-05 9.54176e-05 9.44511e-05 9.25342e-05 8.96362e-05 8.56897e-05 7.8866e-05 7.14615e-05 6.39431e-05 5.60793e-05 4.74042e-05 3.68021e-05 2.4584e-05 1.27059e-05 4.06518e-06 6.64979e-07 8.04808e-08 5.10234e-08 1.28261e-07 1.32803e-07 3.5884e-07 1.70978e-06 3.90431e-06 7.29668e-06 1.36659e-05 2.54985e-05 3.98813e-05 5.12511e-05 6.12022e-05 6.92777e-05 7.554e-05 8.02601e-05 8.37273e-05 8.61777e-05 8.78102e-05 8.87703e-05 8.89857e-05 8.83236e-05 8.67591e-05 8.42375e-05 8.0689e-05 7.56312e-05 6.84964e-05 6.10107e-05 5.32826e-05 4.48711e-05 3.46814e-05 2.30447e-05 1.18132e-05 3.7512e-06 6.14988e-07 7.67655e-08 4.90606e-08 1.26992e-07 1.28752e-07 3.09939e-07 1.39957e-06 3.11885e-06 5.96119e-06 1.16667e-05 2.31275e-05 3.57123e-05 4.65476e-05 5.59287e-05 6.34327e-05 6.91948e-05 7.35359e-05 7.67615e-05 7.90995e-05 8.07559e-05 8.18714e-05 8.23243e-05 8.19551e-05 8.07244e-05 7.85456e-05 7.53675e-05 7.118e-05 6.45019e-05 5.70982e-05 4.95632e-05 4.16807e-05 3.27535e-05 2.1827e-05 1.11922e-05 3.54587e-06 5.83173e-07 7.48603e-08 4.83253e-08 1.25522e-07 1.24491e-07 2.59148e-07 1.07928e-06 2.3405e-06 4.53249e-06 9.21695e-06 1.95618e-05 3.03946e-05 4.0597e-05 4.94655e-05 5.65494e-05 6.2009e-05 6.61813e-05 6.93675e-05 7.17764e-05 7.35853e-05 7.49503e-05 7.57453e-05 7.5757e-05 7.48983e-05 7.31019e-05 7.03589e-05 6.66367e-05 6.18577e-05 5.49197e-05 4.74005e-05 3.95522e-05 3.06739e-05 2.03025e-05 1.03112e-05 3.23905e-06 5.32929e-07 7.02462e-08 4.60635e-08 1.23744e-07 1.21312e-07 2.32694e-07 8.91249e-07 1.79365e-06 3.36989e-06 6.87939e-06 1.54148e-05 2.46083e-05 3.38641e-05 4.20675e-05 4.87056e-05 5.39188e-05 5.80241e-05 6.12919e-05 6.38986e-05 6.59666e-05 6.76359e-05 6.8782e-05 6.91267e-05 6.85964e-05 6.71541e-05 6.47868e-05 6.14695e-05 5.71371e-05 5.0821e-05 4.36751e-05 3.63149e-05 2.83703e-05 1.87551e-05 9.47344e-06 2.95287e-06 4.87306e-07 6.72089e-08 4.52194e-08 1.21734e-07 1.17837e-07 2.05763e-07 7.15885e-07 1.33259e-06 2.29628e-06 4.34888e-06 9.57467e-06 1.67888e-05 2.44216e-05 3.18394e-05 3.82505e-05 4.35595e-05 4.79562e-05 5.16823e-05 5.49345e-05 5.77313e-05 6.00329e-05 6.17508e-05 6.26865e-05 6.27649e-05 6.19424e-05 6.01963e-05 5.74878e-05 5.37381e-05 4.88336e-05 4.2057e-05 3.4824e-05 2.68925e-05 1.7694e-05 8.88102e-06 2.75501e-06 4.54662e-07 6.36092e-08 4.32045e-08 1.18817e-07 1.14897e-07 2.07446e-07 7.22011e-07 1.2652e-06 1.92558e-06 3.03754e-06 5.51011e-06 1.00209e-05 1.48033e-05 2.04266e-05 2.61282e-05 3.14003e-05 3.60514e-05 4.03163e-05 4.42909e-05 4.79145e-05 5.10684e-05 5.35656e-05 5.51479e-05 5.57667e-05 5.54322e-05 5.41281e-05 5.18394e-05 4.85157e-05 4.34287e-05 3.74198e-05 3.10081e-05 2.39131e-05 1.55348e-05 7.63155e-06 2.31924e-06 3.84998e-07 5.89462e-08 4.21867e-08 1.1439e-07 1.09865e-07 1.94916e-07 6.80435e-07 1.27734e-06 1.90509e-06 2.67442e-06 3.72441e-06 5.39692e-06 7.13528e-06 9.20833e-06 1.23292e-05 1.65171e-05 2.13642e-05 2.62727e-05 3.11377e-05 3.58282e-05 4.01681e-05 4.39786e-05 4.70397e-05 4.90615e-05 4.98312e-05 4.94921e-05 4.81286e-05 4.54437e-05 4.0746e-05 3.54967e-05 2.97696e-05 2.34672e-05 1.55108e-05 7.73884e-06 2.38937e-06 3.97261e-07 5.8944e-08 4.15597e-08 1.08046e-07 1.04599e-07 2.01367e-07 7.43525e-07 1.6094e-06 2.5995e-06 3.86006e-06 5.22186e-06 6.44614e-06 7.48977e-06 8.11513e-06 8.87631e-06 1.00875e-05 1.21611e-05 1.54356e-05 1.97366e-05 2.44831e-05 2.93077e-05 3.38565e-05 3.78241e-05 4.09521e-05 4.29623e-05 4.35051e-05 4.26074e-05 3.97688e-05 3.58291e-05 3.14216e-05 2.64774e-05 2.09198e-05 1.34535e-05 6.42251e-06 1.88881e-06 3.12693e-07 5.34704e-08 4.08056e-08 1.02068e-07 9.96459e-08 1.9541e-07 7.17531e-07 1.88429e-06 3.33437e-06 5.12463e-06 6.58877e-06 7.84907e-06 8.93816e-06 9.65961e-06 1.00821e-05 1.04302e-05 1.09383e-05 1.20138e-05 1.38746e-05 1.59043e-05 1.90542e-05 2.29982e-05 2.70989e-05 3.09326e-05 3.41054e-05 3.62401e-05 3.68543e-05 3.49857e-05 3.21502e-05 2.86363e-05 2.45991e-05 1.98993e-05 1.38514e-05 7.14383e-06 2.27041e-06 3.82436e-07 5.85066e-08 4.2326e-08 9.89875e-08 9.9364e-08 2.2432e-07 8.48559e-07 2.2025e-06 3.99035e-06 5.75098e-06 7.33601e-06 8.85722e-06 1.04285e-05 1.20816e-05 1.3757e-05 1.50944e-05 1.56721e-05 1.6735e-05 1.86764e-05 2.01199e-05 2.15714e-05 2.36502e-05 2.63993e-05 2.94482e-05 3.24571e-05 3.49746e-05 3.63773e-05 3.47447e-05 3.1925e-05 2.82571e-05 2.40596e-05 1.93567e-05 1.32428e-05 6.30178e-06 1.81504e-06 2.96343e-07 5.31474e-08 4.13753e-08 9.83121e-08 1.03396e-07 3.01315e-07 1.21694e-06 2.94995e-06 4.69612e-06 6.04141e-06 7.27125e-06 8.70749e-06 1.05131e-05 1.27018e-05 1.51547e-05 1.70041e-05 1.77696e-05 1.90934e-05 2.11156e-05 2.30092e-05 2.54026e-05 2.60561e-05 2.58182e-05 2.54268e-05 2.50267e-05 2.46398e-05 2.41672e-05 2.34164e-05 2.22395e-05 2.05554e-05 1.82356e-05 1.50822e-05 1.09122e-05 5.99847e-06 1.95702e-06 3.26916e-07 5.25894e-08 3.81719e-08 9.60003e-08 1.09245e-07 4.34511e-07 1.70791e-06 3.39652e-06 4.45693e-06 5.1306e-06 5.81862e-06 6.71858e-06 7.95489e-06 9.63044e-06 1.18161e-05 1.45263e-05 1.77096e-05 2.12685e-05 2.50818e-05 2.90126e-05 3.29165e-05 3.66405e-05 3.99783e-05 4.26542e-05 4.44422e-05 4.50919e-05 4.43713e-05 4.21095e-05 3.68145e-05 2.76879e-05 2.0633e-05 1.50709e-05 9.40394e-06 3.579e-06 8.7849e-07 1.45697e-07 3.34959e-08 2.65415e-08 6.64402e-08 1.30071e-07 1.02191e-06 3.10843e-06 3.81425e-06 4.01201e-06 4.26074e-06 4.55578e-06 4.89235e-06 5.28573e-06 5.75223e-06 6.30301e-06 6.9396e-06 7.6497e-06 8.40525e-06 9.16306e-06 9.86843e-06 1.0458e-05 1.08673e-05 1.10265e-05 1.09483e-05 1.06148e-05 1.00155e-05 9.15728e-06 8.06187e-06 6.76328e-06 5.32287e-06 3.83607e-06 2.42871e-06 1.27051e-06 5.04709e-07 1.44023e-07 3.09156e-08 1.06026e-08 8.87669e-09 3.10277e-08 1.72146e-06 2.06722e-06 2.27607e-06 2.47234e-06 2.61809e-06 2.71562e-06 2.77613e-06 2.80729e-06 2.81504e-06 2.80419e-06 2.77868e-06 2.74158e-06 2.69512e-06 2.64076e-06 2.57923e-06 2.51073e-06 2.43498e-06 2.3511e-06 2.25662e-06 2.15296e-06 2.03746e-06 1.90795e-06 1.76159e-06 1.59596e-06 1.40918e-06 1.20155e-06 9.77363e-07 7.47318e-07 5.30431e-07 3.49917e-07 2.21512e-07 1.38968e-07 8.45704e-08 1.65308e-09 7.5417e-11 4.84735e-09 8.71706e-09 1.35512e-08 1.96184e-08 2.71893e-08 3.64869e-08 4.76507e-08 6.07118e-08 7.55824e-08 9.2062e-08 1.09859e-07 1.28622e-07 1.47968e-07 1.67508e-07 1.86862e-07 2.05655e-07 2.23519e-07 2.40077e-07 2.54927e-07 2.67606e-07 2.77691e-07 2.84733e-07 2.88282e-07 2.87928e-07 2.83361e-07 2.74451e-07 2.61329e-07 2.44484e-07 2.24801e-07 2.03578e-07 1.82545e-07 1.61787e-07 1.3105e-07 3.44219e-09 1.15734e-10 1.1641e-10 2.33193e-10 1.08375e-09 4.33467e-09 1.29546e-08 3.10248e-08 6.31828e-08 1.13661e-07 1.84999e-07 2.76799e-07 3.84978e-07 5.01843e-07 6.17044e-07 7.1928e-07 7.98387e-07 8.47312e-07 8.63389e-07 8.48696e-07 8.08317e-07 7.5107e-07 6.8494e-07 6.16877e-07 5.51875e-07 4.92832e-07 4.40913e-07 3.95813e-07 3.561e-07 3.17507e-07 2.67015e-07 1.82191e-07 8.03563e-08 2.3564e-08 1.04615e-08 1.00931e-08 3.18685e-10 3.52162e-10 1.01221e-09 4.97115e-09 1.83838e-08 5.08529e-08 1.14126e-07 2.19516e-07 3.73809e-07 5.75285e-07 8.12496e-07 1.06666e-06 1.3162e-06 1.54117e-06 1.72633e-06 1.86246e-06 1.94612e-06 1.9771e-06 1.95883e-06 1.89652e-06 1.79841e-06 1.67256e-06 1.52666e-06 1.36803e-06 1.2036e-06 1.03996e-06 8.82559e-07 7.32319e-07 5.76912e-07 3.89466e-07 1.88855e-07 6.26132e-08 2.13517e-08 1.57912e-08 1.71693e-08 1.05177e-09 1.13167e-09 2.96939e-09 1.43252e-08 5.43199e-08 1.57157e-07 3.72341e-07 7.53707e-07 1.3327e-06 2.09248e-06 2.96636e-06 3.86038e-06 4.68071e-06 5.35219e-06 5.82622e-06 6.0817e-06 6.12243e-06 5.972e-06 5.66632e-06 5.247e-06 4.75949e-06 4.24255e-06 3.72594e-06 3.22973e-06 2.76489e-06 2.33364e-06 1.92652e-06 1.51544e-06 1.06076e-06 5.87109e-07 2.34335e-07 7.06803e-08 2.56653e-08 2.06076e-08 2.23061e-08 2.1622e-09 2.33808e-09 6.91579e-09 3.63967e-08 1.44986e-07 4.35322e-07 1.04444e-06 2.06075e-06 3.42431e-06 4.94659e-06 6.42599e-06 7.72132e-06 8.75494e-06 9.49072e-06 9.91608e-06 1.00337e-05 9.86007e-06 9.42709e-06 8.78224e-06 7.98463e-06 7.09948e-06 6.18909e-06 5.30432e-06 4.47871e-06 3.72534e-06 3.03575e-06 2.38115e-06 1.72758e-06 1.0582e-06 5.50614e-07 2.15554e-07 6.82213e-08 2.78275e-08 2.35108e-08 2.53146e-08 2.91386e-09 3.20492e-09 1.0681e-08 5.86711e-08 2.31926e-07 6.73146e-07 1.52681e-06 2.82118e-06 4.42463e-06 6.13765e-06 7.78983e-06 9.26846e-06 1.05086e-05 1.14736e-05 1.21431e-05 1.25083e-05 1.257e-05 1.23367e-05 1.18241e-05 1.10695e-05 1.01219e-05 9.03773e-06 7.87501e-06 6.68392e-06 5.41377e-06 4.10526e-06 2.83284e-06 1.75691e-06 1.00043e-06 5.4057e-07 2.29784e-07 7.28644e-08 3.03192e-08 2.59667e-08 2.79401e-08 3.54015e-09 3.93285e-09 1.39181e-08 7.79265e-08 3.08837e-07 8.96214e-07 2.02387e-06 3.70154e-06 5.72202e-06 7.81107e-06 9.75889e-06 1.11836e-05 1.25025e-05 1.3745e-05 1.474e-05 1.52012e-05 1.5352e-05 1.52054e-05 1.47763e-05 1.40858e-05 1.31578e-05 1.20202e-05 1.07028e-05 9.23462e-06 7.22558e-06 5.16553e-06 3.38686e-06 2.0449e-06 1.15751e-06 6.25731e-07 2.75063e-07 8.47708e-08 3.3924e-08 2.87628e-08 3.09201e-08 4.06761e-09 4.62329e-09 1.81241e-08 1.04471e-07 4.14894e-07 1.1924e-06 2.63543e-06 4.68931e-06 7.06874e-06 9.47031e-06 1.16458e-05 1.33079e-05 1.48749e-05 1.63684e-05 1.75212e-05 1.81396e-05 1.84298e-05 1.84053e-05 1.80797e-05 1.74642e-05 1.65664e-05 1.53894e-05 1.39317e-05 1.21921e-05 9.39078e-06 6.55601e-06 4.23113e-06 2.5498e-06 1.45118e-06 7.85797e-07 3.55395e-07 1.04777e-07 3.85581e-08 3.167e-08 3.39457e-08 4.47214e-09 5.16807e-09 2.15221e-08 1.25539e-07 4.97193e-07 1.4188e-06 3.10261e-06 5.4565e-06 8.14496e-06 1.08383e-05 1.33006e-05 1.52313e-05 1.70924e-05 1.88874e-05 2.00477e-05 2.08571e-05 2.13308e-05 2.14796e-05 2.13109e-05 2.08265e-05 2.00177e-05 1.88633e-05 1.73311e-05 1.53867e-05 1.20266e-05 8.38809e-06 5.43348e-06 3.31498e-06 1.91913e-06 1.05468e-06 4.97459e-07 1.41663e-07 4.57356e-08 3.47953e-08 3.70529e-08 4.96109e-09 5.88451e-09 2.67235e-08 1.591e-07 6.32305e-07 1.79633e-06 3.87453e-06 6.68946e-06 9.81601e-06 1.28901e-05 1.56746e-05 1.79307e-05 2.00993e-05 2.19593e-05 2.32704e-05 2.4208e-05 2.47871e-05 2.50197e-05 2.49121e-05 2.44605e-05 2.36456e-05 2.24296e-05 2.0758e-05 1.85735e-05 1.45233e-05 1.02327e-05 6.7326e-06 4.19417e-06 2.48686e-06 1.39779e-06 6.7907e-07 1.87795e-07 5.27822e-08 3.79055e-08 4.01087e-08 5.42011e-09 6.57694e-09 3.19537e-08 1.9256e-07 7.63792e-07 2.15076e-06 4.57202e-06 7.77513e-06 1.12761e-05 1.46953e-05 1.78256e-05 2.0388e-05 2.28416e-05 2.48911e-05 2.64267e-05 2.75634e-05 2.83127e-05 2.86817e-05 2.86705e-05 2.82679e-05 2.74434e-05 2.61458e-05 2.4306e-05 2.18551e-05 1.69505e-05 1.21126e-05 8.12951e-06 5.18185e-06 3.1496e-06 1.81411e-06 9.10372e-07 2.49617e-07 6.27885e-08 4.10955e-08 4.30814e-08 5.9107e-09 7.36059e-09 3.83455e-08 2.34038e-07 9.28303e-07 2.59494e-06 5.43855e-06 9.10622e-06 1.30415e-05 1.68467e-05 2.03174e-05 2.32645e-05 2.59941e-05 2.81664e-05 2.98988e-05 3.12028e-05 3.20883e-05 3.25576e-05 3.26046e-05 3.22105e-05 3.13334e-05 2.99106e-05 2.7864e-05 2.46942e-05 1.92987e-05 1.39957e-05 9.57857e-06 6.24376e-06 3.88722e-06 2.29432e-06 1.18684e-06 3.26756e-07 7.53455e-08 4.43599e-08 4.59757e-08 6.43635e-09 8.22926e-09 4.5736e-08 2.82046e-07 1.11696e-06 3.09312e-06 6.38284e-06 1.05238e-05 1.48966e-05 1.90934e-05 2.29148e-05 2.61776e-05 2.91916e-05 3.16156e-05 3.35664e-05 3.50531e-05 3.60812e-05 3.66465e-05 3.67358e-05 3.6324e-05 3.53592e-05 3.37713e-05 3.14784e-05 2.73561e-05 2.15476e-05 1.58669e-05 1.10635e-05 7.36316e-06 4.68603e-06 2.82868e-06 1.50326e-06 4.17561e-07 8.99706e-08 4.76679e-08 4.87836e-08 6.96261e-09 9.13707e-09 5.38285e-08 3.34703e-07 1.32235e-06 3.62637e-06 7.37345e-06 1.19912e-05 1.68065e-05 2.14042e-05 2.55885e-05 2.92382e-05 3.24835e-05 3.51656e-05 3.73402e-05 3.90127e-05 4.01834e-05 4.0839e-05 4.09592e-05 4.05134e-05 3.9441e-05 3.76662e-05 3.51072e-05 2.9981e-05 2.37759e-05 1.77586e-05 1.26001e-05 8.54846e-06 5.55148e-06 3.42147e-06 1.86096e-06 5.22725e-07 1.06768e-07 5.10349e-08 5.15173e-08 7.53095e-09 1.01538e-08 6.32436e-08 3.96161e-07 1.56107e-06 4.23665e-06 8.48387e-06 1.36084e-05 1.88863e-05 2.38979e-05 2.84527e-05 3.24389e-05 3.5974e-05 3.89154e-05 4.13096e-05 4.31592e-05 4.4458e-05 4.51831e-05 4.53072e-05 4.47979e-05 4.35871e-05 4.15971e-05 3.83464e-05 3.25415e-05 2.59754e-05 1.96488e-05 1.41658e-05 9.78171e-06 6.47059e-06 4.06392e-06 2.25334e-06 6.40331e-07 1.25465e-07 5.44507e-08 5.41797e-08 8.11082e-09 1.12256e-08 7.3485e-08 4.62976e-07 1.81805e-06 4.88048e-06 9.63162e-06 1.52608e-05 2.1003e-05 2.64364e-05 3.13734e-05 3.57368e-05 3.95248e-05 4.27562e-05 4.53782e-05 4.74092e-05 4.88357e-05 4.96227e-05 4.97366e-05 4.91471e-05 4.77798e-05 4.55573e-05 4.12703e-05 3.50562e-05 2.81978e-05 2.15769e-05 1.57798e-05 1.10713e-05 7.44723e-06 4.75823e-06 2.68137e-06 7.70938e-07 1.46171e-07 5.79236e-08 5.67733e-08 8.7217e-09 1.239e-08 8.49501e-08 5.37862e-07 2.10408e-06 5.5849e-06 1.08643e-05 1.70131e-05 2.32305e-05 2.90937e-05 3.44184e-05 3.91375e-05 4.31576e-05 4.67243e-05 4.95707e-05 5.17769e-05 5.33209e-05 5.41544e-05 5.42384e-05 5.3548e-05 5.20047e-05 4.93831e-05 4.41538e-05 3.75442e-05 3.04181e-05 2.35286e-05 1.74352e-05 1.24118e-05 8.47671e-06 5.50039e-06 3.1405e-06 9.12982e-07 1.68644e-07 6.14435e-08 5.93007e-08 9.35781e-09 1.36315e-08 9.74832e-08 6.1976e-07 2.41419e-06 6.33453e-06 1.21531e-05 1.8827e-05 2.55257e-05 3.18262e-05 3.75463e-05 4.26195e-05 4.68811e-05 5.07279e-05 5.38595e-05 5.62389e-05 5.78942e-05 5.87631e-05 5.88011e-05 5.79923e-05 5.62563e-05 5.26387e-05 4.69703e-05 4.00639e-05 3.26751e-05 2.55207e-05 1.91396e-05 1.38077e-05 9.56224e-06 6.29321e-06 3.63268e-06 1.06738e-06 1.93048e-07 6.50199e-08 6.17624e-08 1.00206e-08 1.49455e-08 1.11072e-07 7.08651e-07 2.74793e-06 7.12691e-06 1.34936e-05 2.06969e-05 2.78817e-05 3.46254e-05 4.07467e-05 4.61766e-05 5.06985e-05 5.46973e-05 5.82204e-05 6.07747e-05 6.2536e-05 6.34305e-05 6.34089e-05 6.24657e-05 6.0249e-05 5.58294e-05 4.97585e-05 4.25794e-05 3.49526e-05 2.7548e-05 2.0889e-05 1.52543e-05 1.06996e-05 7.13313e-06 4.15393e-06 1.23283e-06 2.19185e-07 6.8642e-08 6.41581e-08 1.07137e-08 1.63216e-08 1.25675e-07 8.04488e-07 3.10507e-06 7.96062e-06 1.48837e-05 2.26207e-05 3.02956e-05 3.74862e-05 4.40113e-05 4.97992e-05 5.46169e-05 5.87202e-05 6.23441e-05 6.53166e-05 6.72232e-05 6.81353e-05 6.80436e-05 6.6882e-05 6.3782e-05 5.89253e-05 5.25545e-05 4.51255e-05 3.72669e-05 2.96196e-05 2.26887e-05 1.67554e-05 1.18917e-05 8.02286e-06 4.7061e-06 1.41026e-06 2.47227e-07 7.23184e-08 6.64868e-08 1.1432e-08 1.77107e-08 1.40948e-07 9.05581e-07 3.47985e-06 8.82266e-06 1.63042e-05 2.45753e-05 3.2742e-05 4.03816e-05 4.7312e-05 5.34586e-05 5.86228e-05 6.28438e-05 6.64977e-05 6.95161e-05 7.16976e-05 7.2805e-05 7.25113e-05 7.06892e-05 6.71945e-05 6.20137e-05 5.536e-05 4.76883e-05 3.96069e-05 3.17287e-05 2.45325e-05 1.8305e-05 1.31336e-05 8.9584e-06 5.28483e-06 1.59823e-06 2.76962e-07 7.6035e-08 6.87452e-08 1.21801e-08 1.90492e-08 1.56649e-07 1.01162e-06 3.87289e-06 9.71609e-06 1.77616e-05 2.6569e-05 3.52279e-05 4.33145e-05 5.06459e-05 5.71456e-05 6.26796e-05 6.70367e-05 7.07312e-05 7.37441e-05 7.58776e-05 7.68809e-05 7.64246e-05 7.4362e-05 7.05733e-05 6.50935e-05 5.81729e-05 5.02714e-05 4.19774e-05 3.3876e-05 2.64226e-05 1.99049e-05 1.44267e-05 9.94129e-06 5.89109e-06 1.79736e-06 3.08517e-07 7.97956e-08 7.09303e-08 1.29542e-08 2.02318e-08 1.72469e-07 1.12241e-06 4.28541e-06 1.0644e-05 1.92605e-05 2.86071e-05 3.7758e-05 4.62884e-05 5.40147e-05 6.08588e-05 6.67694e-05 7.12529e-05 7.49654e-05 7.79409e-05 7.99901e-05 8.08554e-05 8.02132e-05 7.79161e-05 7.38638e-05 6.81237e-05 6.0969e-05 5.28607e-05 4.43681e-05 3.60514e-05 2.83519e-05 2.15487e-05 1.57663e-05 1.09678e-05 6.52065e-06 2.00627e-06 3.4169e-07 8.35851e-08 7.30374e-08 1.37617e-08 2.13745e-08 1.89567e-07 1.24407e-06 4.73398e-06 1.16326e-05 2.08306e-05 3.07177e-05 4.03565e-05 4.93226e-05 5.74325e-05 6.46066e-05 7.08102e-05 7.54725e-05 7.9185e-05 8.20946e-05 8.40299e-05 8.47336e-05 8.38932e-05 8.13685e-05 7.70778e-05 7.1108e-05 6.37468e-05 5.54527e-05 4.67766e-05 3.82562e-05 3.03206e-05 2.32361e-05 1.71519e-05 1.20381e-05 7.17318e-06 2.22509e-06 3.76536e-07 8.74018e-08 7.50615e-08 1.46037e-08 2.30931e-08 2.10723e-07 1.38464e-06 5.23066e-06 1.26903e-05 2.2474e-05 3.28981e-05 4.30186e-05 5.24124e-05 6.08956e-05 6.83866e-05 7.48466e-05 7.96868e-05 8.33881e-05 8.62114e-05 8.80147e-05 8.85433e-05 8.74979e-05 8.47478e-05 8.0232e-05 7.40531e-05 6.65062e-05 5.80434e-05 4.91964e-05 4.04811e-05 3.2314e-05 2.49591e-05 1.85779e-05 1.31478e-05 7.84392e-06 2.45218e-06 4.12815e-07 9.12256e-08 7.69941e-08 1.54832e-08 2.50509e-08 2.33949e-07 1.53608e-06 5.75559e-06 1.37865e-05 2.41565e-05 3.51156e-05 4.57145e-05 5.5531e-05 6.43802e-05 7.21784e-05 7.88835e-05 8.38766e-05 8.75528e-05 9.02745e-05 9.19333e-05 9.22803e-05 9.10298e-05 8.80626e-05 8.33368e-05 7.69687e-05 6.92545e-05 6.06371e-05 5.16292e-05 4.2726e-05 3.43319e-05 2.67157e-05 2.00425e-05 1.42955e-05 8.53137e-06 2.68722e-06 4.50512e-07 9.50495e-08 7.88282e-08 1.63951e-08 2.70862e-08 2.5825e-07 1.69433e-06 6.29783e-06 1.49025e-05 2.58557e-05 3.73475e-05 4.84226e-05 5.86579e-05 6.78672e-05 7.59641e-05 8.29038e-05 8.80325e-05 9.16701e-05 9.42772e-05 9.57813e-05 9.59432e-05 9.4491e-05 9.13165e-05 8.6394e-05 7.9852e-05 7.19861e-05 6.32265e-05 5.4067e-05 4.49836e-05 3.63701e-05 2.85002e-05 2.15405e-05 1.54772e-05 9.23087e-06 2.92848e-06 4.89377e-07 9.88519e-08 8.05551e-08 1.73422e-08 2.9256e-08 2.84537e-07 1.86489e-06 6.87338e-06 1.60647e-05 2.76022e-05 3.96215e-05 5.11642e-05 6.18077e-05 7.13649e-05 7.97475e-05 8.69081e-05 9.2132e-05 9.57176e-05 9.82046e-05 9.95513e-05 9.95303e-05 9.78835e-05 9.4514e-05 8.94103e-05 8.27102e-05 7.47065e-05 6.58149e-05 5.65109e-05 4.72534e-05 3.8427e-05 3.03105e-05 2.30698e-05 1.66907e-05 9.93992e-06 3.1751e-06 5.29293e-07 1.0262e-07 8.21688e-08 1.83201e-08 3.1538e-08 3.12425e-07 2.04499e-06 7.47246e-06 1.72558e-05 2.93762e-05 4.19196e-05 5.39246e-05 6.49688e-05 7.48644e-05 8.35217e-05 9.08918e-05 9.61656e-05 9.96829e-05 0.000102046 0.000103238 0.00010304 0.000101209 9.76581e-05 9.23884e-05 8.55439e-05 7.74138e-05 6.83998e-05 5.89584e-05 4.95329e-05 4.04998e-05 3.21423e-05 2.46278e-05 1.79335e-05 1.06554e-05 3.42585e-06 5.70071e-07 1.06338e-07 8.36653e-08 1.93292e-08 3.39307e-08 3.41898e-07 2.23446e-06 8.0931e-06 1.84695e-05 3.11657e-05 4.42244e-05 5.66825e-05 6.81178e-05 7.83413e-05 8.72622e-05 9.48297e-05 0.000100119 0.000103554 0.000105791 0.000106831 0.000106465 0.000104462 0.000100746 9.53265e-05 8.83525e-05 8.01083e-05 7.0981e-05 6.14088e-05 5.18204e-05 4.25853e-05 3.39894e-05 2.62112e-05 1.92034e-05 1.1375e-05 3.67987e-06 6.11594e-07 1.09998e-07 8.50425e-08 2.03652e-08 3.64385e-08 3.73107e-07 2.43414e-06 8.73744e-06 1.97102e-05 3.2978e-05 4.65448e-05 5.94464e-05 7.12615e-05 8.1801e-05 9.0973e-05 9.87257e-05 0.000103979 0.000107316 0.000109428 0.000110324 0.000109802 0.000107642 0.000103776 9.82241e-05 9.11352e-05 8.27882e-05 7.35562e-05 6.38592e-05 5.41128e-05 4.46809e-05 3.58533e-05 2.78178e-05 2.04976e-05 1.20956e-05 3.93591e-06 6.53661e-07 1.13584e-07 8.62982e-08 2.14269e-08 3.90495e-08 4.05831e-07 2.64247e-06 9.39962e-06 2.09664e-05 3.47973e-05 4.88623e-05 6.21972e-05 7.43814e-05 8.52256e-05 9.46377e-05 0.000102565 0.00010773 0.000110957 0.000112948 0.000113711 0.000113047 0.000110746 0.000106749 0.000101081 9.38909e-05 8.54514e-05 7.6122e-05 6.63068e-05 5.6408e-05 4.67854e-05 3.77331e-05 2.94468e-05 2.18151e-05 1.2816e-05 4.19343e-06 6.96189e-07 1.17092e-07 8.74346e-08 2.25097e-08 4.17581e-08 4.40044e-07 2.85916e-06 1.00781e-05 2.22353e-05 3.66196e-05 5.11714e-05 6.49273e-05 7.74681e-05 8.86045e-05 9.82446e-05 0.000106336 0.000111363 0.000114471 0.000116348 0.00011699 0.000116198 0.000113773 0.000109662 0.000103893 9.66161e-05 8.80947e-05 7.86761e-05 6.8749e-05 5.87034e-05 4.88963e-05 3.9627e-05 3.1097e-05 2.31548e-05 1.35348e-05 4.45192e-06 7.39106e-07 1.20515e-07 8.84527e-08 2.36114e-08 4.45599e-08 4.75684e-07 3.08367e-06 1.07706e-05 2.35127e-05 3.84397e-05 5.34664e-05 6.76309e-05 8.05153e-05 9.19311e-05 0.000101787 0.000110032 0.000114864 0.00011785 0.000119623 0.000120156 0.000119251 0.000116719 0.000112511 0.000106659 9.93095e-05 9.07174e-05 8.1218e-05 7.11855e-05 6.09988e-05 5.10131e-05 4.15338e-05 3.27669e-05 2.4515e-05 1.42505e-05 4.71072e-06 7.82291e-07 1.23851e-07 8.93579e-08 2.47282e-08 4.74331e-08 5.12403e-07 3.31375e-06 1.14703e-05 2.47878e-05 4.02443e-05 5.57327e-05 7.02928e-05 8.35082e-05 9.5191e-05 0.00010525 0.000113582 0.000118221 0.000121101 0.000122774 0.000123208 0.000122206 0.000119584 0.000115298 0.000109378 0.000101969 9.33159e-05 8.37427e-05 7.36108e-05 6.32901e-05 5.31339e-05 4.34536e-05 3.44581e-05 2.58975e-05 1.49639e-05 4.9704e-06 8.25885e-07 1.27106e-07 9.01525e-08 2.58604e-08 5.03806e-08 5.50221e-07 3.54894e-06 1.21745e-05 2.60556e-05 4.20276e-05 5.79641e-05 7.29065e-05 8.64402e-05 9.83778e-05 0.000108629 0.000116887 0.000121427 0.00012421 0.000125793 0.000126142 0.000125061 0.000122368 0.000118019 0.000112047 0.000104591 9.58871e-05 8.62477e-05 7.60231e-05 6.5575e-05 5.52553e-05 4.53819e-05 3.61651e-05 2.72962e-05 1.56709e-05 5.22882e-06 8.69432e-07 1.30255e-07 9.08418e-08 2.70004e-08 5.33806e-08 5.88858e-07 3.78784e-06 1.288e-05 2.73111e-05 4.37827e-05 6.01525e-05 7.54638e-05 8.93031e-05 0.000101484 0.000111917 0.000120057 0.000124487 0.000127178 0.000128683 0.000128963 0.000127818 0.00012507 0.000120675 0.000114665 0.000107172 9.84272e-05 8.87288e-05 7.8418e-05 6.78497e-05 5.73758e-05 4.73207e-05 3.78938e-05 2.8719e-05 1.63759e-05 5.48848e-06 9.135e-07 1.33331e-07 9.14307e-08 2.81479e-08 5.64223e-08 6.28123e-07 4.02923e-06 1.35835e-05 2.85507e-05 4.55061e-05 6.2294e-05 7.79599e-05 9.20918e-05 0.000104504 0.000115108 0.000123086 0.000127397 0.000130003 0.000131444 0.00013167 0.000130479 0.000127692 0.000123267 0.000117231 0.000109715 0.000100938 9.11893e-05 8.08002e-05 7.0119e-05 5.94974e-05 4.92676e-05 3.9637e-05 3.01564e-05 1.70743e-05 5.74705e-06 9.57542e-07 1.36295e-07 9.19259e-08 2.9299e-08 5.95048e-08 6.6804e-07 4.27274e-06 1.42829e-05 2.97704e-05 4.71935e-05 6.43846e-05 8.03911e-05 9.48026e-05 0.000107435 0.000118201 0.000125974 0.00013016 0.00013269 0.000134081 0.000134271 0.000133049 0.000130238 0.000125795 0.000119747 0.000112217 0.000103416 9.36231e-05 8.3161e-05 7.23735e-05 6.16133e-05 5.12188e-05 4.13921e-05 3.16046e-05 1.77614e-05 6.00216e-06 1.00117e-06 1.39126e-07 9.23326e-08 3.04478e-08 6.2614e-08 7.08473e-07 4.51818e-06 1.49794e-05 3.09734e-05 4.8848e-05 6.64265e-05 8.2759e-05 9.74367e-05 0.000110277 0.000121194 0.000128727 0.000132781 0.000135243 0.000136599 0.000136765 0.000135527 0.000132705 0.000128257 0.000122206 0.000114671 0.000105854 9.60243e-05 8.54951e-05 7.46066e-05 6.37157e-05 5.31714e-05 4.31725e-05 3.30925e-05 1.84536e-05 6.26139e-06 1.04562e-06 1.41868e-07 9.26585e-08 3.15916e-08 6.57411e-08 7.4928e-07 4.76437e-06 1.56693e-05 3.21541e-05 5.04639e-05 6.84143e-05 8.50582e-05 9.99889e-05 0.000113025 0.000124084 0.000131336 0.000135252 0.000137657 0.000138991 0.000139149 0.000137907 0.000135085 0.000130642 0.000124599 0.000117069 0.000108247 9.83915e-05 8.78104e-05 7.68414e-05 6.58423e-05 5.51589e-05 4.49542e-05 3.4458e-05 1.91212e-05 6.51441e-06 1.08933e-06 1.44411e-07 9.2909e-08 3.27276e-08 6.88735e-08 7.9027e-07 5.01014e-06 1.63497e-05 3.33085e-05 5.20363e-05 7.03427e-05 8.72836e-05 0.000102454 0.000115676 0.000126868 0.000133803 0.000137578 0.000139937 0.000141264 0.000141427 0.000140192 0.000137382 0.000132954 0.00012693 0.000119416 0.000110599 0.000100731 9.01126e-05 7.90803e-05 6.79922e-05 5.71809e-05 4.67285e-05 3.5547e-05 1.97566e-05 6.75815e-06 1.13158e-06 1.46669e-07 9.30935e-08 3.38563e-08 7.20078e-08 8.31353e-07 5.25482e-06 1.70187e-05 3.44339e-05 5.35617e-05 7.22077e-05 8.94309e-05 0.000104829 0.000118226 0.000129542 0.00013613 0.000139768 0.000142093 0.000143427 0.000143605 0.000142388 0.000139599 0.000135197 0.000129202 0.000121715 0.000112915 0.000103045 9.24009e-05 8.13161e-05 7.01472e-05 5.92083e-05 4.84936e-05 3.66064e-05 2.03698e-05 6.99308e-06 1.17189e-06 1.48518e-07 9.32212e-08 3.49745e-08 7.51307e-08 8.72328e-07 5.49719e-06 1.76736e-05 3.5526e-05 5.50351e-05 7.40037e-05 9.14946e-05 0.000107108 0.00012067 0.000132103 0.000138318 0.000141828 0.000144138 0.000145488 0.000145689 0.000144496 0.000141737 0.000137371 0.000131415 0.000123964 0.000115191 0.000105329 9.46679e-05 8.35402e-05 7.22985e-05 6.12356e-05 5.02512e-05 3.76365e-05 2.09611e-05 7.21773e-06 1.20944e-06 1.49757e-07 9.32937e-08 3.60794e-08 7.82401e-08 9.13192e-07 5.73724e-06 1.83144e-05 3.65858e-05 5.64574e-05 7.57314e-05 9.34745e-05 0.00010929 0.000123006 0.000134551 0.000140359 0.000143768 0.000146083 0.000147456 0.000147681 0.000146517 0.000143795 0.000139473 0.000133564 0.000126159 0.000117419 0.000107574 9.69067e-05 8.57462e-05 7.44419e-05 6.32627e-05 5.20065e-05 3.86426e-05 2.15338e-05 7.43198e-06 1.24343e-06 1.50096e-07 9.33169e-08 3.71668e-08 8.13235e-08 9.53769e-07 5.97395e-06 1.89392e-05 3.76111e-05 5.78273e-05 7.73901e-05 9.53705e-05 0.000111374 0.000125231 0.000136632 0.000142253 0.00014562 0.000147933 0.000149322 0.000149574 0.000148446 0.000145768 0.000141498 0.000135645 0.000128292 0.000119596 0.000109777 9.91135e-05 8.79321e-05 7.6578e-05 6.52918e-05 5.37599e-05 3.96138e-05 2.20768e-05 7.62889e-06 1.27201e-06 1.49399e-07 9.32986e-08 3.82349e-08 8.43694e-08 9.93861e-07 6.20621e-06 1.95458e-05 3.85994e-05 5.91427e-05 7.8979e-05 9.71835e-05 0.000113364 0.000127353 0.00013851 0.000144021 0.000147356 0.000149675 0.000151088 0.000151374 0.000150287 0.00014766 0.000143448 0.000137656 0.000130364 0.00012172 0.000111936 0.000101287 9.00958e-05 7.87024e-05 6.73158e-05 5.54991e-05 4.05334e-05 2.25774e-05 7.80428e-06 1.2959e-06 1.48464e-07 9.32541e-08 3.92846e-08 8.73755e-08 1.03341e-06 6.43376e-06 2.01339e-05 3.95513e-05 6.04047e-05 8.04996e-05 9.89154e-05 0.000115263 0.000129375 0.000140271 0.000145674 0.000148983 0.000151315 0.000152759 0.000153084 0.000152043 0.000149471 0.000145321 0.000139597 0.000132372 0.000123787 0.000114049 0.000103424 9.22354e-05 8.08145e-05 6.93345e-05 5.72271e-05 4.1422e-05 2.30613e-05 7.9782e-06 1.32207e-06 1.48635e-07 9.31989e-08 4.03163e-08 9.03397e-08 1.07238e-06 6.65642e-06 2.07036e-05 4.04673e-05 6.16145e-05 8.19536e-05 0.000100569 0.000117073 0.000131301 0.000141929 0.000147224 0.000150513 0.000152863 0.000154343 0.000154711 0.000153721 0.000151208 0.000147124 0.000141472 0.00013432 0.000125801 0.000116116 0.000105526 9.43501e-05 8.29119e-05 7.13457e-05 5.89481e-05 4.23049e-05 2.35534e-05 8.16496e-06 1.35366e-06 1.50018e-07 9.31359e-08 4.13293e-08 9.32593e-08 1.11072e-06 6.87396e-06 2.12547e-05 4.13479e-05 6.27732e-05 8.33429e-05 0.000102146 0.000118797 0.000133135 0.000143489 0.00014868 0.000151953 0.000154327 0.000155846 0.000156262 0.000155326 0.000152873 0.000148858 0.000143279 0.000136203 0.000127756 0.000118132 0.000107586 9.6434e-05 8.49895e-05 7.33459e-05 6.06614e-05 4.31858e-05 2.4054e-05 8.36117e-06 1.38827e-06 1.51784e-07 9.3063e-08 4.23212e-08 9.61262e-08 1.1483e-06 7.08569e-06 2.17862e-05 4.2192e-05 6.38803e-05 8.46676e-05 0.000103647 0.000120438 0.000134878 0.000144953 0.000150041 0.000153303 0.000155706 0.000157268 0.000157733 0.000156851 0.000154461 0.000150515 0.000145012 0.000138014 0.000129643 0.000120085 0.000109594 9.84794e-05 8.70486e-05 7.53494e-05 6.23915e-05 4.4076e-05 2.45692e-05 8.56795e-06 1.42542e-06 1.53716e-07 9.29873e-08 4.32908e-08 9.89253e-08 1.18486e-06 7.2902e-06 2.22951e-05 4.29965e-05 6.49331e-05 8.59259e-05 0.000105073 0.000121995 0.000136533 0.000146324 0.000151312 0.000154568 0.000157004 0.000158612 0.000159128 0.000158301 0.000155972 0.000152094 0.000146668 0.000139752 0.000131467 0.000121991 0.00011157 0.000100506 8.90963e-05 7.73515e-05 6.41326e-05 4.49779e-05 2.50978e-05 8.78311e-06 1.46443e-06 1.55753e-07 9.29177e-08 4.4242e-08 1.01666e-07 1.22051e-06 7.48826e-06 2.27839e-05 4.37652e-05 6.59363e-05 8.71231e-05 0.000106428 0.000123474 0.000138104 0.00014761 0.000152502 0.000155757 0.000158229 0.000159886 0.000160454 0.000159682 0.000157413 0.000153603 0.000148254 0.000141424 0.000133232 0.000123855 0.000113534 0.000102558 9.11828e-05 7.9312e-05 6.56012e-05 4.58475e-05 2.56166e-05 8.99823e-06 1.50396e-06 1.57833e-07 9.28599e-08 4.5178e-08 1.04347e-07 1.25519e-06 7.67967e-06 2.32526e-05 4.44992e-05 6.6892e-05 8.82621e-05 0.000107716 0.00012488 0.000139597 0.000148822 0.000153622 0.000156881 0.000159394 0.000161102 0.000161723 0.000161005 0.000158795 0.000155052 0.000149778 0.000143035 0.00013494 0.000125671 0.000115463 0.000104593 9.32639e-05 8.12304e-05 6.67834e-05 4.66888e-05 2.61244e-05 9.21117e-06 1.54347e-06 1.59928e-07 9.28166e-08 4.61035e-08 1.06994e-07 1.28929e-06 7.86666e-06 2.37067e-05 4.5206e-05 6.7809e-05 8.93524e-05 0.000108947 0.000126222 0.000141022 0.000149969 0.000154683 0.00015795 0.000160507 0.000162268 0.000162942 0.000162278 0.000160125 0.000156445 0.000151244 0.000144585 0.000136588 0.000127428 0.000117341 0.000106585 9.53075e-05 8.31116e-05 6.79397e-05 4.75138e-05 2.66251e-05 9.42273e-06 1.58298e-06 1.6204e-07 9.27904e-08 4.70202e-08 1.0961e-07 1.32283e-06 8.04937e-06 2.41469e-05 4.58878e-05 6.86905e-05 9.0398e-05 0.000110126 0.000127506 0.000142383 0.000151049 0.000155682 0.000158964 0.000161569 0.000163385 0.000164111 0.000163498 0.000161399 0.000157779 0.000152648 0.00014607 0.000138167 0.000129118 0.000119154 0.000108518 9.7302e-05 8.49524e-05 6.90671e-05 4.83213e-05 2.71176e-05 9.63219e-06 1.62232e-06 1.64158e-07 9.27798e-08 4.79302e-08 1.12186e-07 1.35564e-06 8.22694e-06 2.45716e-05 4.65427e-05 6.95353e-05 9.13985e-05 0.000111253 0.000128731 0.000143683 0.000152068 0.000156625 0.000159927 0.000162585 0.000164456 0.000165235 0.000164671 0.000162623 0.000159059 0.000153992 0.000147491 0.00013968 0.000130739 0.000120899 0.000110389 9.92442e-05 8.67521e-05 7.01656e-05 4.91115e-05 2.76023e-05 9.83986e-06 1.66157e-06 1.66288e-07 9.2785e-08 4.88402e-08 1.14741e-07 1.38797e-06 8.40078e-06 2.49843e-05 4.71757e-05 7.0349e-05 9.23597e-05 0.000112333 0.000129906 0.000144927 0.000153029 0.000157517 0.000160845 0.000163558 0.000165486 0.000166315 0.000165798 0.000163797 0.000160286 0.00015528 0.00014885 0.000141124 0.000132288 0.000122572 0.000112193 0.000101129 8.85071e-05 7.12339e-05 4.98835e-05 2.80784e-05 1.00453e-05 1.70066e-06 1.68427e-07 9.2807e-08 4.97514e-08 1.17264e-07 1.41961e-06 8.56992e-06 2.5383e-05 4.77846e-05 7.11298e-05 9.32807e-05 0.000113367 0.000131029 0.000146117 0.000153938 0.000158363 0.000161725 0.000164497 0.00016648 0.000167356 0.000166881 0.000164925 0.000161463 0.000156512 0.000150148 0.000142504 0.000133767 0.000124174 0.000113928 0.000102952 9.02121e-05 7.22721e-05 5.06379e-05 2.85469e-05 1.02491e-05 1.73966e-06 1.70582e-07 9.28504e-08 5.06662e-08 1.19784e-07 1.45105e-06 8.73693e-06 2.57734e-05 4.83768e-05 7.18852e-05 9.41683e-05 0.000114361 0.000132106 0.000147257 0.000154794 0.000159168 0.000162573 0.000165404 0.00016744 0.000168359 0.000167925 0.00016601 0.000162592 0.000157692 0.000151389 0.000143818 0.000135177 0.000125704 0.000115592 0.00010471 9.18642e-05 7.32784e-05 5.1373e-05 2.90062e-05 1.04504e-05 1.77845e-06 1.72744e-07 9.29131e-08 5.15806e-08 1.22272e-07 1.48185e-06 8.89956e-06 2.6151e-05 4.89471e-05 7.26103e-05 9.50181e-05 0.000115311 0.000133135 0.000148345 0.00015559 0.000159934 0.000163392 0.000166281 0.000168363 0.000169322 0.000168925 0.000167049 0.000163672 0.000158819 0.000152571 0.00014507 0.000136519 0.000127159 0.000117177 0.00010639 9.34474e-05 7.42453e-05 5.20823e-05 2.94516e-05 1.06468e-05 1.8165e-06 1.74884e-07 9.29913e-08 5.24966e-08 1.24739e-07 1.51214e-06 9.05858e-06 2.65178e-05 4.94981e-05 7.33081e-05 9.58329e-05 0.000116218 0.000134112 0.000149213 0.000156328 0.000160688 0.000164191 0.000167126 0.00016925 0.000170246 0.000169885 0.000168045 0.000164706 0.000159895 0.000153696 0.000146258 0.000137788 0.000128537 0.000118682 0.000107993 9.49643e-05 7.51719e-05 5.27648e-05 2.98824e-05 1.0838e-05 1.85382e-06 1.76998e-07 9.30816e-08 5.34172e-08 1.27179e-07 1.5418e-06 9.21355e-06 2.68731e-05 5.00294e-05 7.39786e-05 9.66141e-05 0.000117086 0.000135046 0.000149948 0.000157018 0.000161404 0.000164952 0.000167934 0.000170099 0.000171132 0.000170805 0.000168997 0.000165692 0.00016092 0.000154768 0.000147389 0.000138997 0.000129846 0.00012011 0.000109516 9.64125e-05 7.60594e-05 5.34207e-05 3.02979e-05 1.10233e-05 1.89014e-06 1.79066e-07 9.318e-08 5.43448e-08 1.29615e-07 1.57122e-06 9.36638e-06 2.72209e-05 5.05459e-05 7.4627e-05 9.73662e-05 0.000117919 0.00013594 0.000150639 0.000157668 0.000162083 0.00016568 0.000168709 0.000170916 0.000171984 0.000171688 0.00016991 0.000166636 0.000161898 0.000155791 0.000148473 0.000140165 0.000131121 0.000121491 0.000110931 9.7663e-05 7.68866e-05 5.40363e-05 3.06905e-05 1.12e-05 1.92509e-06 1.8107e-07 9.32853e-08 5.52798e-08 1.32056e-07 1.60056e-06 9.51799e-06 2.75634e-05 5.10513e-05 7.52577e-05 9.8094e-05 0.000118722 0.000136798 0.000151284 0.000158273 0.000162722 0.000166371 0.00016945 0.000171699 0.000172803 0.000172537 0.000170787 0.00016754 0.000162834 0.000156767 0.000149506 0.000141281 0.000132341 0.00012281 0.000112238 9.85947e-05 7.76509e-05 5.46088e-05 3.10573e-05 1.13658e-05 1.95811e-06 1.82973e-07 9.33906e-08 5.62176e-08 1.34475e-07 1.62937e-06 9.66605e-06 2.78959e-05 5.15398e-05 7.5865e-05 9.87927e-05 0.000119491 0.000137617 0.000151883 0.000158833 0.00016332 0.000167026 0.000170157 0.00017245 0.000173589 0.000173352 0.000171628 0.000168407 0.000163729 0.000157699 0.000150491 0.000142338 0.000133492 0.000124046 0.000113455 9.94674e-05 7.83659e-05 5.51449e-05 3.14014e-05 1.15215e-05 1.98915e-06 1.84767e-07 9.34943e-08 5.71606e-08 1.36878e-07 1.65772e-06 9.81106e-06 2.82196e-05 5.20125e-05 7.64501e-05 9.94632e-05 0.000120226 0.000138399 0.000152436 0.000159349 0.000163878 0.000167644 0.000170831 0.000173168 0.000174343 0.000174136 0.000172437 0.000169239 0.000164587 0.00015859 0.000151427 0.000143339 0.000134575 0.000125201 0.000114589 0.000100288 7.90394e-05 5.56514e-05 3.17281e-05 1.16702e-05 2.01891e-06 1.86494e-07 9.36006e-08 5.81067e-08 1.39239e-07 1.68521e-06 9.95096e-06 2.85302e-05 5.24643e-05 7.70075e-05 0.0001001 0.000120923 0.00013914 0.000152946 0.000159825 0.000164399 0.000168229 0.000171474 0.000173859 0.00017507 0.000174892 0.000173218 0.000170042 0.000165413 0.000159445 0.000152322 0.000144291 0.000135599 0.000126289 0.000115655 0.000101065 7.96782e-05 5.61347e-05 3.20427e-05 1.1815e-05 2.04809e-06 1.88193e-07 9.37091e-08 5.90599e-08 1.41595e-07 1.71244e-06 1.0089e-05 2.88346e-05 5.29039e-05 7.75461e-05 0.000100713 0.00012159 0.000139846 0.000153416 0.000160262 0.000164886 0.000168784 0.00017209 0.000174524 0.000175773 0.000175625 0.000173974 0.00017082 0.000166211 0.000160268 0.00015318 0.000145199 0.000136569 0.000127315 0.000116655 0.000101796 8.02807e-05 5.65918e-05 3.23418e-05 1.19535e-05 2.07614e-06 1.89831e-07 9.38155e-08 6.002e-08 1.43928e-07 1.73913e-06 1.02237e-05 2.91303e-05 5.33288e-05 7.8064e-05 0.000101298 0.000122225 0.000140516 0.00015384 0.000160654 0.000165333 0.000169303 0.000172674 0.000175159 0.000176448 0.000176331 0.000174704 0.000171569 0.000166979 0.000161058 0.000154 0.000146061 0.000137486 0.000128278 0.00011759 0.000102482 8.0845e-05 5.70202e-05 3.26228e-05 1.20842e-05 2.10271e-06 1.91381e-07 9.39141e-08 6.09878e-08 1.46253e-07 1.76553e-06 1.03565e-05 2.942e-05 5.37423e-05 7.85648e-05 0.000101861 0.000122832 0.000141152 0.000154225 0.000161008 0.000165745 0.00016979 0.00017323 0.000175768 0.000177098 0.000177012 0.000175409 0.000172293 0.000167721 0.000161818 0.000154786 0.000146884 0.000138356 0.000129185 0.000118467 0.000103121 8.13689e-05 5.74168e-05 3.28828e-05 1.22054e-05 2.12744e-06 1.92817e-07 9.39954e-08 6.19619e-08 1.48556e-07 1.79136e-06 1.04859e-05 2.9701e-05 5.41414e-05 7.90456e-05 0.000102399 0.000123409 0.000141755 0.000154566 0.000161319 0.000166116 0.000170242 0.000173752 0.000176347 0.00017772 0.000177665 0.000176087 0.00017299 0.000168434 0.000162548 0.000155538 0.000147667 0.000139179 0.00013004 0.000119288 0.000103716 8.18539e-05 5.77822e-05 3.31216e-05 1.23168e-05 2.15027e-06 1.94131e-07 9.4055e-08 6.29385e-08 1.50797e-07 1.81601e-06 1.0609e-05 2.99672e-05 5.45182e-05 7.94982e-05 0.000102903 0.000123949 0.000142317 0.000154865 0.000161588 0.000166449 0.000170658 0.000174243 0.000176897 0.000178314 0.000178293 0.000176741 0.000173663 0.000169122 0.000163251 0.000156261 0.000148418 0.000139964 0.00013085 0.000120061 0.000104272 8.23061e-05 5.81221e-05 3.33437e-05 1.24208e-05 2.17164e-06 1.9535e-07 9.40969e-08 6.39211e-08 1.53008e-07 1.84001e-06 1.07285e-05 3.02239e-05 5.48788e-05 7.9928e-05 0.00010338 0.000124456 0.000142843 0.000155131 0.000161826 0.000166753 0.000171047 0.000174709 0.000177424 0.000178888 0.000178902 0.000177376 0.000174317 0.000169791 0.000163935 0.000156962 0.000149142 0.000140717 0.000131622 0.000120792 0.000104793 8.27282e-05 5.84388e-05 3.35509e-05 1.25183e-05 2.19176e-06 1.96483e-07 9.41225e-08 6.49074e-08 1.55167e-07 1.86302e-06 1.08426e-05 3.04685e-05 5.52205e-05 8.03333e-05 0.000103826 0.000124929 0.000143332 0.000155357 0.000162028 0.000167024 0.000171407 0.000175149 0.000177928 0.00017944 0.000179491 0.000177992 0.000174953 0.000170442 0.000164599 0.00015764 0.00014984 0.000141438 0.000132356 0.000121479 0.000105276 8.31161e-05 5.87283e-05 3.37397e-05 1.26073e-05 2.21016e-06 1.97502e-07 9.41293e-08 6.59017e-08 1.57288e-07 1.88522e-06 1.09525e-05 3.07025e-05 5.55452e-05 8.07156e-05 0.000104245 0.00012537 0.000143785 0.000155551 0.000162199 0.000167266 0.00017174 0.000175564 0.000178409 0.000179972 0.000180061 0.00017859 0.000175573 0.000171078 0.000165248 0.000158302 0.000150518 0.000142135 0.000133057 0.000122128 0.000105723 8.34737e-05 5.89939e-05 3.39128e-05 1.2689e-05 2.22706e-06 1.98418e-07 9.41174e-08 6.69039e-08 1.59406e-07 1.90725e-06 1.10614e-05 3.09328e-05 5.58615e-05 8.10838e-05 0.000104644 0.000125786 0.00014421 0.000155721 0.000162349 0.000167491 0.000172059 0.000175967 0.00017888 0.000180494 0.000180622 0.00017918 0.000176184 0.000171705 0.000165888 0.000158955 0.000151185 0.000142814 0.000133733 0.000122743 0.000106134 8.37983e-05 5.92326e-05 3.40674e-05 1.27619e-05 2.24216e-06 1.99212e-07 9.40819e-08 6.79093e-08 1.6149e-07 1.92859e-06 1.11668e-05 3.11549e-05 5.61645e-05 8.1434e-05 0.00010502 0.000126176 0.000144604 0.000155848 0.000162458 0.00016768 0.000172347 0.000176344 0.000179326 0.000180994 0.000181161 0.00017975 0.000176776 0.000172315 0.000166512 0.000159592 0.000151835 0.000143474 0.000134384 0.000123324 0.000106508 8.4088e-05 5.94413e-05 3.42001e-05 1.28241e-05 2.25498e-06 1.99849e-07 9.40121e-08 6.89164e-08 1.6352e-07 1.94894e-06 1.12671e-05 3.13653e-05 5.64495e-05 8.17608e-05 0.000105369 0.000126534 0.000144965 0.000155939 0.000162536 0.000167844 0.000172615 0.000176704 0.000179758 0.000181479 0.000181687 0.000180306 0.000177356 0.000172913 0.000167126 0.000160221 0.000152478 0.000144124 0.00013502 0.000123883 0.000106854 8.43517e-05 5.96281e-05 3.43174e-05 1.28787e-05 2.26621e-06 2.00369e-07 9.39086e-08 6.99243e-08 1.65488e-07 1.96815e-06 1.13616e-05 3.15624e-05 5.67138e-05 8.20607e-05 0.000105686 0.000126858 0.000145289 0.000155992 0.000162581 0.000167983 0.000172866 0.00017705 0.000180177 0.000181952 0.000182201 0.000180852 0.000177927 0.000173505 0.000167737 0.000160849 0.000153122 0.000144777 0.000135655 0.000124432 0.000107174 8.459e-05 5.9793e-05 3.44191e-05 1.29259e-05 2.27589e-06 2.00773e-07 9.37705e-08 7.09305e-08 1.6736e-07 1.98561e-06 1.14472e-05 3.17398e-05 5.69488e-05 8.23239e-05 0.000105961 0.000127137 0.000145567 0.000155987 0.000162577 0.000168085 0.000173087 0.000177372 0.000180573 0.000182403 0.000182692 0.000181376 0.000178478 0.00017408 0.000168334 0.000161468 0.00015376 0.000145427 0.000136289 0.000124972 0.000107468 8.48011e-05 5.99325e-05 3.4501e-05 1.29628e-05 2.28339e-06 2.01017e-07 9.35883e-08 7.19326e-08 1.69122e-07 2.00116e-06 1.15231e-05 3.18952e-05 5.71504e-05 8.25451e-05 0.000106188 0.000127364 0.000145792 0.000155932 0.000162537 0.000168164 0.000173293 0.000177679 0.000180955 0.000182839 0.000183171 0.000181888 0.00017902 0.000174649 0.000168928 0.000162087 0.000154404 0.000146087 0.000136933 0.000125518 0.000107749 8.4999e-05 6.00599e-05 3.45738e-05 1.29952e-05 2.28993e-06 2.01179e-07 9.33713e-08 7.29372e-08 1.70822e-07 2.01555e-06 1.15928e-05 3.20353e-05 5.73265e-05 8.27312e-05 0.000106373 0.000127543 0.000145967 0.000155813 0.000162453 0.000168218 0.00017348 0.000177968 0.000181317 0.000183256 0.000183632 0.000182387 0.000179551 0.000175209 0.000169518 0.000162709 0.000155057 0.000146764 0.000137599 0.000126081 0.000108023 8.51894e-05 6.01806e-05 3.46417e-05 1.30254e-05 2.29605e-06 2.01293e-07 9.31277e-08 7.39392e-08 1.72403e-07 2.02783e-06 1.1652e-05 3.21525e-05 5.74677e-05 8.28719e-05 0.000106502 0.00012766 0.000145986 0.000155612 0.000162345 0.000168257 0.000173645 0.000178228 0.000181651 0.000183648 0.000184071 0.000182866 0.000180066 0.000175758 0.000170101 0.000163328 0.000155716 0.000147455 0.000138285 0.00012666 0.000108288 8.53694e-05 6.02907e-05 3.47009e-05 1.3051e-05 2.30114e-06 2.01324e-07 9.28574e-08 7.49483e-08 1.739e-07 2.03847e-06 1.1703e-05 3.22507e-05 5.7579e-05 8.29731e-05 0.000106584 0.00012772 0.000145716 0.000155349 0.000162209 0.000168265 0.000173777 0.000178458 0.000181957 0.000184014 0.000184487 0.000183325 0.000180563 0.000176291 0.000170672 0.000163943 0.000156378 0.000148158 0.000138992 0.000127261 0.000108554 8.55507e-05 6.04013e-05 3.47599e-05 1.30763e-05 2.30619e-06 2.01335e-07 9.25661e-08 7.59676e-08 1.75303e-07 2.04728e-06 1.17449e-05 3.23284e-05 5.7658e-05 8.30317e-05 0.000106616 0.000127725 0.000145378 0.000155023 0.000162021 0.000168229 0.000173871 0.000178656 0.000182235 0.000184356 0.000184881 0.000183764 0.000181042 0.00017681 0.000171233 0.000164552 0.000157041 0.00014887 0.000139714 0.000127874 0.000108817 8.573e-05 6.05106e-05 3.48181e-05 1.31014e-05 2.31117e-06 2.01324e-07 9.22566e-08 7.69938e-08 1.76636e-07 2.05472e-06 1.17797e-05 3.23893e-05 5.77093e-05 8.30522e-05 0.0001066 0.000127676 0.000144971 0.000154633 0.00016178 0.000168151 0.000173932 0.000178825 0.000182488 0.000184676 0.000185255 0.000184185 0.000181505 0.000177315 0.000171784 0.000165156 0.000157706 0.000149594 0.000140456 0.000128509 0.000109075 8.59032e-05 6.06145e-05 3.48722e-05 1.31244e-05 2.31577e-06 2.01278e-07 9.19304e-08 7.80305e-08 1.77881e-07 2.06036e-06 1.18056e-05 3.24305e-05 5.77299e-05 8.30322e-05 0.000106536 0.000127571 0.000144475 0.000154154 0.000161462 0.000168006 0.000173935 0.000178944 0.000182696 0.000184953 0.000185589 0.000184568 0.000181934 0.00017779 0.000172309 0.000165739 0.000158356 0.000150309 0.000141198 0.000129146 0.000109326 8.60721e-05 6.07145e-05 3.49229e-05 1.31455e-05 2.31992e-06 2.01195e-07 9.1591e-08 7.90789e-08 1.7901e-07 2.06376e-06 1.18204e-05 3.2447e-05 5.77126e-05 8.29633e-05 0.000106414 0.000127403 0.00014391 0.00015361 0.000161085 0.000167813 0.000173897 0.000179027 0.000182872 0.000185201 0.000185897 0.000184927 0.000182343 0.00017825 0.000172826 0.000166321 0.000159008 0.000151027 0.000141944 0.00012979 0.000109582 8.62483e-05 6.08229e-05 3.49806e-05 1.31705e-05 2.32492e-06 2.01153e-07 9.1247e-08 8.01478e-08 1.8011e-07 2.06624e-06 1.18305e-05 3.24512e-05 5.76723e-05 8.28599e-05 0.000106248 0.000127181 0.000143267 0.000152991 0.000160645 0.000167569 0.000173819 0.000179078 0.00018302 0.000185424 0.000186179 0.000185261 0.000182727 0.00017869 0.000173333 0.000166903 0.000159666 0.000151741 0.000142661 0.000130394 0.000109817 8.64076e-05 6.0918e-05 3.50288e-05 1.31907e-05 2.32897e-06 2.01049e-07 9.08907e-08 8.12264e-08 1.81033e-07 2.0654e-06 1.18245e-05 3.24219e-05 5.75838e-05 8.2697e-05 0.000106014 0.000126885 0.000142516 0.000152267 0.000160114 0.000167248 0.000173676 0.000179073 0.000183119 0.000185602 0.00018642 0.000185556 0.000183074 0.000179095 0.000173808 0.000167466 0.000160323 0.000152461 0.000143328 0.000130777 0.00011002 8.65473e-05 6.10017e-05 3.5071e-05 1.32086e-05 2.33261e-06 2.00916e-07 9.05224e-08 8.23327e-08 1.8191e-07 2.06326e-06 1.18116e-05 3.23748e-05 5.74637e-05 8.2489e-05 0.000105722 0.000126524 0.000141684 0.000151464 0.000159516 0.000166874 0.00017349 0.000179032 0.000183187 0.000185751 0.000186634 0.000185824 0.000183394 0.000179473 0.000174258 0.000168004 0.000160959 0.000153165 0.000143966 0.000131015 0.0001102 8.66711e-05 6.10757e-05 3.5108e-05 1.32246e-05 2.33595e-06 2.00763e-07 9.01471e-08 8.34633e-08 1.82684e-07 2.05886e-06 1.17875e-05 3.23028e-05 5.73042e-05 8.22277e-05 0.000105366 0.000126088 0.000140743 0.000150557 0.00015883 0.000166428 0.000173246 0.000178942 0.00018321 0.000185858 0.000186805 0.00018605 0.000183672 0.000179808 0.000174664 0.000168499 0.000161553 0.000153827 0.000144563 0.000131217 0.00011035 8.67707e-05 6.11316e-05 3.5133e-05 1.32347e-05 2.33811e-06 2.00533e-07 8.97578e-08 8.46251e-08 1.83405e-07 2.05293e-06 1.17552e-05 3.22109e-05 5.71108e-05 8.19186e-05 0.00010495 0.000125581 0.000139689 0.000149542 0.000158054 0.000165911 0.000172944 0.000178801 0.000183186 0.00018592 0.000186932 0.00018623 0.000183903 0.000180096 0.000175022 0.000168946 0.000162098 0.000154441 0.000145115 0.000131383 0.000110471 8.68492e-05 6.11734e-05 3.51498e-05 1.32414e-05 2.3396e-06 2.00261e-07 8.93598e-08 8.58282e-08 1.84084e-07 2.0455e-06 1.17147e-05 3.20986e-05 5.68824e-05 8.15597e-05 0.00010447 0.000125001 0.000138517 0.000148419 0.000157196 0.000165331 0.00017259 0.000178612 0.000183115 0.000185934 0.000187012 0.000186365 0.000184089 0.000180337 0.000175332 0.000169343 0.000162593 0.000155007 0.000145623 0.000131508 0.000110559 8.69031e-05 6.11983e-05 3.51565e-05 1.32437e-05 2.34027e-06 1.99939e-07 8.89528e-08 8.70714e-08 1.84704e-07 2.0363e-06 1.16642e-05 3.19607e-05 5.66101e-05 8.1139e-05 0.000103914 0.000124335 0.000137213 0.000147195 0.000156269 0.000164697 0.000172183 0.000178368 0.000182987 0.000185892 0.000187035 0.000186442 0.000184215 0.000180518 0.000175579 0.000169674 0.00016302 0.000155506 0.000146068 0.000131585 0.000110608 8.69278e-05 6.1203e-05 3.51513e-05 1.32411e-05 2.33998e-06 1.99561e-07 8.85387e-08 8.83655e-08 1.85371e-07 2.02713e-06 1.16128e-05 3.18134e-05 5.63096e-05 8.06652e-05 0.000103276 0.000123168 0.000135763 0.000145957 0.000155345 0.000164045 0.000171739 0.000178078 0.000182811 0.000185802 0.000187011 0.000186471 0.000184293 0.000180646 0.00017577 0.000169946 0.000163385 0.000155938 0.000146449 0.000131611 0.000110616 8.692e-05 6.1185e-05 3.51323e-05 1.32322e-05 2.33845e-06 1.99106e-07 8.81139e-08 8.97087e-08 1.85941e-07 2.01559e-06 1.15508e-05 3.16431e-05 5.59708e-05 8.01359e-05 0.000102561 0.000121624 0.00013419 0.000144648 0.000154343 0.000163311 0.000171218 0.000177719 0.000182574 0.000185655 0.000186932 0.000186445 0.000184313 0.000180715 0.000175899 0.000170151 0.000163678 0.000156297 0.000146757 0.000131574 0.000110571 8.68712e-05 6.11378e-05 3.50954e-05 1.32156e-05 2.33541e-06 1.98563e-07 8.7678e-08 9.1129e-08 1.86521e-07 2.00294e-06 1.1482e-05 3.14538e-05 5.55969e-05 7.95543e-05 0.000101778 0.000119974 0.000132507 0.000143237 0.000153253 0.000162503 0.000170631 0.000177298 0.000182276 0.000185447 0.000186791 0.000186355 0.000184268 0.000180714 0.000175953 0.000170277 0.000163886 0.000156566 0.000146977 0.000131468 0.000110465 8.67731e-05 6.10533e-05 3.50341e-05 1.31877e-05 2.33008e-06 1.97874e-07 8.72188e-08 9.26176e-08 1.87111e-07 1.98943e-06 1.14085e-05 3.12508e-05 5.51943e-05 7.89271e-05 0.000100933 0.000118231 0.000130727 0.000141738 0.000152088 0.00016163 0.000169988 0.000176827 0.00018193 0.000185191 0.0001866 0.000186213 0.000184164 0.000180651 0.000175939 0.000170326 0.000164009 0.000156742 0.000147103 0.000131284 0.000110294 8.66218e-05 6.09296e-05 3.49479e-05 1.31485e-05 2.32249e-06 1.97047e-07 8.67394e-08 9.41691e-08 1.87642e-07 1.97395e-06 1.1325e-05 3.10238e-05 5.47517e-05 7.82432e-05 0.000100016 0.000116375 0.000128833 0.000140135 0.000150831 0.000160675 0.000169269 0.000176283 0.000181512 0.000184864 0.000186337 0.000185996 0.000183985 0.000180509 0.000175842 0.000170287 0.000164038 0.00015682 0.000147131 0.000131017 0.000110051 8.64124e-05 6.07626e-05 3.48341e-05 1.30967e-05 2.31239e-06 1.96058e-07 8.62307e-08 9.57876e-08 1.8817e-07 1.9574e-06 1.12349e-05 3.07778e-05 5.42724e-05 7.75044e-05 9.90278e-05 0.000114418 0.000126852 0.000138465 0.000149519 0.000159668 0.000168494 0.000175679 0.000181031 0.00018447 0.000186004 0.000185705 0.000183727 0.000180283 0.000175656 0.000170152 0.000163962 0.000156783 0.000147042 0.000130657 0.000109728 8.61386e-05 6.05483e-05 3.46907e-05 1.3032e-05 2.29975e-06 1.94911e-07 8.56954e-08 9.74662e-08 1.88684e-07 1.93962e-06 1.11367e-05 3.05072e-05 5.37471e-05 7.66986e-05 9.79629e-05 0.000112347 0.000124803 0.000136755 0.000148168 0.00015861 0.000167659 0.000175008 0.000180478 0.000184 0.000185592 0.000185332 0.000183384 0.000179967 0.000175373 0.000169913 0.000163773 0.000156625 0.000146831 0.000130194 0.000109315 8.57891e-05 6.02757e-05 3.45085e-05 1.29492e-05 2.28343e-06 1.93523e-07 8.51151e-08 9.9206e-08 1.89216e-07 1.92119e-06 1.10327e-05 3.02123e-05 5.31644e-05 7.57853e-05 9.58934e-05 0.000110141 0.000122844 0.000135113 0.000146813 0.000157499 0.000166745 0.000174249 0.000179837 0.000183444 0.000185092 0.000184869 0.000182946 0.000179553 0.000174986 0.000169562 0.000163461 0.000156333 0.000146485 0.000129626 0.000108811 8.53667e-05 5.99504e-05 3.42942e-05 1.28528e-05 2.2645e-06 1.9197e-07 8.45033e-08 1.01018e-07 1.89804e-07 1.90294e-06 1.09303e-05 2.99172e-05 5.25733e-05 7.48527e-05 9.38367e-05 0.00010792 0.000120822 0.000133384 0.000145373 0.00015631 0.000165763 0.000173428 0.000179133 0.000182821 0.000184521 0.00018433 0.000182427 0.00017905 0.000174504 0.000169108 0.000163038 0.00015592 0.000146014 0.000128944 0.000108207 8.48616e-05 5.95621e-05 3.40392e-05 1.27378e-05 2.24184e-06 1.90171e-07 8.38455e-08 1.02904e-07 1.90407e-07 1.88397e-06 1.08237e-05 2.96072e-05 5.1951e-05 7.38714e-05 9.17101e-05 0.000105634 0.00011875 0.000131613 0.000143891 0.000155076 0.000164727 0.000172544 0.00017836 0.000182121 0.000183865 0.000183698 0.000181808 0.000178441 0.000173909 0.000168531 0.000162479 0.00015536 0.000145393 0.00012814 0.000107497 8.42688e-05 5.91083e-05 3.37426e-05 1.26047e-05 2.21565e-06 1.8815e-07 8.31487e-08 1.04857e-07 1.9107e-07 1.86521e-06 1.07172e-05 2.92905e-05 5.13081e-05 7.28556e-05 8.95553e-05 0.000103325 0.00011665 0.000129807 0.000142368 0.000153792 0.000163635 0.000171597 0.000177514 0.00018134 0.00018312 0.000182968 0.000181083 0.000177719 0.000173192 0.000167825 0.000161781 0.000154651 0.000144621 0.000127214 0.00010668 8.35883e-05 5.85884e-05 3.34035e-05 1.24525e-05 2.18568e-06 1.85873e-07 8.23962e-08 1.06855e-07 1.91652e-07 1.8444e-06 1.0599e-05 2.89434e-05 5.06142e-05 7.17754e-05 8.73281e-05 0.000100974 0.000114525 0.000127978 0.00014081 0.000152461 0.000162483 0.000170579 0.000176589 0.00018047 0.000182276 0.000182131 0.000180242 0.000176873 0.000172343 0.000166976 0.000160925 0.00015377 0.000143675 0.000126151 0.000105744 8.28105e-05 5.79967e-05 3.30199e-05 1.22814e-05 2.15215e-06 1.83371e-07 8.1602e-08 1.08892e-07 1.92235e-07 1.82291e-06 1.04732e-05 2.85659e-05 4.98581e-05 7.04646e-05 8.5035e-05 9.864e-05 0.000112426 0.000126147 0.00013922 0.000151073 0.000161258 0.000169476 0.000175569 0.000179497 0.00018132 0.000181172 0.000179271 0.00017589 0.000171352 0.000165979 0.000159916 0.000152715 0.000142491 0.00012495 0.000104688 8.19338e-05 5.73293e-05 3.25866e-05 1.20879e-05 2.11418e-06 1.80569e-07 8.07422e-08 1.10954e-07 1.92756e-07 1.79999e-06 1.03369e-05 2.8149e-05 4.90095e-05 6.83417e-05 8.26771e-05 9.64023e-05 0.000110384 0.00012431 0.000137581 0.000149618 0.000159959 0.000168295 0.000174462 0.000178427 0.000180257 0.000180095 0.000178173 0.000174772 0.000170221 0.000164838 0.000158747 0.000151454 0.000141008 0.000123597 0.000103502 8.0953e-05 5.65869e-05 3.21086e-05 1.18763e-05 2.07293e-06 1.77563e-07 7.98475e-08 1.13052e-07 1.93297e-07 1.77734e-06 1.02028e-05 2.77312e-05 4.81502e-05 6.62554e-05 8.03194e-05 9.4113e-05 0.00010827 0.000122402 0.000135883 0.000148111 0.000158609 0.000167055 0.000173285 0.000177269 0.00017909 0.000178903 0.000176949 0.00017352 0.000168948 0.000163546 0.000157414 0.000150019 0.00013937 0.000122101 0.000102192 7.98693e-05 5.57661e-05 3.15793e-05 1.16418e-05 2.02721e-06 1.74252e-07 7.88859e-08 1.15172e-07 1.93733e-07 1.75279e-06 1.00585e-05 2.72847e-05 4.72391e-05 6.41056e-05 7.79082e-05 9.17858e-05 0.00010613 0.000120475 0.000134163 0.000146575 0.000157217 0.00016576 0.000172035 0.000176022 0.000177813 0.000177583 0.000175584 0.000172115 0.000167509 0.000162068 0.000155872 0.000148367 0.000137561 0.000120451 0.000100749 7.86784e-05 5.48677e-05 3.10038e-05 1.1389e-05 1.97821e-06 1.70746e-07 7.78988e-08 1.17291e-07 1.94083e-07 1.72691e-06 9.90654e-06 2.68133e-05 4.6281e-05 6.19228e-05 7.54661e-05 8.94211e-05 0.000103946 0.000118501 0.000132395 0.000144987 0.000155766 0.000164393 0.0001707 0.000174673 0.000176419 0.000176129 0.000174073 0.000170555 0.000165907 0.000160418 0.000154153 0.000146539 0.000135595 0.00011866 9.91824e-05 7.7385e-05 5.38907e-05 3.03768e-05 1.11133e-05 1.92482e-06 1.66935e-07 7.68414e-08 1.19404e-07 1.94378e-07 1.69953e-06 9.74404e-06 2.63087e-05 4.52638e-05 5.96804e-05 7.29876e-05 8.70349e-05 0.000101746 0.000116507 0.000130599 0.00014336 0.000154262 0.000162956 0.000169275 0.000173215 0.000174897 0.00017453 0.000172398 0.000168815 0.000164108 0.000158553 0.000152199 0.000144475 0.000133457 0.000116714 9.74852e-05 7.59884e-05 5.28411e-05 2.97081e-05 1.08221e-05 1.86885e-06 1.62982e-07 7.57715e-08 1.21469e-07 1.9489e-07 1.67127e-06 9.56394e-06 2.57447e-05 4.41605e-05 5.7379e-05 7.05016e-05 8.46528e-05 9.95355e-05 0.000114482 0.000128756 0.000141674 0.000152689 0.000161438 0.000167753 0.000171643 0.000173248 0.000172792 0.000170575 0.000166916 0.000162141 0.000156514 0.000150069 0.000142242 0.000131169 0.000114636 9.56732e-05 7.44974e-05 5.17196e-05 2.89927e-05 1.05108e-05 1.80909e-06 1.58758e-07 7.46338e-08 1.23497e-07 1.97212e-07 1.64634e-06 9.36596e-06 2.50853e-05 4.23501e-05 5.50396e-05 6.8113e-05 8.233e-05 9.73243e-05 0.000112419 0.000126859 0.000139928 0.000151048 0.000159839 0.000166132 0.000169951 0.000171458 0.000170898 0.000168583 0.000164835 0.000159976 0.000154258 0.000147708 0.000139782 0.000128716 0.000112412 9.37399e-05 7.29126e-05 5.05346e-05 2.82436e-05 1.01884e-05 1.74776e-06 1.5447e-07 7.35085e-08 1.25466e-07 2.02091e-07 1.6216e-06 9.14603e-06 2.43678e-05 4.03612e-05 5.27206e-05 6.5727e-05 7.99703e-05 9.50624e-05 0.000110312 0.00012493 0.000138157 0.000149378 0.000158195 0.000164444 0.000168168 0.000169555 0.000168872 0.000166447 0.000162605 0.000157657 0.000151846 0.000145194 0.000137181 0.000126138 0.000110078 9.17128e-05 7.12511e-05 4.92908e-05 2.74561e-05 9.84997e-06 1.68349e-06 1.49962e-07 7.2324e-08 1.27344e-07 2.04901e-07 1.58107e-06 8.87523e-06 2.35796e-05 3.83704e-05 5.03991e-05 6.33263e-05 7.75937e-05 9.279e-05 0.000108204 0.000123005 0.000136386 0.000147693 0.000156511 0.000162686 0.000166285 0.000167524 0.000166697 0.000164145 0.000160193 0.000155142 0.000149221 0.000142449 0.000134355 0.000123411 0.000107616 8.95807e-05 6.95109e-05 4.79966e-05 2.66443e-05 9.50519e-06 1.61865e-06 1.45471e-07 7.11753e-08 1.29101e-07 2.0508e-07 1.5311e-06 8.57867e-06 2.27506e-05 3.63953e-05 4.80859e-05 6.09116e-05 7.519e-05 9.04907e-05 0.000106077 0.000121071 0.000134607 0.000145989 0.000154787 0.00016086 0.000164305 0.000165373 0.000164385 0.000161695 0.000157629 0.000152479 0.000146457 0.000139582 0.000131423 0.00012059 0.000105074 8.73819e-05 6.77165e-05 4.66603e-05 2.58048e-05 9.14937e-06 1.55191e-06 1.40813e-07 6.99645e-08 1.30754e-07 2.03879e-07 1.47468e-06 8.25792e-06 2.18768e-05 3.44242e-05 4.57758e-05 5.84885e-05 7.27754e-05 8.81889e-05 0.000103961 0.000119157 0.000132845 0.000144284 0.00015303 0.000158965 0.000162222 0.00016309 0.000161919 0.000159074 0.00015488 0.000149613 0.000143473 0.000136483 0.000128273 0.000117637 0.000102421 8.50947e-05 6.58587e-05 4.52866e-05 2.49506e-05 8.7921e-06 1.48564e-06 1.36252e-07 6.881e-08 1.32277e-07 2.01795e-07 1.41328e-06 7.91536e-06 2.09622e-05 3.2467e-05 4.34753e-05 5.60609e-05 7.03504e-05 8.58816e-05 0.00010185 0.000117253 0.000131087 0.00014256 0.000151225 0.000156988 0.000160029 0.000160678 0.000159313 0.000156313 0.000151994 0.000146622 0.000140383 0.000133306 0.000125075 0.00011463 9.97269e-05 8.2776e-05 6.39751e-05 4.38911e-05 2.40808e-05 8.42898e-06 1.41845e-06 1.31569e-07 6.75837e-08 1.33667e-07 1.99084e-07 1.34737e-06 7.55117e-06 2.00059e-05 3.05171e-05 4.11841e-05 5.36354e-05 6.79294e-05 8.35898e-05 9.97679e-05 0.000115381 0.000129344 0.000140819 0.00014936 0.000154911 0.000157703 0.00015811 0.000156536 0.00015337 0.000148922 0.000143439 0.000137094 0.000129917 0.000121645 0.000111379 9.69363e-05 8.03889e-05 6.20511e-05 4.24811e-05 2.32147e-05 8.07363e-06 1.35361e-06 1.27114e-07 6.64468e-08 1.34896e-07 1.95796e-07 1.27627e-06 7.16026e-06 1.90005e-05 2.85733e-05 3.89029e-05 5.12117e-05 6.55074e-05 8.13023e-05 9.76953e-05 0.000113513 0.000127582 0.000139022 0.0001474 0.000152712 0.000155242 0.000155405 0.000153628 0.000150305 0.000145741 0.000140172 0.000133754 0.000126517 0.000118225 0.000108078 9.41328e-05 7.79934e-05 6.01191e-05 4.10607e-05 2.23387e-05 7.71461e-06 1.28818e-06 1.22538e-07 6.52238e-08 1.35966e-07 1.92068e-07 1.20111e-06 6.74553e-06 1.79514e-05 2.66423e-05 3.66456e-05 4.88094e-05 6.31088e-05 7.9046e-05 9.56568e-05 0.000111658 0.00012578 0.000137109 0.000145262 0.00015031 0.000152588 0.000152525 0.000150553 0.000147072 0.000142386 0.000136722 0.000130221 0.00012291 0.000114589 0.000104586 9.12534e-05 7.55501e-05 5.81673e-05 3.96458e-05 2.14817e-05 7.36969e-06 1.22611e-06 1.18263e-07 6.41172e-08 1.36842e-07 1.87863e-07 1.12067e-06 6.29509e-06 1.67897e-05 2.47204e-05 3.44174e-05 4.6422e-05 6.07119e-05 7.67891e-05 9.36138e-05 0.000109768 0.000123866 0.000134991 0.000142857 0.000147648 0.00014973 0.000149506 0.000147385 0.000143769 0.000138976 0.000133236 0.000126686 0.000119349 0.000111051 0.000101211 8.83989e-05 7.31264e-05 5.62253e-05 3.82302e-05 2.06208e-05 7.02427e-06 1.16396e-06 1.13868e-07 6.28986e-08 1.37533e-07 1.83511e-07 1.0397e-06 5.82413e-06 1.5283e-05 2.28401e-05 3.22606e-05 4.40748e-05 5.83395e-05 7.4572e-05 9.1642e-05 0.000107948 0.000121852 0.000132031 0.000138845 0.000143663 0.000146552 0.000146549 0.000144238 0.000140383 0.000135407 0.000129548 0.000122925 0.000115545 0.000107262 9.76165e-05 8.54667e-05 7.06538e-05 5.42617e-05 3.68158e-05 1.97736e-05 6.69103e-06 1.10525e-06 1.09845e-07 6.18503e-08 1.38021e-07 1.79004e-07 9.59561e-07 5.35775e-06 1.38597e-05 2.10024e-05 3.00934e-05 4.16966e-05 5.59413e-05 7.23541e-05 8.96812e-05 0.00010605 0.000119365 0.000127963 0.000134574 0.000139228 0.000142006 0.000143014 0.000141166 0.000137131 0.000131895 0.000125869 0.000119177 0.000111801 0.000103592 9.41634e-05 8.2575e-05 6.82104e-05 5.23099e-05 3.53954e-05 1.89126e-05 6.35096e-06 1.04522e-06 1.05623e-07 6.0672e-08 1.38336e-07 1.74422e-07 8.80628e-07 4.89406e-06 1.24864e-05 1.92135e-05 2.79692e-05 3.93654e-05 5.36129e-05 7.02387e-05 8.7786e-05 0.000103877 0.000115429 0.000123769 0.000130145 0.000134607 0.000137251 0.000138194 0.000137509 0.00013376 0.000128287 0.00012201 0.000115178 0.00010776 9.96104e-05 9.04386e-05 7.95929e-05 6.57155e-05 5.03434e-05 3.39901e-05 1.80802e-05 6.02976e-06 9.89596e-07 1.01836e-07 5.96806e-08 1.38423e-07 1.69688e-07 8.02202e-07 4.42953e-06 1.11724e-05 1.74642e-05 2.58497e-05 3.70056e-05 5.12343e-05 6.80564e-05 8.57621e-05 0.000101339 0.000111333 0.000119402 0.000125535 0.000129803 0.000132316 0.000133202 0.000132536 0.000130124 0.000124767 0.00011829 0.000111308 0.000103875 9.58421e-05 8.69351e-05 7.65697e-05 6.32688e-05 4.84017e-05 3.25858e-05 1.72373e-05 5.70292e-06 9.32661e-07 9.77844e-08 5.84947e-08 1.38328e-07 1.65053e-07 7.28124e-07 3.98473e-06 9.93204e-06 1.57842e-05 2.37878e-05 3.47051e-05 4.89444e-05 6.59688e-05 8.35654e-05 9.74622e-05 0.000107145 0.000114909 0.000120767 0.000124814 0.000127178 0.000127997 0.000127344 0.000125275 0.000120815 0.000114331 0.000107202 9.97225e-05 9.17704e-05 8.30713e-05 7.31271e-05 6.07657e-05 4.64621e-05 3.12242e-05 1.6448e-05 5.40649e-06 8.82235e-07 9.43371e-08 5.75622e-08 1.37995e-07 1.60268e-07 6.5466e-07 3.54138e-06 8.74755e-06 1.41444e-05 2.17305e-05 3.23632e-05 4.65751e-05 6.37801e-05 8.12533e-05 9.33851e-05 0.000102744 0.000110194 0.000115779 0.000119616 0.00012185 0.000122628 0.000122018 0.000120067 0.000116749 0.00011044 0.000103261 9.57877e-05 8.79541e-05 7.94862e-05 6.99316e-05 5.83027e-05 4.45256e-05 2.98376e-05 1.56276e-05 5.09577e-06 8.28948e-07 9.0473e-08 5.63604e-08 1.37474e-07 1.55736e-07 5.88368e-07 3.13356e-06 7.65672e-06 1.25993e-05 1.97576e-05 3.01043e-05 4.4314e-05 6.16438e-05 7.83936e-05 8.92054e-05 9.81977e-05 0.000105298 0.000110583 0.000114193 0.000116287 0.000117024 0.000116464 0.000114637 0.000111601 0.000106103 9.89977e-05 9.15083e-05 8.37529e-05 7.55002e-05 6.64054e-05 5.58147e-05 4.26291e-05 2.8532e-05 1.48878e-05 4.82438e-06 7.83163e-07 8.73384e-08 5.55011e-08 1.36707e-07 1.5107e-07 5.23179e-07 2.73241e-06 6.62382e-06 1.11003e-05 1.77936e-05 2.78037e-05 4.19585e-05 5.92368e-05 7.42961e-05 8.47316e-05 9.33426e-05 0.000100092 0.000105089 0.000108497 0.000110488 0.000111227 0.000110764 0.000109109 0.00010631 0.000101808 9.49298e-05 8.75197e-05 7.9907e-05 7.1911e-05 6.32315e-05 5.3354e-05 4.0703e-05 2.71575e-05 1.40818e-05 4.52797e-06 7.35768e-07 8.50602e-08 5.42424e-08 1.35743e-07 1.46753e-07 4.67169e-07 2.3806e-06 5.70476e-06 9.73027e-06 1.59598e-05 2.56432e-05 3.97994e-05 5.70853e-05 7.00918e-05 8.0088e-05 8.82618e-05 9.46193e-05 9.93039e-05 0.000102501 0.000104393 0.000105151 0.000104809 0.000103349 0.000100809 9.71041e-05 9.04161e-05 8.31044e-05 7.56597e-05 6.79382e-05 5.96656e-05 5.03985e-05 3.88588e-05 2.5928e-05 1.34161e-05 4.30272e-06 7.03449e-07 8.42796e-08 5.34626e-08 1.34531e-07 1.42276e-07 4.12005e-07 2.03653e-06 4.8391e-06 8.40661e-06 1.41341e-05 2.34261e-05 3.74967e-05 5.43706e-05 6.54698e-05 7.50041e-05 8.2735e-05 8.8713e-05 9.31148e-05 9.61448e-05 9.79947e-05 9.88348e-05 9.86803e-05 9.74827e-05 9.52637e-05 9.20188e-05 8.62402e-05 7.91758e-05 7.19295e-05 6.44954e-05 5.65928e-05 4.77917e-05 3.69752e-05 2.46059e-05 1.26661e-05 4.0411e-06 6.62833e-07 8.185e-08 5.20855e-08 1.33093e-07 1.38179e-07 3.67222e-07 1.75173e-06 4.10197e-06 7.24278e-06 1.24884e-05 2.14203e-05 3.53363e-05 5.02036e-05 6.07568e-05 6.97339e-05 7.69443e-05 8.24894e-05 8.6579e-05 8.94301e-05 9.12432e-05 9.21876e-05 9.22477e-05 9.1338e-05 8.94625e-05 8.65982e-05 8.15634e-05 7.47398e-05 6.76871e-05 6.05236e-05 5.30059e-05 4.48176e-05 3.52209e-05 2.34872e-05 1.209e-05 3.85083e-06 6.33595e-07 8.016e-08 5.13547e-08 1.31409e-07 1.33844e-07 3.21928e-07 1.47036e-06 3.4095e-06 6.12805e-06 1.08614e-05 1.93754e-05 3.31588e-05 4.55754e-05 5.55276e-05 6.39285e-05 7.06326e-05 7.57852e-05 7.96202e-05 8.23557e-05 8.41995e-05 8.53244e-05 8.56752e-05 8.51291e-05 8.36689e-05 8.12329e-05 7.75335e-05 7.1061e-05 6.4207e-05 5.73048e-05 5.0131e-05 4.23804e-05 3.34233e-05 2.22342e-05 1.13831e-05 3.60352e-06 5.92986e-07 7.67587e-08 4.97778e-08 1.2946e-07 1.29882e-07 2.8755e-07 1.25221e-06 2.84579e-06 5.18832e-06 9.45463e-06 1.75974e-05 3.08754e-05 4.09903e-05 5.02372e-05 5.79671e-05 6.40982e-05 6.88227e-05 7.23907e-05 7.50113e-05 7.68725e-05 7.81647e-05 7.88147e-05 7.86332e-05 7.75512e-05 7.55045e-05 7.24845e-05 6.66393e-05 5.99978e-05 5.33431e-05 4.6549e-05 3.93884e-05 3.14874e-05 2.10666e-05 1.07832e-05 3.40338e-06 5.60965e-07 7.45174e-08 4.8999e-08 1.27254e-07 1.25582e-07 2.50651e-07 1.02606e-06 2.30006e-06 4.25937e-06 7.99508e-06 1.55315e-05 2.66262e-05 3.5891e-05 4.43644e-05 5.14247e-05 5.70388e-05 6.14279e-05 6.48414e-05 6.74687e-05 6.94537e-05 7.09949e-05 7.20206e-05 7.22473e-05 7.16093e-05 7.0068e-05 6.75987e-05 6.34676e-05 5.71774e-05 5.06793e-05 4.41267e-05 3.73027e-05 2.98126e-05 1.99764e-05 1.01764e-05 3.19266e-06 5.25467e-07 7.10271e-08 4.72499e-08 1.24707e-07 1.21741e-07 2.27124e-07 8.75275e-07 1.89371e-06 3.5278e-06 6.8007e-06 1.38712e-05 2.27776e-05 3.10701e-05 3.86258e-05 4.4887e-05 4.98853e-05 5.38677e-05 5.70756e-05 5.9694e-05 6.18511e-05 6.36081e-05 6.48669e-05 6.53944e-05 6.51144e-05 6.39724e-05 6.19313e-05 5.88896e-05 5.29581e-05 4.6762e-05 4.05981e-05 3.42521e-05 2.73699e-05 1.84507e-05 9.35726e-06 2.91802e-06 4.8205e-07 6.7806e-08 4.61689e-08 1.21921e-07 1.17542e-07 1.99508e-07 7.03526e-07 1.46487e-06 2.70988e-06 5.29335e-06 1.12646e-05 1.80921e-05 2.52933e-05 3.19996e-05 3.76264e-05 4.21869e-05 4.59162e-05 4.90503e-05 5.17905e-05 5.42493e-05 5.63938e-05 5.80615e-05 5.90356e-05 5.92791e-05 5.87256e-05 5.73187e-05 5.49914e-05 5.06983e-05 4.47853e-05 3.87452e-05 3.25889e-05 2.60117e-05 1.77361e-05 8.99143e-06 2.79312e-06 4.59283e-07 6.50211e-08 4.45056e-08 1.18781e-07 1.14103e-07 1.92211e-07 6.45487e-07 1.24e-06 2.15964e-06 4.05668e-06 8.64601e-06 1.37157e-05 1.96367e-05 2.54144e-05 3.04114e-05 3.45492e-05 3.79988e-05 4.09875e-05 4.37596e-05 4.63688e-05 4.87481e-05 5.07314e-05 5.20382e-05 5.25625e-05 5.2321e-05 5.12509e-05 4.92907e-05 4.59459e-05 4.05974e-05 3.50893e-05 2.94718e-05 2.34718e-05 1.56505e-05 7.80706e-06 2.39691e-06 3.98328e-07 6.02285e-08 4.27205e-08 1.15122e-07 1.09891e-07 1.80965e-07 5.8073e-07 1.0493e-06 1.64324e-06 2.676e-06 4.92642e-06 8.0187e-06 1.1737e-05 1.61297e-05 2.06093e-05 2.47752e-05 2.84882e-05 3.17987e-05 3.49447e-05 3.7975e-05 4.08351e-05 4.3396e-05 4.54326e-05 4.66975e-05 4.70835e-05 4.66632e-05 4.53801e-05 4.31256e-05 3.81314e-05 3.285e-05 2.74913e-05 2.18684e-05 1.51327e-05 7.60062e-06 2.33485e-06 3.85412e-07 5.83125e-08 4.15149e-08 1.10066e-07 1.05274e-07 1.87989e-07 6.40326e-07 1.20807e-06 1.81918e-06 2.61307e-06 3.77199e-06 5.07172e-06 6.26285e-06 7.98854e-06 1.04518e-05 1.36668e-05 1.74062e-05 2.12358e-05 2.50048e-05 2.8674e-05 3.21489e-05 3.53173e-05 3.80283e-05 4.00859e-05 4.12263e-05 4.12787e-05 4.03832e-05 3.85786e-05 3.48313e-05 3.01272e-05 2.52892e-05 2.01879e-05 1.34673e-05 6.61919e-06 1.99607e-06 3.32151e-07 5.36618e-08 3.94674e-08 1.02271e-07 9.8193e-08 1.8445e-07 6.45029e-07 1.35291e-06 2.1911e-06 3.26635e-06 4.41771e-06 5.08987e-06 5.53332e-06 5.89166e-06 6.24754e-06 6.73853e-06 7.61053e-06 9.23375e-06 1.1933e-05 1.55527e-05 1.95895e-05 2.36958e-05 2.75266e-05 3.08022e-05 3.32637e-05 3.45981e-05 3.45169e-05 3.31812e-05 2.98535e-05 2.55574e-05 2.12538e-05 1.67889e-05 1.15073e-05 5.72782e-06 1.78165e-06 3.05721e-07 5.15058e-08 3.88552e-08 9.46557e-08 9.31172e-08 1.9191e-07 6.75101e-07 1.6546e-06 2.84874e-06 3.96332e-06 4.89761e-06 5.67271e-06 6.33387e-06 6.91642e-06 7.43809e-06 7.90207e-06 8.30319e-06 8.64235e-06 8.96423e-06 9.42663e-06 1.04116e-05 1.25793e-05 1.62782e-05 2.09198e-05 2.57376e-05 2.99843e-05 3.30933e-05 3.45085e-05 3.25942e-05 2.85502e-05 2.38881e-05 1.90425e-05 1.39071e-05 6.78645e-06 1.96296e-06 3.12038e-07 5.20191e-08 3.96149e-08 9.19958e-08 9.5682e-08 2.52192e-07 9.39234e-07 2.22131e-06 3.62053e-06 4.76122e-06 5.64925e-06 6.4248e-06 7.20057e-06 8.04543e-06 8.99798e-06 1.00693e-05 1.11618e-05 1.17262e-05 1.28619e-05 1.47797e-05 1.5673e-05 1.62759e-05 1.67055e-05 1.71584e-05 1.77239e-05 1.83595e-05 1.88591e-05 1.89138e-05 1.82483e-05 1.68633e-05 1.48505e-05 1.2205e-05 8.88258e-06 5.04924e-06 1.76584e-06 3.13581e-07 5.15501e-08 3.79875e-08 9.46666e-08 1.07481e-07 3.99496e-07 1.52046e-06 3.14277e-06 4.35334e-06 5.14621e-06 5.82313e-06 6.55622e-06 7.43607e-06 8.53161e-06 9.91416e-06 1.16628e-05 1.38572e-05 1.65656e-05 1.98286e-05 2.36572e-05 2.80252e-05 3.28371e-05 3.78204e-05 4.27385e-05 4.71257e-05 5.03834e-05 5.19173e-05 5.12094e-05 4.7942e-05 3.63981e-05 2.52337e-05 1.76329e-05 1.19176e-05 5.17115e-06 1.20661e-06 1.83518e-07 3.88276e-08 3.06006e-08 7.11094e-08 1.41176e-07 1.09201e-06 3.41843e-06 4.35443e-06 4.70524e-06 5.14919e-06 5.68414e-06 6.2805e-06 6.93817e-06 7.66513e-06 8.46763e-06 9.345e-06 1.02845e-05 1.12553e-05 1.22047e-05 1.30581e-05 1.3722e-05 1.40857e-05 1.41385e-05 1.38808e-05 1.32831e-05 1.23643e-05 1.11618e-05 9.72709e-06 8.11859e-06 6.40195e-06 4.66494e-06 3.01256e-06 1.61346e-06 6.45604e-07 1.78375e-07 3.71347e-08 1.25753e-08 1.04818e-08 3.46296e-08 1.9633e-06 2.33804e-06 2.54268e-06 2.73811e-06 2.88403e-06 2.98451e-06 3.05123e-06 3.09081e-06 3.10781e-06 3.10579e-06 3.08772e-06 3.05603e-06 3.01263e-06 2.95894e-06 2.89587e-06 2.8239e-06 2.74289e-06 2.65142e-06 2.54999e-06 2.4379e-06 2.31259e-06 2.17193e-06 2.01308e-06 1.83321e-06 1.62975e-06 1.4016e-06 1.15112e-06 8.87232e-07 6.30028e-07 4.09029e-07 2.51206e-07 1.53117e-07 9.03505e-08 1.61503e-09 5.55915e-11 4.25917e-09 7.81215e-09 1.21765e-08 1.76238e-08 2.44139e-08 3.27526e-08 4.27625e-08 5.44654e-08 6.77784e-08 8.2524e-08 9.84506e-08 1.15257e-07 1.32617e-07 1.50193e-07 1.67644e-07 1.84625e-07 2.00783e-07 2.15747e-07 2.29063e-07 2.40356e-07 2.49214e-07 2.55217e-07 2.57971e-07 2.57157e-07 2.52594e-07 2.44307e-07 2.32589e-07 2.18047e-07 2.01574e-07 1.84335e-07 1.67809e-07 1.51751e-07 1.25756e-07 3.43027e-09 1.02417e-10 1.03614e-10 2.07145e-10 9.50481e-10 3.76668e-09 1.11547e-08 2.64167e-08 5.30528e-08 9.38604e-08 1.49902e-07 2.1969e-07 2.98936e-07 3.81001e-07 4.57981e-07 5.2218e-07 5.67595e-07 5.91033e-07 5.92554e-07 5.74884e-07 5.43222e-07 5.03151e-07 4.59908e-07 4.17596e-07 3.79089e-07 3.46833e-07 3.19739e-07 2.96221e-07 2.74665e-07 2.52048e-07 2.17055e-07 1.51269e-07 6.92327e-08 2.1776e-08 1.04054e-08 1.01493e-08 2.83642e-10 3.1469e-10 9.12043e-10 4.48228e-09 1.65187e-08 4.54014e-08 1.00958e-07 1.91985e-07 3.22834e-07 4.90573e-07 6.84658e-07 8.89328e-07 1.08727e-06 1.26296e-06 1.40475e-06 1.50575e-06 1.5636e-06 1.5787e-06 1.5519e-06 1.48849e-06 1.39538e-06 1.27931e-06 1.14718e-06 1.00611e-06 8.63526e-07 7.26275e-07 5.99671e-07 4.85048e-07 3.74499e-07 2.51123e-07 1.25179e-07 4.5678e-08 1.8947e-08 1.56611e-08 1.71634e-08 9.88737e-10 1.06411e-09 2.76947e-09 1.32519e-08 4.98758e-08 1.42867e-07 3.34132e-07 6.66361e-07 1.16061e-06 1.79739e-06 2.51844e-06 3.24634e-06 3.90612e-06 4.43925e-06 4.80936e-06 5.00249e-06 5.02453e-06 4.89656e-06 4.64459e-06 4.30452e-06 3.91062e-06 3.4916e-06 3.0691e-06 2.65791e-06 2.26699e-06 1.89995e-06 1.55251e-06 1.20644e-06 8.34199e-07 4.56831e-07 1.81855e-07 5.70762e-08 2.38053e-08 2.06757e-08 2.24996e-08 2.14975e-09 2.31657e-09 6.76615e-09 3.54381e-08 1.40812e-07 4.21149e-07 1.00469e-06 1.96928e-06 3.25148e-06 4.66925e-06 6.03064e-06 7.20193e-06 8.11044e-06 8.724e-06 9.03456e-06 9.05069e-06 8.79618e-06 8.31173e-06 7.64906e-06 6.87032e-06 6.03868e-06 5.20989e-06 4.42558e-06 3.70974e-06 3.06817e-06 2.48935e-06 1.94663e-06 1.40957e-06 8.8401e-07 4.46832e-07 1.75464e-07 5.79226e-08 2.65247e-08 2.36771e-08 2.55642e-08 2.90155e-09 3.19798e-09 1.08681e-08 6.02214e-08 2.38327e-07 6.88355e-07 1.54307e-06 2.80423e-06 4.31984e-06 5.89251e-06 7.36983e-06 8.66043e-06 9.71549e-06 1.05088e-05 1.10264e-05 1.12629e-05 1.12215e-05 1.09121e-05 1.03469e-05 9.57116e-06 8.63709e-06 7.60322e-06 6.528e-06 5.46035e-06 4.4319e-06 3.39143e-06 2.3026e-06 1.41291e-06 8.01324e-07 4.33653e-07 1.84424e-07 6.16079e-08 2.88908e-08 2.60512e-08 2.80926e-08 3.47986e-09 3.87619e-09 1.39821e-08 7.87694e-08 3.11736e-07 8.988e-07 2.0076e-06 3.62355e-06 5.52791e-06 7.45349e-06 9.1126e-06 1.0395e-05 1.15932e-05 1.27009e-05 1.34269e-05 1.37382e-05 1.37692e-05 1.35302e-05 1.30281e-05 1.2295e-05 1.13573e-05 1.02456e-05 8.99481e-06 7.64164e-06 6.16243e-06 4.29094e-06 2.73541e-06 1.62082e-06 9.11116e-07 4.94386e-07 2.18753e-07 7.11416e-08 3.21958e-08 2.88103e-08 3.10522e-08 3.99251e-09 4.56426e-09 1.84026e-08 1.0697e-07 4.24872e-07 1.21459e-06 2.65597e-06 4.66183e-06 6.9292e-06 9.15881e-06 1.09357e-05 1.24191e-05 1.38301e-05 1.51631e-05 1.60898e-05 1.65089e-05 1.66256e-05 1.64572e-05 1.60189e-05 1.53264e-05 1.43894e-05 1.32141e-05 1.1806e-05 1.01749e-05 8.04472e-06 5.45065e-06 3.40245e-06 1.99812e-06 1.12024e-06 6.04762e-07 2.74605e-07 8.55806e-08 3.61991e-08 3.16955e-08 3.40855e-08 4.36741e-09 5.08065e-09 2.17568e-08 1.27822e-07 5.05871e-07 1.43532e-06 3.107e-06 5.39773e-06 7.95865e-06 1.04655e-05 1.24519e-05 1.41585e-05 1.58224e-05 1.74346e-05 1.85052e-05 1.91001e-05 1.9379e-05 1.93591e-05 1.90531e-05 1.8467e-05 1.75966e-05 1.64257e-05 1.49292e-05 1.30842e-05 1.04295e-05 7.07575e-06 4.44055e-06 2.63698e-06 1.49629e-06 8.1233e-07 3.78036e-07 1.11657e-07 4.17495e-08 3.47539e-08 3.72148e-08 4.84563e-09 5.78888e-09 2.69683e-08 1.61504e-07 6.41435e-07 1.81299e-06 3.87535e-06 6.61943e-06 9.60872e-06 1.24843e-05 1.4694e-05 1.66741e-05 1.86234e-05 2.05017e-05 2.16251e-05 2.23273e-05 2.26885e-05 2.27281e-05 2.24591e-05 2.1884e-05 2.09895e-05 1.97444e-05 1.8102e-05 1.60163e-05 1.26867e-05 8.71611e-06 5.57156e-06 3.38389e-06 1.96616e-06 1.08963e-06 5.25749e-07 1.5085e-07 4.93703e-08 3.79206e-08 4.03129e-08 5.31066e-09 6.49172e-09 3.22903e-08 1.95578e-07 7.75245e-07 2.17236e-06 4.57882e-06 7.7096e-06 1.10706e-05 1.42874e-05 1.6781e-05 1.90184e-05 2.12361e-05 2.33952e-05 2.4768e-05 2.56588e-05 2.61755e-05 2.63332e-05 2.61404e-05 2.55937e-05 2.46708e-05 2.33288e-05 2.15069e-05 1.91464e-05 1.48867e-05 1.04068e-05 6.81026e-06 4.24282e-06 2.53051e-06 1.43713e-06 7.13846e-07 1.99692e-07 5.68367e-08 4.10282e-08 4.33222e-08 5.80275e-09 7.27242e-09 3.85931e-08 2.36392e-07 9.36726e-07 2.60653e-06 5.42237e-06 9.00318e-06 1.27869e-05 1.63811e-05 1.92063e-05 2.1738e-05 2.42526e-05 2.66938e-05 2.81898e-05 2.92487e-05 2.99008e-05 3.01566e-05 3.00183e-05 2.94748e-05 2.84933e-05 2.70193e-05 2.49827e-05 2.21329e-05 1.70375e-05 1.21085e-05 8.10793e-06 5.17763e-06 3.16676e-06 1.84286e-06 9.397e-07 2.60908e-07 6.67602e-08 4.41957e-08 4.62518e-08 6.34334e-09 8.15597e-09 4.60076e-08 2.84481e-07 1.12546e-06 3.10352e-06 6.36149e-06 1.04107e-05 1.4628e-05 1.86104e-05 2.17478e-05 2.45568e-05 2.73523e-05 3.00849e-05 3.18467e-05 3.30903e-05 3.38867e-05 3.42398e-05 3.41448e-05 3.35836e-05 3.25133e-05 3.08713e-05 2.85829e-05 2.46361e-05 1.91365e-05 1.38441e-05 9.46811e-06 6.18458e-06 3.87044e-06 2.30352e-06 1.20469e-06 3.35092e-07 7.89192e-08 4.74059e-08 4.9089e-08 6.8797e-09 9.06744e-09 5.39939e-08 3.36312e-07 1.32717e-06 3.62547e-06 7.3289e-06 1.18438e-05 1.64968e-05 2.08774e-05 2.44241e-05 2.75326e-05 3.06002e-05 3.35215e-05 3.55977e-05 3.7035e-05 3.7982e-05 3.84339e-05 3.83778e-05 3.77889e-05 3.66145e-05 3.47855e-05 3.22257e-05 2.71489e-05 2.12481e-05 1.56249e-05 1.08977e-05 7.26871e-06 4.64637e-06 2.82412e-06 1.5117e-06 4.23168e-07 9.31725e-08 5.06656e-08 5.18466e-08 7.46355e-09 1.00949e-08 6.33413e-08 3.97167e-07 1.56307e-06 4.22696e-06 8.4215e-06 1.34353e-05 1.8546e-05 2.33389e-05 2.72851e-05 3.06813e-05 3.39775e-05 3.70605e-05 3.95479e-05 4.11701e-05 4.22547e-05 4.27866e-05 4.27453e-05 4.21024e-05 4.07963e-05 3.87545e-05 3.52637e-05 2.96432e-05 2.33907e-05 1.7444e-05 1.23812e-05 8.41612e-06 5.48446e-06 3.39803e-06 1.85602e-06 5.23793e-07 1.09282e-07 5.39647e-08 5.45265e-08 8.05491e-09 1.11693e-08 7.3433e-08 4.62836e-07 1.81512e-06 4.85701e-06 9.54371e-06 1.50528e-05 2.06233e-05 2.58383e-05 3.02628e-05 3.39537e-05 3.7425e-05 4.07154e-05 4.35931e-05 4.54055e-05 4.6628e-05 4.72334e-05 4.71938e-05 4.64809e-05 4.50255e-05 4.27536e-05 3.81844e-05 3.21366e-05 2.55802e-05 1.9326e-05 1.39349e-05 9.63621e-06 6.39097e-06 4.03002e-06 2.24041e-06 6.38077e-07 1.27422e-07 5.73145e-08 5.71314e-08 8.6802e-09 1.23406e-08 8.47718e-08 5.36691e-07 2.09662e-06 5.54892e-06 1.07538e-05 1.67752e-05 2.28175e-05 2.84637e-05 3.33824e-05 3.73605e-05 4.10273e-05 4.4491e-05 4.75931e-05 4.9761e-05 5.11109e-05 5.17737e-05 5.17154e-05 5.09113e-05 4.92865e-05 4.62668e-05 4.10825e-05 3.46599e-05 2.7804e-05 2.12545e-05 1.55473e-05 1.09209e-05 7.36026e-06 4.71646e-06 2.66151e-06 7.65151e-07 1.47474e-07 6.07116e-08 5.96639e-08 9.32635e-09 1.35814e-08 9.71055e-08 6.17069e-07 2.40037e-06 6.28212e-06 1.20148e-05 1.85535e-05 2.50748e-05 3.1162e-05 3.66275e-05 4.08907e-05 4.47589e-05 4.83771e-05 5.16454e-05 5.42109e-05 5.56811e-05 5.63894e-05 5.62953e-05 5.53818e-05 5.35702e-05 4.95744e-05 4.39442e-05 3.72163e-05 3.00803e-05 2.32431e-05 1.72258e-05 1.22744e-05 8.39557e-06 5.46035e-06 3.12128e-06 9.06006e-07 1.69613e-07 6.41669e-08 6.21255e-08 1.00002e-08 1.48975e-08 1.1051e-07 7.04485e-07 2.72785e-06 7.05869e-06 1.33292e-05 2.03905e-05 2.73958e-05 3.39286e-05 3.98108e-05 4.45391e-05 4.86179e-05 5.2368e-05 5.57418e-05 5.85323e-05 6.03155e-05 6.10589e-05 6.09144e-05 5.98742e-05 5.72759e-05 5.28181e-05 4.68307e-05 3.98045e-05 3.23979e-05 2.52824e-05 1.89631e-05 1.3691e-05 9.49274e-06 6.25903e-06 3.61692e-06 1.05999e-06 1.93766e-07 6.76767e-08 6.45156e-08 1.06997e-08 1.62722e-08 1.24899e-07 7.98621e-07 3.07791e-06 7.87518e-06 1.4692e-05 2.22806e-05 2.97742e-05 3.67562e-05 4.30483e-05 4.82968e-05 5.26066e-05 5.64755e-05 5.99161e-05 6.2779e-05 6.48394e-05 6.57679e-05 6.55602e-05 6.40703e-05 6.08855e-05 5.60348e-05 4.97273e-05 4.24248e-05 3.47625e-05 2.73765e-05 2.07613e-05 1.51714e-05 1.06523e-05 7.11324e-06 4.14855e-06 1.22749e-06 2.20022e-07 7.12459e-08 6.68344e-08 1.14247e-08 1.76709e-08 1.40043e-07 8.98415e-07 3.44683e-06 8.7228e-06 1.60895e-05 2.42065e-05 3.219e-05 3.96233e-05 4.63283e-05 5.21258e-05 5.66814e-05 6.0676e-05 6.41845e-05 6.70776e-05 6.91607e-05 7.02004e-05 6.98424e-05 6.79678e-05 6.44402e-05 5.92577e-05 5.26477e-05 4.50781e-05 3.7166e-05 2.95216e-05 2.26161e-05 1.67117e-05 1.18714e-05 8.02136e-06 4.7141e-06 1.40811e-06 2.48348e-07 7.4872e-08 6.90806e-08 1.21764e-08 1.90334e-08 1.55698e-07 1.00343e-06 3.8347e-06 9.60342e-06 1.7527e-05 2.61766e-05 3.46523e-05 4.25371e-05 4.96529e-05 5.59279e-05 6.0825e-05 6.49409e-05 6.85044e-05 7.14075e-05 7.3449e-05 7.43852e-05 7.38696e-05 7.17612e-05 6.79454e-05 6.24634e-05 5.55759e-05 4.77572e-05 3.96081e-05 3.17171e-05 2.45257e-05 1.83099e-05 1.31485e-05 8.98227e-06 5.31182e-06 1.60154e-06 2.78732e-07 7.85522e-08 7.12516e-08 1.29549e-08 2.02609e-08 1.71574e-07 1.1136e-06 4.24336e-06 1.05217e-05 1.90115e-05 2.81983e-05 3.71672e-05 4.55002e-05 5.30184e-05 5.96471e-05 6.50106e-05 6.92592e-05 7.28435e-05 7.57203e-05 7.76871e-05 7.84903e-05 7.77955e-05 7.54585e-05 7.13793e-05 6.56307e-05 5.84959e-05 5.0451e-05 4.20794e-05 3.3947e-05 2.64844e-05 1.99618e-05 1.44804e-05 9.99391e-06 5.93895e-06 1.80705e-06 3.11086e-07 8.22781e-08 7.3343e-08 1.37637e-08 2.13848e-08 1.88404e-07 1.23347e-06 4.68569e-06 1.14981e-05 2.05657e-05 3.02925e-05 3.97517e-05 4.85255e-05 5.64351e-05 6.34044e-05 6.92154e-05 7.35969e-05 7.71842e-05 8.00038e-05 8.18665e-05 8.25149e-05 8.16272e-05 7.90643e-05 7.47432e-05 6.87556e-05 6.13998e-05 5.31496e-05 4.4571e-05 3.62095e-05 2.84873e-05 2.16626e-05 1.58638e-05 1.10541e-05 6.59296e-06 2.02399e-06 3.45349e-07 8.6042e-08 7.53497e-08 1.46059e-08 2.30055e-08 2.08986e-07 1.37164e-06 5.17593e-06 1.25449e-05 2.21956e-05 3.24591e-05 4.24021e-05 5.16082e-05 5.98986e-05 6.71961e-05 7.34281e-05 7.79326e-05 8.15106e-05 8.42537e-05 8.59924e-05 8.64717e-05 8.53835e-05 8.2597e-05 7.80479e-05 7.1842e-05 6.4286e-05 5.58485e-05 4.70776e-05 3.84993e-05 3.05283e-05 2.34076e-05 1.72947e-05 1.21599e-05 7.27036e-06 2.25131e-06 3.81382e-07 8.98306e-08 7.72645e-08 1.54838e-08 2.49651e-08 2.32204e-07 1.52272e-06 5.6987e-06 1.36358e-05 2.38702e-05 3.4668e-05 4.50908e-05 5.47233e-05 6.33862e-05 7.10003e-05 7.75286e-05 8.22437e-05 8.58011e-05 8.84516e-05 9.00533e-05 9.03554e-05 8.90641e-05 8.60587e-05 8.12941e-05 7.48896e-05 6.71534e-05 5.85453e-05 4.9595e-05 4.08084e-05 3.25892e-05 2.51893e-05 1.87684e-05 1.33079e-05 7.96755e-06 2.48793e-06 4.19059e-07 9.36299e-08 7.90792e-08 1.63931e-08 2.69917e-08 2.56372e-07 1.68001e-06 6.23749e-06 1.47454e-05 2.55617e-05 3.68927e-05 4.7794e-05 5.785e-05 6.68798e-05 7.4802e-05 8.15757e-05 8.65194e-05 9.00548e-05 9.25929e-05 9.40434e-05 9.41631e-05 9.26706e-05 8.94552e-05 8.44886e-05 7.79016e-05 7.00014e-05 6.12362e-05 5.21173e-05 4.31318e-05 3.46738e-05 2.70033e-05 2.02804e-05 1.44944e-05 8.68008e-06 2.73223e-06 4.58147e-07 9.74196e-08 8.07856e-08 1.73355e-08 2.91493e-08 2.82493e-07 1.84939e-06 6.80887e-06 1.58998e-05 2.72984e-05 3.91572e-05 5.05286e-05 6.09973e-05 7.03814e-05 7.85974e-05 8.56017e-05 9.07311e-05 9.42384e-05 9.66591e-05 9.79526e-05 9.78895e-05 9.62019e-05 9.27883e-05 8.76343e-05 8.08806e-05 7.28317e-05 6.39214e-05 5.46428e-05 4.54664e-05 3.6778e-05 2.88451e-05 2.18267e-05 1.57161e-05 9.40475e-06 2.98317e-06 4.98513e-07 1.01187e-07 8.23782e-08 1.83075e-08 3.14187e-08 3.10231e-07 2.02844e-06 7.40434e-06 1.70845e-05 2.90646e-05 4.14482e-05 5.32846e-05 6.41587e-05 7.38878e-05 8.23868e-05 8.96106e-05 9.48737e-05 9.83378e-05 0.000100638 0.000101775 0.000101534 9.96599e-05 9.60617e-05 9.07364e-05 8.38313e-05 7.5647e-05 6.66023e-05 5.71721e-05 4.78118e-05 3.89005e-05 3.07131e-05 2.34048e-05 1.69701e-05 1.01378e-05 3.23926e-06 5.39933e-07 1.04915e-07 8.38528e-08 1.93089e-08 3.37946e-08 3.39508e-07 2.21661e-06 8.02082e-06 1.82911e-05 3.0846e-05 4.37461e-05 5.60388e-05 6.7309e-05 7.73731e-05 8.61445e-05 9.35761e-05 9.89336e-05 0.00010234 0.000104518 0.000105501 0.000105089 0.000103041 9.92728e-05 9.3792e-05 8.67501e-05 7.84428e-05 6.92744e-05 5.97013e-05 5.01645e-05 4.10366e-05 3.25971e-05 2.5011e-05 1.82539e-05 1.08764e-05 3.49943e-06 5.82251e-07 1.08592e-07 8.52065e-08 2.03359e-08 3.62839e-08 3.70513e-07 2.41498e-06 8.66105e-06 1.9525e-05 3.26511e-05 4.60607e-05 5.88005e-05 7.0456e-05 8.0843e-05 8.98738e-05 9.75004e-05 0.000102896 0.000106228 0.000108284 0.000109121 0.00010855 0.000106341 0.00010242 9.6801e-05 8.9638e-05 8.12211e-05 7.19395e-05 6.22308e-05 5.25232e-05 4.31845e-05 3.44986e-05 2.66429e-05 1.9565e-05 1.16174e-05 3.76237e-06 6.2527e-07 1.12202e-07 8.64362e-08 2.13869e-08 3.88732e-08 4.03001e-07 2.62178e-06 9.31848e-06 2.07737e-05 3.44625e-05 4.83726e-05 6.155e-05 7.35808e-05 8.42802e-05 9.356e-05 0.000101371 0.000106749 0.00010999 0.000111925 0.000112627 0.000111911 0.000109559 0.000105503 9.97636e-05 9.2495e-05 8.398e-05 7.4594e-05 6.47577e-05 5.48862e-05 4.53433e-05 3.64183e-05 2.82993e-05 2.09012e-05 1.23588e-05 4.02723e-06 6.68841e-07 1.15738e-07 8.75455e-08 2.24577e-08 4.15598e-08 4.36994e-07 2.837e-06 9.99236e-06 2.20355e-05 3.62779e-05 5.06779e-05 6.42815e-05 7.66756e-05 8.76755e-05 9.71925e-05 0.000105177 0.000110483 0.000113619 0.000115437 0.000116014 0.000115168 0.00011269 0.000108517 0.000102675 9.53163e-05 8.67155e-05 7.72347e-05 6.72788e-05 5.72505e-05 4.75109e-05 3.83556e-05 2.99807e-05 2.22635e-05 1.31003e-05 4.29404e-06 7.13014e-07 1.19203e-07 8.85352e-08 2.35459e-08 4.43376e-08 4.724e-07 3.0599e-06 1.06798e-05 2.33054e-05 3.80914e-05 5.297e-05 6.69882e-05 7.97337e-05 9.1022e-05 0.000100764 0.000108912 0.000114088 0.000117105 0.000118814 0.000119282 0.000118323 0.000115737 0.000111465 0.000105538 9.81034e-05 8.94286e-05 7.98627e-05 6.97949e-05 5.9616e-05 4.9686e-05 4.03073e-05 3.1683e-05 2.36469e-05 1.3838e-05 4.56095e-06 7.57427e-07 1.22578e-07 8.94119e-08 2.46481e-08 4.71963e-08 5.09079e-07 3.28948e-06 1.13774e-05 2.45777e-05 3.98952e-05 5.52401e-05 6.96604e-05 8.27449e-05 9.43095e-05 0.000104266 0.000112567 0.000117554 0.000120445 0.000122056 0.000122429 0.000121374 0.000118696 0.000114344 0.000108347 0.000100852 9.2115e-05 8.24723e-05 7.23e-05 6.19791e-05 5.1868e-05 4.22762e-05 3.34113e-05 2.50571e-05 1.4575e-05 4.82944e-06 8.02407e-07 1.25885e-07 9.01783e-08 2.57625e-08 5.01312e-08 5.46963e-07 3.52512e-06 1.20829e-05 2.58486e-05 4.16852e-05 5.74834e-05 7.22926e-05 8.57031e-05 9.75315e-05 0.000107691 0.000116136 0.000120871 0.000123638 0.000125165 0.000125456 0.00012432 0.000121569 0.000117154 0.000111105 0.000103563 9.47743e-05 8.50636e-05 7.47943e-05 6.43388e-05 5.40543e-05 4.42576e-05 3.51596e-05 2.64878e-05 1.53075e-05 5.09786e-06 8.47602e-07 1.29102e-07 9.08421e-08 2.68867e-08 5.31333e-08 5.85913e-07 3.76585e-06 1.27932e-05 2.71135e-05 4.34555e-05 5.96932e-05 7.48781e-05 8.86013e-05 0.00010068 0.00011103 0.000119519 0.000124036 0.000126702 0.000128149 0.000128367 0.000127164 0.000124356 0.000119894 0.000113807 0.000106229 9.73993e-05 8.76285e-05 7.72697e-05 6.66879e-05 5.62397e-05 4.62492e-05 3.6928e-05 2.79393e-05 1.60337e-05 5.36527e-06 8.92883e-07 1.32226e-07 9.14068e-08 2.80162e-08 5.6195e-08 6.25856e-07 4.01112e-06 1.35066e-05 2.83697e-05 4.52024e-05 6.18653e-05 7.74115e-05 9.14342e-05 0.000103752 0.000114279 0.000122647 0.000127053 0.000129628 0.000131002 0.00013116 0.000129907 0.000127057 0.000122564 0.000116452 0.000108852 9.99906e-05 9.01688e-05 7.97289e-05 6.9029e-05 5.84264e-05 4.82531e-05 3.872e-05 2.94168e-05 1.67583e-05 5.63439e-06 9.3877e-07 1.35283e-07 9.18817e-08 2.91481e-08 5.93043e-08 6.66651e-07 4.26047e-06 1.42227e-05 2.96174e-05 4.69262e-05 6.39988e-05 7.98915e-05 9.41994e-05 0.000106742 0.000117437 0.000125641 0.000129926 0.000132418 0.000133733 0.000133846 0.000132557 0.000129682 0.000125171 0.000119047 0.000111434 0.00010255 9.26855e-05 8.21724e-05 7.13629e-05 6.06139e-05 5.02648e-05 4.05235e-05 3.09029e-05 1.74703e-05 5.89925e-06 9.84045e-07 1.38199e-07 9.2273e-08 3.02831e-08 6.24637e-08 7.08283e-07 4.51299e-06 1.49375e-05 3.08498e-05 4.86195e-05 6.60869e-05 8.23115e-05 9.6891e-05 0.000109647 0.000120498 0.000128494 0.00013265 0.000135067 0.000136337 0.000136422 0.000135113 0.000132226 0.00012771 0.000121584 0.000113968 0.00010507 9.51672e-05 8.45842e-05 7.36695e-05 6.27842e-05 5.22767e-05 4.23485e-05 3.24188e-05 1.81782e-05 6.16434e-06 1.02957e-06 1.41009e-07 9.25837e-08 3.1416e-08 6.56584e-08 7.50569e-07 4.76801e-06 1.56503e-05 3.20669e-05 5.02818e-05 6.81284e-05 8.46703e-05 9.95076e-05 0.000112464 0.000123461 0.000131202 0.000135222 0.000137573 0.000138813 0.000138883 0.000137568 0.000134681 0.000130171 0.000124054 0.000116443 0.000107539 9.76091e-05 8.69689e-05 7.59635e-05 6.49554e-05 5.42987e-05 4.41895e-05 3.39517e-05 1.88811e-05 6.42895e-06 1.07512e-06 1.4367e-07 9.28218e-08 3.25472e-08 6.88765e-08 7.93259e-07 5.0237e-06 1.63558e-05 3.32608e-05 5.19043e-05 7.01146e-05 8.69593e-05 0.000102041 0.000115187 0.000126319 0.000133758 0.000137636 0.000139932 0.000141158 0.000141229 0.00013992 0.000137045 0.000132551 0.000126453 0.000118859 0.00010996 0.000100015 8.93351e-05 7.82621e-05 6.71613e-05 5.63762e-05 4.60259e-05 3.51425e-05 1.95435e-05 6.68336e-06 1.11933e-06 1.46071e-07 9.29962e-08 3.36725e-08 7.20974e-08 8.36034e-07 5.27804e-06 1.70488e-05 3.44234e-05 5.34773e-05 7.20354e-05 8.91689e-05 0.000104484 0.000117808 0.000129068 0.000136165 0.000139897 0.000142153 0.00014338 0.000143466 0.000142176 0.000139323 0.000134855 0.000128787 0.000121219 0.000112337 0.000102391 9.16843e-05 8.05583e-05 6.93767e-05 5.84652e-05 4.78511e-05 3.62371e-05 2.01778e-05 6.9271e-06 1.16144e-06 1.48079e-07 9.31144e-08 3.47901e-08 7.53096e-08 8.78704e-07 5.53001e-06 1.77272e-05 3.55521e-05 5.49979e-05 7.3887e-05 9.12948e-05 0.00010683 0.000120324 0.000131703 0.000138425 0.000142016 0.000144246 0.00014549 0.000145604 0.000144342 0.00014152 0.000137088 0.000131059 0.000123528 0.000114673 0.000104736 9.4013e-05 8.28443e-05 7.15898e-05 6.05538e-05 4.96656e-05 3.72987e-05 2.07871e-05 7.15932e-06 1.20066e-06 1.49505e-07 9.3181e-08 3.58955e-08 7.85065e-08 9.212e-07 5.77915e-06 1.83899e-05 3.66458e-05 5.64643e-05 7.56674e-05 9.33349e-05 0.000109078 0.000122731 0.000134223 0.000140536 0.000143995 0.000146219 0.000147495 0.000147644 0.000146417 0.000143634 0.000139247 0.000133265 0.00012578 0.00011696 0.000107041 9.63117e-05 8.51102e-05 7.37933e-05 6.26406e-05 5.14744e-05 3.83325e-05 2.13752e-05 7.38013e-06 1.23627e-06 1.50064e-07 9.3203e-08 3.69835e-08 8.16711e-08 9.63287e-07 6.02422e-06 1.90346e-05 3.77019e-05 5.78745e-05 7.73748e-05 9.52872e-05 0.000111226 0.000125028 0.000136627 0.000142494 0.000145841 0.000148081 0.000149398 0.000149587 0.000148399 0.000145662 0.000141326 0.0001354 0.000127969 0.000119194 0.000109301 9.85764e-05 8.73545e-05 7.59874e-05 6.47261e-05 5.32788e-05 3.93318e-05 2.19341e-05 7.58374e-06 1.26642e-06 1.49526e-07 9.31867e-08 3.80521e-08 8.47968e-08 1.00487e-06 6.26475e-06 1.96608e-05 3.87209e-05 5.92296e-05 7.90109e-05 9.71533e-05 0.000113274 0.000127212 0.000138709 0.000144298 0.000147598 0.000149852 0.000151201 0.000151428 0.000150286 0.000147601 0.000143324 0.000137461 0.000130092 0.000121369 0.000111513 0.000100804 8.95731e-05 7.81673e-05 6.68043e-05 5.50674e-05 4.02758e-05 2.24469e-05 7.76307e-06 1.29085e-06 1.48514e-07 9.31456e-08 3.91017e-08 8.7875e-08 1.04578e-06 6.49982e-06 2.02668e-05 3.9701e-05 6.0529e-05 8.05765e-05 9.89363e-05 0.000115228 0.000129293 0.000140507 0.000145979 0.000149251 0.00015152 0.000152902 0.000153173 0.000152082 0.000149456 0.000145243 0.000139449 0.000132147 0.000123485 0.000113674 0.00010299 9.17629e-05 8.0331e-05 6.88757e-05 5.68421e-05 4.118e-05 2.29342e-05 7.93534e-06 1.31603e-06 1.48406e-07 9.30955e-08 4.01331e-08 9.09009e-08 1.08592e-06 6.72898e-06 2.08521e-05 4.06422e-05 6.17729e-05 8.20723e-05 0.000100638 0.000117091 0.000131275 0.000142194 0.00014755 0.000150803 0.000153092 0.000154513 0.000154831 0.000153795 0.000151231 0.000147089 0.000141369 0.000134141 0.000125547 0.00011579 0.000105141 9.39267e-05 8.24776e-05 7.09354e-05 5.86039e-05 4.20723e-05 2.34254e-05 8.11873e-06 1.34653e-06 1.49629e-07 9.30423e-08 4.11462e-08 9.38772e-08 1.12534e-06 6.9525e-06 2.14176e-05 4.15461e-05 6.29636e-05 8.35012e-05 0.000102261 0.000118866 0.000133162 0.000143782 0.000149025 0.000152262 0.000154578 0.000156041 0.000156409 0.000155429 0.000152931 0.000148861 0.000143218 0.000136068 0.000127546 0.00011785 0.000107246 9.60555e-05 8.45998e-05 7.29779e-05 6.03509e-05 4.29576e-05 2.3922e-05 8.31075e-06 1.38017e-06 1.51338e-07 9.29816e-08 4.21367e-08 9.67847e-08 1.16373e-06 7.16874e-06 2.19601e-05 4.2409e-05 6.40976e-05 8.48606e-05 0.000103803 0.000120553 0.000134955 0.000145272 0.000150404 0.00015363 0.000155977 0.000157486 0.000157907 0.000156985 0.000154551 0.000150554 0.00014499 0.000137922 0.000129477 0.000119847 0.000109296 9.81421e-05 8.67001e-05 7.50225e-05 6.21148e-05 4.38528e-05 2.44343e-05 8.51399e-06 1.4165e-06 1.53235e-07 9.292e-08 4.31045e-08 9.96176e-08 1.20097e-06 7.37711e-06 2.24786e-05 4.32304e-05 6.51751e-05 8.61511e-05 0.000105268 0.000122154 0.000136657 0.000146664 0.000151688 0.000154908 0.000157289 0.000158848 0.000159323 0.000158459 0.00015609 0.000152165 0.000146681 0.000139699 0.000131342 0.000121796 0.000111315 0.000100212 8.87895e-05 7.70615e-05 6.38834e-05 4.47593e-05 2.49603e-05 8.72596e-06 1.45478e-06 1.55246e-07 9.28674e-08 4.4052e-08 1.02367e-07 1.23688e-06 7.57673e-06 2.2972e-05 4.40091e-05 6.61956e-05 8.73732e-05 0.000106655 0.000123671 0.000138271 0.00014797 0.000152891 0.000156109 0.000158529 0.000160139 0.000160669 0.000159862 0.000157557 0.000153704 0.0001483 0.000141407 0.000133146 0.000123701 0.000113322 0.000102309 9.09216e-05 7.90533e-05 6.5315e-05 4.56275e-05 2.54737e-05 8.9367e-06 1.49335e-06 1.57287e-07 9.28252e-08 4.49859e-08 1.05055e-07 1.27175e-06 7.76943e-06 2.34446e-05 4.4752e-05 6.7167e-05 8.85352e-05 0.000107973 0.000125113 0.000139804 0.000149204 0.000154027 0.000157247 0.000159709 0.000161372 0.000161956 0.000161207 0.000158964 0.00015518 0.000149856 0.000143054 0.000134893 0.000125558 0.000115294 0.000104387 9.30433e-05 8.10036e-05 6.65085e-05 4.647e-05 2.59768e-05 9.14541e-06 1.53189e-06 1.59341e-07 9.27961e-08 4.591e-08 1.07698e-07 1.30587e-06 7.95681e-06 2.39009e-05 4.54655e-05 6.8097e-05 8.96455e-05 0.000109231 0.000126488 0.000141267 0.000150372 0.000155104 0.000158332 0.000160838 0.000162554 0.000163193 0.000162499 0.000160315 0.000156598 0.000151351 0.000144637 0.000136577 0.000127355 0.000117213 0.00010642 9.51244e-05 8.29139e-05 6.76752e-05 4.72958e-05 2.64724e-05 9.35236e-06 1.57032e-06 1.61404e-07 9.27815e-08 4.6826e-08 1.10308e-07 1.33938e-06 8.13974e-06 2.43429e-05 4.61534e-05 6.89908e-05 9.07102e-05 0.000110436 0.000127803 0.000142664 0.000151476 0.000156123 0.000159364 0.000161919 0.000163691 0.000164383 0.000163742 0.000161615 0.000157961 0.000152787 0.000146157 0.000138196 0.000129087 0.00011907 0.000108396 9.71587e-05 8.4785e-05 6.88138e-05 4.81046e-05 2.69603e-05 9.55736e-06 1.60858e-06 1.6347e-07 9.27811e-08 4.77364e-08 1.12882e-07 1.3722e-06 8.31783e-06 2.47704e-05 4.68158e-05 6.98493e-05 9.17311e-05 0.000111589 0.000129061 0.000144001 0.000152515 0.000157082 0.000160344 0.000162952 0.00016478 0.000165525 0.000164935 0.000162861 0.000159266 0.000154161 0.000147611 0.000139745 0.000130748 0.000120858 0.000110311 9.91415e-05 8.66163e-05 6.99236e-05 4.88959e-05 2.74399e-05 9.7602e-06 1.64665e-06 1.6554e-07 9.27948e-08 4.86445e-08 1.1541e-07 1.40413e-06 8.48999e-06 2.5181e-05 4.74498e-05 7.06697e-05 9.2706e-05 0.00011269 0.000130263 0.000145277 0.000153499 0.000157993 0.000161281 0.000163945 0.00016583 0.000166627 0.000166084 0.00016406 0.00016052 0.000155478 0.000149004 0.000141228 0.000132339 0.000122575 0.000112159 0.000101068 8.8403e-05 7.10057e-05 4.96715e-05 2.79129e-05 9.96168e-06 1.68467e-06 1.67624e-07 9.28263e-08 4.95564e-08 1.17925e-07 1.43565e-06 8.65891e-06 2.55807e-05 4.80635e-05 7.14606e-05 9.36432e-05 0.000113747 0.000131414 0.0001465 0.000154432 0.00015886 0.000162181 0.000164904 0.000166847 0.000167692 0.000167194 0.000165215 0.000161725 0.000156742 0.000150337 0.000142645 0.00013386 0.000124223 0.000113942 0.000102937 9.01454e-05 7.206e-05 5.04311e-05 2.83792e-05 1.0162e-05 1.72272e-06 1.69729e-07 9.2876e-08 5.04705e-08 1.20408e-07 1.4665e-06 8.82319e-06 2.59668e-05 4.86536e-05 7.2219e-05 9.45402e-05 0.000114757 0.000132514 0.000147668 0.000155309 0.000159683 0.000163046 0.000165832 0.00016783 0.00016872 0.000168263 0.000166327 0.000162884 0.000157954 0.000151614 0.000144002 0.000135316 0.0001258 0.000115654 0.00010474 9.18336e-05 7.3083e-05 5.11722e-05 2.8837e-05 1.03599e-05 1.76052e-06 1.71836e-07 9.29438e-08 5.13868e-08 1.22874e-07 1.49691e-06 8.98408e-06 2.6342e-05 4.92236e-05 7.29484e-05 9.54004e-05 0.000115724 0.000133566 0.000148785 0.000156129 0.000160465 0.000163883 0.000166732 0.000168781 0.000169713 0.000169295 0.000167398 0.000163998 0.000159118 0.000152836 0.000145296 0.000136704 0.000127307 0.000117294 0.000106475 9.34622e-05 7.40719e-05 5.18921e-05 2.92846e-05 1.05549e-05 1.79801e-06 1.73947e-07 9.30295e-08 5.23053e-08 1.25307e-07 1.52657e-06 9.14016e-06 2.67039e-05 4.97712e-05 7.36468e-05 9.62214e-05 0.000116644 0.000134563 0.000149743 0.000156881 0.000161227 0.000164699 0.000167601 0.000169694 0.000170665 0.000170284 0.000168424 0.000165065 0.00016023 0.000154002 0.00014653 0.000138025 0.000128741 0.00011886 0.000108142 9.50384e-05 7.50311e-05 5.25949e-05 2.97247e-05 1.07482e-05 1.83536e-06 1.76065e-07 9.31305e-08 5.32303e-08 1.27722e-07 1.55575e-06 9.29288e-06 2.70558e-05 5.03006e-05 7.43194e-05 9.70097e-05 0.000117524 0.000135515 0.000150489 0.000157584 0.000161961 0.000165483 0.000168435 0.000170572 0.000171582 0.000171235 0.00016941 0.000166087 0.000161294 0.00015512 0.000147718 0.000139305 0.000130131 0.000120365 0.00010972 9.65199e-05 7.59495e-05 5.32709e-05 3.01505e-05 1.09366e-05 1.87201e-06 1.78157e-07 9.32432e-08 5.41655e-08 1.30141e-07 1.58476e-06 9.444e-06 2.74015e-05 5.08174e-05 7.49721e-05 9.77709e-05 0.000118372 0.000136428 0.000151188 0.000158244 0.000162656 0.000166233 0.000169236 0.000171418 0.000172465 0.000172152 0.000170359 0.00016707 0.000162316 0.000156193 0.000148861 0.000140543 0.000131491 0.00012184 0.000111192 9.76504e-05 7.68043e-05 5.3908e-05 3.0556e-05 1.11177e-05 1.90757e-06 1.80202e-07 9.33631e-08 5.51081e-08 1.32561e-07 1.61362e-06 9.59346e-06 2.7741e-05 5.13219e-05 7.56058e-05 9.85067e-05 0.000119187 0.000137304 0.000151841 0.000158859 0.00016331 0.000166945 0.000170003 0.000172231 0.000173316 0.000173035 0.000171273 0.000168015 0.000163297 0.000157221 0.000149954 0.000141727 0.000132788 0.000123238 0.000112572 9.86339e-05 7.76095e-05 5.45103e-05 3.0941e-05 1.12906e-05 1.94169e-06 1.8217e-07 9.34808e-08 5.60565e-08 1.34976e-07 1.64219e-06 9.74069e-06 2.80734e-05 5.18132e-05 7.62201e-05 9.92168e-05 0.000119972 0.000138143 0.000152444 0.000159424 0.000163919 0.000167617 0.000170732 0.000173006 0.000174129 0.00017388 0.000172147 0.000168917 0.000164233 0.000158199 0.000150992 0.000142847 0.00013401 0.000124552 0.000113864 9.95613e-05 7.83694e-05 5.50801e-05 3.13066e-05 1.14558e-05 1.97449e-06 1.84068e-07 9.35951e-08 5.70072e-08 1.37349e-07 1.66988e-06 9.88266e-06 2.83924e-05 5.22831e-05 7.68063e-05 9.98933e-05 0.000120718 0.000138941 0.000153002 0.000159944 0.000164486 0.00016825 0.000171426 0.000173749 0.00017491 0.000174692 0.000172986 0.000169784 0.000165129 0.000159133 0.000151979 0.000143908 0.000135164 0.000125789 0.000115081 0.000100439 7.90908e-05 5.56236e-05 3.16579e-05 1.16159e-05 2.00652e-06 1.85929e-07 9.37091e-08 5.79623e-08 1.39693e-07 1.69692e-06 1.00206e-05 2.87007e-05 5.27348e-05 7.73674e-05 0.000100539 0.000121427 0.000139698 0.000153515 0.000160421 0.000165014 0.000168847 0.000172086 0.00017446 0.00017566 0.000175474 0.000173794 0.000170615 0.000165987 0.000160025 0.000152917 0.000144913 0.000136252 0.000126952 0.000116224 0.000101266 7.97709e-05 5.61371e-05 3.19909e-05 1.17684e-05 2.03716e-06 1.87713e-07 9.38213e-08 5.89226e-08 1.41988e-07 1.72295e-06 1.01529e-05 2.89952e-05 5.31649e-05 7.79e-05 0.00010115 0.000122098 0.000140413 0.000153979 0.000160851 0.000165499 0.000169405 0.000172711 0.000175137 0.000176378 0.000176223 0.000174568 0.000171412 0.000166807 0.000160874 0.000153807 0.00014586 0.000137274 0.00012804 0.000117289 0.000102041 8.04078e-05 5.66182e-05 3.23032e-05 1.19117e-05 2.06606e-06 1.89401e-07 9.39323e-08 5.98928e-08 1.44267e-07 1.74851e-06 1.02824e-05 2.92816e-05 5.35803e-05 7.84113e-05 0.000101733 0.000122736 0.000141089 0.000154404 0.000161244 0.000165949 0.000169932 0.000173306 0.000175787 0.00017707 0.000176946 0.000175316 0.000172181 0.000167595 0.000161687 0.000154655 0.000146758 0.000138236 0.000129058 0.000118283 0.000102764 8.10018e-05 5.70666e-05 3.25945e-05 1.20457e-05 2.09312e-06 1.90983e-07 9.40391e-08 6.08733e-08 1.46537e-07 1.77374e-06 1.04097e-05 2.95616e-05 5.39839e-05 7.89046e-05 0.000102292 0.000123343 0.00014173 0.000154788 0.000161597 0.000166362 0.000170425 0.000173871 0.000176409 0.000177734 0.000177642 0.000176037 0.000172921 0.000168354 0.000162466 0.000155464 0.00014761 0.000139144 0.000130013 0.000119211 0.000103439 8.15542e-05 5.74833e-05 3.28656e-05 1.21707e-05 2.11845e-06 1.92462e-07 9.41375e-08 6.18605e-08 1.48786e-07 1.79844e-06 1.05339e-05 2.98335e-05 5.43736e-05 7.93782e-05 0.000102826 0.00012392 0.000142337 0.000155129 0.000161908 0.000166736 0.000170882 0.000174403 0.000176999 0.000178369 0.00017831 0.000176728 0.000173631 0.000169081 0.000163212 0.000156235 0.000148418 0.000139999 0.000130908 0.000120075 0.000104066 8.20669e-05 5.78692e-05 3.31165e-05 1.22867e-05 2.14202e-06 1.93834e-07 9.42231e-08 6.28515e-08 1.51001e-07 1.82245e-06 1.06541e-05 3.00953e-05 5.47464e-05 7.98287e-05 0.000103331 0.000124464 0.000142906 0.000155431 0.00016218 0.000167074 0.000171306 0.000174904 0.000177561 0.000178977 0.000178952 0.000177396 0.000174318 0.000169782 0.000163929 0.000156974 0.000149188 0.000140809 0.00013175 0.000120884 0.000104652 8.25438e-05 5.82275e-05 3.33495e-05 1.23947e-05 2.16403e-06 1.95108e-07 9.42942e-08 6.38428e-08 1.53164e-07 1.84546e-06 1.07691e-05 3.03444e-05 5.50994e-05 8.0253e-05 0.000103805 0.000124971 0.000143435 0.000155694 0.000162414 0.000167376 0.000171697 0.000175374 0.000178096 0.000179559 0.00017957 0.00017804 0.00017498 0.00017046 0.000164621 0.000157683 0.000149923 0.000141577 0.000132543 0.00012164 0.000105196 8.29858e-05 5.8559e-05 3.35652e-05 1.24951e-05 2.18453e-06 1.96284e-07 9.43489e-08 6.4838e-08 1.55287e-07 1.86769e-06 1.08797e-05 3.05828e-05 5.54347e-05 8.06533e-05 0.000104249 0.000125444 0.000143927 0.000155915 0.000162609 0.000167642 0.000172054 0.000175814 0.000178601 0.000180115 0.000180162 0.000178659 0.000175618 0.000171111 0.000165285 0.000158361 0.000150622 0.000142303 0.000133286 0.000122343 0.000105699 8.33917e-05 5.88619e-05 3.37617e-05 1.25865e-05 2.20326e-06 1.9734e-07 9.43795e-08 6.58361e-08 1.5735e-07 1.88877e-06 1.09844e-05 3.08075e-05 5.57489e-05 8.10261e-05 0.00010466 0.000125881 0.000144378 0.0001561 0.000162771 0.000167877 0.000172384 0.00017623 0.000179085 0.00018065 0.000180735 0.00017926 0.000176239 0.000171746 0.00016593 0.000159019 0.000151296 0.000142996 0.000133988 0.000122999 0.000106164 8.37653e-05 5.91399e-05 3.39421e-05 1.26707e-05 2.22054e-06 1.98298e-07 9.43901e-08 6.68437e-08 1.59385e-07 1.90921e-06 1.10856e-05 3.10234e-05 5.6048e-05 8.13775e-05 0.000105044 0.000126285 0.000144793 0.000156249 0.000162899 0.000168084 0.000172689 0.000176622 0.000179547 0.000181165 0.000181291 0.000179844 0.000176844 0.000172366 0.000166562 0.000159662 0.000151951 0.000143665 0.000134658 0.000123617 0.000106594 8.41087e-05 5.93948e-05 3.41078e-05 1.27485e-05 2.23654e-06 1.99166e-07 9.43812e-08 6.78605e-08 1.61406e-07 1.92926e-06 1.11848e-05 3.12336e-05 5.6336e-05 8.17118e-05 0.000105405 0.000126661 0.000145177 0.000156362 0.000162996 0.000168264 0.000172972 0.000176997 0.000179994 0.000181666 0.000181832 0.000180415 0.000177436 0.000172973 0.000167181 0.00016029 0.00015259 0.000144311 0.000135297 0.000124195 0.000106985 8.44166e-05 5.96203e-05 3.42529e-05 1.28164e-05 2.25046e-06 1.99891e-07 9.43429e-08 6.88843e-08 1.63378e-07 1.94829e-06 1.12788e-05 3.1432e-05 5.66058e-05 8.20223e-05 0.000105738 0.000127005 0.000145524 0.000156428 0.00016305 0.00016841 0.000173228 0.000177349 0.000180421 0.000182148 0.000182354 0.000180968 0.000178012 0.000173567 0.000167787 0.000160908 0.000153217 0.000144942 0.000135912 0.000124742 0.000107343 8.46948e-05 5.98216e-05 3.43815e-05 1.28765e-05 2.26277e-06 2.005e-07 9.42736e-08 6.99176e-08 1.65315e-07 1.96656e-06 1.13687e-05 3.16201e-05 5.68579e-05 8.23078e-05 0.00010604 0.000127313 0.000145833 0.00015645 0.000163068 0.000168529 0.000173464 0.000177684 0.000180831 0.000182614 0.000182862 0.000181507 0.000178576 0.00017415 0.000168386 0.00016152 0.000153839 0.000145567 0.000136517 0.000125266 0.000107669 8.49433e-05 5.99983e-05 3.44932e-05 1.29287e-05 2.27346e-06 2.00987e-07 9.41685e-08 7.0952e-08 1.67198e-07 1.98377e-06 1.14531e-05 3.17946e-05 5.70876e-05 8.25632e-05 0.000106304 0.00012758 0.000146098 0.000156418 0.000163041 0.000168615 0.000173677 0.000178 0.000181223 0.000183061 0.00018335 0.000182028 0.000179123 0.000174719 0.000168974 0.000162125 0.000154457 0.000146189 0.000137116 0.000125778 0.000107963 8.51589e-05 6.01448e-05 3.45819e-05 1.29693e-05 2.28171e-06 2.013e-07 9.40162e-08 7.19843e-08 1.68987e-07 1.99926e-06 1.15284e-05 3.19485e-05 5.72858e-05 8.27781e-05 0.000106522 0.000127795 0.000146309 0.000156309 0.000162952 0.00016866 0.000173857 0.000178286 0.000181585 0.000183478 0.00018381 0.000182523 0.000179648 0.00017527 0.000169548 0.00016272 0.000155071 0.000146811 0.000137716 0.000126283 0.00010824 8.53569e-05 6.02754e-05 3.46587e-05 1.30039e-05 2.2887e-06 2.01508e-07 9.38221e-08 7.30139e-08 1.70664e-07 2.01277e-06 1.15936e-05 3.20792e-05 5.74479e-05 8.29459e-05 0.000106684 0.000127948 0.000146459 0.000156128 0.000162831 0.000168691 0.000174023 0.000178553 0.000181925 0.000183875 0.000184253 0.000183005 0.000180163 0.000175815 0.000170121 0.000163321 0.000155698 0.000147453 0.000138339 0.000126805 0.000108507 8.55454e-05 6.03978e-05 3.47302e-05 1.30364e-05 2.2953e-06 2.01665e-07 9.35937e-08 7.40487e-08 1.72257e-07 2.02463e-06 1.16503e-05 3.21905e-05 5.7579e-05 8.30715e-05 0.000106793 0.000128037 0.000146199 0.000155864 0.000162695 0.000168699 0.000174155 0.000178783 0.000182232 0.000184243 0.00018467 0.000183463 0.000180657 0.000176342 0.000170682 0.000163916 0.000156326 0.000148105 0.000138979 0.000127342 0.000108763 8.57204e-05 6.05065e-05 3.47902e-05 1.3063e-05 2.30065e-06 2.01716e-07 9.33265e-08 7.50886e-08 1.73717e-07 2.03402e-06 1.16947e-05 3.2275e-05 5.76702e-05 8.31471e-05 0.000106845 0.000128063 0.000145862 0.000155531 0.000162498 0.000168655 0.000174244 0.000178977 0.000182506 0.00018458 0.000185059 0.000183896 0.00018113 0.000176852 0.00017123 0.000164505 0.000156957 0.000148769 0.000139638 0.000127897 0.000109017 8.58942e-05 6.0614e-05 3.48492e-05 1.3089e-05 2.30587e-06 2.01734e-07 9.30295e-08 7.61427e-08 1.75122e-07 2.04221e-06 1.17328e-05 3.23435e-05 5.77337e-05 8.31835e-05 0.000106848 0.000128033 0.000145459 0.000155138 0.000162251 0.000168572 0.0001743 0.000179142 0.000182757 0.000184898 0.000185432 0.000184316 0.000181592 0.000177356 0.000171776 0.000165098 0.000157601 0.000149457 0.00014033 0.000128481 0.000109272 8.60695e-05 6.07235e-05 3.49105e-05 1.31168e-05 2.31151e-06 2.01756e-07 9.27134e-08 7.72103e-08 1.76462e-07 2.04896e-06 1.17635e-05 3.2395e-05 5.77692e-05 8.31812e-05 0.000106803 0.000127947 0.000144973 0.000154663 0.000161934 0.000168429 0.000174305 0.000179264 0.000182968 0.000185179 0.000185771 0.000184705 0.000182026 0.000177834 0.000172302 0.000165677 0.000158239 0.000150149 0.000141036 0.00012908 0.000109519 8.62356e-05 6.08236e-05 3.49637e-05 1.31401e-05 2.3162e-06 2.01702e-07 9.2374e-08 7.82888e-08 1.77712e-07 2.05389e-06 1.1785e-05 3.24256e-05 5.7772e-05 8.31355e-05 0.000106705 0.000127802 0.000144412 0.000154115 0.000161553 0.000168231 0.000174263 0.000179343 0.000183142 0.000185427 0.000186079 0.000185066 0.000182436 0.000178292 0.000172813 0.000166247 0.000158874 0.000150846 0.000141755 0.000129697 0.000109772 8.64101e-05 6.09324e-05 3.5024e-05 1.31674e-05 2.32173e-06 2.01687e-07 9.20262e-08 7.93897e-08 1.78932e-07 2.05788e-06 1.18016e-05 3.24435e-05 5.77514e-05 8.30553e-05 0.000106563 0.000127604 0.000143776 0.000153495 0.000161106 0.000167978 0.000174175 0.000179385 0.000183282 0.000185644 0.000186359 0.0001854 0.000182822 0.000178733 0.000173314 0.000166815 0.000159512 0.000151546 0.000142479 0.00013032 0.000110025 8.65869e-05 6.10445e-05 3.50871e-05 1.3196e-05 2.32752e-06 2.01674e-07 9.1668e-08 8.0499e-08 1.80014e-07 2.05925e-06 1.18054e-05 3.24339e-05 5.76898e-05 8.29227e-05 0.000106359 0.000127337 0.000143054 0.00015279 0.000160586 0.000167662 0.000174034 0.00017938 0.000183382 0.000185824 0.000186603 0.0001857 0.000183177 0.000179147 0.000173797 0.000167375 0.000160148 0.000152238 0.000143173 0.000130904 0.000110259 8.67493e-05 6.11459e-05 3.51427e-05 1.32212e-05 2.33268e-06 2.01613e-07 9.12933e-08 8.16303e-08 1.81049e-07 2.05938e-06 1.18028e-05 3.24083e-05 5.76e-05 8.27494e-05 0.000106103 0.000127009 0.000142246 0.000152001 0.000159993 0.000167285 0.000173842 0.000179332 0.000183442 0.000185967 0.000186813 0.000185967 0.000183499 0.00017953 0.000174252 0.000167918 0.000160785 0.000152936 0.000143821 0.000131297 0.000110462 8.68916e-05 6.12348e-05 3.51912e-05 1.32434e-05 2.33729e-06 2.01513e-07 9.09044e-08 8.27819e-08 1.81988e-07 2.05746e-06 1.17901e-05 3.23601e-05 5.7474e-05 8.25272e-05 0.000105788 0.000126613 0.000141349 0.000151125 0.000159324 0.000166847 0.0001736 0.000179242 0.000183466 0.000186076 0.00018699 0.000186202 0.000183789 0.000179882 0.000174678 0.000168436 0.000161401 0.00015362 0.000144442 0.000131532 0.000110643 8.70199e-05 6.13161e-05 3.52364e-05 1.32646e-05 2.3418e-06 2.01403e-07 9.05081e-08 8.39541e-08 1.82844e-07 2.05368e-06 1.17679e-05 3.22896e-05 5.73114e-05 8.22546e-05 0.00010541 0.000126146 0.000140358 0.00015016 0.000158581 0.000166348 0.000173308 0.000179107 0.000183447 0.000186145 0.000187126 0.000186395 0.000184037 0.00018019 0.000175061 0.00016891 0.000161975 0.000154263 0.000145025 0.000131733 0.000110795 8.71264e-05 6.13815e-05 3.52712e-05 1.32812e-05 2.3454e-06 2.01234e-07 9.00993e-08 8.51527e-08 1.83627e-07 2.04811e-06 1.17362e-05 3.21962e-05 5.71107e-05 8.19291e-05 0.000104967 0.000125603 0.000139259 0.000149097 0.000157759 0.000165786 0.000172962 0.000178924 0.000183382 0.000186167 0.000187215 0.000186541 0.000184237 0.00018045 0.000175394 0.000169332 0.000162497 0.000154857 0.000145561 0.000131896 0.000110918 8.721e-05 6.14309e-05 3.52962e-05 1.32932e-05 2.3481e-06 2.01007e-07 8.96775e-08 8.63693e-08 1.84291e-07 2.04002e-06 1.16913e-05 3.20718e-05 5.68606e-05 8.15382e-05 0.000104446 0.000124974 0.000138046 0.000147943 0.000156871 0.000165174 0.000172571 0.000178695 0.000183271 0.000186142 0.000187259 0.000186642 0.000184391 0.000180662 0.000175677 0.000169705 0.000162971 0.000155405 0.000146057 0.000132022 0.000111012 8.72739e-05 6.14686e-05 3.53158e-05 1.33037e-05 2.35062e-06 2.00769e-07 8.925e-08 8.76155e-08 1.84886e-07 2.0302e-06 1.16366e-05 3.1922e-05 5.65656e-05 8.10822e-05 0.000103841 0.000124146 0.000136698 0.000146722 0.000155946 0.000164523 0.000172131 0.00017841 0.0001831 0.000186059 0.000187244 0.000186683 0.000184485 0.000180812 0.000175895 0.000170009 0.000163373 0.00015588 0.000146485 0.000132097 0.000111065 8.73066e-05 6.14842e-05 3.53217e-05 1.33082e-05 2.35198e-06 2.00462e-07 8.88155e-08 8.89047e-08 1.85464e-07 2.01932e-06 1.15759e-05 3.17551e-05 5.62367e-05 8.05709e-05 0.000103153 0.000122699 0.000135231 0.0001455 0.000155006 0.000163831 0.000171637 0.000178072 0.000182882 0.000185932 0.000187188 0.000186685 0.000184537 0.000180917 0.000176066 0.000170263 0.000163722 0.000156301 0.00014686 0.000132125 0.00011108 8.73117e-05 6.14824e-05 3.53187e-05 1.33093e-05 2.35271e-06 2.00118e-07 8.83768e-08 9.02421e-08 1.8604e-07 2.00759e-06 1.15103e-05 3.15742e-05 5.5882e-05 8.00211e-05 0.000102414 0.000121178 0.000133674 0.000144186 0.000153983 0.000163066 0.000171081 0.000177677 0.000182609 0.000185753 0.00018708 0.000186632 0.000184534 0.000180965 0.000176174 0.00017045 0.000164001 0.000156652 0.000147166 0.00013209 0.000111043 8.72752e-05 6.14503e-05 3.52968e-05 1.33021e-05 2.35185e-06 1.99683e-07 8.79294e-08 9.16267e-08 1.86573e-07 1.99453e-06 1.1438e-05 3.13752e-05 5.54932e-05 7.9421e-05 0.00010161 0.00011957 0.000132031 0.000142792 0.000152889 0.000162239 0.000170467 0.000177227 0.000182283 0.000185519 0.000186915 0.00018652 0.000184466 0.000180942 0.000176207 0.000170555 0.00016419 0.000156905 0.000147377 0.000131986 0.000110946 8.71902e-05 6.13813e-05 3.525e-05 1.32831e-05 2.34855e-06 1.99097e-07 8.7458e-08 9.30775e-08 1.8718e-07 1.98184e-06 1.1367e-05 3.11735e-05 5.50891e-05 7.8789e-05 0.000100757 0.000117886 0.00013031 0.000141329 0.000151737 0.000161363 0.000169812 0.00017674 0.000181921 0.000185248 0.00018671 0.000186364 0.00018435 0.000180866 0.000176181 0.000170593 0.000164305 0.000157078 0.000147508 0.000131813 0.000110793 8.70626e-05 6.12839e-05 3.51877e-05 1.32581e-05 2.3442e-06 1.9845e-07 8.69759e-08 9.45874e-08 1.87768e-07 1.96796e-06 1.12898e-05 3.09548e-05 5.46529e-05 7.81086e-05 9.98413e-05 0.000116098 0.000128486 0.000139775 0.000150507 0.000160419 0.000169093 0.00017619 0.000181495 0.000184912 0.000186438 0.000186138 0.000184161 0.000180713 0.000176071 0.000170543 0.000164325 0.000157152 0.000147538 0.000131553 0.000110564 8.68736e-05 6.11408e-05 3.50963e-05 1.32201e-05 2.3373e-06 1.97645e-07 8.6472e-08 9.61591e-08 1.88356e-07 1.95312e-06 1.12065e-05 3.07172e-05 5.41801e-05 7.73735e-05 9.88554e-05 0.00011421 0.000126578 0.000138161 0.000149229 0.000159429 0.000168326 0.000175589 0.000181014 0.000184517 0.000186103 0.000185845 0.000183899 0.000180481 0.000175877 0.000170398 0.000164238 0.000157108 0.000147448 0.000131194 0.000110248 8.66125e-05 6.09427e-05 3.49689e-05 1.31654e-05 2.32702e-06 1.96633e-07 8.59392e-08 9.78027e-08 1.89031e-07 1.93867e-06 1.11227e-05 3.04693e-05 5.36781e-05 7.65885e-05 9.78078e-05 0.000112212 0.000124603 0.000136509 0.000147919 0.000158399 0.000167508 0.000174929 0.00018047 0.000184055 0.000185698 0.000185478 0.00018356 0.000180167 0.000175594 0.000170157 0.000164049 0.000156952 0.000147244 0.000130737 0.000109848 8.62831e-05 6.06946e-05 3.48102e-05 1.3097e-05 2.31408e-06 1.9545e-07 8.53723e-08 9.95001e-08 1.89644e-07 1.92231e-06 1.1028e-05 3.0189e-05 5.31118e-05 7.56947e-05 9.58946e-05 0.000110072 0.000122688 0.000134904 0.000146597 0.000157311 0.000166613 0.000174185 0.000179842 0.00018351 0.000185208 0.000185023 0.000183127 0.000179754 0.000175205 0.000169802 0.000163733 0.000156658 0.000146897 0.000130162 0.000109344 8.58673e-05 6.03807e-05 3.46089e-05 1.30094e-05 2.29733e-06 1.9403e-07 8.47684e-08 1.01275e-07 1.90333e-07 1.90644e-06 1.09363e-05 2.99097e-05 5.25356e-05 7.4775e-05 9.38758e-05 0.000107902 0.000120719 0.000133223 0.000145197 0.000156158 0.00016566 0.000173389 0.00017916 0.000182907 0.000184655 0.000184499 0.000182619 0.000179259 0.000174727 0.000169349 0.000163309 0.000156247 0.000146428 0.000129474 0.000108741 8.53687e-05 6.00036e-05 3.43664e-05 1.29029e-05 2.27672e-06 1.92357e-07 8.41167e-08 1.03129e-07 1.9104e-07 1.88989e-06 1.08407e-05 2.96169e-05 5.19293e-05 7.3807e-05 9.1775e-05 0.000105651 0.000118685 0.00013149 0.000143751 0.000154954 0.000164652 0.000172529 0.000178408 0.000182226 0.000184015 0.000183879 0.000182009 0.000178654 0.000174131 0.000168768 0.000162744 0.00015568 0.0001458 0.000128659 0.000108026 8.47777e-05 5.95571e-05 3.40794e-05 1.27766e-05 2.25225e-06 1.90443e-07 8.3424e-08 1.05043e-07 1.91729e-07 1.87233e-06 1.07398e-05 2.9307e-05 5.12894e-05 7.27896e-05 8.96237e-05 0.000103354 0.000116605 0.00012971 0.000142257 0.000153702 0.000163591 0.000171612 0.000177591 0.000181472 0.000183293 0.000183169 0.000181299 0.000177942 0.00017342 0.000168062 0.000162044 0.000154968 0.000145024 0.000127717 0.000107198 8.40931e-05 5.90387e-05 3.37453e-05 1.26287e-05 2.22346e-06 1.8824e-07 8.26703e-08 1.07019e-07 1.92411e-07 1.85381e-06 1.06329e-05 2.89778e-05 5.06115e-05 7.17182e-05 8.73926e-05 0.000100999 0.000114486 0.000127898 0.000140724 0.000152401 0.000162472 0.000170627 0.000176696 0.000180629 0.000182474 0.000182352 0.000180473 0.000177105 0.000172575 0.000167212 0.000161183 0.000154078 0.000144065 0.000126631 0.000106245 8.33048e-05 5.84429e-05 3.33623e-05 1.24595e-05 2.19055e-06 1.85777e-07 8.18708e-08 1.09025e-07 1.92981e-07 1.83281e-06 1.05104e-05 2.86056e-05 4.98616e-05 7.05451e-05 8.50769e-05 9.86199e-05 0.000112361 0.000126064 0.000139146 0.000151035 0.000161275 0.000169556 0.000175708 0.000179686 0.000181544 0.000181416 0.000179521 0.000176135 0.000171589 0.000166212 0.000160164 0.000153017 0.0001429 0.000125402 0.000105166 8.24111e-05 5.77661e-05 3.2926e-05 1.22662e-05 2.15286e-06 1.82991e-07 8.10036e-08 1.11069e-07 1.93548e-07 1.81116e-06 1.03803e-05 2.81952e-05 4.90119e-05 6.83785e-05 8.26825e-05 9.63658e-05 0.000110318 0.000124235 0.000137523 0.0001496 0.00016 0.000168404 0.000174635 0.000178649 0.00018051 0.000180364 0.000178442 0.00017503 0.000170466 0.000165076 0.000158998 0.000151751 0.000141375 0.000124009 0.000103946 8.14027e-05 5.70041e-05 3.24365e-05 1.205e-05 2.1108e-06 1.79933e-07 8.00941e-08 1.13146e-07 1.94074e-07 1.78885e-06 1.02486e-05 2.77788e-05 4.81472e-05 6.62547e-05 8.02837e-05 9.40411e-05 0.000108177 0.000122312 0.000135819 0.000148096 0.000158659 0.000167178 0.000173477 0.000177515 0.000179367 0.000179189 0.000177231 0.000173787 0.000169198 0.000163785 0.000157661 0.000150299 0.000139692 0.000122471 0.000102599 8.029e-05 5.61633e-05 3.18965e-05 1.18116e-05 2.06439e-06 1.76576e-07 7.91193e-08 1.15238e-07 1.94447e-07 1.76386e-06 1.01027e-05 2.73258e-05 4.72203e-05 6.40546e-05 7.78207e-05 9.16708e-05 0.000106004 0.000120361 0.000134086 0.000146556 0.000157271 0.000165892 0.000172241 0.000176286 0.000178113 0.000177893 0.000175885 0.000172396 0.000167771 0.000162316 0.000156124 0.000148636 0.000137831 0.00012077 0.000101109 7.90596e-05 5.52349e-05 3.13016e-05 1.15499e-05 2.01362e-06 1.72953e-07 7.81077e-08 1.17334e-07 1.94743e-07 1.73769e-06 9.94987e-06 2.68491e-05 4.6248e-05 6.18261e-05 7.53297e-05 8.92623e-05 0.000103784 0.000118356 0.000132293 0.000144949 0.000155807 0.000164518 0.000170902 0.000174937 0.000176724 0.000176449 0.000174385 0.000170846 0.000166176 0.000160673 0.000154404 0.000146789 0.000135811 0.000118925 9.94945e-05 7.77266e-05 5.42289e-05 3.06571e-05 1.12668e-05 1.95872e-06 1.69043e-07 7.70294e-08 1.19417e-07 1.94935e-07 1.70936e-06 9.78348e-06 2.63339e-05 4.52111e-05 5.9536e-05 7.28028e-05 8.68333e-05 0.000101546 0.00011633 0.000130469 0.0001433 0.000154287 0.00016307 0.00016947 0.000173473 0.000175197 0.00017485 0.000172717 0.000169116 0.000164387 0.000158815 0.00015245 0.000144707 0.000133611 0.000116919 9.77404e-05 7.62803e-05 5.31399e-05 2.99618e-05 1.0963e-05 1.90015e-06 1.64915e-07 7.59232e-08 1.21449e-07 1.9529e-07 1.67976e-06 9.59746e-06 2.5755e-05 4.4084e-05 5.71863e-05 7.02697e-05 8.44069e-05 9.92918e-05 0.000114262 0.000128585 0.000141577 0.000152683 0.000161528 0.000167929 0.000171886 0.000173533 0.000173099 0.000170886 0.000167217 0.000162424 0.000156778 0.000150314 0.000142447 0.000131259 0.000114777 9.58684e-05 7.47371e-05 5.19773e-05 2.92192e-05 1.0639e-05 1.83777e-06 1.60517e-07 7.47513e-08 1.23444e-07 1.97303e-07 1.65343e-06 9.39356e-06 2.50771e-05 4.21688e-05 5.48038e-05 6.78504e-05 8.20486e-05 9.7038e-05 0.000112152 0.000126642 0.000139791 0.000151009 0.000159902 0.000166288 0.000170177 0.000171729 0.000171191 0.000168882 0.000165132 0.000160264 0.000154531 0.000147955 0.000139968 0.000128741 0.000112488 9.38731e-05 7.30971e-05 5.07475e-05 2.84392e-05 1.03019e-05 1.77337e-06 1.56015e-07 7.35768e-08 1.25384e-07 2.02108e-07 1.62826e-06 9.17024e-06 2.43476e-05 4.01498e-05 5.24431e-05 6.54126e-05 7.96305e-05 9.4715e-05 0.000109985 0.000124657 0.00013797 0.000149296 0.000158222 0.000164569 0.000168367 0.000169801 0.000169142 0.000166726 0.000162884 0.000157935 0.000152116 0.000145433 0.000137336 0.000126089 0.00011008 9.17748e-05 7.13711e-05 4.94507e-05 2.76147e-05 9.9457e-06 1.70543e-06 1.51263e-07 7.23426e-08 1.27242e-07 2.05017e-07 1.58695e-06 8.89291e-06 2.35416e-05 3.81208e-05 5.0076e-05 6.2961e-05 7.71981e-05 9.23818e-05 0.000107812 0.000122667 0.000136137 0.000147555 0.00015649 0.000162768 0.000166445 0.000167734 0.000166934 0.000164394 0.000160449 0.000155404 0.000149484 0.000142688 0.000134497 0.000123297 0.000107553 8.95795e-05 6.95734e-05 4.81084e-05 2.67687e-05 9.58432e-06 1.63713e-06 1.4652e-07 7.11296e-08 1.28983e-07 2.05158e-07 1.53583e-06 8.58957e-06 2.26953e-05 3.61142e-05 4.77202e-05 6.04921e-05 7.4729e-05 9.00078e-05 0.000105605 0.000120651 0.00013428 0.000145781 0.000154703 0.000160886 0.000164415 0.000165536 0.000164578 0.000161905 0.000157851 0.000152712 0.000146695 0.000139795 0.000131528 0.000120398 0.000104933 8.73054e-05 6.77105e-05 4.67153e-05 2.58892e-05 9.20956e-06 1.56653e-06 1.41601e-07 6.98621e-08 1.30628e-07 2.03872e-07 1.47775e-06 8.25944e-06 2.17994e-05 3.4108e-05 4.53625e-05 5.80089e-05 7.22419e-05 8.76221e-05 0.000103397 0.000118641 0.000132423 0.000143986 0.000152865 0.000158916 0.000162262 0.000163188 0.000162052 0.00015923 0.000155055 0.00014981 0.000143685 0.000136676 0.000128349 0.000117376 0.00010221 8.49506e-05 6.579e-05 4.52876e-05 2.49957e-05 8.83315e-06 1.49632e-06 1.3675e-07 6.86315e-08 1.32148e-07 2.01698e-07 1.41471e-06 7.90747e-06 2.08631e-05 3.21207e-05 4.30186e-05 5.55209e-05 6.97384e-05 8.52197e-05 0.000101178 0.000116624 0.000130553 0.000142157 0.000150963 0.000156852 0.000159988 0.000160699 0.000159372 0.000156397 0.000152103 0.000146759 0.000140541 0.000133445 0.000125086 0.000114285 9.94312e-05 8.25513e-05 6.38341e-05 4.38332e-05 2.40855e-05 8.4516e-06 1.42549e-06 1.31824e-07 6.73573e-08 1.33547e-07 1.98893e-07 1.34686e-06 7.5323e-06 1.98827e-05 3.01419e-05 4.06846e-05 5.30323e-05 6.72313e-05 8.28199e-05 9.89709e-05 0.000114618 0.000128676 0.000140289 0.00014898 0.000154668 0.000157565 0.000158041 0.000156511 0.000153373 0.000148951 0.000143499 0.000137179 0.000129994 0.000121627 0.000111091 9.65714e-05 8.00915e-05 6.18386e-05 4.23592e-05 2.3172e-05 8.07358e-06 1.3561e-06 1.27049e-07 6.6147e-08 1.34791e-07 1.9554e-07 1.27415e-06 7.13153e-06 1.88559e-05 2.81782e-05 3.83688e-05 5.05501e-05 6.47225e-05 8.04176e-05 9.67614e-05 0.0001126 0.00012676 0.000138339 0.000146875 0.000152336 0.000154985 0.00015523 0.000153501 0.000150207 0.000145666 0.000140119 0.000133718 0.000126476 0.000118133 0.00010787 9.36955e-05 7.76227e-05 5.98369e-05 4.08796e-05 2.22554e-05 7.69666e-06 1.28729e-06 1.22274e-07 6.49064e-08 1.3588e-07 1.91771e-07 1.1975e-06 6.70656e-06 1.77852e-05 2.62339e-05 3.6085e-05 4.80921e-05 6.22313e-05 7.8033e-05 9.4567e-05 0.000110573 0.000124779 0.000136246 0.000144559 0.000149769 0.000152189 0.000152233 0.000150328 0.000146884 0.00014222 0.000136575 0.000130094 0.000122791 0.000114446 0.000104343 9.07564e-05 7.51164e-05 5.78194e-05 3.94008e-05 2.13482e-05 7.32861e-06 1.22096e-06 1.17736e-07 6.37589e-08 1.36781e-07 1.87596e-07 1.1165e-06 6.24772e-06 1.65162e-05 2.43122e-05 3.38491e-05 4.56574e-05 5.97403e-05 7.56399e-05 9.23612e-05 0.000108514 0.000122697 0.000133909 0.000141688 0.000146712 0.000149182 0.000149124 0.000147072 0.000143486 0.000138707 0.000132977 0.000126436 0.0001191 0.000110774 0.000100845 8.78328e-05 7.263e-05 5.58217e-05 3.79383e-05 2.04529e-05 6.96736e-06 1.15606e-06 1.13242e-07 6.25808e-08 1.37515e-07 1.83373e-07 1.03681e-06 5.78327e-06 1.50437e-05 2.24488e-05 3.1679e-05 4.32593e-05 5.72745e-05 7.32898e-05 9.02299e-05 0.00010652 0.000120484 0.000130662 0.000137507 0.000142375 0.000145325 0.000146001 0.00014392 0.0001401 0.000135105 0.000129232 0.000122609 0.000115236 0.000106939 9.72181e-05 8.48707e-05 7.01299e-05 5.38315e-05 3.64987e-05 1.95852e-05 6.6232e-06 1.0949e-06 1.09036e-07 6.14885e-08 1.38066e-07 1.78993e-07 9.57563e-07 5.32118e-06 1.3646e-05 2.06337e-05 2.95179e-05 4.08563e-05 5.48055e-05 7.09501e-05 8.81084e-05 0.000104459 0.000117911 0.000126513 0.000133151 0.00013785 0.000140686 0.000141759 0.000140637 0.000136813 0.000131576 0.000125501 0.000118777 0.000111386 0.000103157 9.36697e-05 8.19454e-05 6.76684e-05 5.18764e-05 3.50867e-05 1.87366e-05 6.28944e-06 1.03587e-06 1.04894e-07 6.03442e-08 1.3845e-07 1.74623e-07 8.8099e-07 4.86933e-06 1.23124e-05 1.8882e-05 2.74126e-05 3.85091e-05 5.24106e-05 6.87162e-05 8.60646e-05 0.000102152 0.000113919 0.000122261 0.000128663 0.000133168 0.000135868 0.000136874 0.00013626 0.000133276 0.000127978 0.000121669 0.000114783 0.000107343 9.91822e-05 8.99645e-05 7.8974e-05 6.51874e-05 4.99242e-05 3.36935e-05 1.7912e-05 5.97102e-06 9.80414e-07 1.01056e-07 5.93024e-08 1.38609e-07 1.70091e-07 8.04862e-07 4.41782e-06 1.10386e-05 1.71767e-05 2.53263e-05 3.61529e-05 4.99863e-05 6.64358e-05 8.39414e-05 9.97241e-05 0.00010979 0.000117859 0.000124015 0.000128322 0.000130887 0.000131832 0.000131233 0.000129155 0.00012432 0.000117887 0.00011084 0.000103356 9.52928e-05 8.63638e-05 7.5997e-05 6.27473e-05 4.80035e-05 3.23196e-05 1.70974e-05 5.65777e-06 9.25954e-07 9.71956e-08 5.81819e-08 1.38587e-07 1.65694e-07 7.33735e-07 3.98974e-06 9.84425e-06 1.55501e-05 2.33094e-05 3.38666e-05 4.76583e-05 6.42671e-05 8.16896e-05 9.59372e-05 0.000105585 0.000113347 0.000119227 0.000123313 0.000125727 0.000126605 0.000126019 0.000124026 0.000120255 0.000113932 0.000106774 9.92436e-05 9.12675e-05 8.2569e-05 7.26362e-05 6.02871e-05 4.60989e-05 3.09827e-05 1.63222e-05 5.36656e-06 8.76213e-07 9.37237e-08 5.71902e-08 1.38323e-07 1.6114e-07 6.63422e-07 3.56541e-06 8.70775e-06 1.39721e-05 2.13147e-05 3.15657e-05 4.52868e-05 6.20375e-05 7.93398e-05 9.1884e-05 0.000101201 0.000108643 0.000114244 0.000118113 0.000120389 0.000121218 0.000120668 0.000118786 0.000115638 0.000109916 0.000102778 9.52346e-05 8.73589e-05 7.88927e-05 6.93771e-05 5.78434e-05 4.41983e-05 2.96394e-05 1.55382e-05 5.07245e-06 8.25965e-07 9.00981e-08 5.60684e-08 1.37855e-07 1.56807e-07 6.00008e-07 3.17573e-06 7.66329e-06 1.24904e-05 1.94094e-05 2.93494e-05 4.30142e-05 5.99164e-05 7.7021e-05 8.77425e-05 9.66916e-05 0.000103782 0.000109078 0.000112715 0.000114847 0.00011563 0.000115127 0.000113368 0.000110411 0.000105572 9.85876e-05 9.10554e-05 8.32596e-05 7.50084e-05 6.59447e-05 5.53956e-05 4.23309e-05 2.83515e-05 1.48073e-05 4.80433e-06 7.80604e-07 8.69054e-08 5.51237e-08 1.37125e-07 1.52327e-07 5.37935e-07 2.79495e-06 6.67831e-06 1.10632e-05 1.75338e-05 2.71309e-05 4.07032e-05 5.75249e-05 7.30381e-05 8.33722e-05 9.19291e-05 9.86569e-05 0.000103653 0.000107073 0.000109086 0.000109856 0.000109434 0.000107834 0.000105103 0.000101216 9.44516e-05 8.69973e-05 7.93365e-05 7.13355e-05 6.27017e-05 5.29199e-05 4.04268e-05 2.70095e-05 1.40301e-05 4.52065e-06 7.35352e-07 8.47239e-08 5.39499e-08 1.36165e-07 1.48098e-07 4.8382e-07 2.4574e-06 5.79701e-06 9.75563e-06 1.5782e-05 2.50429e-05 3.8562e-05 5.53501e-05 6.89673e-05 7.88534e-05 8.69661e-05 9.32944e-05 9.79696e-05 0.00010117 0.000103075 0.000103853 0.000103543 0.000102131 9.96539e-05 9.612e-05 9.00369e-05 8.27487e-05 7.52373e-05 6.74946e-05 5.92502e-05 5.00409e-05 3.85885e-05 2.57742e-05 1.3356e-05 4.2911e-06 7.02012e-07 8.3763e-08 5.30569e-08 1.34942e-07 1.43717e-07 4.31045e-07 2.13047e-06 4.97221e-06 8.50454e-06 1.40646e-05 2.29489e-05 3.63825e-05 5.31288e-05 6.45696e-05 7.39784e-05 8.16311e-05 8.75609e-05 9.19326e-05 9.49434e-05 9.67822e-05 9.76188e-05 9.74732e-05 9.63012e-05 9.41257e-05 9.09428e-05 8.57661e-05 7.87721e-05 7.14718e-05 6.40093e-05 5.61311e-05 4.74024e-05 3.67195e-05 2.44761e-05 1.26274e-05 4.03911e-06 6.63335e-07 8.1564e-08 5.17824e-08 1.3345e-07 1.39577e-07 3.8683e-07 1.85251e-06 4.25796e-06 7.39024e-06 1.25003e-05 2.10348e-05 3.4326e-05 4.96977e-05 6.00599e-05 6.89079e-05 7.60365e-05 8.15283e-05 8.55801e-05 8.84008e-05 9.01885e-05 9.11147e-05 9.11684e-05 9.02699e-05 8.84247e-05 8.56037e-05 8.11828e-05 7.44577e-05 6.73727e-05 6.01829e-05 5.2671e-05 4.45097e-05 3.49432e-05 2.33241e-05 1.20245e-05 3.83799e-06 6.32151e-07 7.96743e-08 5.09284e-08 1.31685e-07 1.35216e-07 3.42902e-07 1.58212e-06 3.59483e-06 6.33815e-06 1.09858e-05 1.91381e-05 3.22497e-05 4.5404e-05 5.51465e-05 6.33962e-05 6.99963e-05 7.50736e-05 7.88484e-05 8.15312e-05 8.33266e-05 8.44091e-05 8.47305e-05 8.41739e-05 8.27191e-05 8.03072e-05 7.69053e-05 7.06482e-05 6.38122e-05 5.69197e-05 4.97788e-05 4.20801e-05 3.31895e-05 2.21139e-05 1.1348e-05 3.60288e-06 5.9387e-07 7.65662e-08 4.95077e-08 1.29603e-07 1.31069e-07 3.07839e-07 1.36389e-06 3.04269e-06 5.44041e-06 9.67413e-06 1.754e-05 3.07054e-05 4.1114e-05 5.01393e-05 5.77046e-05 6.37207e-05 6.83611e-05 7.18606e-05 7.44201e-05 7.62159e-05 7.74443e-05 7.80508e-05 7.78369e-05 7.67341e-05 7.46945e-05 7.17131e-05 6.62128e-05 5.96728e-05 5.30549e-05 4.62864e-05 3.91467e-05 3.12708e-05 2.08935e-05 1.07064e-05 3.38604e-06 5.58913e-07 7.4066e-08 4.86225e-08 1.27226e-07 1.26572e-07 2.70563e-07 1.1394e-06 2.51348e-06 4.56715e-06 8.35446e-06 1.57664e-05 2.73722e-05 3.6423e-05 4.466e-05 5.15246e-05 5.6992e-05 6.12697e-05 6.45922e-05 6.7139e-05 6.90436e-05 7.04999e-05 7.14481e-05 7.16143e-05 7.09439e-05 6.94016e-05 6.69595e-05 6.28239e-05 5.66605e-05 5.02857e-05 4.38304e-05 3.70824e-05 2.96576e-05 1.98941e-05 1.01569e-05 3.19579e-06 5.26941e-07 7.1009e-08 4.71253e-08 1.24497e-07 1.22384e-07 2.44156e-07 9.76883e-07 2.10276e-06 3.86951e-06 7.29464e-06 1.44204e-05 2.39016e-05 3.20225e-05 3.93296e-05 4.53619e-05 5.01792e-05 5.40218e-05 5.71163e-05 5.96297e-05 6.16846e-05 6.33458e-05 6.45108e-05 6.4964e-05 6.46355e-05 6.34733e-05 6.14369e-05 5.821e-05 5.24178e-05 4.63858e-05 4.03443e-05 3.40788e-05 2.72412e-05 1.83282e-05 9.30178e-06 2.90625e-06 4.80893e-07 6.75609e-08 4.59694e-08 1.2148e-07 1.17793e-07 2.13385e-07 7.92073e-07 1.67001e-06 3.10451e-06 6.0203e-06 1.2517e-05 1.98604e-05 2.7008e-05 3.34516e-05 3.87719e-05 4.30641e-05 4.6579e-05 4.95375e-05 5.21132e-05 5.44185e-05 5.64365e-05 5.79984e-05 5.88762e-05 5.90513e-05 5.84583e-05 5.70381e-05 5.47183e-05 5.00639e-05 4.42807e-05 3.84235e-05 3.24099e-05 2.59369e-05 1.77648e-05 9.03176e-06 2.81405e-06 4.63326e-07 6.53775e-08 4.46577e-08 1.18137e-07 1.13891e-07 1.9942e-07 6.95119e-07 1.38103e-06 2.50911e-06 4.8907e-06 1.04487e-05 1.61365e-05 2.23109e-05 2.7917e-05 3.25479e-05 3.63037e-05 3.94279e-05 4.21439e-05 4.46518e-05 4.70198e-05 4.91891e-05 5.09957e-05 5.21605e-05 5.25844e-05 5.22775e-05 5.11745e-05 4.92054e-05 4.56801e-05 4.04062e-05 3.5007e-05 2.94791e-05 2.35283e-05 1.57016e-05 7.85167e-06 2.41819e-06 4.02337e-07 6.05155e-08 4.28091e-08 1.14527e-07 1.09795e-07 1.8563e-07 6.04636e-07 1.11087e-06 1.85426e-06 3.34695e-06 6.95639e-06 1.08827e-05 1.56774e-05 2.0512e-05 2.48147e-05 2.84767e-05 3.16154e-05 3.44068e-05 3.70656e-05 3.96485e-05 4.21025e-05 4.42942e-05 4.59863e-05 4.69753e-05 4.72015e-05 4.66898e-05 4.53546e-05 4.3038e-05 3.80107e-05 3.27429e-05 2.74426e-05 2.18947e-05 1.52581e-05 7.69514e-06 2.37e-06 3.91032e-07 5.89318e-08 4.18682e-08 1.10539e-07 1.0618e-07 1.91026e-07 6.37796e-07 1.1541e-06 1.72589e-06 2.60873e-06 4.35902e-06 6.36135e-06 8.95967e-06 1.22732e-05 1.594e-05 1.95872e-05 2.29933e-05 2.61011e-05 2.90718e-05 3.1956e-05 3.47132e-05 3.72424e-05 3.93775e-05 4.0912e-05 4.16113e-05 4.1436e-05 4.04798e-05 3.865e-05 3.51952e-05 3.04396e-05 2.55526e-05 2.04046e-05 1.35495e-05 6.67281e-06 2.01669e-06 3.35822e-07 5.39157e-08 3.94623e-08 1.04101e-07 1.00542e-07 1.97851e-07 6.9952e-07 1.34959e-06 2.02811e-06 2.81211e-06 3.71058e-06 4.56056e-06 5.08337e-06 5.76202e-06 6.8099e-06 8.47126e-06 1.09155e-05 1.40772e-05 1.75518e-05 2.11173e-05 2.4642e-05 2.79488e-05 3.0869e-05 3.32139e-05 3.47404e-05 3.51582e-05 3.44827e-05 3.28959e-05 2.93311e-05 2.50196e-05 2.07829e-05 1.64019e-05 1.1111e-05 5.49726e-06 1.70309e-06 2.93005e-07 5.0544e-08 3.84566e-08 9.60373e-08 9.44295e-08 2.02504e-07 7.35275e-07 1.7963e-06 2.97166e-06 4.05441e-06 4.83602e-06 5.41004e-06 5.83759e-06 6.15756e-06 6.39281e-06 6.56145e-06 6.69326e-06 6.86549e-06 7.29072e-06 8.44437e-06 1.10234e-05 1.50651e-05 1.9852e-05 2.468e-05 2.89888e-05 3.23912e-05 3.45356e-05 3.4953e-05 3.26436e-05 2.81628e-05 2.34027e-05 1.85992e-05 1.35101e-05 6.51362e-06 1.86609e-06 2.97804e-07 5.04685e-08 3.84705e-08 9.01341e-08 9.4325e-08 2.59486e-07 9.72722e-07 2.26708e-06 3.65319e-06 4.7806e-06 5.64276e-06 6.3428e-06 6.95798e-06 7.52765e-06 8.06905e-06 8.59029e-06 9.09941e-06 9.61202e-06 1.01605e-05 1.08046e-05 1.16325e-05 1.27359e-05 1.42217e-05 1.59905e-05 1.76654e-05 1.89393e-05 1.95815e-05 1.93592e-05 1.8153e-05 1.61888e-05 1.36679e-05 1.06871e-05 7.36414e-06 3.98747e-06 1.38065e-06 2.55167e-07 4.65306e-08 3.58596e-08 9.30265e-08 1.06503e-07 3.93486e-07 1.46988e-06 3.05365e-06 4.31489e-06 5.1713e-06 5.85788e-06 6.5157e-06 7.20172e-06 7.93569e-06 8.72472e-06 9.57986e-06 1.05358e-05 1.16781e-05 1.31728e-05 1.52854e-05 1.83578e-05 2.26901e-05 2.83273e-05 3.49422e-05 4.17513e-05 4.77037e-05 5.17283e-05 5.29794e-05 5.10016e-05 3.90819e-05 2.69332e-05 1.86056e-05 1.2487e-05 6.20525e-06 1.41989e-06 2.03047e-07 4.05668e-08 3.1892e-08 7.33305e-08 1.47906e-07 1.13229e-06 3.59871e-06 4.66155e-06 5.03943e-06 5.52046e-06 6.12312e-06 6.80683e-06 7.55958e-06 8.37884e-06 9.26035e-06 1.01934e-05 1.11578e-05 1.21215e-05 1.30384e-05 1.38471e-05 1.44677e-05 1.47776e-05 1.48507e-05 1.46098e-05 1.40234e-05 1.30934e-05 1.18527e-05 1.03562e-05 8.67068e-06 6.87023e-06 5.04506e-06 3.29325e-06 1.78437e-06 7.2105e-07 1.95603e-07 3.97856e-08 1.36142e-08 1.14676e-08 3.72844e-08 2.12599e-06 2.51096e-06 2.70576e-06 2.89481e-06 3.03343e-06 3.12677e-06 3.18737e-06 3.22197e-06 3.23496e-06 3.22959e-06 3.20849e-06 3.17378e-06 3.12717e-06 3.07005e-06 3.00348e-06 2.92821e-06 2.84442e-06 2.75039e-06 2.64841e-06 2.53555e-06 2.41011e-06 2.26913e-06 2.10958e-06 1.92808e-06 1.72153e-06 1.48813e-06 1.22924e-06 9.52753e-07 6.78846e-07 4.39844e-07 2.67278e-07 1.61924e-07 9.52076e-08 1.65787e-09 5.04208e-11 4.1017e-09 7.55005e-09 1.17304e-08 1.68943e-08 2.32803e-08 3.10764e-08 4.03944e-08 5.1256e-08 6.35912e-08 7.72476e-08 9.20077e-08 1.0761e-07 1.23765e-07 1.40172e-07 1.56517e-07 1.72477e-07 1.87714e-07 2.01871e-07 2.14507e-07 2.25261e-07 2.33743e-07 2.39559e-07 2.42354e-07 2.41854e-07 2.37925e-07 2.3062e-07 2.20241e-07 2.07349e-07 1.92737e-07 1.7743e-07 1.62781e-07 1.48498e-07 1.24265e-07 3.44541e-09 1.00867e-10 1.00704e-10 1.81577e-10 7.85253e-10 3.11072e-09 9.26407e-09 2.20065e-08 4.41896e-08 7.79617e-08 1.23917e-07 1.80485e-07 2.43833e-07 3.08359e-07 3.67681e-07 4.15863e-07 4.4858e-07 4.63895e-07 4.62444e-07 4.46904e-07 4.21638e-07 3.91075e-07 3.59182e-07 3.29949e-07 3.0495e-07 2.84145e-07 2.67226e-07 2.53173e-07 2.39836e-07 2.23459e-07 1.94575e-07 1.36896e-07 6.40803e-08 2.11337e-08 1.03559e-08 1.01379e-08 2.63186e-10 2.88919e-10 8.09443e-10 3.93471e-09 1.44623e-08 3.95955e-08 8.75042e-08 1.65106e-07 2.75313e-07 4.14949e-07 5.74761e-07 7.41558e-07 9.01239e-07 1.04142e-06 1.15301e-06 1.23084e-06 1.27332e-06 1.28085e-06 1.25459e-06 1.19873e-06 1.11902e-06 1.02111e-06 9.11001e-07 7.94876e-07 6.78816e-07 5.68469e-07 4.68094e-07 3.78253e-07 2.91852e-07 1.95913e-07 9.95589e-08 3.87468e-08 1.78943e-08 1.54945e-08 1.70295e-08 8.9951e-10 9.6578e-10 2.46406e-09 1.16291e-08 4.33956e-08 1.2307e-07 2.84503e-07 5.608e-07 9.6686e-07 1.48518e-06 2.06769e-06 2.65152e-06 3.17651e-06 3.59661e-06 3.88438e-06 4.0307e-06 4.04209e-06 3.93635e-06 3.73405e-06 3.46266e-06 3.1483e-06 2.81282e-06 2.47301e-06 2.14079e-06 1.82391e-06 1.52623e-06 1.2455e-06 9.67852e-07 6.70248e-07 3.67843e-07 1.47704e-07 4.85085e-08 2.25409e-08 2.05595e-08 2.24525e-08 2.08212e-09 2.22894e-09 6.24891e-09 3.20777e-08 1.26459e-07 3.76147e-07 8.94951e-07 1.75645e-06 2.91266e-06 4.20343e-06 5.4481e-06 6.51402e-06 7.3273e-06 7.85721e-06 8.10061e-06 8.07314e-06 7.8055e-06 7.34292e-06 6.73634e-06 6.04136e-06 5.31072e-06 4.58843e-06 3.90611e-06 3.28162e-06 2.71918e-06 2.20949e-06 1.73026e-06 1.25445e-06 7.85531e-07 3.94439e-07 1.54181e-07 5.21723e-08 2.57356e-08 2.37324e-08 2.567e-08 2.92957e-09 3.22038e-09 1.08449e-08 6.0138e-08 2.39165e-07 6.93845e-07 1.5563e-06 2.8151e-06 4.29853e-06 5.79939e-06 7.16887e-06 8.32584e-06 9.23258e-06 9.87266e-06 1.02407e-05 1.03395e-05 1.01814e-05 9.7873e-06 9.18011e-06 8.41088e-06 7.53133e-06 6.59478e-06 5.64933e-06 4.7309e-06 3.85844e-06 3.03323e-06 2.14322e-06 1.30288e-06 7.27236e-07 3.8797e-07 1.65349e-07 5.65312e-08 2.81718e-08 2.60169e-08 2.80698e-08 3.48612e-09 3.8711e-09 1.38153e-08 7.75689e-08 3.06156e-07 8.78498e-07 1.94945e-06 3.49409e-06 5.29531e-06 7.09591e-06 8.62387e-06 9.76956e-06 1.08177e-05 1.17677e-05 1.24026e-05 1.26111e-05 1.25586e-05 1.22555e-05 1.17075e-05 1.09601e-05 1.00481e-05 9.0074e-06 7.87534e-06 6.68545e-06 5.46357e-06 3.96874e-06 2.53902e-06 1.49943e-06 8.37518e-07 4.51489e-07 2.00278e-07 6.6276e-08 3.14397e-08 2.86772e-08 3.09234e-08 4.02727e-09 4.59248e-09 1.84009e-08 1.06987e-07 4.25639e-07 1.2172e-06 2.6547e-06 4.63317e-06 6.8336e-06 8.95277e-06 1.04901e-05 1.1836e-05 1.31019e-05 1.42706e-05 1.50332e-05 1.52855e-05 1.52543e-05 1.49595e-05 1.44169e-05 1.36593e-05 1.27046e-05 1.15682e-05 1.02651e-05 8.81008e-06 7.20895e-06 4.90512e-06 3.06396e-06 1.80042e-06 1.01214e-06 5.49476e-07 2.51159e-07 8.00468e-08 3.537e-08 3.15047e-08 3.3898e-08 4.39386e-09 5.10143e-09 2.17765e-08 1.27957e-07 5.06318e-07 1.43347e-06 3.08893e-06 5.33327e-06 7.80913e-06 1.01933e-05 1.18876e-05 1.34182e-05 1.48977e-05 1.6325e-05 1.73914e-05 1.78153e-05 1.79316e-05 1.77612e-05 1.73217e-05 1.66332e-05 1.5701e-05 1.45223e-05 1.30875e-05 1.1388e-05 9.15419e-06 6.20981e-06 3.88828e-06 2.30524e-06 1.31022e-06 7.15945e-07 3.36022e-07 1.02183e-07 4.04704e-08 3.45009e-08 3.69836e-08 4.84426e-09 5.76307e-09 2.6567e-08 1.58806e-07 6.30375e-07 1.7797e-06 3.79602e-06 6.46269e-06 9.34057e-06 1.2046e-05 1.39708e-05 1.57667e-05 1.75207e-05 1.92089e-05 2.03197e-05 2.08407e-05 2.10286e-05 2.09089e-05 2.05016e-05 1.98176e-05 1.88542e-05 1.75933e-05 1.60039e-05 1.40552e-05 1.10926e-05 7.58647e-06 4.82561e-06 2.91929e-06 1.6944e-06 9.41941e-07 4.54658e-07 1.33552e-07 4.69105e-08 3.76078e-08 4.00885e-08 5.31609e-09 6.47519e-09 3.19543e-08 1.93387e-07 7.66818e-07 2.14801e-06 4.51961e-06 7.58547e-06 1.0844e-05 1.38664e-05 1.60467e-05 1.80876e-05 2.00985e-05 2.2064e-05 2.34683e-05 2.41568e-05 2.44752e-05 2.44462e-05 2.40867e-05 2.34031e-05 2.23846e-05 2.10021e-05 1.92102e-05 1.69653e-05 1.30294e-05 9.02524e-06 5.85975e-06 3.62854e-06 2.1571e-06 1.22605e-06 6.12441e-07 1.76496e-07 5.49176e-08 4.07497e-08 4.31169e-08 5.79213e-09 7.21675e-09 3.7784e-08 2.30926e-07 9.14861e-07 2.54578e-06 5.29464e-06 8.7809e-06 1.24424e-05 1.58534e-05 1.83294e-05 2.065e-05 2.2952e-05 2.52109e-05 2.67905e-05 2.76567e-05 2.81187e-05 2.81935e-05 2.78918e-05 2.72119e-05 2.61322e-05 2.46115e-05 2.25934e-05 1.97828e-05 1.50425e-05 1.05598e-05 6.99325e-06 4.42734e-06 2.69215e-06 1.5632e-06 7.98137e-07 2.25651e-07 6.23491e-08 4.38307e-08 4.60749e-08 6.33461e-09 8.09385e-09 4.50423e-08 2.77995e-07 1.10021e-06 3.03655e-06 6.22718e-06 1.01838e-05 1.42809e-05 1.80736e-05 2.08473e-05 2.34438e-05 2.60289e-05 2.85859e-05 3.04384e-05 3.14865e-05 3.20907e-05 3.22617e-05 3.20026e-05 3.13042e-05 3.01337e-05 2.84394e-05 2.61574e-05 2.22764e-05 1.70722e-05 1.21766e-05 8.21865e-06 5.31057e-06 3.2966e-06 1.95218e-06 1.01754e-06 2.85815e-07 7.23534e-08 4.69578e-08 4.8943e-08 6.8725e-09 8.98847e-09 5.26826e-08 3.27435e-07 1.29275e-06 3.53647e-06 7.15847e-06 1.1571e-05 1.60995e-05 2.0331e-05 2.34462e-05 2.63287e-05 2.91961e-05 3.1986e-05 3.41742e-05 3.54283e-05 3.61959e-05 3.64781e-05 3.62693e-05 3.55524e-05 3.42829e-05 3.23998e-05 2.98354e-05 2.48335e-05 1.91702e-05 1.38853e-05 9.54372e-06 6.28577e-06 3.97745e-06 2.39961e-06 1.27681e-06 3.58788e-07 8.43846e-08 5.01275e-08 5.1728e-08 7.45513e-09 9.99595e-09 6.16703e-08 3.8585e-07 1.51962e-06 4.11771e-06 8.22037e-06 1.31256e-05 1.81097e-05 2.27533e-05 2.62713e-05 2.9442e-05 3.25514e-05 3.54617e-05 3.80535e-05 3.95579e-05 4.04785e-05 4.08576e-05 4.06808e-05 3.99254e-05 3.85356e-05 3.6444e-05 3.29398e-05 2.74135e-05 2.13466e-05 1.56786e-05 1.09586e-05 7.34653e-06 4.73142e-06 2.90405e-06 1.57448e-06 4.44013e-07 9.82008e-08 5.33303e-08 5.44333e-08 8.05335e-09 1.1061e-08 7.14605e-08 4.49471e-07 1.76451e-06 4.73341e-06 9.32351e-06 1.47224e-05 2.01664e-05 2.5233e-05 2.92199e-05 3.26841e-05 3.5967e-05 3.90699e-05 4.18741e-05 4.38164e-05 4.489e-05 4.53585e-05 4.51996e-05 4.43884e-05 4.28592e-05 4.05407e-05 3.59884e-05 3.00061e-05 2.35849e-05 1.75566e-05 1.24661e-05 8.497e-06 5.56363e-06 3.47065e-06 1.91392e-06 5.42716e-07 1.13961e-07 5.65758e-08 5.7061e-08 8.67898e-09 1.22108e-08 8.23718e-08 5.20417e-07 2.0355e-06 5.40295e-06 1.05012e-05 1.64066e-05 2.2321e-05 2.78209e-05 3.23169e-05 3.60762e-05 3.95495e-05 4.28286e-05 4.58263e-05 4.81924e-05 4.94098e-05 4.99533e-05 4.97932e-05 4.89069e-05 4.722e-05 4.42006e-05 3.90326e-05 3.26451e-05 2.5879e-05 1.95051e-05 1.40552e-05 9.73041e-06 6.47101e-06 4.09866e-06 2.29419e-06 6.54899e-07 1.3168e-07 5.98679e-08 5.96146e-08 9.33042e-09 1.344e-08 9.43575e-08 5.98407e-07 2.33106e-06 6.12052e-06 1.17419e-05 1.81629e-05 2.45563e-05 3.04994e-05 3.55471e-05 3.95994e-05 4.32915e-05 4.67378e-05 4.98735e-05 5.24848e-05 5.40234e-05 5.46284e-05 5.44485e-05 5.34669e-05 5.16035e-05 4.76617e-05 4.20399e-05 3.5316e-05 2.82309e-05 2.15256e-05 1.57251e-05 1.10462e-05 7.45427e-06 4.78994e-06 2.71664e-06 7.81367e-07 1.51502e-07 6.32158e-08 6.20954e-08 1.00057e-08 1.47408e-08 1.07357e-07 6.83e-07 2.64871e-06 6.8778e-06 1.30303e-05 1.99709e-05 2.6849e-05 3.32432e-05 3.88876e-05 4.32525e-05 4.71643e-05 5.07685e-05 5.40127e-05 5.67524e-05 5.87083e-05 5.93624e-05 5.91457e-05 5.805e-05 5.55006e-05 5.10628e-05 4.50648e-05 3.80202e-05 3.06301e-05 2.36083e-05 1.74686e-05 1.24395e-05 8.51115e-06 5.54409e-06 3.18062e-06 9.22304e-07 1.73483e-07 6.66237e-08 6.45044e-08 1.07083e-08 1.61125e-08 1.21425e-07 7.74723e-07 2.99041e-06 7.67879e-06 1.43732e-05 2.18398e-05 2.92083e-05 3.60583e-05 4.22095e-05 4.70258e-05 5.1165e-05 5.49231e-05 5.82646e-05 6.10588e-05 6.31154e-05 6.41375e-05 6.38693e-05 6.24145e-05 5.9266e-05 5.44259e-05 4.80939e-05 4.07522e-05 3.30783e-05 2.57522e-05 1.92823e-05 1.39073e-05 9.63981e-06 6.36084e-06 3.68586e-06 1.07808e-06 1.97717e-07 7.00973e-08 6.68416e-08 1.1435e-08 1.75266e-08 1.36355e-07 8.72503e-07 3.35206e-06 8.51314e-06 1.57542e-05 2.37487e-05 3.16094e-05 3.89158e-05 4.54868e-05 5.08873e-05 5.52817e-05 5.91836e-05 6.26194e-05 6.54613e-05 6.75292e-05 6.85954e-05 6.82792e-05 6.64558e-05 6.29665e-05 5.77863e-05 5.11369e-05 4.35091e-05 3.55629e-05 2.79484e-05 2.11589e-05 1.54436e-05 1.08366e-05 7.23836e-06 4.23011e-06 1.24833e-06 2.24184e-07 7.36324e-08 6.91029e-08 1.21894e-08 1.89478e-08 1.5203e-07 9.76345e-07 3.73471e-06 9.38413e-06 1.71799e-05 2.57068e-05 3.40621e-05 4.18251e-05 4.88154e-05 5.48216e-05 5.94799e-05 6.35158e-05 6.70273e-05 6.98976e-05 7.19374e-05 7.291e-05 7.24463e-05 7.03917e-05 6.66101e-05 6.11217e-05 5.41824e-05 4.62895e-05 3.80861e-05 3.01999e-05 2.30978e-05 1.70462e-05 1.20994e-05 8.17549e-06 4.81227e-06 1.43313e-06 2.52935e-07 7.72318e-08 7.12883e-08 1.29702e-08 2.02905e-08 1.68091e-07 1.08544e-06 4.13751e-06 1.02914e-05 1.86514e-05 2.77167e-05 3.65696e-05 4.47889e-05 5.21943e-05 5.87115e-05 6.37391e-05 6.78977e-05 7.14568e-05 7.43241e-05 7.63039e-05 7.71499e-05 7.65104e-05 7.42263e-05 7.01749e-05 6.44096e-05 5.72116e-05 4.90801e-05 4.06392e-05 3.24949e-05 2.50946e-05 1.87121e-05 1.34262e-05 9.1712e-06 5.43022e-06 1.6321e-06 2.83948e-07 8.08925e-08 7.33949e-08 1.37808e-08 2.14718e-08 1.84553e-07 1.20152e-06 4.5673e-06 1.12475e-05 2.01836e-05 2.97921e-05 3.91421e-05 4.78118e-05 5.56204e-05 6.24911e-05 6.80247e-05 7.23247e-05 7.5897e-05 7.87245e-05 8.06147e-05 8.13138e-05 8.04852e-05 7.79734e-05 7.36714e-05 6.76546e-05 6.02224e-05 5.18724e-05 4.32099e-05 3.48182e-05 2.71377e-05 2.0432e-05 1.48106e-05 1.02216e-05 6.08032e-06 1.84436e-06 3.1714e-07 8.4605e-08 7.54165e-08 1.46218e-08 2.27433e-08 2.03051e-07 1.3313e-06 5.03871e-06 1.227e-05 2.17912e-05 3.19421e-05 4.17833e-05 5.08942e-05 5.9094e-05 6.6305e-05 7.23159e-05 7.67575e-05 8.03297e-05 8.30904e-05 8.48656e-05 8.54001e-05 8.43709e-05 8.16318e-05 7.70951e-05 7.08507e-05 6.32083e-05 5.46602e-05 4.57928e-05 3.71693e-05 2.92244e-05 2.22019e-05 1.62491e-05 1.13238e-05 6.75901e-06 2.06895e-06 3.52396e-07 8.83573e-08 7.73458e-08 1.54996e-08 2.46451e-08 2.25819e-07 1.48018e-06 5.55642e-06 1.33555e-05 2.34622e-05 3.41498e-05 4.44746e-05 5.40175e-05 6.25974e-05 7.01349e-05 7.65922e-05 8.11637e-05 8.47241e-05 8.74034e-05 8.90484e-05 8.94072e-05 8.8172e-05 8.52063e-05 8.04439e-05 7.39907e-05 6.61597e-05 5.74341e-05 4.83795e-05 3.95374e-05 3.13326e-05 2.40126e-05 1.77355e-05 1.24735e-05 7.46177e-06 2.30454e-06 3.89561e-07 9.21346e-08 7.91752e-08 1.64093e-08 2.66633e-08 2.49755e-07 1.63594e-06 6.09206e-06 1.44635e-05 2.51551e-05 3.63792e-05 4.71866e-05 5.71586e-05 6.61129e-05 7.39679e-05 8.06838e-05 8.55355e-05 8.90791e-05 9.16561e-05 9.3156e-05 9.33323e-05 9.18911e-05 8.87068e-05 8.37325e-05 7.70878e-05 6.90852e-05 6.01966e-05 5.09671e-05 4.19173e-05 3.34615e-05 2.58578e-05 1.9264e-05 1.3666e-05 8.18361e-06 2.54944e-06 4.284e-07 9.59168e-08 8.08965e-08 1.73513e-08 2.87921e-08 2.75328e-07 1.80193e-06 6.65457e-06 1.56063e-05 2.68813e-05 3.86372e-05 4.99209e-05 6.03133e-05 6.96306e-05 7.77889e-05 8.47451e-05 8.98409e-05 9.33707e-05 9.58328e-05 9.7176e-05 9.7167e-05 9.55247e-05 9.21331e-05 8.69614e-05 8.01413e-05 7.19836e-05 6.29455e-05 5.35521e-05 4.43047e-05 3.56086e-05 2.77317e-05 2.08291e-05 1.48969e-05 8.92006e-06 2.80215e-06 4.68719e-07 9.96874e-08 8.25033e-08 1.83232e-08 3.10457e-08 3.02772e-07 1.97933e-06 7.24713e-06 1.679e-05 2.86498e-05 4.09339e-05 5.26867e-05 6.34898e-05 7.31589e-05 8.16081e-05 8.87922e-05 9.40754e-05 9.75793e-05 9.99236e-05 0.000101107 0.000100914 9.9078e-05 9.54919e-05 9.01387e-05 8.31592e-05 7.4861e-05 6.56849e-05 5.61364e-05 4.66999e-05 3.77726e-05 2.96317e-05 2.24273e-05 1.61622e-05 9.66675e-06 3.06097e-06 5.10264e-07 1.03428e-07 8.3991e-08 1.93246e-08 3.34057e-08 3.31744e-07 2.16577e-06 7.86047e-06 1.79955e-05 3.0434e-05 4.32394e-05 5.5454e-05 6.66594e-05 7.66704e-05 8.53994e-05 9.27995e-05 9.82248e-05 0.000101688 0.000103912 0.000104938 0.000104567 0.000102548 9.87816e-05 9.3263e-05 8.61388e-05 7.77127e-05 6.84103e-05 5.87166e-05 4.90997e-05 3.99499e-05 3.15502e-05 2.40556e-05 1.74596e-05 1.04205e-05 3.32467e-06 5.52851e-07 1.07123e-07 8.53559e-08 2.03525e-08 3.58824e-08 3.625e-07 2.36278e-06 8.49875e-06 1.92299e-05 3.2243e-05 4.55622e-05 5.82289e-05 6.98255e-05 8.0166e-05 8.91619e-05 9.67648e-05 0.000102277 0.000105682 0.000107783 0.000108657 0.000108119 0.000105929 0.000102 9.63345e-05 8.90824e-05 8.05428e-05 7.11253e-05 6.12945e-05 5.15039e-05 4.21374e-05 3.34826e-05 2.57096e-05 1.87853e-05 1.11775e-05 3.59175e-06 5.96252e-07 1.10758e-07 8.6596e-08 2.14048e-08 3.84683e-08 3.94908e-07 2.56931e-06 9.15757e-06 2.04848e-05 3.40661e-05 4.78908e-05 6.10003e-05 7.29776e-05 8.36365e-05 9.28876e-05 0.000100681 0.000106221 0.000109547 0.000111526 0.000112257 0.000111565 0.000109222 0.000105149 9.93548e-05 9.19915e-05 8.33511e-05 7.38283e-05 6.38688e-05 5.39116e-05 4.43356e-05 3.54339e-05 2.73894e-05 2.0138e-05 1.19362e-05 3.86152e-06 6.40371e-07 1.14327e-07 8.77125e-08 2.24775e-08 4.1154e-08 4.28861e-07 2.78455e-06 9.8337e-06 2.1754e-05 3.58942e-05 5.02138e-05 6.37548e-05 7.61011e-05 8.70663e-05 9.65609e-05 0.000104535 0.000110047 0.000113277 0.000115135 0.000115734 0.000114903 0.000112425 0.000108226 0.000102322 9.48628e-05 8.61337e-05 7.6515e-05 6.64351e-05 5.63187e-05 4.6541e-05 3.74012e-05 2.90928e-05 2.15157e-05 1.2694e-05 4.13295e-06 6.85043e-07 1.1782e-07 8.87074e-08 2.35682e-08 4.39397e-08 4.64388e-07 3.0085e-06 1.05263e-05 2.30358e-05 3.77259e-05 5.25295e-05 6.64901e-05 7.91929e-05 9.04516e-05 0.000100177 0.000108319 0.000113741 0.00011686 0.000118603 0.000119085 0.000118133 0.000115538 0.000111233 0.000105236 9.76969e-05 8.8892e-05 7.91877e-05 6.89955e-05 5.87266e-05 4.87544e-05 3.93848e-05 3.08198e-05 2.29179e-05 1.34499e-05 4.40555e-06 7.30184e-07 1.21234e-07 8.95842e-08 2.46738e-08 4.68119e-08 5.01285e-07 3.23975e-06 1.12308e-05 2.43224e-05 3.95504e-05 5.48258e-05 6.91935e-05 8.22401e-05 9.37802e-05 0.000103725 0.000112025 0.000117298 0.000120292 0.000121929 0.000122308 0.000121252 0.00011856 0.000114167 0.000108096 0.000100493 9.16246e-05 8.18437e-05 7.15467e-05 6.11334e-05 5.09749e-05 4.13845e-05 3.25705e-05 2.43443e-05 1.42035e-05 4.67913e-06 7.75769e-07 1.24571e-07 9.03497e-08 2.5792e-08 4.97688e-08 5.39549e-07 3.47812e-06 1.19459e-05 2.56118e-05 4.13659e-05 5.71001e-05 7.18615e-05 8.52386e-05 9.7047e-05 0.000107198 0.000115646 0.000120708 0.00012357 0.000125113 0.000125405 0.000124264 0.000121491 0.000117029 0.000110901 0.000103249 9.43288e-05 8.448e-05 7.40858e-05 6.35361e-05 5.32002e-05 4.33987e-05 3.43447e-05 2.57952e-05 1.49542e-05 4.95368e-06 8.21832e-07 1.27833e-07 9.10083e-08 2.69194e-08 5.27946e-08 5.78927e-07 3.72193e-06 1.26669e-05 2.68965e-05 4.31629e-05 5.93419e-05 7.44834e-05 8.81777e-05 0.000100242 0.000110588 0.000119173 0.000123961 0.000126694 0.000128158 0.000128379 0.000127167 0.000124333 0.00011982 0.00011365 0.000105962 9.70014e-05 8.70937e-05 7.66102e-05 6.59321e-05 5.54272e-05 4.54239e-05 3.61377e-05 2.72648e-05 1.56977e-05 5.22689e-06 8.6789e-07 1.30996e-07 9.15665e-08 2.80533e-08 5.58832e-08 6.19345e-07 3.97062e-06 1.33917e-05 2.81733e-05 4.49374e-05 6.15465e-05 7.70535e-05 9.10509e-05 0.000103357 0.000113886 0.000122519 0.000127053 0.000129682 0.000131074 0.000131231 0.000129964 0.000127084 0.000122536 0.000116341 0.000108629 9.96378e-05 8.96796e-05 7.91145e-05 6.83166e-05 5.76534e-05 4.74612e-05 3.79555e-05 2.87617e-05 1.6439e-05 5.50162e-06 9.14581e-07 1.34096e-07 9.20305e-08 2.91902e-08 5.90209e-08 6.60603e-07 4.22296e-06 1.41172e-05 2.94376e-05 4.6684e-05 6.37081e-05 7.9566e-05 9.38526e-05 0.000106388 0.000117087 0.00012557 0.000129986 0.000132528 0.000133855 0.000133963 0.000132656 0.000129748 0.000125181 0.000118973 0.000111252 0.00010224 9.22417e-05 8.16047e-05 7.06958e-05 5.98821e-05 4.95086e-05 3.97896e-05 3.02745e-05 1.71718e-05 5.77455e-06 9.61152e-07 1.37082e-07 9.24079e-08 3.03276e-08 6.21963e-08 7.02528e-07 4.47781e-06 1.48401e-05 3.06849e-05 4.83976e-05 6.5821e-05 8.20151e-05 9.65773e-05 0.000109329 0.000120188 0.000128475 0.000132764 0.000135227 0.000136505 0.00013658 0.000135251 0.000132329 0.000127758 0.000121551 0.000113829 0.000104807 9.47742e-05 8.40701e-05 7.30565e-05 6.2103e-05 5.15606e-05 4.16382e-05 3.18007e-05 1.78925e-05 6.04393e-06 1.00735e-06 1.39939e-07 9.27054e-08 3.14635e-08 6.5405e-08 7.45043e-07 4.73428e-06 1.55574e-05 3.19106e-05 5.00728e-05 6.78801e-05 8.43961e-05 9.92205e-05 0.000112177 0.000123185 0.000131227 0.00013538 0.000137774 0.000139018 0.000139077 0.00013774 0.00013482 0.000130256 0.000124061 0.000116349 0.000107324 9.72656e-05 8.65023e-05 7.53918e-05 6.43076e-05 5.3613e-05 4.35139e-05 3.33701e-05 1.86164e-05 6.31651e-06 1.05419e-06 1.42692e-07 9.2929e-08 3.25939e-08 6.86306e-08 7.87891e-07 4.99102e-06 1.62664e-05 3.31111e-05 5.17056e-05 6.98809e-05 8.67042e-05 0.000101778 0.000114928 0.000126076 0.000133824 0.000137833 0.000140169 0.000141395 0.000141452 0.000140122 0.000137214 0.000132668 0.000126496 0.000118803 0.000109787 9.97154e-05 8.89107e-05 7.77276e-05 6.65411e-05 5.57093e-05 4.53922e-05 3.47706e-05 1.93104e-05 6.58161e-06 1.10015e-06 1.45227e-07 9.30847e-08 3.3717e-08 7.18525e-08 8.3073e-07 5.24604e-06 1.69624e-05 3.42807e-05 5.32905e-05 7.18183e-05 8.8935e-05 0.000104246 0.000117578 0.000128856 0.000136267 0.000140128 0.000142417 0.00014364 0.00014371 0.000142399 0.000139516 0.000134999 0.00012886 0.000121198 0.000112202 0.000102132 9.13021e-05 8.00654e-05 6.87967e-05 5.78384e-05 4.72609e-05 3.58994e-05 1.99686e-05 6.83572e-06 1.1443e-06 1.47422e-07 9.31843e-08 3.48308e-08 7.50668e-08 8.73503e-07 5.49875e-06 1.76436e-05 3.54159e-05 5.48222e-05 7.36862e-05 9.10824e-05 0.000106618 0.000120123 0.000131524 0.000138565 0.000142278 0.000144532 0.000145766 0.000145863 0.000144581 0.000141732 0.000137255 0.000131158 0.000123538 0.000114574 0.000104517 9.36747e-05 8.23968e-05 7.10555e-05 5.99718e-05 4.91177e-05 3.69915e-05 2.05983e-05 7.07755e-06 1.18566e-06 1.49092e-07 9.32331e-08 3.5928e-08 7.82578e-08 9.16079e-07 5.74887e-06 1.83103e-05 3.65186e-05 5.63034e-05 7.54869e-05 9.31476e-05 0.000108895 0.000122563 0.000134078 0.000140725 0.000144293 0.000146527 0.000147787 0.000147919 0.000146676 0.000143868 0.000139438 0.000133393 0.000125823 0.0001169 0.000106866 9.60207e-05 8.47118e-05 7.33069e-05 6.21023e-05 5.09653e-05 3.80532e-05 2.1205e-05 7.30764e-06 1.22359e-06 1.49976e-07 9.32378e-08 3.70066e-08 8.14298e-08 9.58528e-07 5.99651e-06 1.89628e-05 3.75888e-05 5.77338e-05 7.72202e-05 9.51306e-05 0.000111078 0.000124897 0.00013652 0.000142738 0.000146172 0.000148404 0.000149701 0.000149876 0.000148676 0.000145916 0.000141541 0.000135555 0.000128044 0.000119171 0.000109169 9.83326e-05 8.70052e-05 7.55497e-05 6.42342e-05 5.2812e-05 3.90852e-05 2.1787e-05 7.52306e-06 1.25655e-06 1.49729e-07 9.32043e-08 3.80624e-08 8.45644e-08 1.00054e-06 6.23988e-06 1.95971e-05 3.86222e-05 5.91096e-05 7.88827e-05 9.70283e-05 0.000113163 0.000127124 0.000138848 0.0001446 0.00014793 0.000150181 0.000151519 0.000151736 0.00015058 0.000147875 0.000143562 0.000137644 0.0001302 0.000121385 0.000111425 0.000100608 8.92741e-05 7.77802e-05 6.63623e-05 5.46464e-05 4.00635e-05 2.23232e-05 7.71301e-06 1.28287e-06 1.48669e-07 9.31468e-08 3.90986e-08 8.76617e-08 1.04207e-06 6.47879e-06 2.02132e-05 3.96193e-05 6.04321e-05 8.04763e-05 9.88431e-05 0.000115151 0.000129241 0.000140741 0.00014632 0.000149613 0.000151872 0.000153238 0.000153496 0.000152391 0.000149745 0.000145501 0.000139656 0.000132286 0.000123537 0.000113629 0.000102842 9.15148e-05 7.9996e-05 6.84839e-05 5.64656e-05 4.09938e-05 2.28244e-05 7.8892e-06 1.30781e-06 1.48181e-07 9.30831e-08 4.01158e-08 9.07143e-08 1.08297e-06 6.71248e-06 2.081e-05 4.05791e-05 6.17009e-05 8.2002e-05 0.000100578 0.00011705 0.00013126 0.000142476 0.000147931 0.000151193 0.000153465 0.000154866 0.000155168 0.000154117 0.000151534 0.000147362 0.000141596 0.000134306 0.000125631 0.000115783 0.000105037 9.37274e-05 8.21941e-05 7.05946e-05 5.82718e-05 4.1906e-05 2.33242e-05 8.07417e-06 1.33793e-06 1.49173e-07 9.30204e-08 4.1115e-08 9.37208e-08 1.1232e-06 6.94075e-06 2.13874e-05 4.15021e-05 6.29168e-05 8.34612e-05 0.000102235 0.000118861 0.000133184 0.00014411 0.000149446 0.000152683 0.000154973 0.000156412 0.000156762 0.000155767 0.00015325 0.000149153 0.000143468 0.00013626 0.000127664 0.000117883 0.000107186 9.59044e-05 8.43663e-05 7.26857e-05 6.00599e-05 4.28088e-05 2.3829e-05 8.26859e-06 1.37179e-06 1.50854e-07 9.29527e-08 4.20938e-08 9.66724e-08 1.16263e-06 7.16282e-06 2.19438e-05 4.23867e-05 6.40789e-05 8.48534e-05 0.000103814 0.000120586 0.000135017 0.000145646 0.000150864 0.000154081 0.000156394 0.000157874 0.000158274 0.000157337 0.000154887 0.000150864 0.000145262 0.00013814 0.000129627 0.000119917 0.000109278 9.80369e-05 8.65134e-05 7.47737e-05 6.18578e-05 4.3718e-05 2.43479e-05 8.47426e-06 1.40854e-06 1.52765e-07 9.28854e-08 4.30499e-08 9.95491e-08 1.2009e-06 7.37689e-06 2.24757e-05 4.32286e-05 6.5183e-05 8.61753e-05 0.000105313 0.000122224 0.000136756 0.000147086 0.000152189 0.000155389 0.00015773 0.000159254 0.000159705 0.000158826 0.000156442 0.000152494 0.000146975 0.000139944 0.000131522 0.000121899 0.000111333 0.000100145 8.86444e-05 7.68584e-05 6.36675e-05 4.46403e-05 2.48823e-05 8.68949e-06 1.44738e-06 1.54801e-07 9.28271e-08 4.39868e-08 1.02357e-07 1.23807e-06 7.58335e-06 2.29846e-05 4.40305e-05 6.62325e-05 8.74306e-05 0.000106736 0.000123779 0.000138408 0.000148438 0.000153431 0.000156619 0.00015899 0.00016056 0.000161064 0.000160242 0.000157923 0.000154049 0.000148615 0.000141676 0.000133355 0.000123838 0.000113378 0.00010228 9.08153e-05 7.88984e-05 6.51973e-05 4.55302e-05 2.54074e-05 8.90503e-06 1.48684e-06 1.56886e-07 9.27813e-08 4.4909e-08 1.05101e-07 1.27418e-06 7.78262e-06 2.3472e-05 4.47953e-05 6.72312e-05 8.86241e-05 0.000108089 0.000125257 0.000139979 0.000149715 0.000154603 0.000157784 0.000160188 0.000161805 0.000162362 0.000161597 0.000159342 0.000155541 0.000150189 0.000143346 0.00013513 0.000125728 0.000115389 0.000104402 9.29836e-05 8.08935e-05 6.64164e-05 4.63912e-05 2.59218e-05 9.11865e-06 1.52631e-06 1.58989e-07 9.27492e-08 4.58218e-08 1.07806e-07 1.3096e-06 7.97684e-06 2.39433e-05 4.55306e-05 6.81884e-05 8.97654e-05 0.00010938 0.000126667 0.000141477 0.000150926 0.000155716 0.000158895 0.000161335 0.000163001 0.00016361 0.000162901 0.000160707 0.000156977 0.000151706 0.000144955 0.000136846 0.000127563 0.00011735 0.000106482 9.51145e-05 8.28498e-05 6.76098e-05 4.72363e-05 2.64297e-05 9.3312e-06 1.56583e-06 1.61109e-07 9.27331e-08 4.67281e-08 1.10485e-07 1.34453e-06 8.16712e-06 2.44014e-05 4.62417e-05 6.91107e-05 9.08625e-05 0.000110619 0.000128018 0.000142911 0.000152071 0.000156769 0.000159951 0.000162431 0.000164148 0.000164809 0.000164153 0.000162019 0.000158355 0.000153161 0.000146501 0.000138495 0.000129331 0.000119249 0.000108506 9.71985e-05 8.47669e-05 6.87754e-05 4.8065e-05 2.69304e-05 9.54213e-06 1.60526e-06 1.63241e-07 9.27333e-08 4.76297e-08 1.13124e-07 1.37868e-06 8.35203e-06 2.48435e-05 4.69252e-05 6.99954e-05 9.19133e-05 0.000111806 0.000129311 0.000144282 0.000153155 0.000157766 0.000160958 0.000163482 0.00016525 0.000165962 0.000165358 0.000163279 0.000159677 0.000154556 0.000147981 0.000140076 0.000131029 0.00012108 0.000110468 9.92317e-05 8.66446e-05 6.99138e-05 4.8878e-05 2.74244e-05 9.75176e-06 1.64468e-06 1.65387e-07 9.27491e-08 4.8532e-08 1.15734e-07 1.41218e-06 8.53231e-06 2.52715e-05 4.75839e-05 7.08456e-05 9.29214e-05 0.000112942 0.000130549 0.000145596 0.000154184 0.000158714 0.000161921 0.000164493 0.000166314 0.000167076 0.00016652 0.000164492 0.000160948 0.000155894 0.000149398 0.000141589 0.000132656 0.00012284 0.000112365 0.000101209 8.84788e-05 7.10236e-05 4.96745e-05 2.79113e-05 9.9598e-06 1.68402e-06 1.67545e-07 9.27803e-08 4.94371e-08 1.18306e-07 1.44486e-06 8.70706e-06 2.56837e-05 4.82161e-05 7.16598e-05 9.38859e-05 0.000114029 0.000131732 0.000146851 0.000155158 0.000159615 0.000162843 0.000165465 0.00016734 0.00016815 0.00016764 0.000165659 0.000162168 0.000157176 0.000150754 0.000143035 0.000134212 0.000124529 0.000114195 0.00010313 9.02692e-05 7.21052e-05 5.04549e-05 2.83916e-05 1.01668e-05 1.72344e-06 1.69723e-07 9.28261e-08 5.03464e-08 1.20855e-07 1.47698e-06 8.87777e-06 2.60835e-05 4.8826e-05 7.24429e-05 9.48114e-05 0.00011507 0.000132865 0.000148053 0.000156083 0.000160473 0.000163728 0.000166406 0.000168333 0.00016919 0.000168722 0.000166785 0.000163342 0.000158407 0.000152054 0.000144419 0.000135702 0.000126147 0.000115955 0.000104985 9.20046e-05 7.31527e-05 5.12138e-05 2.88609e-05 1.03703e-05 1.76238e-06 1.71889e-07 9.28847e-08 5.12575e-08 1.23372e-07 1.50839e-06 9.04369e-06 2.64695e-05 4.94121e-05 7.31933e-05 9.56968e-05 0.000116066 0.000133947 0.000149201 0.000156952 0.000161284 0.000164576 0.000167313 0.000169293 0.000170194 0.000169765 0.000167868 0.000164469 0.000159586 0.000153294 0.000145737 0.000137119 0.000127691 0.000117641 0.000106773 9.36845e-05 7.41682e-05 5.19536e-05 2.93216e-05 1.05716e-05 1.80118e-06 1.74065e-07 9.29596e-08 5.21707e-08 1.25864e-07 1.53923e-06 9.20561e-06 2.68435e-05 4.99771e-05 7.39139e-05 9.65446e-05 0.000117017 0.000134981 0.000150297 0.000157763 0.000162051 0.000165391 0.000168189 0.00017022 0.000171161 0.000170768 0.000168907 0.00016555 0.000160714 0.000154483 0.000147 0.000138478 0.000129169 0.000119256 0.000108493 9.5311e-05 7.51558e-05 5.26776e-05 2.97755e-05 1.07714e-05 1.83989e-06 1.76249e-07 9.30512e-08 5.30889e-08 1.28331e-07 1.56945e-06 9.36349e-06 2.72059e-05 5.05218e-05 7.46058e-05 9.7356e-05 0.000117925 0.000135966 0.000151342 0.000158512 0.000162782 0.000166181 0.000169037 0.000171114 0.000172091 0.000171731 0.000169905 0.000166585 0.000161795 0.000155622 0.000148218 0.0001398 0.000130616 0.000120824 0.000110111 9.68012e-05 7.60903e-05 5.33667e-05 3.02104e-05 1.09643e-05 1.87754e-06 1.78388e-07 9.31532e-08 5.40143e-08 1.30782e-07 1.5992e-06 9.51807e-06 2.75586e-05 5.1049e-05 7.52723e-05 9.81342e-05 0.000118792 0.000136901 0.000152111 0.000159204 0.000163503 0.000166951 0.000169854 0.000171972 0.000172986 0.000172658 0.000170864 0.000167579 0.000162831 0.000156713 0.000149386 0.000141072 0.00013202 0.00012235 0.000111625 9.7868e-05 7.69631e-05 5.40173e-05 3.06242e-05 1.11494e-05 1.91395e-06 1.8047e-07 9.32601e-08 5.49482e-08 1.33231e-07 1.6287e-06 9.6706e-06 2.79041e-05 5.15622e-05 7.59178e-05 9.88847e-05 0.000119625 0.000137797 0.000152796 0.000159851 0.000164183 0.000167684 0.000170638 0.000172798 0.000173846 0.00017355 0.000171785 0.000168532 0.000163822 0.000157755 0.000150499 0.000142283 0.000133351 0.000123789 0.000113043 9.88749e-05 7.77869e-05 5.46329e-05 3.10173e-05 1.13261e-05 1.94891e-06 1.82477e-07 9.33663e-08 5.58859e-08 1.35654e-07 1.6576e-06 9.81922e-06 2.82388e-05 5.2057e-05 7.65377e-05 9.96033e-05 0.000120421 0.000138651 0.000153434 0.00016045 0.000164822 0.00016838 0.000171387 0.000173591 0.000174674 0.000174408 0.000172671 0.000169446 0.000164771 0.00015875 0.000151557 0.00014343 0.000134609 0.000125144 0.000114377 9.98251e-05 7.85651e-05 5.52159e-05 3.13907e-05 1.14947e-05 1.98243e-06 1.84406e-07 9.34697e-08 5.68268e-08 1.3805e-07 1.68588e-06 9.96394e-06 2.85626e-05 5.25332e-05 7.71317e-05 0.000100289 0.000121179 0.000139463 0.000154018 0.000160999 0.000165414 0.000169034 0.000172097 0.000174347 0.000175466 0.000175229 0.000173519 0.00017032 0.000165676 0.000159695 0.00015256 0.000144513 0.000135791 0.000126417 0.00011563 0.000100721 7.92995e-05 5.57672e-05 3.17451e-05 1.16554e-05 2.01451e-06 1.86257e-07 9.35698e-08 5.77695e-08 1.40389e-07 1.71303e-06 1.01023e-05 2.88708e-05 5.29846e-05 7.76933e-05 0.000100937 0.000121894 0.000140228 0.00015455 0.000161497 0.000165961 0.000169647 0.00017277 0.000175068 0.000176224 0.000176017 0.000174331 0.000171157 0.00016654 0.000160594 0.00015351 0.000145534 0.000136903 0.000127609 0.000116802 0.000101564 7.99921e-05 5.62889e-05 3.20821e-05 1.1809e-05 2.04534e-06 1.88041e-07 9.36723e-08 5.87192e-08 1.42706e-07 1.73965e-06 1.02372e-05 2.91693e-05 5.34189e-05 7.82303e-05 0.000101553 0.000122571 0.000140951 0.000155038 0.000161954 0.000166471 0.000170227 0.000173413 0.000175761 0.000176955 0.000176777 0.000175116 0.000171964 0.00016737 0.000161456 0.000154416 0.000146504 0.000137953 0.000128731 0.000117902 0.000102356 8.0644e-05 5.67813e-05 3.24018e-05 1.19557e-05 2.07487e-06 1.89754e-07 9.37752e-08 5.96767e-08 1.44997e-07 1.76564e-06 1.03684e-05 2.94582e-05 5.38367e-05 7.87439e-05 0.000102139 0.000123213 0.000141633 0.000155474 0.000162361 0.000166936 0.000170768 0.000174021 0.000176421 0.000177655 0.000177507 0.00017587 0.000172738 0.000168166 0.000162279 0.000155277 0.000147421 0.000138942 0.000129784 0.000118932 0.0001031 8.12565e-05 5.72452e-05 3.27043e-05 1.20954e-05 2.10315e-06 1.91398e-07 9.38737e-08 6.06432e-08 1.47256e-07 1.79088e-06 1.04954e-05 2.97363e-05 5.42368e-05 7.92334e-05 0.000102695 0.000123818 0.000142275 0.00015586 0.00016272 0.000167358 0.00017127 0.000174595 0.00017705 0.000178325 0.000178208 0.000176595 0.000173483 0.00016893 0.000163066 0.000156098 0.00014829 0.000139874 0.000130771 0.000119894 0.000103797 8.18293e-05 5.76792e-05 3.29881e-05 1.22269e-05 2.12987e-06 1.9295e-07 9.3965e-08 6.16212e-08 1.49498e-07 1.81562e-06 1.06194e-05 3.00061e-05 5.46222e-05 7.97012e-05 0.000103223 0.000124391 0.000142878 0.000156205 0.000163039 0.000167744 0.00017174 0.000175139 0.000177652 0.00017897 0.000178885 0.000177295 0.000174202 0.000169666 0.000163822 0.000156883 0.000149117 0.000140756 0.000131699 0.000120794 0.000104446 8.23624e-05 5.80829e-05 3.32521e-05 1.23496e-05 2.15487e-06 1.94396e-07 9.40456e-08 6.26058e-08 1.51702e-07 1.83954e-06 1.07389e-05 3.02648e-05 5.49892e-05 8.0144e-05 0.00010372 0.000124926 0.000143441 0.000156502 0.000163311 0.000168087 0.000172172 0.000175649 0.000178222 0.000179586 0.000179534 0.000177968 0.000174894 0.000170374 0.000164547 0.000157633 0.000149903 0.000141589 0.000132571 0.000121635 0.000105051 8.28585e-05 5.84585e-05 3.34985e-05 1.24647e-05 2.17839e-06 1.9575e-07 9.41141e-08 6.35958e-08 1.53868e-07 1.86269e-06 1.08541e-05 3.05128e-05 5.53382e-05 8.05618e-05 0.000104186 0.000125425 0.000143962 0.00015675 0.000163537 0.000168387 0.000172565 0.000176124 0.000178762 0.000180173 0.000180155 0.000178615 0.000175559 0.000171054 0.000165243 0.000158349 0.00015065 0.000142376 0.00013339 0.000122419 0.000105613 8.33175e-05 5.88056e-05 3.37265e-05 1.25718e-05 2.20039e-06 1.97005e-07 9.41631e-08 6.45883e-08 1.55986e-07 1.88489e-06 1.09642e-05 3.07485e-05 5.56677e-05 8.09531e-05 0.000104618 0.000125886 0.000144441 0.000156953 0.000163718 0.000168647 0.000172923 0.000176567 0.000179272 0.000180732 0.000180751 0.000179237 0.000176199 0.000171709 0.000165912 0.000159036 0.000151362 0.000143121 0.000134159 0.00012315 0.00010613 8.37381e-05 5.91223e-05 3.39343e-05 1.26697e-05 2.2206e-06 1.98142e-07 9.41881e-08 6.5585e-08 1.58052e-07 1.90607e-06 1.1069e-05 3.09716e-05 5.59767e-05 8.1317e-05 0.000105018 0.000126308 0.000144877 0.000157105 0.000163851 0.000168862 0.00017324 0.000176974 0.000179749 0.000181262 0.000181318 0.000179832 0.000176815 0.000172339 0.000166556 0.000159695 0.000152043 0.000143828 0.000134882 0.000123831 0.000106608 8.41246e-05 5.94129e-05 3.41252e-05 1.276e-05 2.23932e-06 1.99177e-07 9.41907e-08 6.65839e-08 1.60063e-07 1.92622e-06 1.11685e-05 3.1182e-05 5.62656e-05 8.16537e-05 0.000105384 0.000126692 0.000145271 0.000157219 0.000163947 0.000169044 0.000173527 0.000177355 0.000180203 0.000181771 0.000181868 0.000180411 0.000177414 0.000172954 0.000167184 0.000160337 0.000152703 0.000144508 0.000135569 0.000124468 0.000107045 8.44767e-05 5.96765e-05 3.42985e-05 1.28425e-05 2.25647e-06 2.00103e-07 9.41688e-08 6.75878e-08 1.6203e-07 1.94549e-06 1.12634e-05 3.13819e-05 5.65374e-05 8.1967e-05 0.00010572 0.000127041 0.000145627 0.000157285 0.000163999 0.000169187 0.000173781 0.000177706 0.000180631 0.000182256 0.000182395 0.000180969 0.000177995 0.000173552 0.000167795 0.000160962 0.000153342 0.000145161 0.000136222 0.000125063 0.000107441 8.47906e-05 5.99087e-05 3.44499e-05 1.29145e-05 2.27147e-06 2.0088e-07 9.41137e-08 6.85993e-08 1.6395e-07 1.96382e-06 1.13537e-05 3.15709e-05 5.67916e-05 8.22565e-05 0.000106028 0.000127357 0.000145944 0.000157307 0.000164009 0.000169294 0.000174004 0.00017803 0.000181034 0.000182718 0.000182901 0.000181507 0.000178557 0.000174132 0.00016839 0.000161571 0.000153965 0.000145794 0.000136847 0.00012562 0.000107799 8.50705e-05 6.0113e-05 3.4582e-05 1.29774e-05 2.28456e-06 2.01521e-07 9.40224e-08 6.96189e-08 1.65832e-07 1.98136e-06 1.144e-05 3.17502e-05 5.70297e-05 8.25235e-05 0.000106307 0.000127639 0.000146224 0.000157291 0.000163986 0.000169374 0.000174205 0.000178336 0.000181421 0.000183165 0.000183392 0.000182032 0.000179108 0.000174703 0.000168978 0.000162174 0.000154583 0.000146421 0.000137459 0.000126156 0.000108124 8.5319e-05 6.02909e-05 3.4696e-05 1.30316e-05 2.2959e-06 2.02032e-07 9.38958e-08 7.06437e-08 1.67669e-07 1.99799e-06 1.15215e-05 3.19181e-05 5.7249e-05 8.27646e-05 0.000106554 0.000127885 0.000146465 0.000157225 0.000163917 0.000169418 0.000174378 0.000178619 0.000181787 0.000183591 0.000183863 0.000182537 0.000179641 0.000175259 0.000169555 0.00016277 0.000155197 0.000147044 0.000138066 0.000126675 0.000108418 8.55366e-05 6.04413e-05 3.47894e-05 1.30757e-05 2.30506e-06 2.02386e-07 9.37286e-08 7.16637e-08 1.69396e-07 2.01267e-06 1.15932e-05 3.20643e-05 5.74359e-05 8.29651e-05 0.000106755 0.00012808 0.000146653 0.000157093 0.000163794 0.000169421 0.000174521 0.000178877 0.000182128 0.000183994 0.000184312 0.000183022 0.000180155 0.0001758 0.00017012 0.00016336 0.000155809 0.00014767 0.000138674 0.00012719 0.00010869 8.57327e-05 6.05725e-05 3.48687e-05 1.31128e-05 2.31276e-06 2.02626e-07 9.35229e-08 7.26843e-08 1.71027e-07 2.0256e-06 1.16558e-05 3.21891e-05 5.75893e-05 8.31221e-05 0.000106904 0.000128219 0.000146783 0.000156893 0.00016362 0.000169392 0.000174639 0.00017911 0.000182445 0.000184371 0.000184736 0.000183485 0.000180652 0.000176327 0.000170676 0.000163946 0.000156424 0.000148304 0.000139293 0.000127709 0.000108946 8.5912e-05 6.06887e-05 3.49366e-05 1.31443e-05 2.31931e-06 2.02768e-07 9.32794e-08 7.37029e-08 1.72543e-07 2.03649e-06 1.1708e-05 3.22903e-05 5.77055e-05 8.32302e-05 0.000106996 0.000128294 0.000146849 0.000156614 0.000163408 0.000169345 0.00017474 0.00017932 0.000182735 0.000184723 0.000185137 0.000183928 0.000181131 0.00017684 0.000171224 0.000164529 0.000157043 0.00014895 0.00013993 0.00012824 0.000109187 8.60756e-05 6.07899e-05 3.49931e-05 1.317e-05 2.32463e-06 2.02807e-07 9.29982e-08 7.47256e-08 1.73967e-07 2.04563e-06 1.17513e-05 3.23711e-05 5.77892e-05 8.3294e-05 0.000107031 0.000128301 0.000146483 0.000156245 0.00016318 0.000169273 0.000174802 0.00017949 0.000182987 0.00018504 0.000185508 0.000184344 0.000181587 0.000177335 0.000171759 0.000165107 0.000157665 0.000149609 0.000140586 0.000128787 0.00010942 8.62312e-05 6.08833e-05 3.50432e-05 1.31925e-05 2.32927e-06 2.02782e-07 9.26869e-08 7.57571e-08 1.75289e-07 2.05281e-06 1.17847e-05 3.24295e-05 5.78378e-05 8.33118e-05 0.000107013 0.000128247 0.000146041 0.00015581 0.000162893 0.000169152 0.000174824 0.000179622 0.000183206 0.000185327 0.00018585 0.000184734 0.000182022 0.000177812 0.000172281 0.000165679 0.00015829 0.00015028 0.000141263 0.000129355 0.000109648 8.6382e-05 6.09723e-05 3.509e-05 1.32135e-05 2.33361e-06 2.02719e-07 9.23521e-08 7.67992e-08 1.76554e-07 2.05877e-06 1.18116e-05 3.24716e-05 5.78582e-05 8.32899e-05 0.000106945 0.000128136 0.000145527 0.000155309 0.000162551 0.000168984 0.000174804 0.000179718 0.000183391 0.000185582 0.000186164 0.000185099 0.000182434 0.000178272 0.000172792 0.000166246 0.000158918 0.000150962 0.000141958 0.000129943 0.000109878 8.65342e-05 6.10624e-05 3.51374e-05 1.32348e-05 2.33801e-06 2.02639e-07 9.19986e-08 7.78532e-08 1.77762e-07 2.06344e-06 1.18318e-05 3.24974e-05 5.78513e-05 8.32296e-05 0.000106828 0.000127968 0.000144927 0.000154722 0.000162133 0.000168753 0.000174729 0.000179766 0.000183532 0.000185796 0.000186438 0.000185427 0.000182814 0.000178709 0.000173291 0.000166811 0.000159548 0.000151643 0.000142648 0.000130524 0.000110105 8.66859e-05 6.11527e-05 3.51846e-05 1.32558e-05 2.34233e-06 2.02539e-07 9.16299e-08 7.89124e-08 1.78841e-07 2.06565e-06 1.18396e-05 3.24964e-05 5.78038e-05 8.31175e-05 0.000106651 0.000127733 0.000144245 0.000154057 0.000161647 0.000168462 0.000174604 0.00017977 0.000183635 0.000185977 0.000186682 0.000185727 0.00018317 0.000179125 0.000173779 0.000167382 0.000160199 0.000152343 0.000143315 0.000131052 0.000110314 8.68263e-05 6.12368e-05 3.52292e-05 1.32763e-05 2.34663e-06 2.02428e-07 9.1249e-08 7.9993e-08 1.79878e-07 2.06672e-06 1.18414e-05 3.24796e-05 5.77283e-05 8.2965e-05 0.000106423 0.000127439 0.000143483 0.000153312 0.000161091 0.000168113 0.00017443 0.000179731 0.000183699 0.00018612 0.00018689 0.000185992 0.000183492 0.00017951 0.000174239 0.000167932 0.000160844 0.000153047 0.000143949 0.000131307 0.000110493 8.69458e-05 6.13058e-05 3.52632e-05 1.32915e-05 2.34985e-06 2.02244e-07 9.08513e-08 8.10907e-08 1.80815e-07 2.0657e-06 1.18328e-05 3.24402e-05 5.76171e-05 8.27645e-05 0.000106136 0.000127078 0.000142632 0.000152482 0.00016046 0.000167702 0.000174205 0.00017965 0.000183726 0.00018623 0.000187066 0.000186227 0.000183784 0.000179866 0.000174672 0.000168457 0.000161467 0.000153732 0.000144562 0.000131532 0.00011066 8.70577e-05 6.13712e-05 3.52961e-05 1.33065e-05 2.35303e-06 2.02053e-07 9.04484e-08 8.22136e-08 1.81707e-07 2.0634e-06 1.18176e-05 3.23842e-05 5.74771e-05 8.25227e-05 0.000105797 0.000126654 0.000141693 0.000151566 0.000159756 0.000167232 0.000173932 0.000179529 0.000183719 0.000186308 0.000187213 0.000186432 0.000184046 0.000180192 0.000175076 0.000168956 0.000162067 0.000154399 0.000145159 0.000131734 0.000110809 8.7159e-05 6.14312e-05 3.53271e-05 1.33213e-05 2.35626e-06 2.01867e-07 9.00472e-08 8.33638e-08 1.8254e-07 2.05955e-06 1.17945e-05 3.23094e-05 5.73052e-05 8.22356e-05 0.0001054 0.000126163 0.000140654 0.000150552 0.000158969 0.000166693 0.000173604 0.00017936 0.000183667 0.000186343 0.000187315 0.000186592 0.000184262 0.00018047 0.00017543 0.000169404 0.000162617 0.000155018 0.000145714 0.000131899 0.000110928 8.72343e-05 6.14703e-05 3.53428e-05 1.33281e-05 2.35781e-06 2.01577e-07 8.96326e-08 8.45375e-08 1.83291e-07 2.05378e-06 1.17613e-05 3.22115e-05 5.70957e-05 8.18969e-05 0.000104939 0.000125598 0.000139514 0.000149443 0.000158104 0.000166095 0.000173226 0.000179148 0.000183575 0.000186339 0.000187379 0.000186712 0.000184435 0.000180703 0.000175737 0.000169804 0.000163119 0.000155592 0.000146227 0.00013203 0.00011102 8.72912e-05 6.14978e-05 3.53524e-05 1.33326e-05 2.35892e-06 2.01261e-07 8.92132e-08 8.57412e-08 1.83998e-07 2.04666e-06 1.17206e-05 3.20938e-05 5.68513e-05 8.15079e-05 0.000104414 0.000124959 0.000138258 0.000148235 0.000157166 0.000165441 0.000172802 0.000178892 0.000183439 0.000186291 0.000187397 0.000186785 0.000184561 0.000180887 0.000175993 0.00017015 0.000163567 0.000156115 0.000146694 0.00013212 0.00011108 8.73238e-05 6.15089e-05 3.53524e-05 1.33332e-05 2.35935e-06 2.00907e-07 8.87903e-08 8.69722e-08 1.8462e-07 2.03753e-06 1.16691e-05 3.19493e-05 5.65617e-05 8.10556e-05 0.000103811 0.000124234 0.000136876 0.000146941 0.000156175 0.000164742 0.00017233 0.000178584 0.00018325 0.000186189 0.000187362 0.000186805 0.000184632 0.000181012 0.000176186 0.000170429 0.000163945 0.000156565 0.000147092 0.000132156 0.000111095 8.73203e-05 6.14929e-05 3.53345e-05 1.33252e-05 2.35801e-06 2.00452e-07 8.83617e-08 8.82477e-08 1.85254e-07 2.02788e-06 1.1614e-05 3.17912e-05 5.624e-05 8.05464e-05 0.000103118 0.000122743 0.000135356 0.000145676 0.000155201 0.000164023 0.000171813 0.000178224 0.000183009 0.000186039 0.000187282 0.000186781 0.000184656 0.000181088 0.000176326 0.000170651 0.000164262 0.000156954 0.000147433 0.000132145 0.000111072 8.72892e-05 6.1459e-05 3.53068e-05 1.33134e-05 2.35596e-06 1.99959e-07 8.79309e-08 8.95691e-08 1.85844e-07 2.0168e-06 1.15525e-05 3.16184e-05 5.58928e-05 8e-05 0.000102376 0.000121191 0.000133758 0.000144318 0.000154139 0.000163225 0.000171229 0.000177805 0.000182714 0.000185836 0.000187148 0.0001867 0.000184622 0.000181102 0.000176399 0.0001708 0.0001645 0.000157259 0.000147691 0.000132068 0.000110993 8.72132e-05 6.13918e-05 3.52576e-05 1.32916e-05 2.35194e-06 1.99353e-07 8.74908e-08 9.09433e-08 1.86391e-07 2.00414e-06 1.14823e-05 3.14238e-05 5.55081e-05 7.94007e-05 0.000101568 0.000119546 0.000132067 0.00014288 0.000153006 0.000162365 0.000170588 0.000177331 0.000182366 0.000185581 0.000186962 0.000186565 0.00018453 0.000181053 0.000176402 0.000170872 0.000164652 0.000157472 0.000147859 0.000131922 0.000110855 8.709e-05 6.12892e-05 3.51853e-05 1.3259e-05 2.34569e-06 1.98612e-07 8.70328e-08 9.23848e-08 1.86991e-07 1.99144e-06 1.14118e-05 3.12237e-05 5.51059e-05 7.87687e-05 0.000100711 0.000117828 0.000130301 0.00014137 0.000151812 0.000161452 0.0001699 0.000176814 0.000181976 0.000185283 0.00018673 0.000186381 0.000184384 0.000180944 0.00017634 0.000170871 0.000164723 0.000157597 0.000147937 0.000131704 0.000110657 8.69206e-05 6.11551e-05 3.50951e-05 1.32193e-05 2.33812e-06 1.978e-07 8.6571e-08 9.38804e-08 1.87525e-07 1.97683e-06 1.13316e-05 3.10013e-05 5.46669e-05 7.80856e-05 9.97904e-05 0.000116017 0.000128444 0.000139782 0.000150548 0.000160477 0.000169154 0.000176241 0.000181529 0.000184927 0.000186437 0.000186133 0.00018417 0.000180763 0.000176198 0.000170782 0.000164697 0.000157616 0.000147909 0.000131396 0.000110381 8.6685e-05 6.09695e-05 3.49699e-05 1.31628e-05 2.3271e-06 1.96777e-07 8.60859e-08 9.54432e-08 1.88094e-07 1.9619e-06 1.12487e-05 3.07669e-05 5.42008e-05 7.73588e-05 9.88118e-05 0.000114121 0.000126519 0.000138145 0.000149247 0.000159465 0.000168367 0.000175622 0.000181032 0.000184517 0.000186087 0.000185824 0.00018389 0.00018051 0.000175977 0.000170605 0.000164571 0.000157524 0.000147767 0.000130997 0.000110027 8.63873e-05 6.0739e-05 3.48174e-05 1.30944e-05 2.31374e-06 1.95617e-07 8.55864e-08 9.70668e-08 1.8871e-07 1.94681e-06 1.11629e-05 3.05183e-05 5.3702e-05 7.65804e-05 9.77724e-05 0.000112127 0.00012454 0.000136482 0.000147921 0.000158417 0.000167531 0.000174946 0.000180473 0.000184041 0.000185668 0.000185441 0.000183531 0.000180172 0.000175665 0.000170328 0.000164336 0.000157314 0.000147504 0.000130497 0.000109582 8.60145e-05 6.04512e-05 3.46272e-05 1.30087e-05 2.29691e-06 1.9424e-07 8.50535e-08 9.87433e-08 1.89295e-07 1.93038e-06 1.10687e-05 3.02417e-05 5.31438e-05 7.56972e-05 9.58226e-05 0.000110004 0.000122644 0.000134883 0.000146594 0.000157321 0.000166626 0.000174193 0.000179837 0.000183488 0.000185169 0.000184975 0.000183085 0.000179741 0.000175251 0.000169937 0.000163972 0.00015696 0.000147094 0.000129882 0.000109037 8.55577e-05 6.00989e-05 3.43947e-05 1.29035e-05 2.27616e-06 1.92624e-07 8.4486e-08 1.00491e-07 1.89942e-07 1.91433e-06 1.09774e-05 2.99671e-05 5.25796e-05 7.47963e-05 9.38403e-05 0.000107864 0.000120692 0.000133209 0.000145193 0.00015616 0.000165664 0.000173386 0.000179145 0.000182875 0.000184606 0.000184439 0.000182562 0.000179226 0.000174746 0.000169449 0.0001635 0.000156488 0.000146563 0.000129162 0.000108402 8.50284e-05 5.9694e-05 3.41299e-05 1.27844e-05 2.25272e-06 1.9083e-07 8.38809e-08 1.0231e-07 1.9059e-07 1.89742e-06 1.08813e-05 2.96772e-05 5.19836e-05 7.38468e-05 9.17828e-05 0.000105655 0.000118689 0.000131496 0.000143758 0.000154962 0.000164657 0.000172528 0.000178393 0.000182193 0.000183964 0.000183816 0.000181945 0.000178609 0.000174131 0.000168837 0.000162891 0.000155864 0.000145874 0.000128312 0.000107651 8.44021e-05 5.92148e-05 3.38169e-05 1.26438e-05 2.22505e-06 1.88777e-07 8.3236e-08 1.0419e-07 1.91244e-07 1.87995e-06 1.07822e-05 2.93748e-05 5.13604e-05 7.28556e-05 8.96831e-05 0.000103407 0.000116648 0.000129744 0.000142281 0.000153719 0.0001636 0.000171611 0.000177575 0.000181437 0.000183239 0.000183101 0.000181226 0.000177883 0.000173397 0.000168097 0.00016214 0.000155087 0.000145032 0.000127337 0.00010679 8.36836e-05 5.86647e-05 3.3457e-05 1.24815e-05 2.19305e-06 1.86437e-07 8.25328e-08 1.06121e-07 1.91853e-07 1.86106e-06 1.06749e-05 2.90493e-05 5.06955e-05 7.18081e-05 8.751e-05 0.000101111 0.000114578 0.000127969 0.000140777 0.000152438 0.000162496 0.000170636 0.000176689 0.000180601 0.000182425 0.000182286 0.000180399 0.00017704 0.000172541 0.000167232 0.000161256 0.00015413 0.000143875 0.000126221 0.00010581 8.28706e-05 5.80471e-05 3.30571e-05 1.23031e-05 2.15811e-06 1.83913e-07 8.17955e-08 1.08077e-07 1.92358e-07 1.8399e-06 1.05531e-05 2.86833e-05 4.99633e-05 7.06841e-05 8.5255e-05 9.87886e-05 0.000112504 0.000126179 0.000139236 0.000151102 0.000161321 0.000169583 0.000175714 0.000179669 0.000181504 0.000181355 0.000179448 0.000176068 0.000171553 0.000166229 0.000160217 0.000152989 0.000142494 0.000124955 0.000104696 8.19447e-05 5.73413e-05 3.25979e-05 1.20973e-05 2.11769e-06 1.81025e-07 8.0987e-08 1.10063e-07 1.92826e-07 1.81764e-06 1.04213e-05 2.82748e-05 4.91266e-05 6.85856e-05 8.29186e-05 9.65909e-05 0.000110514 0.000124396 0.000137651 0.0001497 0.000160074 0.000168452 0.000174657 0.000178646 0.000180483 0.000180314 0.000178378 0.000174968 0.000170426 0.00016507 0.000159002 0.000151658 0.000140952 0.000123543 0.000103457 8.09191e-05 5.65646e-05 3.20975e-05 1.18754e-05 2.07442e-06 1.77965e-07 8.01514e-08 1.1208e-07 1.93288e-07 1.79537e-06 1.0291e-05 2.78651e-05 4.82804e-05 6.65136e-05 8.05844e-05 9.43342e-05 0.000108439 0.000122534 0.000136002 0.000148243 0.000158774 0.000167262 0.000173529 0.000177536 0.000179359 0.000179159 0.000177183 0.000173735 0.000169158 0.000163761 0.000157625 0.000150157 0.000139252 0.000121986 0.000102089 7.97845e-05 5.57032e-05 3.15406e-05 1.16279e-05 2.02614e-06 1.74564e-07 7.9244e-08 1.14106e-07 1.93581e-07 1.77021e-06 1.01454e-05 2.7417e-05 4.73706e-05 6.43632e-05 7.81828e-05 9.20289e-05 0.00010633 0.000120644 0.000134322 0.000146748 0.000157423 0.000166007 0.000172319 0.000176328 0.00017812 0.000177871 0.000175843 0.000172344 0.000167716 0.000162259 0.000156034 0.000148436 0.000137381 0.000120274 0.000100588 7.85422e-05 5.47634e-05 3.09366e-05 1.13613e-05 1.97441e-06 1.70957e-07 7.83062e-08 1.16133e-07 1.93811e-07 1.74423e-06 9.99455e-06 2.69486e-05 4.64201e-05 6.2187e-05 7.57556e-05 8.96894e-05 0.000104181 0.000118709 0.000132596 0.000145202 0.000156014 0.000164681 0.000171024 0.000175017 0.000176762 0.000176451 0.000174359 0.000170802 0.000166118 0.000160593 0.000154275 0.000146547 0.000135354 0.000118423 9.89653e-05 7.72007e-05 5.3749e-05 3.02849e-05 1.10744e-05 1.91883e-06 1.67072e-07 7.72952e-08 1.18137e-07 1.93851e-07 1.71512e-06 9.82622e-06 2.64358e-05 4.5399e-05 5.99421e-05 7.32822e-05 8.73183e-05 0.000102005 0.000116745 0.000130833 0.000143609 0.000154543 0.000163276 0.000169628 0.000173585 0.000175265 0.000174874 0.000172703 0.000169072 0.000164316 0.000158708 0.000152278 0.000144421 0.000133149 0.00011641 9.72034e-05 7.57462e-05 5.26522e-05 2.95836e-05 1.07678e-05 1.85987e-06 1.62991e-07 7.62588e-08 1.20095e-07 1.93926e-07 1.68489e-06 9.64263e-06 2.5871e-05 4.43006e-05 5.764e-05 7.0799e-05 8.49493e-05 9.98175e-05 0.000114752 0.000129025 0.000141959 0.000153005 0.000161791 0.000168136 0.00017204 0.000173637 0.000173155 0.000170895 0.000167182 0.000162347 0.00015665 0.000150109 0.000142128 0.000130799 0.000114268 9.53319e-05 7.42026e-05 5.14887e-05 2.88399e-05 1.04435e-05 1.79761e-06 1.5866e-07 7.51491e-08 1.22005e-07 1.94814e-07 1.6561e-06 9.44068e-06 2.52144e-05 4.25381e-05 5.52935e-05 6.8402e-05 8.26313e-05 9.76237e-05 0.000112713 0.000127156 0.000140242 0.000151392 0.000160217 0.000166538 0.000170367 0.000171862 0.000171272 0.00016891 0.000165106 0.000160178 0.000154376 0.000147711 0.000139613 0.000128279 0.000111977 9.33337e-05 7.25595e-05 5.02563e-05 2.80583e-05 1.01063e-05 1.73347e-06 1.54238e-07 7.40393e-08 1.23868e-07 1.98621e-07 1.63216e-06 9.22883e-06 2.45053e-05 4.05307e-05 5.29568e-05 6.60091e-05 8.02754e-05 9.53741e-05 0.000110624 0.000125247 0.000138492 0.000149741 0.000158589 0.000164862 0.000168592 0.000169963 0.000169247 0.000166773 0.000162871 0.000157851 0.000151945 0.00014516 0.000136957 0.00012564 0.000109581 9.12462e-05 7.08432e-05 4.89676e-05 2.72398e-05 9.75378e-06 1.66654e-06 1.49597e-07 7.28618e-08 1.25662e-07 2.02607e-07 1.59803e-06 8.97219e-06 2.37257e-05 3.85237e-05 5.06178e-05 6.35975e-05 7.78969e-05 9.31078e-05 0.000108527 0.000123335 0.000136732 0.000148064 0.000156909 0.000163103 0.000166703 0.000167923 0.000167061 0.000164459 0.000160447 0.000155324 0.000149304 0.000142389 0.000134087 0.000122856 0.000107062 8.9059e-05 6.90537e-05 4.76334e-05 2.6401e-05 9.39704e-06 1.59951e-06 1.44989e-07 7.17121e-08 1.2733e-07 2.0349e-07 1.54969e-06 8.6751e-06 2.28885e-05 3.65294e-05 4.82825e-05 6.11632e-05 7.54788e-05 9.07988e-05 0.000106393 0.000121394 0.000134944 0.000146347 0.000155168 0.000161254 0.000164696 0.000165743 0.000164718 0.000161979 0.000157856 0.000152635 0.000146515 0.000139495 0.000131118 0.000119981 0.000104466 8.68082e-05 6.72119e-05 4.62578e-05 2.55345e-05 9.02937e-06 1.53063e-06 1.40214e-07 7.04947e-08 1.28914e-07 2.02654e-07 1.49543e-06 8.35945e-06 2.20157e-05 3.45429e-05 4.59508e-05 5.87207e-05 7.30504e-05 8.84885e-05 0.000104271 0.000119472 0.00013317 0.000144623 0.000153384 0.000159326 0.000162574 0.000163417 0.000162207 0.000159315 0.000155067 0.000149733 0.0001435 0.000136368 0.00012794 0.000116984 0.00010177 8.44814e-05 6.53188e-05 4.48554e-05 2.46607e-05 8.6637e-06 1.46288e-06 1.35561e-07 6.93256e-08 1.30367e-07 2.0069e-07 1.43425e-06 8.01405e-06 2.10893e-05 3.25636e-05 4.36213e-05 5.62616e-05 7.05943e-05 8.61509e-05 0.000102129 0.000117533 0.00013137 0.00014285 0.000151524 0.000157289 0.000160317 0.000160939 0.000159536 0.00015649 0.000152122 0.000146691 0.000140368 0.000133154 0.000124702 0.000113931 9.90313e-05 8.21215e-05 6.33995e-05 4.34316e-05 2.37725e-05 8.2933e-06 1.3945e-06 1.30808e-07 6.80894e-08 1.3172e-07 1.981e-07 1.36937e-06 7.65127e-06 2.01282e-05 3.0597e-05 4.13048e-05 5.38068e-05 6.81434e-05 8.38295e-05 0.000100015 0.000115624 0.000129581 0.000141054 0.000149595 0.000155144 0.000157923 0.000158303 0.000156693 0.000153481 0.000148984 0.000143443 0.000137018 0.000129718 0.000121266 0.000110775 9.62133e-05 7.97067e-05 6.14498e-05 4.19995e-05 2.28905e-05 7.93117e-06 1.32845e-06 1.26264e-07 6.69285e-08 1.32931e-07 1.94898e-07 1.29881e-06 7.25985e-06 1.91156e-05 2.86377e-05 3.89983e-05 5.1351e-05 6.56855e-05 8.15027e-05 9.78971e-05 0.000113699 0.000127745 0.000139164 0.00014753 0.000152839 0.000155365 0.000155513 0.000153705 0.000150338 0.000145723 0.000140095 0.0001336 0.000126256 0.000117819 0.000107499 9.33811e-05 7.72844e-05 5.94941e-05 4.05607e-05 2.20027e-05 7.56754e-06 1.26228e-06 1.21639e-07 6.56951e-08 1.3401e-07 1.91288e-07 1.22447e-06 6.84557e-06 1.80612e-05 2.6697e-05 3.67224e-05 4.89203e-05 6.32505e-05 7.9204e-05 9.58073e-05 0.000111776 0.000125846 0.000137123 0.000145244 0.000150293 0.000152592 0.000152543 0.00015056 0.000147042 0.000142304 0.000136579 0.000130009 0.000122607 0.000114164 0.000104 9.04776e-05 7.48188e-05 5.7521e-05 3.91264e-05 2.11325e-05 7.21789e-06 1.19947e-06 1.173e-07 6.45621e-08 1.34927e-07 1.87265e-07 1.14544e-06 6.39683e-06 1.68142e-05 2.47754e-05 3.44922e-05 4.65137e-05 6.08205e-05 7.69064e-05 9.37183e-05 0.000109829 0.000123841 0.000134791 0.000142235 0.000147164 0.000149617 0.000149495 0.000147361 0.00014369 0.000138829 0.000133018 0.000126396 0.000118972 0.000110559 0.000100572 8.75899e-05 7.23674e-05 5.55557e-05 3.76917e-05 2.02584e-05 6.86821e-06 1.137e-06 1.12913e-07 6.33582e-08 1.35692e-07 1.83154e-07 1.06686e-06 5.93791e-06 1.53373e-05 2.29074e-05 3.23278e-05 4.41443e-05 5.84197e-05 7.4661e-05 9.17133e-05 0.000107937 0.00012163 0.000131301 0.000138045 0.000142815 0.000145677 0.000146398 0.00014426 0.000140344 0.00013525 0.000129282 0.000122569 0.000115106 0.000106724 9.69479e-05 8.46364e-05 6.98787e-05 5.35787e-05 3.62654e-05 1.94019e-05 6.53126e-06 1.07769e-06 1.08838e-07 6.2287e-08 1.36297e-07 1.78874e-07 9.88283e-07 5.48013e-06 1.39337e-05 2.10851e-05 3.01696e-05 4.1769e-05 5.60218e-05 7.24421e-05 8.97285e-05 0.000105901 0.000118642 0.00012714 0.000133673 0.000138273 0.000141017 0.000142009 0.000140997 0.000137114 0.000131767 0.000125582 0.000118758 0.000111277 0.00010297 9.34265e-05 8.17101e-05 6.74124e-05 5.16145e-05 3.48409e-05 1.85422e-05 6.19361e-06 1.01832e-06 1.04661e-07 6.11137e-08 1.36754e-07 1.74563e-07 9.11426e-07 5.02846e-06 1.25889e-05 1.93212e-05 2.80632e-05 3.94477e-05 5.36967e-05 7.03195e-05 8.78036e-05 0.000103671 0.00011463 0.000122866 0.000129159 0.000133561 0.000136166 0.000137089 0.000136402 0.000133577 0.000128218 0.00012178 0.000114766 0.000107216 9.89666e-05 8.96919e-05 7.87142e-05 6.49103e-05 4.96448e-05 3.34342e-05 1.77094e-05 5.87318e-06 9.62886e-07 1.00844e-07 6.00826e-08 1.37006e-07 1.70043e-07 8.33925e-07 4.57235e-06 1.12977e-05 1.7597e-05 2.59695e-05 3.71168e-05 5.13581e-05 6.81795e-05 8.57192e-05 0.000100615 0.00011048 0.000118439 0.000124482 0.000128682 0.00013115 0.000132011 0.000131338 0.000129195 0.000124584 0.00011808 0.000110889 0.000103274 9.51116e-05 8.61117e-05 7.57015e-05 6.244e-05 4.76919e-05 3.20294e-05 1.6872e-05 5.55111e-06 9.07081e-07 9.6872e-08 5.89148e-08 1.37094e-07 1.65612e-07 7.60411e-07 4.13479e-06 1.00805e-05 1.59463e-05 2.39406e-05 3.48518e-05 4.9109e-05 6.61448e-05 8.35793e-05 9.66996e-05 0.000106249 0.000113897 0.000119661 0.000123636 0.00012595 0.00012674 0.000126078 0.000124018 0.000120554 0.000114165 0.000106842 9.91573e-05 9.10652e-05 8.22855e-05 7.23041e-05 5.99438e-05 4.57575e-05 3.06702e-05 1.60836e-05 5.25606e-06 8.57022e-07 9.3404e-08 5.79365e-08 1.3696e-07 1.6098e-07 6.86541e-07 3.69517e-06 8.9136e-06 1.43352e-05 2.19247e-05 3.2567e-05 4.68187e-05 6.40595e-05 8.13743e-05 9.26243e-05 0.000101845 0.000109173 0.000114654 0.000118409 0.000120581 0.00012132 0.000120693 0.000118743 0.000115537 0.000110191 0.000102976 9.52539e-05 8.72274e-05 7.86568e-05 6.90676e-05 5.74676e-05 4.3822e-05 2.92954e-05 1.52779e-05 4.95323e-06 8.05013e-07 8.96099e-08 5.67688e-08 1.36632e-07 1.5653e-07 6.18603e-07 3.28477e-06 7.832e-06 1.28124e-05 1.99914e-05 3.03717e-05 4.46461e-05 6.19249e-05 7.78386e-05 8.84939e-05 9.734e-05 0.000104308 0.000109478 0.000112994 0.000115017 0.000115704 0.000115119 0.000113289 0.000110272 0.000105886 9.88252e-05 9.10968e-05 8.31324e-05 7.47645e-05 6.562e-05 5.4995e-05 4.19339e-05 2.79905e-05 1.45358e-05 4.68392e-06 7.61978e-07 8.76014e-08 5.58548e-08 1.36075e-07 1.5191e-07 5.50966e-07 2.87728e-06 6.80231e-06 1.13341e-05 1.8074e-05 2.81549e-05 4.24365e-05 5.97398e-05 7.38785e-05 8.41499e-05 9.26021e-05 9.92036e-05 0.000104068 0.000107361 0.00010926 0.00010993 0.000109423 0.000107749 0.000104955 0.000101058 9.47816e-05 8.71939e-05 7.93207e-05 7.11625e-05 6.24087e-05 5.25012e-05 3.999e-05 2.66179e-05 1.37486e-05 4.40608e-06 7.20439e-07 8.61537e-08 5.46498e-08 1.35309e-07 1.4755e-07 4.90999e-07 2.50944e-06 5.86841e-06 9.95994e-06 1.62565e-05 2.60413e-05 4.03712e-05 5.77511e-05 6.98515e-05 7.96874e-05 8.76961e-05 9.38927e-05 9.8428e-05 0.000101493 0.000103275 0.000103946 0.000103542 0.000102048 9.95003e-05 9.59051e-05 9.03869e-05 8.29932e-05 7.52519e-05 6.73287e-05 5.89696e-05 4.96891e-05 3.81601e-05 2.53967e-05 1.30905e-05 4.18468e-06 6.87701e-07 8.47654e-08 5.38019e-08 1.34299e-07 1.43038e-07 4.31922e-07 2.14917e-06 4.9874e-06 8.63386e-06 1.44535e-05 2.38816e-05 3.81148e-05 5.45836e-05 6.55447e-05 7.49088e-05 8.24542e-05 8.8245e-05 9.24689e-05 9.53371e-05 9.70461e-05 9.77683e-05 9.7521e-05 9.6258e-05 9.40022e-05 9.07487e-05 8.62153e-05 7.91191e-05 7.15758e-05 6.39139e-05 5.59e-05 4.70718e-05 3.62586e-05 2.4069e-05 1.23418e-05 3.9231e-06 6.46015e-07 8.19215e-08 5.249e-08 1.33044e-07 1.3883e-07 3.82015e-07 1.83932e-06 4.21568e-06 7.43951e-06 1.27966e-05 2.1897e-05 3.60475e-05 5.07193e-05 6.11479e-05 6.99519e-05 7.69661e-05 8.23107e-05 8.6208e-05 8.88819e-05 9.05367e-05 9.13437e-05 9.12883e-05 9.02896e-05 8.83538e-05 8.54531e-05 8.15405e-05 7.48159e-05 6.74862e-05 6.00963e-05 5.24549e-05 4.41988e-05 3.44923e-05 2.29229e-05 1.17388e-05 3.71961e-06 6.1365e-07 7.97666e-08 5.1683e-08 1.31535e-07 1.34434e-07 3.32488e-07 1.5353e-06 3.48891e-06 6.28588e-06 1.11418e-05 1.98527e-05 3.39278e-05 4.64504e-05 5.62918e-05 6.45103e-05 7.10002e-05 7.59339e-05 7.95602e-05 8.2104e-05 8.37751e-05 8.47438e-05 8.4955e-05 8.42921e-05 8.27398e-05 8.02355e-05 7.67437e-05 7.10467e-05 6.40609e-05 5.69288e-05 4.96134e-05 4.17847e-05 3.27041e-05 2.1675e-05 1.10342e-05 3.47279e-06 5.72943e-07 7.63665e-08 5.02305e-08 1.29721e-07 1.30388e-07 2.94098e-07 1.29322e-06 2.88331e-06 5.28501e-06 9.66213e-06 1.8024e-05 3.19926e-05 4.21629e-05 5.13082e-05 5.88451e-05 6.47498e-05 6.92488e-05 7.26071e-05 7.50383e-05 7.67288e-05 7.78622e-05 7.83612e-05 7.80437e-05 7.68398e-05 7.46941e-05 7.16087e-05 6.6518e-05 5.98555e-05 5.3047e-05 4.61349e-05 3.88783e-05 3.08361e-05 2.04556e-05 1.03889e-05 3.25471e-06 5.37787e-07 7.37962e-08 4.93702e-08 1.27599e-07 1.26041e-07 2.54785e-07 1.0505e-06 2.30838e-06 4.3022e-06 8.12253e-06 1.58639e-05 2.79296e-05 3.72954e-05 4.56663e-05 5.25183e-05 5.78996e-05 6.20706e-05 6.52909e-05 6.77465e-05 6.95782e-05 7.09772e-05 7.18554e-05 7.19383e-05 7.11668e-05 6.95105e-05 6.69506e-05 6.31183e-05 5.68319e-05 5.02698e-05 4.36563e-05 3.67898e-05 2.9294e-05 1.94211e-05 9.81051e-06 3.05226e-06 5.03466e-07 7.05234e-08 4.78124e-08 1.25043e-07 1.22092e-07 2.29708e-07 8.87751e-07 1.88121e-06 3.52504e-06 6.85161e-06 1.41051e-05 2.4113e-05 3.25016e-05 3.99176e-05 4.59483e-05 5.0728e-05 5.45396e-05 5.76196e-05 6.0125e-05 6.21438e-05 6.37694e-05 6.49182e-05 6.53233e-05 6.49147e-05 6.36458e-05 6.14877e-05 5.82663e-05 5.23844e-05 4.6251e-05 4.01225e-05 3.37939e-05 2.69141e-05 1.78552e-05 8.95493e-06 2.76639e-06 4.58531e-07 6.70504e-08 4.65939e-08 1.22076e-07 1.17688e-07 2.01773e-07 7.12297e-07 1.45315e-06 2.70482e-06 5.35846e-06 1.16165e-05 1.94114e-05 2.66901e-05 3.3181e-05 3.85112e-05 4.28378e-05 4.6435e-05 4.95205e-05 5.22473e-05 5.46687e-05 5.67324e-05 5.83029e-05 5.92029e-05 5.93487e-05 5.86796e-05 5.71491e-05 5.47003e-05 4.98597e-05 4.40011e-05 3.80776e-05 3.20054e-05 2.54981e-05 1.72458e-05 8.6471e-06 2.65514e-06 4.37073e-07 6.45336e-08 4.51611e-08 1.18564e-07 1.13909e-07 1.93969e-07 6.49805e-07 1.22896e-06 2.17065e-06 4.21526e-06 9.39852e-06 1.51678e-05 2.12175e-05 2.66994e-05 3.12666e-05 3.5065e-05 3.83438e-05 4.13366e-05 4.41817e-05 4.68477e-05 4.92409e-05 5.11789e-05 5.24132e-05 5.28897e-05 5.25684e-05 5.1393e-05 4.93111e-05 4.52433e-05 3.99776e-05 3.46328e-05 2.91241e-05 2.31764e-05 1.52466e-05 7.51887e-06 2.28781e-06 3.8168e-07 5.98241e-08 4.31576e-08 1.14581e-07 1.09563e-07 1.82729e-07 5.79745e-07 1.02159e-06 1.62924e-06 2.8341e-06 5.88462e-06 9.57003e-06 1.39584e-05 1.8466e-05 2.25837e-05 2.6223e-05 2.94884e-05 3.26257e-05 3.57232e-05 3.87422e-05 4.15804e-05 4.40807e-05 4.59966e-05 4.71177e-05 4.74063e-05 4.68773e-05 4.54636e-05 4.23527e-05 3.73546e-05 3.21732e-05 2.68927e-05 2.136e-05 1.47722e-05 7.32965e-06 2.21909e-06 3.65763e-07 5.78657e-08 4.2122e-08 1.1005e-07 1.05686e-07 1.91701e-07 6.3877e-07 1.13925e-06 1.68967e-06 2.52579e-06 4.20308e-06 5.83156e-06 8.01903e-06 1.08484e-05 1.40917e-05 1.74881e-05 2.08145e-05 2.41228e-05 2.74542e-05 3.07592e-05 3.39361e-05 3.6846e-05 3.93044e-05 4.10864e-05 4.19309e-05 4.18024e-05 4.08292e-05 3.89327e-05 3.47008e-05 3.00488e-05 2.52861e-05 2.02102e-05 1.33698e-05 6.51739e-06 1.95131e-06 3.25359e-07 5.35824e-08 3.96497e-08 1.03483e-07 9.99727e-08 1.96477e-07 6.84623e-07 1.29447e-06 1.95615e-06 2.79357e-06 3.88992e-06 4.52674e-06 5.05434e-06 5.69217e-06 6.62016e-06 8.07124e-06 1.02577e-05 1.31717e-05 1.65439e-05 2.02033e-05 2.39473e-05 2.7542e-05 3.07644e-05 3.33876e-05 3.51481e-05 3.57121e-05 3.50349e-05 3.30403e-05 2.90543e-05 2.47047e-05 2.04381e-05 1.60287e-05 1.08534e-05 5.27236e-06 1.60678e-06 2.76467e-07 4.9916e-08 3.87991e-08 9.5848e-08 9.47553e-08 2.09542e-07 7.63384e-07 1.80312e-06 2.89759e-06 3.98326e-06 4.73583e-06 5.31545e-06 5.77992e-06 6.16847e-06 6.50918e-06 6.83125e-06 7.1855e-06 7.68831e-06 8.59959e-06 1.03814e-05 1.33914e-05 1.73891e-05 2.19105e-05 2.64054e-05 3.04357e-05 3.36473e-05 3.5673e-05 3.602e-05 3.29531e-05 2.8694e-05 2.40221e-05 1.91868e-05 1.41171e-05 6.85429e-06 1.95461e-06 3.0841e-07 5.17674e-08 3.93899e-08 9.01738e-08 9.51873e-08 2.72749e-07 1.03851e-06 2.41958e-06 3.87972e-06 5.05118e-06 5.93391e-06 6.6387e-06 7.25214e-06 7.82707e-06 8.40077e-06 9.01047e-06 9.70349e-06 1.05421e-05 1.16012e-05 1.29523e-05 1.46206e-05 1.65372e-05 1.85471e-05 2.0354e-05 2.16531e-05 2.22973e-05 2.21627e-05 2.1105e-05 1.92519e-05 1.68616e-05 1.40392e-05 1.08681e-05 7.45444e-06 4.04227e-06 1.40869e-06 2.61578e-07 4.7818e-08 3.68731e-08 9.3135e-08 1.08164e-07 4.15729e-07 1.56827e-06 3.2632e-06 4.63041e-06 5.58567e-06 6.36658e-06 7.11496e-06 7.88891e-06 8.71262e-06 9.60511e-06 1.06019e-05 1.17788e-05 1.32799e-05 1.53361e-05 1.8254e-05 2.23483e-05 2.78015e-05 3.44445e-05 4.17548e-05 4.88683e-05 5.47622e-05 5.84476e-05 5.91751e-05 5.66108e-05 4.07773e-05 2.8426e-05 1.98612e-05 1.33981e-05 6.89821e-06 1.55486e-06 2.17061e-07 4.23878e-08 3.30969e-08 7.48021e-08 1.5437e-07 1.2164e-06 3.87984e-06 5.03342e-06 5.48437e-06 6.05872e-06 6.77075e-06 7.57616e-06 8.46082e-06 9.42008e-06 1.0447e-05 1.15273e-05 1.26366e-05 1.37372e-05 1.47753e-05 1.56779e-05 1.63485e-05 1.66625e-05 1.67023e-05 1.63738e-05 1.56541e-05 1.45544e-05 1.31199e-05 1.14168e-05 9.52192e-06 7.51709e-06 5.50409e-06 3.58192e-06 1.9358e-06 7.80602e-07 2.09647e-07 4.19662e-08 1.39673e-08 1.16184e-08 3.70628e-08 2.17819e-06 2.59607e-06 2.81833e-06 3.03049e-06 3.1864e-06 3.29356e-06 3.36582e-06 3.41046e-06 3.43219e-06 3.43443e-06 3.4199e-06 3.39074e-06 3.34866e-06 3.29498e-06 3.2307e-06 3.15645e-06 3.07209e-06 2.97576e-06 2.87036e-06 2.75186e-06 2.61871e-06 2.46743e-06 2.29481e-06 2.09711e-06 1.87112e-06 1.61503e-06 1.33072e-06 1.02712e-06 7.26917e-07 4.65697e-07 2.78053e-07 1.6538e-07 9.52546e-08 1.57387e-09 4.67513e-11 4.05519e-09 7.5022e-09 1.16299e-08 1.66742e-08 2.28598e-08 3.03631e-08 3.92863e-08 4.96445e-08 6.13656e-08 7.43015e-08 8.82452e-08 1.0295e-07 1.18147e-07 1.33551e-07 1.48866e-07 1.63785e-07 1.77983e-07 1.91109e-07 2.02764e-07 2.12597e-07 2.20245e-07 2.2536e-07 2.27646e-07 2.26902e-07 2.23067e-07 2.16264e-07 2.06829e-07 1.95308e-07 1.82413e-07 1.69037e-07 1.56384e-07 1.44048e-07 1.21822e-07 3.43629e-09 1.02126e-10 1.01514e-10 1.75493e-10 7.37711e-10 2.91668e-09 8.68862e-09 2.06049e-08 4.12074e-08 7.2245e-08 1.13892e-07 1.64266e-07 2.19467e-07 2.74193e-07 3.22748e-07 3.60203e-07 3.83377e-07 3.91376e-07 3.85563e-07 3.68943e-07 3.45554e-07 3.19262e-07 2.94407e-07 2.72478e-07 2.54036e-07 2.39285e-07 2.27803e-07 2.18596e-07 2.09737e-07 1.9708e-07 1.72578e-07 1.22511e-07 5.87936e-08 2.0384e-08 1.03142e-08 1.01432e-08 2.63148e-10 2.87092e-10 7.9128e-10 3.82982e-09 1.40567e-08 3.8367e-08 8.43377e-08 1.57948e-07 2.6099e-07 3.89396e-07 5.33656e-07 6.81135e-07 8.18986e-07 9.36464e-07 1.02618e-06 1.0844e-06 1.11061e-06 1.10616e-06 1.07256e-06 1.01452e-06 9.37443e-07 8.46815e-07 7.48236e-07 6.47258e-07 5.49209e-07 4.58732e-07 3.78813e-07 3.08722e-07 2.40886e-07 1.63802e-07 8.55101e-08 3.51253e-08 1.73465e-08 1.5376e-08 1.69145e-08 8.69805e-10 9.34161e-10 2.39638e-09 1.13287e-08 4.21526e-08 1.18843e-07 2.72402e-07 5.31267e-07 9.05131e-07 1.37336e-06 1.88874e-06 2.39301e-06 2.83304e-06 3.17059e-06 3.38547e-06 3.4744e-06 3.44757e-06 3.32387e-06 3.1229e-06 2.86967e-06 2.58615e-06 2.29008e-06 1.99476e-06 1.7096e-06 1.4408e-06 1.1915e-06 9.59745e-07 7.34498e-07 4.9983e-07 2.71548e-07 1.11354e-07 3.98507e-08 2.12729e-08 2.0357e-08 2.22957e-08 2.05784e-09 2.20148e-09 6.15341e-09 3.14969e-08 1.23732e-07 3.66238e-07 8.66025e-07 1.68827e-06 2.78109e-06 3.98767e-06 5.13339e-06 6.09055e-06 6.78961e-06 7.20547e-06 7.34289e-06 7.2272e-06 6.8984e-06 6.40946e-06 5.81286e-06 5.16142e-06 4.50013e-06 3.8629e-06 3.27141e-06 2.73584e-06 2.25596e-06 1.82162e-06 1.41345e-06 1.01122e-06 6.23088e-07 3.08723e-07 1.21936e-07 4.40594e-08 2.45552e-08 2.36439e-08 2.56424e-08 2.94849e-09 3.2468e-09 1.10641e-08 6.17128e-08 2.46185e-07 7.14874e-07 1.59874e-06 2.87182e-06 4.34391e-06 5.79938e-06 7.09097e-06 8.14273e-06 8.92216e-06 9.41811e-06 9.63175e-06 9.57546e-06 9.27305e-06 8.75836e-06 8.06561e-06 7.25865e-06 6.39302e-06 5.51799e-06 4.67166e-06 3.87722e-06 3.14168e-06 2.45781e-06 1.77342e-06 1.05211e-06 5.76923e-07 3.05823e-07 1.33373e-07 4.85002e-08 2.70257e-08 2.59448e-08 2.80465e-08 3.45561e-09 3.84243e-09 1.38307e-08 7.77803e-08 3.06161e-07 8.73593e-07 1.92401e-06 3.42134e-06 5.1476e-06 6.85376e-06 8.27349e-06 9.32969e-06 1.0283e-05 1.11251e-05 1.16211e-05 1.17294e-05 1.15825e-05 1.11822e-05 1.05472e-05 9.73452e-06 8.79266e-06 7.76586e-06 6.69464e-06 5.61077e-06 4.53432e-06 3.3441e-06 2.09632e-06 1.21379e-06 6.68888e-07 3.58966e-07 1.6298e-07 5.70843e-08 3.01384e-08 2.85693e-08 3.08676e-08 3.99816e-09 4.56236e-09 1.83628e-08 1.0689e-07 4.24989e-07 1.2128e-06 2.63566e-06 4.5785e-06 6.7165e-06 8.74698e-06 1.01401e-05 1.13955e-05 1.25664e-05 1.3621e-05 1.41824e-05 1.43058e-05 1.41581e-05 1.37515e-05 1.31043e-05 1.22663e-05 1.12658e-05 1.01261e-05 8.86993e-06 7.51772e-06 6.09271e-06 4.1749e-06 2.55863e-06 1.47822e-06 8.21613e-07 4.44036e-07 2.06028e-07 6.89376e-08 3.38088e-08 3.13773e-08 3.38357e-08 4.36498e-09 5.0783e-09 2.1884e-08 1.28893e-07 5.09697e-07 1.43888e-06 3.08574e-06 5.2979e-06 7.71307e-06 9.97927e-06 1.15389e-05 1.29739e-05 1.4346e-05 1.5649e-05 1.65928e-05 1.68783e-05 1.68612e-05 1.6556e-05 1.59795e-05 1.51758e-05 1.41582e-05 1.29332e-05 1.15042e-05 9.87547e-06 7.96895e-06 5.2963e-06 3.24968e-06 1.89547e-06 1.06576e-06 5.80112e-07 2.75891e-07 8.76492e-08 3.84946e-08 3.43338e-08 3.68973e-08 4.79341e-09 5.70162e-09 2.63132e-08 1.57231e-07 6.231e-07 1.75467e-06 3.73174e-06 6.33494e-06 9.1289e-06 1.16817e-05 1.35053e-05 1.5194e-05 1.68267e-05 1.83859e-05 1.94036e-05 1.97953e-05 1.9857e-05 1.96123e-05 1.90826e-05 1.82921e-05 1.72431e-05 1.59276e-05 1.43278e-05 1.24291e-05 9.78216e-06 6.5582e-06 4.08835e-06 2.4315e-06 1.39337e-06 7.68949e-07 3.72931e-07 1.13397e-07 4.41737e-08 3.74005e-08 4.00019e-08 5.27513e-09 6.43001e-09 3.18391e-08 1.92795e-07 7.63987e-07 2.13662e-06 4.48459e-06 7.5046e-06 1.06939e-05 1.35568e-05 1.56424e-05 1.75809e-05 1.94695e-05 2.12985e-05 2.26034e-05 2.3145e-05 2.33158e-05 2.31429e-05 2.26474e-05 2.1841e-05 2.07201e-05 1.92648e-05 1.74429e-05 1.52267e-05 1.15929e-05 7.87697e-06 5.01511e-06 3.05263e-06 1.78975e-06 1.00758e-06 5.03047e-07 1.48686e-07 5.12315e-08 4.04958e-08 4.30339e-08 5.75011e-09 7.15892e-09 3.74434e-08 2.28682e-07 9.049e-07 2.51413e-06 5.22042e-06 8.64396e-06 1.22266e-05 1.54829e-05 1.78608e-05 2.00768e-05 2.22558e-05 2.43865e-05 2.59184e-05 2.66521e-05 2.69779e-05 2.69167e-05 2.64829e-05 2.56798e-05 2.44929e-05 2.28895e-05 2.08253e-05 1.81132e-05 1.3547e-05 9.3313e-06 6.06419e-06 3.77389e-06 2.26189e-06 1.29977e-06 6.66342e-07 1.93468e-07 5.93171e-08 4.35988e-08 4.59953e-08 6.29356e-09 8.03109e-09 4.45854e-08 2.74925e-07 1.08703e-06 2.99719e-06 6.14107e-06 1.00337e-05 1.40537e-05 1.7709e-05 2.03936e-05 2.28936e-05 2.53634e-05 2.77952e-05 2.95759e-05 3.04957e-05 3.09687e-05 3.1009e-05 3.06232e-05 2.98057e-05 2.85295e-05 2.67499e-05 2.44131e-05 2.063e-05 1.55621e-05 1.08978e-05 7.22174e-06 4.58785e-06 2.80585e-06 1.64243e-06 8.55648e-07 2.43802e-07 6.69326e-08 4.66262e-08 4.88669e-08 6.8444e-09 8.93482e-09 5.21721e-08 3.23895e-07 1.27766e-06 3.49265e-06 7.06595e-06 1.14146e-05 1.58683e-05 1.99859e-05 2.29939e-05 2.57864e-05 2.8552e-05 3.12606e-05 3.33504e-05 3.44845e-05 3.51292e-05 3.52888e-05 3.49608e-05 3.41306e-05 3.27584e-05 3.07887e-05 2.81615e-05 2.32506e-05 1.76857e-05 1.25889e-05 8.50022e-06 5.50505e-06 3.43066e-06 2.04362e-06 1.08258e-06 3.0617e-07 7.72113e-08 4.9705e-08 5.16515e-08 7.42875e-09 9.93306e-09 6.09496e-08 3.80785e-07 1.49831e-06 4.05816e-06 8.10155e-06 1.29363e-05 1.78449e-05 2.24094e-05 2.58217e-05 2.89141e-05 3.19453e-05 3.47702e-05 3.72626e-05 3.86358e-05 3.94461e-05 3.97158e-05 3.9433e-05 3.8576e-05 3.70922e-05 3.49181e-05 3.14705e-05 2.59329e-05 1.99143e-05 1.43902e-05 9.88879e-06 6.52103e-06 4.13549e-06 2.5042e-06 1.34856e-06 3.80783e-07 8.93949e-08 5.28187e-08 5.43523e-08 8.03965e-09 1.1008e-08 7.07027e-08 4.44041e-07 1.74176e-06 4.67107e-06 9.20189e-06 1.45319e-05 1.99028e-05 2.48935e-05 2.87876e-05 3.21869e-05 3.54073e-05 3.84321e-05 4.11424e-05 4.29326e-05 4.39049e-05 4.42743e-05 4.40201e-05 4.31174e-05 4.15024e-05 3.91058e-05 3.4652e-05 2.86392e-05 2.22254e-05 1.62968e-05 1.1388e-05 7.64015e-06 4.92705e-06 3.03127e-06 1.65891e-06 4.69263e-07 1.03565e-07 5.59729e-08 5.69716e-08 8.67006e-09 1.21544e-08 8.14574e-08 5.13815e-07 2.00802e-06 5.32928e-06 1.03619e-05 1.6195e-05 2.20364e-05 2.74641e-05 3.18973e-05 3.56153e-05 3.90381e-05 4.22578e-05 4.51715e-05 4.73399e-05 4.84662e-05 4.89216e-05 4.86775e-05 4.77097e-05 4.59451e-05 4.30677e-05 3.78487e-05 3.13872e-05 2.45968e-05 1.82858e-05 1.29827e-05 8.85414e-06 5.8023e-06 3.62499e-06 2.01372e-06 5.71962e-07 1.19765e-07 5.91731e-08 5.95135e-08 9.33074e-09 1.3391e-08 9.34043e-08 5.91401e-07 2.30184e-06 6.04306e-06 1.15975e-05 1.7946e-05 2.42676e-05 3.01408e-05 3.51442e-05 3.91676e-05 4.28249e-05 4.62294e-05 4.93167e-05 5.18417e-05 5.31211e-05 5.36464e-05 5.33919e-05 5.2338e-05 5.0405e-05 4.66794e-05 4.10073e-05 3.41803e-05 2.7036e-05 2.03572e-05 1.467e-05 1.01618e-05 6.76255e-06 4.28822e-06 2.41534e-06 6.90046e-07 1.38188e-07 6.24318e-08 6.19803e-08 1.00114e-08 1.46951e-08 1.06343e-07 6.7545e-07 2.61723e-06 6.79544e-06 1.28794e-05 1.97475e-05 2.65553e-05 3.28832e-05 3.85107e-05 4.28598e-05 4.67503e-05 5.03335e-05 5.35544e-05 5.62183e-05 5.78482e-05 5.84301e-05 5.81469e-05 5.69871e-05 5.47085e-05 5.02561e-05 4.41524e-05 3.69882e-05 2.95173e-05 2.2494e-05 1.64379e-05 1.15555e-05 7.8041e-06 5.02033e-06 2.86329e-06 8.23923e-07 1.58936e-07 6.57554e-08 6.43724e-08 1.07208e-08 1.60772e-08 1.20432e-07 7.67136e-07 2.95844e-06 7.59539e-06 1.42214e-05 2.1616e-05 2.89154e-05 3.57007e-05 4.1792e-05 4.66724e-05 5.08061e-05 5.45445e-05 5.78726e-05 6.06468e-05 6.26082e-05 6.32585e-05 6.29308e-05 6.16467e-05 5.86355e-05 5.37534e-05 4.73032e-05 3.98248e-05 3.20479e-05 2.46946e-05 1.82819e-05 1.30307e-05 8.92435e-06 5.82073e-06 3.35728e-06 9.74062e-07 1.82124e-07 6.91512e-08 6.66904e-08 1.1452e-08 1.75053e-08 1.35436e-07 8.6518e-07 3.3206e-06 8.43077e-06 1.56045e-05 2.35286e-05 3.13219e-05 3.85663e-05 4.50822e-05 5.05794e-05 5.49865e-05 5.88681e-05 6.22779e-05 6.50973e-05 6.7135e-05 6.8111e-05 6.77273e-05 6.59776e-05 6.24751e-05 5.72215e-05 5.04488e-05 4.26782e-05 3.46169e-05 2.69526e-05 2.01959e-05 1.45825e-05 1.01203e-05 6.68833e-06 3.89593e-06 1.14053e-06 2.07807e-07 7.26219e-08 6.89333e-08 1.22104e-08 1.89495e-08 1.51251e-07 9.6955e-07 3.70432e-06 9.30337e-06 1.70324e-05 2.54899e-05 3.37793e-05 4.1483e-05 4.84222e-05 5.45267e-05 5.92419e-05 6.32701e-05 6.67597e-05 6.96101e-05 7.16381e-05 7.26062e-05 7.21382e-05 7.00712e-05 6.62486e-05 6.06715e-05 5.35973e-05 4.55509e-05 3.72186e-05 2.9265e-05 2.21753e-05 1.6206e-05 1.13882e-05 7.62108e-06 4.47737e-06 1.32328e-06 2.3603e-07 7.61696e-08 7.10999e-08 1.29925e-08 2.03243e-08 1.67477e-07 1.07912e-06 4.10764e-06 1.02109e-05 1.85043e-05 2.7501e-05 3.62894e-05 4.4451e-05 5.18066e-05 5.82818e-05 6.35515e-05 6.77438e-05 7.12799e-05 7.41283e-05 7.61052e-05 7.69606e-05 7.63292e-05 7.40342e-05 6.99346e-05 6.40697e-05 5.67251e-05 4.84284e-05 3.98463e-05 3.16217e-05 2.42138e-05 1.78959e-05 1.27246e-05 8.61685e-06 5.09865e-06 1.5217e-06 2.66744e-07 7.9789e-08 7.31865e-08 1.38035e-08 2.15376e-08 1.84069e-07 1.19547e-06 4.53752e-06 1.11669e-05 2.0037e-05 2.95776e-05 3.88641e-05 4.74774e-05 5.52386e-05 6.20726e-05 6.78741e-05 7.22418e-05 7.58082e-05 7.862e-05 8.0508e-05 8.1219e-05 8.04015e-05 7.78783e-05 7.3523e-05 6.74015e-05 5.98196e-05 5.1301e-05 4.24902e-05 3.40061e-05 2.63037e-05 1.9646e-05 1.41246e-05 9.67288e-06 5.75711e-06 1.73544e-06 2.99955e-07 8.34781e-08 7.51897e-08 1.46428e-08 2.27556e-08 2.02328e-07 1.32441e-06 5.0071e-06 1.21872e-05 2.16432e-05 3.17276e-05 4.15069e-05 5.05637e-05 5.87191e-05 6.58971e-05 7.2065e-05 7.67358e-05 8.03269e-05 8.30743e-05 8.48463e-05 8.53904e-05 8.43701e-05 8.16175e-05 7.70244e-05 7.06714e-05 6.28762e-05 5.41577e-05 4.51389e-05 3.64155e-05 2.84375e-05 2.14487e-05 1.55822e-05 1.07847e-05 6.44764e-06 1.96302e-06 3.35485e-07 8.72217e-08 7.71016e-08 1.55188e-08 2.46219e-08 2.25015e-07 1.47331e-06 5.52538e-06 1.32745e-05 2.33172e-05 3.39396e-05 4.4204e-05 5.36943e-05 6.22313e-05 6.97368e-05 7.61743e-05 8.1191e-05 8.48179e-05 8.74799e-05 8.91138e-05 8.94776e-05 8.82477e-05 8.52647e-05 8.04436e-05 7.38809e-05 6.58968e-05 5.69993e-05 4.77893e-05 3.88406e-05 3.05958e-05 2.32945e-05 1.7091e-05 1.19476e-05 7.16539e-06 2.20301e-06 3.73166e-07 9.10028e-08 7.89128e-08 1.64258e-08 2.66486e-08 2.49107e-07 1.62987e-06 6.06293e-06 1.43854e-05 2.50139e-05 3.61735e-05 4.69214e-05 5.68418e-05 6.57545e-05 7.35793e-05 8.02773e-05 8.56005e-05 8.92535e-05 9.18191e-05 9.32999e-05 9.34734e-05 9.20325e-05 8.88267e-05 8.379e-05 7.7034e-05 6.88796e-05 5.98219e-05 5.04376e-05 4.1277e-05 3.27716e-05 2.51766e-05 1.86448e-05 1.31568e-05 7.90484e-06 2.45361e-06 4.12755e-07 9.48019e-08 8.06163e-08 1.73646e-08 2.87787e-08 2.74751e-07 1.79622e-06 6.62629e-06 1.55298e-05 2.6743e-05 3.84359e-05 4.96613e-05 6.00037e-05 6.92814e-05 7.74123e-05 8.43547e-05 8.99429e-05 9.36085e-05 9.60719e-05 9.73935e-05 9.73737e-05 9.57243e-05 9.23059e-05 8.70683e-05 8.01355e-05 7.18265e-05 6.26213e-05 5.30749e-05 4.37158e-05 3.49649e-05 2.70892e-05 2.0238e-05 1.4407e-05 8.66072e-06 2.71302e-06 4.54015e-07 9.86005e-08 8.22053e-08 1.83329e-08 3.10356e-08 3.02309e-07 1.97429e-06 7.22065e-06 1.67168e-05 2.85161e-05 4.07385e-05 5.24347e-05 6.31897e-05 7.28216e-05 8.12464e-05 8.84206e-05 9.4215e-05 9.7872e-05 0.000100227 0.000101389 0.000101179 9.93292e-05 9.57111e-05 9.02894e-05 8.31978e-05 7.47512e-05 6.54114e-05 5.57117e-05 4.61618e-05 3.71747e-05 2.90282e-05 2.18657e-05 1.56937e-05 9.42802e-06 2.9793e-06 4.96658e-07 1.02378e-07 8.36749e-08 1.93309e-08 3.34002e-08 3.31421e-07 2.16153e-06 7.8362e-06 1.79263e-05 3.03063e-05 4.30519e-05 5.52119e-05 6.63716e-05 7.63482e-05 8.50563e-05 9.24505e-05 9.84035e-05 0.000102031 0.000104271 0.000105275 0.000104882 0.000102843 9.90407e-05 9.34519e-05 8.62167e-05 7.76457e-05 6.81839e-05 5.83419e-05 4.86116e-05 3.93982e-05 3.09875e-05 2.3525e-05 1.70141e-05 1.02031e-05 3.25099e-06 5.40464e-07 1.06117e-07 8.50213e-08 2.03549e-08 3.58793e-08 3.62278e-07 2.35911e-06 8.47591e-06 1.91633e-05 3.21195e-05 4.53807e-05 5.7995e-05 6.95486e-05 7.98578e-05 8.88361e-05 9.64368e-05 0.000102492 0.000106069 0.000108188 0.000109038 0.000108474 0.00010626 0.000102292 9.65548e-05 8.91937e-05 8.05135e-05 7.09417e-05 6.09667e-05 5.10639e-05 4.16311e-05 3.29589e-05 2.52109e-05 1.83641e-05 1.09817e-05 3.52642e-06 5.85183e-07 1.09803e-07 8.62441e-08 2.14033e-08 3.8467e-08 3.94782e-07 2.56619e-06 9.13619e-06 2.0421e-05 3.39469e-05 4.77154e-05 6.07748e-05 7.27117e-05 8.33423e-05 9.25791e-05 0.000100374 0.000106472 0.000109975 0.000111971 0.000112676 0.000111954 0.000109583 0.000105468 9.96015e-05 9.21314e-05 8.33552e-05 7.36839e-05 6.35848e-05 5.35172e-05 4.38731e-05 3.4949e-05 2.6923e-05 1.97423e-05 1.17616e-05 3.80464e-06 6.30673e-07 1.13426e-07 8.73422e-08 2.24722e-08 4.1154e-08 4.28819e-07 2.78193e-06 9.81362e-06 2.16926e-05 3.57791e-05 5.00445e-05 6.35375e-05 7.5846e-05 8.6786e-05 9.62696e-05 0.000104248 0.000110328 0.000113737 0.000115612 0.000116181 0.000115317 0.000112809 0.000108566 0.00010259 9.5027e-05 8.61674e-05 7.64064e-05 6.61919e-05 5.59676e-05 4.61209e-05 3.69543e-05 2.86583e-05 2.11452e-05 1.25393e-05 4.08402e-06 6.76651e-07 1.16971e-07 8.83193e-08 2.35593e-08 4.39404e-08 4.64423e-07 3.00634e-06 1.05075e-05 2.29769e-05 3.76148e-05 5.23663e-05 6.62812e-05 7.89487e-05 9.01851e-05 9.99024e-05 0.000108052 0.000114049 0.000117347 0.000119102 0.00011955 0.000118563 0.000115936 0.000111587 0.00010552 9.78815e-05 8.89518e-05 7.91115e-05 6.87903e-05 5.84169e-05 4.83757e-05 3.89761e-05 3.04183e-05 2.2574e-05 1.33153e-05 4.36487e-06 7.232e-07 1.20443e-07 8.91787e-08 2.4661e-08 4.68124e-08 5.01383e-07 3.23798e-06 1.1213e-05 2.42657e-05 3.94433e-05 5.46685e-05 6.89929e-05 8.20069e-05 9.35274e-05 0.000103467 0.000111777 0.000117631 0.0001208 0.000122442 0.000122783 0.000121692 0.000118968 0.000114532 0.000108394 0.000100695 9.1708e-05 8.17979e-05 7.13776e-05 6.08626e-05 5.06349e-05 4.10112e-05 3.21993e-05 2.40246e-05 1.40859e-05 4.64553e-06 7.70005e-07 1.23829e-07 8.99277e-08 2.57748e-08 4.97663e-08 5.39668e-07 3.47647e-06 1.19284e-05 2.55562e-05 4.12613e-05 5.69474e-05 7.16681e-05 8.50155e-05 9.68072e-05 0.000106956 0.000115416 0.00012106 0.000124087 0.000125626 0.000125878 0.000124704 0.000121903 0.0001174 0.000111207 0.000103463 9.44305e-05 8.44592e-05 7.39476e-05 6.33001e-05 5.2896e-05 4.30594e-05 3.40032e-05 2.54994e-05 1.4852e-05 4.9264e-06 8.17188e-07 1.27136e-07 9.05686e-08 2.68979e-08 5.27883e-08 5.79053e-07 3.7203e-06 1.26493e-05 2.6841e-05 4.30596e-05 5.91926e-05 7.42959e-05 8.79635e-05 0.000100014 0.000110362 0.000118961 0.000124335 0.00012721 0.00012866 0.000128844 0.000127605 0.000124745 0.000120194 0.000113963 0.000106189 9.71219e-05 8.70987e-05 7.65036e-05 6.57313e-05 5.51591e-05 4.51186e-05 3.58262e-05 2.69934e-05 1.56108e-05 5.20615e-06 8.64431e-07 1.30346e-07 9.11101e-08 2.80277e-08 5.5875e-08 6.1951e-07 3.96919e-06 1.33745e-05 2.81188e-05 4.48366e-05 6.14018e-05 7.68735e-05 9.08474e-05 0.000103144 0.000113678 0.000122407 0.000127446 0.000130169 0.000131546 0.00013168 0.000130394 0.000127492 0.000122908 0.000116655 0.000108863 9.97716e-05 8.97047e-05 7.9034e-05 6.81459e-05 5.74166e-05 4.71856e-05 3.76695e-05 2.85098e-05 1.6362e-05 5.48477e-06 9.11822e-07 1.33465e-07 9.15555e-08 2.91604e-08 5.90089e-08 6.60767e-07 4.22139e-06 1.40993e-05 2.93826e-05 4.65839e-05 6.3566e-05 7.93911e-05 9.36573e-05 0.000106186 0.000116896 0.000125747 0.000130384 0.000132971 0.000134299 0.000134396 0.000133075 0.000130147 0.000125546 0.000119286 0.000111489 0.000102386 9.22853e-05 8.15484e-05 7.05532e-05 5.96754e-05 4.92632e-05 3.9532e-05 3.00468e-05 1.71075e-05 5.76315e-06 9.59433e-07 1.36491e-07 9.19167e-08 3.02932e-08 6.21859e-08 7.02785e-07 4.47656e-06 1.48225e-05 3.06306e-05 4.82994e-05 6.56829e-05 8.18464e-05 9.63903e-05 0.000109138 0.000120009 0.000128705 0.000133151 0.000135655 0.000136932 0.000136997 0.000135655 0.000132716 0.000128115 0.000121861 0.000114071 0.000104963 9.48365e-05 8.40394e-05 7.29445e-05 6.19281e-05 5.13445e-05 4.14047e-05 3.15905e-05 1.78365e-05 6.03587e-06 1.00626e-06 1.39363e-07 9.21996e-08 3.14225e-08 6.5394e-08 7.45387e-07 4.73351e-06 1.5541e-05 3.18586e-05 4.99784e-05 6.77473e-05 8.42343e-05 9.90422e-05 0.000111996 0.000123017 0.000131456 0.000135759 0.00013819 0.000139431 0.000139479 0.000138131 0.000135197 0.000130607 0.00012437 0.000116596 0.000107492 9.73456e-05 8.64937e-05 7.53042e-05 6.41586e-05 5.34227e-05 4.33028e-05 3.31755e-05 1.85656e-05 6.31039e-06 1.05348e-06 1.42115e-07 9.24095e-08 3.25461e-08 6.86222e-08 7.88398e-07 4.99119e-06 1.62524e-05 3.30635e-05 5.16177e-05 6.97563e-05 8.6552e-05 0.00010161 0.000114758 0.000125919 0.000134045 0.000138197 0.000140566 0.000141788 0.000141836 0.000140497 0.000137579 0.000133013 0.000126803 0.000119054 0.000109965 9.98108e-05 8.89208e-05 7.76596e-05 6.64095e-05 5.55344e-05 4.52073e-05 3.46633e-05 1.92715e-05 6.57916e-06 1.10002e-06 1.44648e-07 9.25521e-08 3.36629e-08 7.18587e-08 8.31625e-07 5.24853e-06 1.69544e-05 3.42423e-05 5.32137e-05 7.17059e-05 8.87956e-05 0.000104091 0.000117421 0.000128712 0.000136482 0.000140476 0.000142793 0.000144011 0.000144073 0.000142756 0.000139866 0.000135334 0.000129163 0.000121451 0.000112388 0.00010224 9.13291e-05 8.00174e-05 6.86872e-05 5.76873e-05 4.71001e-05 3.58016e-05 1.99342e-05 6.83466e-06 1.14437e-06 1.46804e-07 9.26363e-08 3.47723e-08 7.50952e-08 8.74951e-07 5.5049e-06 1.76455e-05 3.53933e-05 5.47646e-05 7.35939e-05 9.09625e-05 0.000106481 0.000119983 0.000131394 0.000138778 0.000142612 0.000144889 0.000146117 0.000146206 0.000144922 0.00014207 0.000137582 0.000131458 0.000123792 0.000114767 0.000104638 9.37191e-05 8.23701e-05 7.09698e-05 5.98453e-05 4.89785e-05 3.69005e-05 2.05655e-05 7.07651e-06 1.18563e-06 1.48387e-07 9.26703e-08 3.58726e-08 7.83313e-08 9.18323e-07 5.75949e-06 1.83231e-05 3.6512e-05 5.62645e-05 7.54144e-05 9.30472e-05 0.000108777 0.000122439 0.000133963 0.000140924 0.0001446 0.000146853 0.000148107 0.000148237 0.000146996 0.00014419 0.000139753 0.000133685 0.000126075 0.000117097 0.000106996 9.60808e-05 8.47054e-05 7.32446e-05 6.20003e-05 5.0847e-05 3.79678e-05 2.11723e-05 7.30545e-06 1.22306e-06 1.49105e-07 9.26582e-08 3.69557e-08 8.15432e-08 9.61414e-07 6.01053e-06 1.89834e-05 3.75939e-05 5.77092e-05 7.71631e-05 9.50457e-05 0.000110975 0.000124787 0.000136416 0.000142917 0.000146444 0.000148691 0.000149988 0.000150167 0.000148975 0.000146223 0.000141845 0.000135841 0.000128296 0.000119373 0.000109311 9.8409e-05 8.70192e-05 7.55102e-05 6.41545e-05 5.27101e-05 3.89986e-05 2.17486e-05 7.5165e-06 1.25477e-06 1.48647e-07 9.26079e-08 3.8018e-08 8.47236e-08 1.00414e-06 6.25762e-06 1.9626e-05 3.86388e-05 5.90982e-05 7.88395e-05 9.69574e-05 0.000113073 0.000127026 0.000138753 0.000144756 0.000148152 0.000150417 0.000151766 0.000151998 0.000150858 0.000148163 0.000143851 0.00013792 0.000130448 0.00012159 0.000111576 0.000100699 8.93074e-05 7.7762e-05 6.63023e-05 5.45566e-05 3.99699e-05 2.22749e-05 7.70054e-06 1.27991e-06 1.47552e-07 9.25363e-08 3.90567e-08 8.78494e-08 1.04615e-06 6.49913e-06 2.02482e-05 3.96444e-05 6.04302e-05 8.04426e-05 9.87811e-05 0.000115069 0.000129151 0.000140786 0.000146442 0.000149779 0.000152066 0.000153454 0.000153732 0.000152646 0.000150015 0.000145775 0.000139922 0.000132529 0.000123744 0.000113788 0.000102948 9.15664e-05 7.99978e-05 6.84423e-05 5.63876e-05 4.08972e-05 2.27714e-05 7.87492e-06 1.30509e-06 1.47288e-07 9.24624e-08 4.00776e-08 9.09254e-08 1.08741e-06 6.73469e-06 2.08492e-05 4.06102e-05 6.17057e-05 8.19749e-05 0.000100522 0.000116972 0.000131172 0.000142487 0.000148012 0.00015132 0.000153625 0.000155053 0.00015538 0.000154352 0.000151788 0.000147625 0.000141855 0.000134547 0.000125842 0.000115952 0.000105157 9.37966e-05 8.22142e-05 7.05686e-05 5.8203e-05 4.18088e-05 2.32693e-05 8.05951e-06 1.33558e-06 1.48441e-07 9.23905e-08 4.10819e-08 9.39485e-08 1.12784e-06 6.96394e-06 2.14288e-05 4.15364e-05 6.29252e-05 8.34373e-05 0.000102181 0.000118785 0.000133096 0.000144085 0.000149481 0.000152766 0.000155096 0.000156568 0.000156948 0.00015598 0.000153486 0.000149401 0.000143717 0.000136497 0.000127876 0.000118058 0.000107318 9.59883e-05 8.44026e-05 7.26744e-05 5.99997e-05 4.27098e-05 2.37709e-05 8.25229e-06 1.36928e-06 1.5013e-07 9.23141e-08 4.20678e-08 9.69102e-08 1.16732e-06 7.18618e-06 2.19855e-05 4.24214e-05 6.40876e-05 8.48293e-05 0.000103759 0.000120507 0.000134924 0.000145585 0.000150855 0.000154122 0.00015648 0.000157999 0.000158434 0.000157528 0.000155103 0.000151097 0.0001455 0.000138371 0.000129838 0.000120097 0.000109419 9.8134e-05 8.65653e-05 7.47788e-05 6.18102e-05 4.3618e-05 2.42864e-05 8.45563e-06 1.40557e-06 1.52008e-07 9.22383e-08 4.30337e-08 9.98052e-08 1.20576e-06 7.40114e-06 2.25196e-05 4.32663e-05 6.51943e-05 8.61529e-05 0.000105258 0.000122144 0.00013666 0.000146986 0.000152134 0.000155389 0.00015778 0.000159349 0.00015984 0.000158995 0.000156639 0.000152711 0.000147202 0.000140169 0.000131734 0.000122088 0.000111492 0.000100265 8.87173e-05 7.68752e-05 6.36215e-05 4.45364e-05 2.48151e-05 8.6674e-06 1.44373e-06 1.54001e-07 9.21742e-08 4.39798e-08 1.02622e-07 1.24293e-06 7.60766e-06 2.3029e-05 4.40693e-05 6.6245e-05 8.74088e-05 0.000106681 0.000123696 0.000138307 0.000148296 0.000153328 0.000156576 0.000159005 0.000160625 0.000161173 0.000160389 0.000158102 0.000154252 0.000148831 0.000141896 0.000133569 0.000124035 0.000113552 0.000102423 9.09137e-05 7.89215e-05 6.50749e-05 4.54149e-05 2.53308e-05 8.87787e-06 1.48218e-06 1.56025e-07 9.21234e-08 4.49108e-08 1.05364e-07 1.27886e-06 7.80604e-06 2.3515e-05 4.48328e-05 6.72426e-05 8.86008e-05 0.000108031 0.00012517 0.000139871 0.000149532 0.000154452 0.000157699 0.000160168 0.000161842 0.000162447 0.000161724 0.000159504 0.000155731 0.000150397 0.000143562 0.000135346 0.000125934 0.000115576 0.000104563 9.30995e-05 8.09261e-05 6.62906e-05 4.62682e-05 2.58367e-05 9.08647e-06 1.52061e-06 1.58065e-07 9.20872e-08 4.58326e-08 1.08063e-07 1.31401e-06 7.99893e-06 2.39841e-05 4.55662e-05 6.81981e-05 8.97403e-05 0.00010932 0.000126576 0.000141363 0.000150702 0.000155518 0.000158766 0.000161279 0.000163008 0.00016367 0.000163006 0.000160851 0.000157151 0.000151902 0.000145165 0.00013706 0.000127772 0.000117548 0.000106656 9.52446e-05 8.28913e-05 6.74812e-05 4.71068e-05 2.63367e-05 9.29407e-06 1.55906e-06 1.60123e-07 9.20703e-08 4.67463e-08 1.10713e-07 1.3483e-06 8.18599e-06 2.44361e-05 4.62701e-05 6.91134e-05 9.08306e-05 0.000110552 0.00012792 0.000142789 0.000151809 0.000156527 0.000159784 0.000162344 0.000164129 0.000164848 0.000164241 0.000162147 0.000158516 0.000153348 0.000146704 0.000138708 0.000129544 0.000119456 0.000108693 9.73437e-05 8.48196e-05 6.86465e-05 4.79316e-05 2.68317e-05 9.50114e-06 1.59763e-06 1.62206e-07 9.20726e-08 4.76556e-08 1.13324e-07 1.38181e-06 8.36773e-06 2.48724e-05 4.69471e-05 6.99919e-05 9.18757e-05 0.000111733 0.000129207 0.000144153 0.000152855 0.000157482 0.000160753 0.000163365 0.000165208 0.000165982 0.000165429 0.000163392 0.000159826 0.000154733 0.000148178 0.000140286 0.000131245 0.000121294 0.000110667 9.93893e-05 8.67055e-05 6.97823e-05 4.87388e-05 2.73187e-05 9.70607e-06 1.63598e-06 1.64294e-07 9.20941e-08 4.85638e-08 1.15888e-07 1.41437e-06 8.54336e-06 2.52915e-05 4.75955e-05 7.0832e-05 9.28745e-05 0.000112861 0.000130436 0.000145458 0.000153847 0.000158389 0.000161681 0.000164347 0.000166248 0.000167075 0.000166572 0.000164589 0.000161082 0.000156059 0.000149587 0.000141795 0.000132873 0.00012306 0.000112575 0.000101381 8.85508e-05 7.08918e-05 4.95318e-05 2.78004e-05 9.91049e-06 1.67448e-06 1.66411e-07 9.2135e-08 4.94748e-08 1.18421e-07 1.44626e-06 8.71429e-06 2.56967e-05 4.82195e-05 7.16384e-05 9.38317e-05 0.000113941 0.000131612 0.000146706 0.000154791 0.000159256 0.000162576 0.000165298 0.000167256 0.000168133 0.000167677 0.000165742 0.00016229 0.000157331 0.000150936 0.000143238 0.00013443 0.000124753 0.000114412 0.000103309 9.03453e-05 7.19691e-05 5.03049e-05 2.82724e-05 1.01119e-05 1.71261e-06 1.68522e-07 9.21903e-08 5.03894e-08 1.20929e-07 1.47756e-06 8.88099e-06 2.6089e-05 4.88209e-05 7.24133e-05 9.47497e-05 0.000114975 0.000132739 0.0001479 0.000155683 0.000160082 0.000163436 0.000166219 0.000168232 0.000169155 0.000168741 0.000166851 0.000163448 0.000158548 0.000152224 0.000144612 0.000135913 0.000126369 0.000116174 0.000105168 9.20825e-05 7.30113e-05 5.10559e-05 2.8733e-05 1.03098e-05 1.75028e-06 1.70626e-07 9.22605e-08 5.13056e-08 1.23413e-07 1.5083e-06 9.04372e-06 2.64694e-05 4.94009e-05 7.31579e-05 9.56299e-05 0.000115966 0.000133816 0.000149043 0.000156521 0.000160869 0.000164269 0.000167113 0.000169177 0.000170142 0.000169767 0.000167916 0.00016456 0.000159714 0.000153455 0.000145925 0.000137328 0.000127914 0.000117864 0.000106965 9.3773e-05 7.40293e-05 5.1795e-05 2.91906e-05 1.05082e-05 1.7883e-06 1.72768e-07 9.23513e-08 5.2223e-08 1.25863e-07 1.53829e-06 9.20168e-06 2.68364e-05 4.99583e-05 7.38715e-05 9.64712e-05 0.00011691 0.000134843 0.000150134 0.000157298 0.000161626 0.000165081 0.00016798 0.000170089 0.000171091 0.000170751 0.000168939 0.000165624 0.000160829 0.000154635 0.000147188 0.000138697 0.000129406 0.000119487 0.000108678 9.53837e-05 7.50134e-05 5.25138e-05 2.96383e-05 1.07037e-05 1.82598e-06 1.74908e-07 9.24608e-08 5.31445e-08 1.28285e-07 1.56765e-06 9.35549e-06 2.71918e-05 5.04957e-05 7.45572e-05 9.72775e-05 0.000117813 0.000135819 0.00015092 0.000158025 0.000162375 0.000165873 0.000168817 0.000170967 0.000172005 0.000171699 0.000169922 0.000166646 0.000161899 0.000155766 0.000148403 0.000140024 0.00013087 0.000121078 0.000110279 9.66953e-05 7.59364e-05 5.31955e-05 3.00673e-05 1.08928e-05 1.86274e-06 1.77015e-07 9.25841e-08 5.40729e-08 1.30694e-07 1.59661e-06 9.50646e-06 2.75383e-05 5.10169e-05 7.52196e-05 9.80539e-05 0.00011868 0.000136756 0.000151656 0.000158716 0.000163091 0.000166636 0.000169627 0.000171817 0.000172891 0.000172617 0.000170871 0.000167632 0.000162927 0.000156852 0.000149567 0.000141294 0.000132272 0.000122598 0.000111782 9.7764e-05 7.68095e-05 5.38453e-05 3.04791e-05 1.10757e-05 1.8985e-06 1.79081e-07 9.2717e-08 5.50047e-08 1.33081e-07 1.62503e-06 9.65393e-06 2.78748e-05 5.15207e-05 7.58576e-05 9.87998e-05 0.000119511 0.000137652 0.000152349 0.000159368 0.000163774 0.000167368 0.000170407 0.000172638 0.000173746 0.000173503 0.000171787 0.00016858 0.000163914 0.00015789 0.000150677 0.000142502 0.0001336 0.000124033 0.000113197 9.87774e-05 7.76393e-05 5.44654e-05 3.08742e-05 1.12522e-05 1.93322e-06 1.81097e-07 9.28543e-08 5.59391e-08 1.35445e-07 1.65291e-06 9.79781e-06 2.82011e-05 5.2007e-05 7.64713e-05 9.95152e-05 0.000120307 0.000138509 0.000152997 0.000159976 0.000164416 0.000168063 0.000171152 0.000173425 0.000174567 0.000174354 0.000172665 0.000169486 0.000164855 0.000158877 0.000151728 0.000143641 0.000134849 0.000125379 0.000114526 9.97352e-05 7.8425e-05 5.50543e-05 3.12507e-05 1.14211e-05 1.9666e-06 1.83044e-07 9.29902e-08 5.68738e-08 1.37747e-07 1.67961e-06 9.93507e-06 2.85112e-05 5.24678e-05 7.7052e-05 0.000100192 0.00012106 0.00013932 0.0001536 0.000160543 0.00016502 0.000168723 0.000171865 0.000174181 0.000175358 0.000175172 0.00017351 0.000170357 0.000165756 0.000159818 0.000152725 0.000144717 0.000136024 0.000126644 0.000115774 0.000100641 7.91705e-05 5.56156e-05 3.1612e-05 1.15844e-05 1.99904e-06 1.84942e-07 9.31278e-08 5.78135e-08 1.40027e-07 1.70581e-06 1.00691e-05 2.88116e-05 5.29112e-05 7.76077e-05 0.000100837 0.000121776 0.000140089 0.000154164 0.000161075 0.000165593 0.000169355 0.00017255 0.00017491 0.000176122 0.000175965 0.000174327 0.000171197 0.000166622 0.000160719 0.000153676 0.000145738 0.000137134 0.000127835 0.000116948 0.000101496 7.98749e-05 5.61479e-05 3.19563e-05 1.1741e-05 2.0303e-06 1.86778e-07 9.32656e-08 5.87583e-08 1.42284e-07 1.73147e-06 1.01998e-05 2.91032e-05 5.33387e-05 7.81406e-05 0.000101453 0.000122457 0.000140819 0.000154682 0.000161563 0.000166127 0.000169951 0.000173203 0.000175608 0.000176856 0.000176726 0.000175111 0.000172003 0.000167451 0.000161578 0.000154578 0.000146702 0.000138178 0.000128951 0.000118046 0.000102297 8.05359e-05 5.66482e-05 3.22812e-05 1.18895e-05 2.0601e-06 1.88531e-07 9.33975e-08 5.97084e-08 1.44511e-07 1.75651e-06 1.03269e-05 2.93847e-05 5.37493e-05 7.86497e-05 0.000102038 0.000123102 0.000141509 0.000155153 0.000162007 0.000166621 0.000170511 0.000173822 0.000176275 0.000177558 0.000177457 0.000175864 0.000172775 0.000168244 0.000162397 0.000155434 0.000147613 0.000139159 0.000129996 0.000119072 0.000103049 8.11566e-05 5.71188e-05 3.25878e-05 1.20303e-05 2.08846e-06 1.902e-07 9.35205e-08 6.06666e-08 1.46724e-07 1.78113e-06 1.04512e-05 2.96585e-05 5.41457e-05 7.91379e-05 0.000102597 0.000123714 0.000142161 0.000155583 0.000162412 0.00016708 0.000171039 0.000174413 0.000176915 0.000178235 0.000178162 0.000176591 0.00017352 0.000169007 0.000163182 0.000156252 0.000148478 0.000140087 0.00013098 0.000120035 0.000103756 8.17407e-05 5.75631e-05 3.28789e-05 1.21651e-05 2.11576e-06 1.91806e-07 9.36352e-08 6.16313e-08 1.48898e-07 1.80493e-06 1.05711e-05 2.99211e-05 5.45238e-05 7.96014e-05 0.000103125 0.000124291 0.000142774 0.000155967 0.000162773 0.000167499 0.000171533 0.000174972 0.000177525 0.000178883 0.000178838 0.000177289 0.000174236 0.000169739 0.000163933 0.000157031 0.000149299 0.000140963 0.000131904 0.000120936 0.000104416 8.2285e-05 5.79774e-05 3.31512e-05 1.22919e-05 2.14163e-06 1.93325e-07 9.37393e-08 6.26027e-08 1.51029e-07 1.82784e-06 1.0686e-05 3.01713e-05 5.48817e-05 8.00374e-05 0.000103619 0.000124829 0.000143344 0.000156304 0.00016309 0.000167879 0.000171991 0.000175499 0.000178105 0.000179504 0.000179488 0.00017796 0.000174923 0.000170441 0.000164652 0.000157773 0.000150077 0.000141788 0.00013277 0.000121775 0.000105027 8.27884e-05 5.83598e-05 3.34024e-05 1.24092e-05 2.16563e-06 1.94727e-07 9.38278e-08 6.35789e-08 1.53114e-07 1.84983e-06 1.0796e-05 3.04093e-05 5.52193e-05 8.04456e-05 0.000104079 0.000125328 0.000143871 0.000156598 0.000163367 0.000168222 0.000172417 0.000175997 0.00017866 0.0001801 0.000180114 0.000178608 0.000175588 0.000171119 0.000165343 0.000158484 0.000150818 0.000142569 0.000133584 0.000122559 0.000105594 8.32535e-05 5.8713e-05 3.36349e-05 1.25182e-05 2.18802e-06 1.96027e-07 9.39007e-08 6.45605e-08 1.55169e-07 1.87119e-06 1.09023e-05 3.06377e-05 5.55399e-05 8.08294e-05 0.000104508 0.000125789 0.000144355 0.000156842 0.000163596 0.000168524 0.000172805 0.000176461 0.000179182 0.000180665 0.000180711 0.000179228 0.000176224 0.000171767 0.000166004 0.000159162 0.000151521 0.000143304 0.000134345 0.000123284 0.000106113 8.36774e-05 5.90334e-05 3.38454e-05 1.2617e-05 2.20837e-06 1.97192e-07 9.39492e-08 6.55416e-08 1.57164e-07 1.89146e-06 1.1003e-05 3.08525e-05 5.58388e-05 8.11841e-05 0.000104901 0.00012621 0.000144795 0.000157037 0.00016378 0.000168784 0.000173157 0.000176893 0.000179676 0.000181205 0.000181284 0.000179824 0.000176836 0.000172392 0.000166641 0.000159812 0.000152191 0.000144 0.000135057 0.000123957 0.000106589 8.40646e-05 5.93253e-05 3.40372e-05 1.27074e-05 2.22701e-06 1.98242e-07 9.39725e-08 6.65253e-08 1.59111e-07 1.9108e-06 1.10988e-05 3.10554e-05 5.61181e-05 8.15119e-05 0.000105261 0.000126592 0.000145193 0.000157182 0.000163916 0.000169002 0.000173473 0.000177293 0.000180142 0.000181719 0.000181833 0.000180398 0.000177428 0.000172997 0.000167257 0.000160441 0.000152836 0.000144664 0.000135729 0.000124583 0.000107026 8.44178e-05 5.95913e-05 3.42128e-05 1.27908e-05 2.24431e-06 1.99195e-07 9.39697e-08 6.75138e-08 1.61029e-07 1.92954e-06 1.11914e-05 3.12498e-05 5.63822e-05 8.18174e-05 0.000105592 0.000126939 0.00014555 0.000157283 0.000164011 0.000169185 0.000173757 0.000177666 0.000180583 0.00018221 0.000182361 0.000180952 0.000178001 0.000173583 0.000167854 0.000161049 0.000153458 0.000145299 0.000136363 0.000125162 0.000107414 8.4727e-05 5.98205e-05 3.43623e-05 1.28618e-05 2.25907e-06 1.99972e-07 9.39264e-08 6.8505e-08 1.62899e-07 1.9474e-06 1.12795e-05 3.14338e-05 5.66293e-05 8.20996e-05 0.000105893 0.000127252 0.000145869 0.000157337 0.00016406 0.000169327 0.000174008 0.00017801 0.000180999 0.000182679 0.000182867 0.000181486 0.000178555 0.000174152 0.000168435 0.000161642 0.000154062 0.000145912 0.000136968 0.000125703 0.000107763 8.49994e-05 6.00191e-05 3.44904e-05 1.29224e-05 2.27167e-06 2.00596e-07 9.38449e-08 6.95035e-08 1.6473e-07 1.96443e-06 1.13634e-05 3.16075e-05 5.68594e-05 8.23582e-05 0.000106166 0.00012753 0.000146149 0.000157342 0.000164065 0.000169433 0.000174229 0.000178329 0.000181393 0.000183128 0.000183356 0.000182005 0.000179095 0.000174709 0.000169007 0.000162228 0.000154661 0.000146519 0.00013756 0.000126221 0.000108081 8.5243e-05 6.01942e-05 3.46027e-05 1.29757e-05 2.2828e-06 2.01111e-07 9.37321e-08 7.05054e-08 1.66513e-07 1.98054e-06 1.14425e-05 3.17698e-05 5.70705e-05 8.25906e-05 0.000106405 0.000127771 0.000146388 0.000157303 0.00016403 0.000169506 0.000174425 0.000178629 0.00018177 0.000183561 0.00018383 0.000182508 0.000179622 0.000175256 0.000169571 0.000162808 0.000155257 0.000147124 0.000138149 0.000126726 0.000108366 8.54547e-05 6.03408e-05 3.46936e-05 1.30183e-05 2.29164e-06 2.01464e-07 9.35812e-08 7.15072e-08 1.68211e-07 1.99509e-06 1.15136e-05 3.19137e-05 5.72536e-05 8.27869e-05 0.000106603 0.000127965 0.000146577 0.000157197 0.000163935 0.000169533 0.000174585 0.000178897 0.000182119 0.000183966 0.000184276 0.000182986 0.000180126 0.000175782 0.000170118 0.000163376 0.000155845 0.000147723 0.000138731 0.00012722 0.000108631 8.56461e-05 6.04693e-05 3.47711e-05 1.30542e-05 2.29903e-06 2.01704e-07 9.33927e-08 7.25064e-08 1.69801e-07 2.00775e-06 1.1575e-05 3.20355e-05 5.74026e-05 8.29395e-05 0.000106749 0.000128103 0.000146709 0.000157028 0.000163791 0.000169524 0.000174718 0.000179143 0.000182445 0.00018435 0.000184703 0.000183448 0.000180616 0.000176298 0.00017066 0.000163944 0.000156438 0.000148332 0.000139324 0.000127717 0.00010888 8.58236e-05 6.05867e-05 3.48413e-05 1.3087e-05 2.30583e-06 2.01881e-07 9.31718e-08 7.35066e-08 1.71326e-07 2.01919e-06 1.16298e-05 3.21409e-05 5.75239e-05 8.30538e-05 0.000106849 0.000128188 0.000146783 0.000156785 0.000163594 0.000169484 0.000174827 0.000179365 0.000182746 0.000184709 0.000185107 0.000183888 0.000181089 0.000176801 0.000171193 0.000164509 0.000157036 0.000148954 0.000139936 0.000128227 0.000109112 8.59825e-05 6.06866e-05 3.48983e-05 1.31132e-05 2.31127e-06 2.01948e-07 9.29149e-08 7.45072e-08 1.72726e-07 2.02836e-06 1.16733e-05 3.22213e-05 5.76068e-05 8.31177e-05 0.000106887 0.000128201 0.000146603 0.000156441 0.000163369 0.000169422 0.000174902 0.000179544 0.000183004 0.000185027 0.000185474 0.000184297 0.000181534 0.000177281 0.000171708 0.000165062 0.000157629 0.00014958 0.000140557 0.000128743 0.000109331 8.61282e-05 6.07739e-05 3.4945e-05 1.31341e-05 2.31557e-06 2.01924e-07 9.26254e-08 7.55177e-08 1.74048e-07 2.03602e-06 1.1709e-05 3.22829e-05 5.76589e-05 8.31399e-05 0.000106874 0.000128155 0.000146191 0.00015604 0.000163112 0.000169325 0.000174942 0.000179691 0.000183233 0.00018532 0.000185818 0.000184685 0.000181961 0.000177746 0.000172213 0.000165612 0.000158227 0.000150219 0.000141199 0.000129279 0.000109546 8.62714e-05 6.08595e-05 3.4991e-05 1.3155e-05 2.31991e-06 2.01882e-07 9.23122e-08 7.6537e-08 1.75334e-07 2.04286e-06 1.17402e-05 3.23323e-05 5.76882e-05 8.31279e-05 0.000106817 0.000128056 0.000145707 0.000155571 0.000162798 0.000169181 0.000174942 0.000179802 0.000183429 0.000185582 0.000186133 0.000185046 0.000182365 0.000178193 0.000172707 0.000166157 0.000158827 0.000150867 0.000141857 0.000129832 0.00010976 8.64127e-05 6.09435e-05 3.50357e-05 1.31753e-05 2.32414e-06 2.01811e-07 9.19775e-08 7.75555e-08 1.76506e-07 2.04758e-06 1.17606e-05 3.2358e-05 5.76814e-05 8.30695e-05 0.000106704 0.000127895 0.000145131 0.00015501 0.000162403 0.000168967 0.00017488 0.000179858 0.000183574 0.000185797 0.000186405 0.000185367 0.000182735 0.000178615 0.000173185 0.000166697 0.000159426 0.000151514 0.000142509 0.000130378 0.000109967 8.65506e-05 6.10256e-05 3.50792e-05 1.31952e-05 2.32828e-06 2.01719e-07 9.16258e-08 7.85849e-08 1.77617e-07 2.05099e-06 1.17741e-05 3.23663e-05 5.76451e-05 8.29699e-05 0.000106541 0.000127676 0.000144487 0.000154383 0.000161948 0.0001687 0.000174772 0.000179873 0.000183683 0.000185978 0.000186645 0.00018566 0.000183079 0.000179016 0.000173653 0.000167241 0.000160044 0.000152173 0.000143139 0.000130876 0.000110156 8.66756e-05 6.1099e-05 3.51176e-05 1.3213e-05 2.33207e-06 2.01594e-07 9.12575e-08 7.96251e-08 1.78637e-07 2.05255e-06 1.17784e-05 3.23538e-05 5.75754e-05 8.28253e-05 0.000106323 0.000127394 0.000143763 0.000153679 0.000161426 0.000168376 0.000174615 0.000179845 0.000183753 0.000186123 0.000186851 0.000185919 0.000183391 0.000179387 0.000174096 0.000167769 0.000160659 0.000152843 0.000143737 0.000131124 0.000110319 8.67827e-05 6.11606e-05 3.51484e-05 1.32272e-05 2.33515e-06 2.01418e-07 9.08744e-08 8.06842e-08 1.79585e-07 2.05248e-06 1.17744e-05 3.23219e-05 5.74742e-05 8.26375e-05 0.000106052 0.000127051 0.000142953 0.000152891 0.00016083 0.000167989 0.000174405 0.000179771 0.000183782 0.00018623 0.000187021 0.000186145 0.000183671 0.000179727 0.00017451 0.000168271 0.000161253 0.000153494 0.000144315 0.000131328 0.000110468 8.68827e-05 6.12192e-05 3.51785e-05 1.32416e-05 2.3383e-06 2.01241e-07 9.04845e-08 8.17665e-08 1.8049e-07 2.05122e-06 1.17641e-05 3.22743e-05 5.73448e-05 8.24091e-05 0.000105729 0.000126647 0.000142066 0.000152027 0.000160167 0.000167548 0.00017415 0.000179661 0.000183778 0.000186307 0.000187162 0.000186341 0.000183922 0.000180039 0.000174896 0.000168747 0.000161826 0.000154127 0.000144878 0.000131508 0.0001106 8.69704e-05 6.12705e-05 3.52054e-05 1.32551e-05 2.34133e-06 2.01055e-07 9.00926e-08 8.28674e-08 1.81316e-07 2.04818e-06 1.17446e-05 3.22049e-05 5.71801e-05 8.21321e-05 0.000105346 0.000126174 0.000141082 0.000151069 0.000159423 0.000167038 0.000173838 0.000179499 0.000183727 0.000186338 0.000187257 0.00018649 0.000184124 0.000180301 0.000175231 0.000169173 0.000162349 0.000154716 0.000145401 0.000131654 0.000110703 8.70342e-05 6.1303e-05 3.52187e-05 1.32617e-05 2.34294e-06 2.00779e-07 8.96863e-08 8.39922e-08 1.82098e-07 2.04391e-06 1.17184e-05 3.21188e-05 5.69853e-05 8.18114e-05 0.000104907 0.000125635 0.000140004 0.00015002 0.000158603 0.000166469 0.000173479 0.000179297 0.00018364 0.000186334 0.000187316 0.000186601 0.000184285 0.000180519 0.000175521 0.000169551 0.000162825 0.000155258 0.000145881 0.000131767 0.00011078 8.70804e-05 6.13239e-05 3.52254e-05 1.32655e-05 2.34399e-06 2.00468e-07 8.92718e-08 8.51451e-08 1.82812e-07 2.03787e-06 1.1683e-05 3.20108e-05 5.67549e-05 8.14414e-05 0.000104407 0.000125024 0.000138813 0.000148866 0.0001577 0.000165836 0.000173068 0.000179051 0.000183511 0.00018629 0.000187335 0.000186672 0.000184405 0.000180694 0.000175764 0.000169882 0.000163253 0.000155756 0.000146323 0.000131843 0.000110829 8.71061e-05 6.13322e-05 3.52257e-05 1.32671e-05 2.34473e-06 2.0014e-07 8.88541e-08 8.63323e-08 1.83467e-07 2.03009e-06 1.16377e-05 3.18782e-05 5.6483e-05 8.10139e-05 0.000103835 0.000124333 0.000137502 0.000147615 0.000156728 0.000165148 0.000172607 0.000178754 0.000183331 0.000186193 0.000187301 0.000186688 0.000184468 0.000180809 0.000175944 0.000170146 0.000163612 0.000156185 0.000146699 0.000131866 0.000110834 8.70968e-05 6.13143e-05 3.52088e-05 1.32607e-05 2.34388e-06 1.99719e-07 8.84283e-08 8.75588e-08 1.84126e-07 2.02171e-06 1.15881e-05 3.17305e-05 5.61787e-05 8.0533e-05 0.000103187 0.00012332 0.000136063 0.00014633 0.000155742 0.00016444 0.000172112 0.000178417 0.000183107 0.000186054 0.000187225 0.000186663 0.000184488 0.000180877 0.000176073 0.000170353 0.00016391 0.00015655 0.000147015 0.000131841 0.000110799 8.70567e-05 6.12749e-05 3.5179e-05 1.32486e-05 2.34188e-06 1.99231e-07 8.79976e-08 8.88294e-08 1.84774e-07 2.01239e-06 1.15335e-05 3.15684e-05 5.58451e-05 8.00037e-05 0.000102467 0.000121793 0.0001345 0.000145014 0.000154719 0.000163673 0.000171552 0.000178015 0.000182825 0.00018586 0.000187097 0.000186587 0.000184456 0.000180891 0.000176143 0.000170497 0.00016414 0.000156845 0.000147262 0.000131759 0.000110718 8.69817e-05 6.12115e-05 3.5135e-05 1.32306e-05 2.33875e-06 1.98682e-07 8.75625e-08 9.01531e-08 1.8538e-07 2.00157e-06 1.14717e-05 3.13887e-05 5.54809e-05 7.94303e-05 0.000101689 0.00012019 0.00013285 0.00014361 0.000153615 0.000162838 0.000170932 0.000177558 0.00018249 0.000185615 0.000186918 0.000186456 0.000184366 0.000180842 0.000176147 0.000170568 0.000164291 0.000157055 0.000147426 0.000131612 0.000110582 8.68632e-05 6.11166e-05 3.50713e-05 1.32038e-05 2.33389e-06 1.98029e-07 8.71153e-08 9.15484e-08 1.86059e-07 1.991e-06 1.14105e-05 3.12053e-05 5.51013e-05 7.88261e-05 0.000100865 0.000118513 0.000131123 0.000142138 0.000152453 0.000161953 0.000170267 0.000177062 0.000182117 0.00018533 0.000186697 0.00018628 0.000184227 0.000180739 0.000176089 0.00017057 0.000164363 0.000157179 0.000147503 0.000131392 0.000110383 8.66937e-05 6.09839e-05 3.49836e-05 1.31661e-05 2.32687e-06 1.9725e-07 8.66549e-08 9.30139e-08 1.86762e-07 1.97988e-06 1.13465e-05 3.10128e-05 5.47006e-05 7.81865e-05 9.99908e-05 0.000116748 0.000129307 0.000140583 0.00015122 0.000161005 0.000169547 0.000176511 0.00018169 0.000184991 0.000186418 0.000186044 0.000184022 0.000180566 0.000175954 0.000170487 0.000164342 0.000157202 0.00014748 0.000131094 0.000110118 8.64702e-05 6.08108e-05 3.48695e-05 1.31162e-05 2.31738e-06 1.9632e-07 8.61715e-08 9.45434e-08 1.87445e-07 1.96745e-06 1.12755e-05 3.08017e-05 5.42667e-05 7.74988e-05 9.90555e-05 0.000114897 0.000127411 0.000138966 0.000149935 0.000160011 0.00016878 0.000175913 0.000181214 0.0001846 0.000186084 0.000185748 0.000183754 0.000180324 0.000175744 0.00017032 0.000164227 0.000157121 0.000147349 0.000130711 0.00010978 8.61904e-05 6.05985e-05 3.4733e-05 1.30573e-05 2.30623e-06 1.95291e-07 8.56747e-08 9.61412e-08 1.88163e-07 1.95462e-06 1.1201e-05 3.05769e-05 5.38027e-05 7.67636e-05 9.80615e-05 0.000112946 0.000125448 0.000137307 0.000148616 0.000158979 0.000167968 0.000175264 0.000180682 0.000184149 0.000185688 0.000185386 0.000183415 0.000180005 0.000175451 0.000170063 0.000164013 0.000156934 0.000147109 0.000130228 0.000109354 8.58357e-05 6.0328e-05 3.45575e-05 1.29802e-05 2.29139e-06 1.94027e-07 8.5139e-08 9.77963e-08 1.88849e-07 1.94032e-06 1.11176e-05 3.03248e-05 5.32854e-05 7.59427e-05 9.65458e-05 0.000110876 0.000123501 0.000135666 0.000147279 0.000157897 0.000167087 0.000174537 0.000180069 0.000183617 0.000185207 0.000184936 0.000182984 0.000179588 0.000175051 0.00016969 0.000163668 0.000156601 0.000146722 0.000129636 0.000108831 8.54014e-05 5.99969e-05 3.43424e-05 1.28848e-05 2.2729e-06 1.92539e-07 8.45685e-08 9.95201e-08 1.89571e-07 1.92584e-06 1.10328e-05 3.00627e-05 5.27394e-05 7.50649e-05 9.45661e-05 0.000108746 0.000121575 0.000134024 0.00014591 0.000156765 0.00016615 0.000173754 0.000179399 0.000183025 0.000184664 0.000184421 0.000182482 0.000179095 0.000174571 0.000169228 0.000163227 0.000156164 0.000146226 0.000128941 0.00010822 8.48941e-05 5.96118e-05 3.40934e-05 1.27747e-05 2.25148e-06 1.90856e-07 8.39565e-08 1.01319e-07 1.90338e-07 1.91134e-06 1.09483e-05 2.97967e-05 5.21791e-05 7.41604e-05 9.25592e-05 0.000106575 0.000119597 0.000132327 0.000144489 0.000155581 0.00016516 0.000172912 0.000178664 0.00018236 0.00018404 0.000183815 0.000181882 0.000178497 0.000173976 0.00016864 0.000162647 0.000155574 0.000145574 0.000128118 0.000107494 8.42904e-05 5.9152e-05 3.37951e-05 1.26419e-05 2.2256e-06 1.88898e-07 8.33034e-08 1.03176e-07 1.91064e-07 1.89544e-06 1.08567e-05 2.9511e-05 5.15829e-05 7.32057e-05 9.04987e-05 0.000104358 0.000117581 0.000130598 0.000143034 0.00015436 0.000164126 0.000172019 0.000177869 0.000181626 0.000183337 0.000183122 0.000181186 0.000177794 0.000173267 0.000167929 0.00016193 0.000154835 0.000144771 0.000127175 0.000106663 8.35996e-05 5.86255e-05 3.3453e-05 1.24891e-05 2.19567e-06 1.86667e-07 8.2592e-08 1.05089e-07 1.91782e-07 1.87875e-06 1.07603e-05 2.92089e-05 5.09542e-05 7.22048e-05 8.83826e-05 0.000102104 0.00011554 0.000128847 0.000141552 0.000153103 0.000163045 0.000171069 0.000177008 0.000180815 0.000182547 0.000182332 0.000180385 0.000176979 0.00017244 0.000167093 0.000161079 0.000153933 0.000143728 0.000126093 0.000105712 8.28107e-05 5.80267e-05 3.30659e-05 1.2317e-05 2.16208e-06 1.84207e-07 8.18413e-08 1.07032e-07 1.92381e-07 1.85957e-06 1.06493e-05 2.88683e-05 5.02629e-05 7.11311e-05 8.6189e-05 9.98198e-05 0.000113492 0.000127083 0.000140041 0.000151798 0.000161901 0.000170044 0.000176059 0.000179907 0.000181648 0.000181422 0.000179455 0.000176028 0.000171476 0.000166118 0.000160077 0.000152836 0.000142387 0.000124866 0.000104634 8.19167e-05 5.73469e-05 3.26251e-05 1.21204e-05 2.12362e-06 1.81419e-07 8.10205e-08 1.09001e-07 1.92936e-07 1.8392e-06 1.05281e-05 2.84882e-05 4.94837e-05 6.9417e-05 8.39182e-05 9.76164e-05 0.000111511 0.000125334 0.000138503 0.000150443 0.000160696 0.000168949 0.000175035 0.000178914 0.000180656 0.000180409 0.000178412 0.000174955 0.000170377 0.000164991 0.000158898 0.000151545 0.000140881 0.000123487 0.000103424 8.09149e-05 5.65878e-05 3.21357e-05 1.19035e-05 2.08136e-06 1.78394e-07 8.01604e-08 1.10995e-07 1.9344e-07 1.81794e-06 1.04021e-05 2.80885e-05 4.86572e-05 6.73643e-05 8.16205e-05 9.54158e-05 0.000109498 0.000123529 0.000136902 0.000149025 0.000159426 0.000167783 0.000173928 0.000177826 0.000179556 0.000179278 0.000177242 0.000173748 0.000169137 0.000163714 0.000157559 0.000150087 0.00013922 0.000121967 0.000102091 7.98107e-05 5.57507e-05 3.15955e-05 1.1664e-05 2.03467e-06 1.75062e-07 7.92316e-08 1.13004e-07 1.93831e-07 1.79487e-06 1.02669e-05 2.76636e-05 4.77862e-05 6.5273e-05 7.92808e-05 9.31719e-05 0.000107451 0.0001217 0.000135281 0.000147585 0.000158125 0.000166571 0.000172755 0.000176651 0.00017835 0.000178025 0.000175936 0.000172392 0.000167732 0.000162251 0.000156012 0.000148413 0.000137386 0.00012029 0.000100621 7.85956e-05 5.48326e-05 3.10063e-05 1.14044e-05 1.98435e-06 1.71513e-07 7.82732e-08 1.15012e-07 1.94095e-07 1.76985e-06 1.0121e-05 2.72083e-05 4.68627e-05 6.31343e-05 7.68966e-05 9.08838e-05 0.000105361 0.000119829 0.000133619 0.0001461 0.00015677 0.000165293 0.000171501 0.000175378 0.000177028 0.000176643 0.000174491 0.000170888 0.000166171 0.000160625 0.000154296 0.000146568 0.000135392 0.000118468 9.90236e-05 7.7274e-05 5.38324e-05 3.03629e-05 1.11208e-05 1.92932e-06 1.67631e-07 7.72358e-08 1.17e-07 1.94171e-07 1.74204e-06 9.96021e-06 2.67149e-05 4.58767e-05 6.09354e-05 7.44685e-05 8.85632e-05 0.000103244 0.000117934 0.000131929 0.000144578 0.000155366 0.000163947 0.000170158 0.000173993 0.000175575 0.000175109 0.000172882 0.000169207 0.000164418 0.000158788 0.000152349 0.000144491 0.000133221 0.000116486 9.72893e-05 7.58425e-05 5.27533e-05 2.96732e-05 1.08192e-05 1.87124e-06 1.63575e-07 7.61768e-08 1.18941e-07 1.94093e-07 1.71158e-06 9.78106e-06 2.617e-05 4.4814e-05 5.86673e-05 7.20093e-05 8.62273e-05 0.00010111 0.000116011 0.000130201 0.00014301 0.000153904 0.00016253 0.000168727 0.000172502 0.000173996 0.000173436 0.00017112 0.000167367 0.000162502 0.000156783 0.000150231 0.000142246 0.000130899 0.000114369 9.54377e-05 7.43137e-05 5.1599e-05 2.89337e-05 1.04959e-05 1.80902e-06 1.59214e-07 7.50337e-08 1.20828e-07 1.94199e-07 1.68063e-06 9.58421e-06 2.55509e-05 4.33496e-05 5.6343e-05 6.95917e-05 8.39208e-05 9.89673e-05 0.00011405 0.000128418 0.000141377 0.000152366 0.000161021 0.000167184 0.000170878 0.000172266 0.000171594 0.000169175 0.000165332 0.00016038 0.000154561 0.000147883 0.000139773 0.000128406 0.000112101 9.34591e-05 7.26861e-05 5.03775e-05 2.81583e-05 1.01609e-05 1.74515e-06 1.54776e-07 7.38921e-08 1.22657e-07 1.95775e-07 1.65295e-06 9.37498e-06 2.48568e-05 4.13185e-05 5.39964e-05 6.72254e-05 8.16211e-05 9.67919e-05 0.000112043 0.000126592 0.000139703 0.000150782 0.000159452 0.000165559 0.000169148 0.000170409 0.00016961 0.000167078 0.000163138 0.000158097 0.000152183 0.000145392 0.000137168 0.000125786 0.00010972 9.13827e-05 7.0977e-05 4.90923e-05 2.73405e-05 9.80781e-06 1.67796e-06 1.50082e-07 7.26752e-08 1.24439e-07 2.00202e-07 1.6273e-06 9.149e-06 2.41179e-05 3.9316e-05 5.16569e-05 6.4823e-05 7.92716e-05 9.45765e-05 0.000110013 0.000124754 0.000138015 0.000149169 0.000157826 0.000163845 0.000167298 0.000168405 0.000167459 0.000164798 0.000160749 0.000155606 0.000149581 0.000142667 0.000134343 0.000123017 0.000107212 8.9204e-05 6.91932e-05 4.77612e-05 2.65028e-05 9.45102e-06 1.61079e-06 1.45435e-07 7.14927e-08 1.26097e-07 2.02874e-07 1.58445e-06 8.86048e-06 2.32852e-05 3.72946e-05 4.93021e-05 6.23939e-05 7.68885e-05 9.23297e-05 0.00010796 0.000122901 0.000136312 0.000147527 0.000156146 0.000162047 0.000165335 0.000166264 0.000165155 0.000162358 0.000158199 0.00015296 0.000146838 0.000139819 0.000131416 0.000120149 0.00010462 8.69536e-05 6.73494e-05 4.63822e-05 2.56323e-05 9.08077e-06 1.54123e-06 1.40585e-07 7.02366e-08 1.27648e-07 2.02751e-07 1.53193e-06 8.54823e-06 2.24168e-05 3.5288e-05 4.69511e-05 5.9951e-05 7.44847e-05 9.00684e-05 0.000105905 0.000121055 0.000134611 0.000145866 0.000154415 0.00016016 0.000163248 0.000163971 0.000162675 0.000159727 0.000155443 0.000150095 0.00014386 0.000136727 0.000128262 0.00011715 0.000101919 8.46192e-05 6.5448e-05 4.49721e-05 2.47531e-05 8.71237e-06 1.47286e-06 1.3587e-07 6.90397e-08 1.29077e-07 2.01105e-07 1.47124e-06 8.2031e-06 2.14881e-05 3.32757e-05 4.45923e-05 5.74846e-05 7.20524e-05 8.77863e-05 0.000103842 0.000119205 0.000132895 0.000144166 0.000152612 0.000158168 0.000161028 0.000161525 0.000160035 0.000156931 0.00015253 0.000147085 0.00014076 0.000133543 0.000125042 0.000114089 9.91665e-05 8.22418e-05 6.3509e-05 4.35289e-05 2.38493e-05 8.33402e-06 1.4028e-06 1.30984e-07 6.7761e-08 1.30382e-07 1.98565e-07 1.40557e-06 7.83601e-06 2.05181e-05 3.12752e-05 4.22426e-05 5.50151e-05 6.96154e-05 8.5509e-05 0.000101795 0.000117371 0.000131177 0.000142427 0.000150725 0.000156054 0.000158657 0.00015891 0.000157211 0.000153943 0.000149411 0.000143857 0.000137428 0.000130118 0.000121607 0.000110918 9.63308e-05 7.98073e-05 6.15394e-05 4.20797e-05 2.29558e-05 7.96672e-06 1.33574e-06 1.26368e-07 6.65817e-08 1.31557e-07 1.95323e-07 1.33378e-06 7.43897e-06 1.9493e-05 2.92751e-05 3.98955e-05 5.25389e-05 6.71696e-05 8.32296e-05 9.97504e-05 0.000115528 0.000129415 0.000140589 0.000148694 0.000153772 0.000156122 0.000156142 0.000154246 0.00015082 0.00014617 0.000140524 0.000134023 0.000126663 0.000118173 0.000107726 9.34816e-05 7.73624e-05 5.95575e-05 4.06145e-05 2.20478e-05 7.594e-06 1.26786e-06 1.21626e-07 6.53196e-08 1.32586e-07 1.91602e-07 1.25776e-06 7.01696e-06 1.84225e-05 2.7292e-05 3.75771e-05 5.0085e-05 6.47436e-05 8.09751e-05 9.77296e-05 0.000113678 0.00012757 0.000138578 0.000146419 0.000151236 0.000153366 0.000153197 0.000151127 0.000147545 0.000142761 0.000137006 0.000130414 0.000122991 0.000114512 0.000104271 9.05601e-05 7.48756e-05 5.7562e-05 3.91591e-05 2.11612e-05 7.23694e-06 1.2038e-06 1.17235e-07 6.41964e-08 1.33456e-07 1.8742e-07 1.17639e-06 6.55714e-06 1.71475e-05 2.53218e-05 3.52983e-05 4.76484e-05 6.23171e-05 7.87197e-05 9.57103e-05 0.000111803 0.00012561 0.000136211 0.000143156 0.000147948 0.000150418 0.000150219 0.000147992 0.000144241 0.00013932 0.000133469 0.00012682 0.000119377 0.000110932 0.000100861 8.76644e-05 7.24129e-05 5.55826e-05 3.77088e-05 2.02729e-05 6.87945e-06 1.13969e-06 1.1274e-07 6.29745e-08 1.34174e-07 1.83152e-07 1.09553e-06 6.08695e-06 1.5636e-05 2.34076e-05 3.30882e-05 4.52513e-05 5.99241e-05 7.65263e-05 9.37878e-05 0.000109978 0.000123346 0.000132294 0.0001389 0.000143537 0.000146279 0.000147166 0.000144981 0.000140969 0.000135789 0.00012976 0.000123005 0.000115509 0.000107084 9.72159e-05 8.46911e-05 6.99077e-05 5.35934e-05 3.6275e-05 1.9413e-05 6.54074e-06 1.07991e-06 1.08646e-07 6.19147e-08 1.34749e-07 1.78718e-07 1.01449e-06 5.6169e-06 1.41968e-05 2.15366e-05 3.08806e-05 4.28432e-05 5.75339e-05 7.43674e-05 9.18787e-05 0.000107873 0.000119687 0.000128054 0.000134452 0.000138923 0.000141553 0.000142449 0.000141684 0.000137866 0.000132421 0.000126142 0.000119255 0.000111733 0.000103378 9.37323e-05 8.17649e-05 6.74409e-05 5.16281e-05 3.4849e-05 1.85515e-05 6.20163e-06 1.02004e-06 1.04407e-07 6.07129e-08 1.35184e-07 1.74267e-07 9.35318e-07 5.15359e-06 1.28188e-05 1.97261e-05 2.87261e-05 4.04906e-05 5.52174e-05 7.22977e-05 9.00044e-05 0.000105553 0.000115588 0.000123693 0.000129853 0.000134129 0.000136624 0.000137455 0.000136695 0.000134341 0.00012899 0.000122435 0.000115312 0.000107683 9.93641e-05 8.99776e-05 7.87551e-05 6.49316e-05 4.96587e-05 3.34488e-05 1.77269e-05 5.88535e-06 9.65327e-07 1.00655e-07 5.97134e-08 1.35436e-07 1.69615e-07 8.55282e-07 4.68484e-06 1.14941e-05 1.79541e-05 2.65815e-05 3.81275e-05 5.28958e-05 7.02104e-05 8.78178e-05 0.000101587 0.000111339 0.000119169 0.000125081 0.000129161 0.000131524 0.0001323 0.000131562 0.000129372 0.000125386 0.000118908 0.000111586 0.000103847 9.55808e-05 8.64455e-05 7.58041e-05 6.24622e-05 4.77051e-05 3.20422e-05 1.68874e-05 5.56202e-06 9.09158e-07 9.66323e-08 5.85162e-08 1.3554e-07 1.65083e-07 7.79516e-07 4.23621e-06 1.02469e-05 1.62606e-05 2.45076e-05 3.58358e-05 5.06658e-05 6.82418e-05 8.57392e-05 9.7582e-05 0.000107017 0.000114534 0.000120167 0.000124023 0.000126236 0.000126946 0.000126224 0.000124124 0.000120712 0.000114996 0.000107624 9.97529e-05 9.15066e-05 8.26087e-05 7.25082e-05 5.99664e-05 4.57761e-05 3.06935e-05 1.61098e-05 5.272e-06 8.60022e-07 9.32622e-08 5.75895e-08 1.35441e-07 1.60322e-07 7.02619e-07 3.78215e-06 9.04654e-06 1.4602e-05 2.244e-05 3.35225e-05 4.83943e-05 6.60681e-05 8.24892e-05 9.34177e-05 0.000102518 0.000109712 0.000115063 0.000118702 0.000120779 0.000121444 0.000120765 0.000118784 0.000115562 0.000111058 0.000103871 9.59696e-05 8.77759e-05 7.90781e-05 6.93509e-05 5.74981e-05 4.38415e-05 2.93149e-05 1.52997e-05 4.96734e-06 8.07713e-07 8.94075e-08 5.63856e-08 1.35179e-07 1.55771e-07 6.31688e-07 3.35797e-06 7.93444e-06 1.30376e-05 2.04627e-05 3.1307e-05 4.62629e-05 6.39939e-05 7.86502e-05 8.92135e-05 9.79304e-05 0.000104758 0.000109794 0.000113193 0.000115122 0.000115739 0.000115107 0.00011325 0.000110223 0.000106047 9.96846e-05 9.18673e-05 8.36892e-05 7.51556e-05 6.58658e-05 5.50142e-05 4.19545e-05 2.80201e-05 1.45684e-05 4.70166e-06 7.64437e-07 8.70962e-08 5.5541e-08 1.34709e-07 1.51003e-07 5.59804e-07 2.93011e-06 6.86531e-06 1.15056e-05 1.84839e-05 2.90437e-05 4.40607e-05 6.18687e-05 7.46068e-05 8.47837e-05 9.31022e-05 9.95597e-05 0.000104289 0.000107469 0.000109278 0.000109884 0.000109338 0.000107645 0.000104849 0.000100962 9.56704e-05 8.81e-05 8.00223e-05 7.16733e-05 6.2732e-05 5.25112e-05 3.99934e-05 2.66271e-05 1.37638e-05 4.41543e-06 7.21276e-07 8.5557e-08 5.42872e-08 1.34042e-07 1.46509e-07 4.95552e-07 2.54118e-06 5.89178e-06 1.00766e-05 1.66046e-05 2.68858e-05 4.19319e-05 5.91606e-05 7.05328e-05 8.02628e-05 8.81252e-05 9.41673e-05 9.85612e-05 0.000101509 0.000103201 0.00010381 0.000103369 0.000101858 9.93113e-05 9.57313e-05 9.10875e-05 8.38449e-05 7.58837e-05 6.77486e-05 5.92376e-05 4.98371e-05 3.81549e-05 2.54037e-05 1.31075e-05 4.19608e-06 6.89452e-07 8.44395e-08 5.35264e-08 1.33153e-07 1.41829e-07 4.31092e-07 2.15359e-06 4.96352e-06 8.68186e-06 1.47163e-05 2.46525e-05 3.95991e-05 5.5246e-05 6.61671e-05 7.54115e-05 8.27997e-05 8.84306e-05 9.25128e-05 9.52675e-05 9.68931e-05 9.756e-05 9.72819e-05 9.60085e-05 9.3759e-05 9.05252e-05 8.6258e-05 7.99812e-05 7.23321e-05 6.44346e-05 5.62434e-05 4.72635e-05 3.6209e-05 2.40302e-05 1.23262e-05 3.92214e-06 6.45908e-07 8.15177e-08 5.21405e-08 1.32042e-07 1.37527e-07 3.76624e-07 1.81874e-06 4.14666e-06 7.41634e-06 1.29603e-05 2.2578e-05 3.75491e-05 5.13229e-05 6.17025e-05 7.03724e-05 7.72177e-05 8.23967e-05 8.61526e-05 8.87167e-05 9.0294e-05 9.1052e-05 9.09704e-05 8.99641e-05 8.8036e-05 8.51534e-05 8.12697e-05 7.55291e-05 6.81496e-05 6.05311e-05 5.27175e-05 4.43303e-05 3.44294e-05 2.28839e-05 1.17281e-05 3.72172e-06 6.14419e-07 7.95541e-08 5.14344e-08 1.30681e-07 1.33038e-07 3.22349e-07 1.4867e-06 3.3687e-06 6.17295e-06 1.11566e-05 2.03221e-05 3.52644e-05 4.69275e-05 5.67186e-05 6.47973e-05 7.1117e-05 7.58911e-05 7.93883e-05 8.18383e-05 8.34487e-05 8.4383e-05 8.45781e-05 8.39141e-05 8.23693e-05 7.98823e-05 7.64209e-05 7.17478e-05 6.47548e-05 5.74145e-05 4.99187e-05 4.19235e-05 3.25608e-05 2.1561e-05 1.09734e-05 3.45631e-06 5.70649e-07 7.5903e-08 4.98711e-08 1.29005e-07 1.29017e-07 2.8153e-07 1.22707e-06 2.72591e-06 5.09194e-06 9.52274e-06 1.81916e-05 3.22797e-05 4.25139e-05 5.15811e-05 5.89576e-05 6.46871e-05 6.90366e-05 7.22855e-05 7.46465e-05 7.62995e-05 7.74184e-05 7.79158e-05 7.76035e-05 7.6411e-05 7.42871e-05 7.12349e-05 6.69951e-05 6.03269e-05 5.33532e-05 4.63042e-05 3.89313e-05 3.06943e-05 2.03532e-05 1.03381e-05 3.24181e-06 5.36217e-07 7.34998e-08 4.91246e-08 1.26986e-07 1.24715e-07 2.40829e-07 9.7132e-07 2.11974e-06 4.02618e-06 7.79503e-06 1.56715e-05 2.79021e-05 3.72917e-05 4.55669e-05 5.22684e-05 5.7508e-05 6.15769e-05 6.47397e-05 6.71746e-05 6.90131e-05 7.0433e-05 7.13317e-05 7.14351e-05 7.06865e-05 6.90571e-05 6.65291e-05 6.30617e-05 5.72259e-05 5.05782e-05 4.38243e-05 3.68145e-05 2.90776e-05 1.92187e-05 9.69509e-06 3.01644e-06 4.982e-07 6.98739e-08 4.73984e-08 1.24446e-07 1.20886e-07 2.17538e-07 8.13628e-07 1.69105e-06 3.1981e-06 6.34987e-06 1.34815e-05 2.36627e-05 3.19884e-05 3.92695e-05 4.51622e-05 4.98522e-05 5.36349e-05 5.67381e-05 5.93032e-05 6.13929e-05 6.30844e-05 6.42938e-05 6.47501e-05 6.43848e-05 6.3154e-05 6.10327e-05 5.79852e-05 5.24103e-05 4.62507e-05 4.00594e-05 3.36778e-05 2.67649e-05 1.7674e-05 8.85212e-06 2.73394e-06 4.53757e-07 6.65488e-08 4.63021e-08 1.21379e-07 1.16499e-07 1.92047e-07 6.51302e-07 1.28693e-06 2.37233e-06 4.73552e-06 1.05419e-05 1.83385e-05 2.54005e-05 3.16982e-05 3.69083e-05 4.12091e-05 4.48659e-05 4.80866e-05 5.1002e-05 5.36061e-05 5.58221e-05 5.75139e-05 5.85137e-05 5.87382e-05 5.81302e-05 5.66484e-05 5.42405e-05 4.97314e-05 4.39245e-05 3.79786e-05 3.18721e-05 2.53302e-05 1.69969e-05 8.49797e-06 2.60618e-06 4.29613e-07 6.36938e-08 4.46615e-08 1.17567e-07 1.12568e-07 1.87322e-07 6.12955e-07 1.12663e-06 1.93827e-06 3.70109e-06 8.33438e-06 1.37749e-05 1.93734e-05 2.45308e-05 2.89405e-05 3.27237e-05 3.61191e-05 3.93747e-05 4.2516e-05 4.54688e-05 4.81135e-05 5.02644e-05 5.16678e-05 5.22552e-05 5.20114e-05 5.08876e-05 4.88401e-05 4.46274e-05 3.9485e-05 3.42466e-05 2.87938e-05 2.2886e-05 1.49938e-05 7.36963e-06 2.23857e-06 3.74123e-07 5.90869e-08 4.27936e-08 1.132e-07 1.07803e-07 1.7486e-07 5.45717e-07 9.6435e-07 1.5343e-06 2.64152e-06 5.47385e-06 8.52361e-06 1.22962e-05 1.6294e-05 2.01234e-05 2.36576e-05 2.7008e-05 3.03667e-05 3.3741e-05 3.70563e-05 4.01879e-05 4.29702e-05 4.51637e-05 4.65107e-05 4.69308e-05 4.64974e-05 4.51533e-05 4.17552e-05 3.69437e-05 3.19193e-05 2.671e-05 2.12082e-05 1.46708e-05 7.27169e-06 2.19953e-06 3.62393e-07 5.73281e-08 4.1749e-08 1.08334e-07 1.03634e-07 1.81903e-07 5.93669e-07 1.07238e-06 1.65509e-06 2.62908e-06 4.41186e-06 5.97374e-06 7.98922e-06 1.04502e-05 1.32798e-05 1.63708e-05 1.95427e-05 2.28203e-05 2.62065e-05 2.96204e-05 3.29392e-05 3.60085e-05 3.86374e-05 4.05967e-05 4.15967e-05 4.15167e-05 4.05206e-05 3.7924e-05 3.38359e-05 2.94884e-05 2.49062e-05 1.9938e-05 1.31967e-05 6.42462e-06 1.92533e-06 3.21885e-07 5.31554e-08 3.94169e-08 1.02136e-07 9.82553e-08 1.84223e-07 6.16938e-07 1.15629e-06 1.78089e-06 2.68775e-06 3.78664e-06 4.49732e-06 5.24233e-06 6.10601e-06 7.2139e-06 8.74747e-06 1.08989e-05 1.37354e-05 1.70244e-05 2.05866e-05 2.42557e-05 2.78068e-05 3.10255e-05 3.36924e-05 3.55517e-05 3.62508e-05 3.54467e-05 3.23387e-05 2.87428e-05 2.47272e-05 2.05854e-05 1.6206e-05 1.12195e-05 5.4804e-06 1.67132e-06 2.85633e-07 5.05651e-08 3.90676e-08 9.53104e-08 9.39687e-08 2.0363e-07 7.27607e-07 1.6645e-06 2.68026e-06 3.64785e-06 4.33786e-06 4.89517e-06 5.37535e-06 5.82164e-06 6.27665e-06 6.79908e-06 7.48973e-06 8.53248e-06 1.02296e-05 1.29182e-05 1.65558e-05 2.06709e-05 2.48833e-05 2.88333e-05 3.22479e-05 3.48845e-05 3.63905e-05 3.49229e-05 3.22055e-05 2.85391e-05 2.42382e-05 1.95681e-05 1.45114e-05 7.15616e-06 2.06116e-06 3.24086e-07 5.28715e-08 3.97472e-08 8.95266e-08 9.39134e-08 2.64502e-07 1.00295e-06 2.32581e-06 3.707e-06 4.8013e-06 5.61734e-06 6.26832e-06 6.84459e-06 7.40798e-06 8.01197e-06 8.71948e-06 9.61491e-06 1.08058e-05 1.24058e-05 1.44903e-05 1.70162e-05 1.97721e-05 2.24307e-05 2.44934e-05 2.56556e-05 2.58567e-05 2.5052e-05 2.32912e-05 2.08712e-05 1.80161e-05 1.48249e-05 1.1372e-05 7.7586e-06 4.20939e-06 1.47708e-06 2.74743e-07 4.88694e-08 3.7231e-08 9.13861e-08 1.05059e-07 3.94182e-07 1.48321e-06 3.09566e-06 4.40576e-06 5.32129e-06 6.06473e-06 6.77218e-06 7.50176e-06 8.28168e-06 9.13921e-06 1.01243e-05 1.1336e-05 1.29509e-05 1.52367e-05 1.85254e-05 2.31291e-05 2.92041e-05 3.65698e-05 4.45825e-05 5.2316e-05 5.86792e-05 6.26181e-05 6.33547e-05 5.76821e-05 4.18933e-05 2.95577e-05 2.08032e-05 1.41169e-05 7.63984e-06 1.73033e-06 2.36294e-07 4.37833e-08 3.36822e-08 7.333e-08 1.47347e-07 1.13271e-06 3.65984e-06 4.83197e-06 5.28757e-06 5.84187e-06 6.52981e-06 7.31195e-06 8.17348e-06 9.10918e-06 1.01127e-05 1.11723e-05 1.22681e-05 1.33697e-05 1.44323e-05 1.53925e-05 1.61627e-05 1.66091e-05 1.67627e-05 1.6562e-05 1.5956e-05 1.49433e-05 1.35605e-05 1.18722e-05 9.95891e-06 7.91209e-06 5.83151e-06 3.8239e-06 2.08534e-06 8.49911e-07 2.28138e-07 4.47108e-08 1.42757e-08 1.17709e-08 3.57132e-08 2.09966e-06 2.51998e-06 2.75016e-06 2.96832e-06 3.13181e-06 3.24644e-06 3.32599e-06 3.3781e-06 3.40756e-06 3.4178e-06 3.41141e-06 3.39044e-06 3.35647e-06 3.31073e-06 3.25413e-06 3.18723e-06 3.10996e-06 3.02022e-06 2.92014e-06 2.80704e-06 2.67834e-06 2.53067e-06 2.36034e-06 2.16335e-06 1.93603e-06 1.67612e-06 1.38494e-06 1.07133e-06 7.58471e-07 4.83905e-07 2.85404e-07 1.67599e-07 9.57516e-08 1.56807e-09 4.50822e-11 4.03889e-09 7.49944e-09 1.16359e-08 1.66824e-08 2.28617e-08 3.03484e-08 3.9243e-08 4.95584e-08 6.12192e-08 7.4073e-08 8.79082e-08 1.02475e-07 1.17501e-07 1.32702e-07 1.47786e-07 1.62449e-07 1.76374e-07 1.8922e-07 2.00594e-07 2.10161e-07 2.17571e-07 2.2249e-07 2.24642e-07 2.23844e-07 2.2005e-07 2.13396e-07 2.04217e-07 1.93045e-07 1.80563e-07 1.67625e-07 1.55395e-07 1.43431e-07 1.2153e-07 3.43728e-09 1.01143e-10 1.00811e-10 1.78199e-10 7.62183e-10 3.02309e-09 9.01525e-09 2.14008e-08 4.28424e-08 7.518e-08 1.18601e-07 1.71119e-07 2.28618e-07 2.85488e-07 3.35712e-07 3.7409e-07 3.97285e-07 4.04399e-07 3.96924e-07 3.78098e-07 3.52263e-07 3.23524e-07 2.96225e-07 2.72387e-07 2.52378e-07 2.36384e-07 2.2396e-07 2.14095e-07 2.04881e-07 1.92171e-07 1.68023e-07 1.19313e-07 5.75456e-08 2.01898e-08 1.03068e-08 1.0146e-08 2.5979e-10 2.84177e-10 7.99619e-10 3.91596e-09 1.44298e-08 3.94687e-08 8.68897e-08 1.62918e-07 2.69442e-07 4.0223e-07 5.51355e-07 7.03613e-07 8.45596e-07 9.66131e-07 1.05759e-06 1.1162e-06 1.14153e-06 1.13502e-06 1.09866e-06 1.0372e-06 9.56291e-07 8.61651e-07 7.59106e-07 6.54411e-07 5.53083e-07 4.59905e-07 3.77897e-07 3.06232e-07 2.37282e-07 1.60106e-07 8.32915e-08 3.44273e-08 1.7225e-08 1.53463e-08 1.68851e-08 8.57024e-10 9.23164e-10 2.41524e-09 1.15381e-08 4.30548e-08 1.21564e-07 2.79003e-07 5.44861e-07 9.29382e-07 1.4113e-06 1.94151e-06 2.45933e-06 2.90947e-06 3.25233e-06 3.46744e-06 3.55204e-06 3.51748e-06 3.384e-06 3.17247e-06 2.9087e-06 2.61527e-06 2.31015e-06 2.00669e-06 1.71425e-06 1.43903e-06 1.18417e-06 9.47778e-07 7.19165e-07 4.84011e-07 2.60134e-07 1.06332e-07 3.85297e-08 2.10594e-08 2.03137e-08 2.22594e-08 2.05953e-09 2.20721e-09 6.23732e-09 3.20932e-08 1.26343e-07 3.74888e-07 8.89318e-07 1.7395e-06 2.87342e-06 4.12732e-06 5.31695e-06 6.30681e-06 7.02289e-06 7.43867e-06 7.56015e-06 7.41617e-06 7.05206e-06 6.52528e-06 5.894e-06 5.21424e-06 4.53209e-06 3.88081e-06 3.28043e-06 2.73909e-06 2.25475e-06 1.81598e-06 1.40298e-06 9.96636e-07 6.02745e-07 2.95635e-07 1.17139e-07 4.2703e-08 2.43417e-08 2.36227e-08 2.56298e-08 2.975e-09 3.28262e-09 1.13037e-08 6.33572e-08 2.5359e-07 7.39055e-07 1.658e-06 2.98357e-06 4.51514e-06 6.02627e-06 7.36346e-06 8.44769e-06 9.24433e-06 9.74033e-06 9.93583e-06 9.84384e-06 9.49103e-06 8.914e-06 8.15661e-06 7.2915e-06 6.38007e-06 5.47421e-06 4.61161e-06 3.81291e-06 3.08149e-06 2.40639e-06 1.71976e-06 1.0166e-06 5.56424e-07 2.947e-07 1.29425e-07 4.7432e-08 2.68514e-08 2.5913e-08 2.80163e-08 3.46814e-09 3.85457e-09 1.38516e-08 7.78641e-08 3.06638e-07 8.76381e-07 1.93549e-06 3.45298e-06 5.21121e-06 6.95618e-06 8.39153e-06 9.46222e-06 1.04331e-05 1.13032e-05 1.1882e-05 1.19976e-05 1.18401e-05 1.14042e-05 1.07184e-05 9.84451e-06 8.83903e-06 7.75456e-06 6.63756e-06 5.5233e-06 4.43303e-06 3.23589e-06 2.01312e-06 1.15962e-06 6.37532e-07 3.42182e-07 1.57026e-07 5.56057e-08 2.99065e-08 2.85269e-08 3.08307e-08 4.02655e-09 4.58427e-09 1.82924e-08 1.06306e-07 4.23351e-07 1.21287e-06 2.64953e-06 4.6249e-06 6.80959e-06 8.8909e-06 1.03015e-05 1.15788e-05 1.27717e-05 1.38557e-05 1.4488e-05 1.46161e-05 1.44591e-05 1.40227e-05 1.33293e-05 1.24332e-05 1.13674e-05 1.01612e-05 8.84379e-06 7.44222e-06 5.9856e-06 4.06974e-06 2.47099e-06 1.41735e-06 7.84497e-07 4.23637e-07 1.98496e-07 6.71842e-08 3.35595e-08 3.1342e-08 3.3807e-08 4.40135e-09 5.10259e-09 2.17285e-08 1.27684e-07 5.05604e-07 1.4326e-06 3.08832e-06 5.32969e-06 7.79201e-06 1.01108e-05 1.17017e-05 1.31648e-05 1.45645e-05 1.59067e-05 1.69644e-05 1.72666e-05 1.72505e-05 1.69246e-05 1.63055e-05 1.54434e-05 1.43548e-05 1.30502e-05 1.15395e-05 9.83605e-06 7.89809e-06 5.19032e-06 3.14949e-06 1.81947e-06 1.01557e-06 5.50482e-07 2.63269e-07 8.45614e-08 3.80544e-08 3.42841e-08 3.68626e-08 4.82598e-09 5.70403e-09 2.58044e-08 1.53549e-07 6.09025e-07 1.72214e-06 3.6866e-06 6.30124e-06 9.13297e-06 1.17578e-05 1.36158e-05 1.53359e-05 1.70032e-05 1.8614e-05 1.9755e-05 2.01846e-05 2.02697e-05 2.003e-05 1.9484e-05 1.86575e-05 1.75531e-05 1.61645e-05 1.4479e-05 1.24903e-05 9.80413e-06 6.50422e-06 4.00785e-06 2.35735e-06 1.33812e-06 7.33635e-07 3.56979e-07 1.09493e-07 4.36427e-08 3.73469e-08 3.9968e-08 5.31981e-09 6.43941e-09 3.12554e-08 1.88579e-07 7.48326e-07 2.10256e-06 4.44244e-06 7.48218e-06 1.07179e-05 1.36632e-05 1.57942e-05 1.7774e-05 1.97065e-05 2.15936e-05 2.29997e-05 2.35824e-05 2.37815e-05 2.36216e-05 2.31215e-05 2.22909e-05 2.11248e-05 1.96034e-05 1.76968e-05 1.53839e-05 1.16909e-05 7.87402e-06 4.95943e-06 2.98449e-06 1.73041e-06 9.64864e-07 4.79839e-07 1.42342e-07 5.0291e-08 4.04203e-08 4.30003e-08 5.80049e-09 7.16034e-09 3.66098e-08 2.22679e-07 8.82167e-07 2.46242e-06 5.14817e-06 8.58173e-06 1.22058e-05 1.55512e-05 1.79776e-05 2.02397e-05 2.24713e-05 2.4673e-05 2.63147e-05 2.71043e-05 2.7474e-05 2.74416e-05 2.7019e-05 2.62073e-05 2.49892e-05 2.3331e-05 2.1189e-05 1.84349e-05 1.37395e-05 9.40006e-06 6.05378e-06 3.72823e-06 2.20982e-06 1.25666e-06 6.418e-07 1.86709e-07 5.85279e-08 4.35298e-08 4.59613e-08 6.34864e-09 8.02633e-09 4.3552e-08 2.67529e-07 1.0592e-06 2.93475e-06 6.05447e-06 9.95638e-06 1.40183e-05 1.77765e-05 2.05175e-05 2.30715e-05 2.56027e-05 2.81109e-05 2.99656e-05 3.09461e-05 3.14702e-05 3.15485e-05 3.11847e-05 3.03707e-05 2.90759e-05 2.72535e-05 2.48492e-05 2.10338e-05 1.58328e-05 1.10332e-05 7.25975e-06 4.57141e-06 2.76785e-06 1.60388e-06 8.31553e-07 2.36488e-07 6.58722e-08 4.65456e-08 4.8834e-08 6.91064e-09 8.93367e-09 5.1013e-08 3.15593e-07 1.24674e-06 3.42479e-06 6.97394e-06 1.13328e-05 1.58284e-05 2.00386e-05 2.31158e-05 2.59684e-05 2.87984e-05 3.15587e-05 3.37373e-05 3.4935e-05 3.56348e-05 3.58372e-05 3.55368e-05 3.47171e-05 3.33343e-05 3.13304e-05 2.86444e-05 2.37213e-05 1.80219e-05 1.27834e-05 8.58546e-06 5.52096e-06 3.41121e-06 2.01342e-06 1.06078e-06 2.98766e-07 7.60314e-08 4.96168e-08 5.16187e-08 7.49819e-09 9.92327e-09 5.95681e-08 3.70941e-07 1.4618e-06 3.97868e-06 7.99324e-06 1.28349e-05 1.77822e-05 2.24065e-05 2.59356e-05 2.90998e-05 3.21978e-05 3.50821e-05 3.76403e-05 3.90684e-05 3.99368e-05 4.02528e-05 4.00016e-05 3.91603e-05 3.76722e-05 3.54711e-05 3.20892e-05 2.64621e-05 2.03019e-05 1.46354e-05 1.00185e-05 6.57059e-06 4.13776e-06 2.48555e-06 1.33119e-06 3.73929e-07 8.82082e-08 5.27294e-08 5.43206e-08 8.11811e-09 1.10014e-08 6.9218e-08 4.33469e-07 1.70311e-06 4.58934e-06 9.09386e-06 1.44325e-05 1.98415e-05 2.489e-05 2.88996e-05 3.23772e-05 3.5666e-05 3.87628e-05 4.154e-05 4.33521e-05 4.43814e-05 4.47964e-05 4.45737e-05 4.36878e-05 4.20711e-05 3.96522e-05 3.53055e-05 2.92065e-05 2.26523e-05 1.65831e-05 1.15572e-05 7.72288e-06 4.9534e-06 3.02742e-06 1.64892e-06 4.63944e-07 1.02517e-07 5.58896e-08 5.69405e-08 8.75256e-09 1.2143e-08 7.98002e-08 5.02059e-07 1.96546e-06 5.24091e-06 1.02463e-05 1.60872e-05 2.19651e-05 2.74489e-05 3.20011e-05 3.58013e-05 3.93033e-05 4.26054e-05 4.55873e-05 4.77419e-05 4.89242e-05 4.94239e-05 4.92099e-05 4.82582e-05 4.64923e-05 4.37723e-05 3.85284e-05 3.19673e-05 2.50453e-05 1.8601e-05 1.31831e-05 8.96598e-06 5.8521e-06 3.63726e-06 2.01295e-06 5.68943e-07 1.18977e-07 5.91008e-08 5.94813e-08 9.41924e-09 1.33807e-08 9.16399e-08 5.78895e-07 2.25719e-06 5.95284e-06 1.14824e-05 1.78398e-05 2.41965e-05 3.01233e-05 3.52406e-05 3.93478e-05 4.30864e-05 4.65821e-05 4.97516e-05 5.22387e-05 5.35617e-05 5.41291e-05 5.39024e-05 5.2863e-05 5.0929e-05 4.74008e-05 4.17036e-05 3.47722e-05 2.74982e-05 2.06925e-05 1.48951e-05 1.02991e-05 6.83471e-06 4.31739e-06 2.42531e-06 6.90082e-07 1.37786e-07 6.23764e-08 6.19465e-08 1.01037e-08 1.46853e-08 1.04474e-07 6.62218e-07 2.57069e-06 6.70397e-06 1.27654e-05 1.96435e-05 2.64857e-05 3.28649e-05 3.85976e-05 4.30363e-05 4.70126e-05 5.06865e-05 5.40008e-05 5.67247e-05 5.82709e-05 5.88923e-05 5.86344e-05 5.74869e-05 5.53663e-05 5.09815e-05 4.48364e-05 3.7574e-05 2.99828e-05 2.28407e-05 1.66808e-05 1.17133e-05 7.89618e-06 5.06592e-06 2.8845e-06 8.27454e-07 1.59005e-07 6.57206e-08 6.43358e-08 1.08174e-08 1.60738e-08 1.18507e-07 7.53436e-07 2.91093e-06 7.50451e-06 1.41107e-05 2.15161e-05 2.88482e-05 3.56813e-05 4.1831e-05 4.68331e-05 5.10621e-05 5.48914e-05 5.83162e-05 6.11633e-05 6.30426e-05 6.37059e-05 6.3402e-05 6.2129e-05 5.93479e-05 5.4487e-05 4.79755e-05 4.03988e-05 3.25108e-05 2.5048e-05 1.85385e-05 1.32061e-05 9.03463e-06 5.88233e-06 3.39017e-06 9.81513e-07 1.82747e-07 6.91415e-08 6.66511e-08 1.15518e-08 1.75162e-08 1.3351e-07 8.51253e-07 3.27281e-06 8.34161e-06 1.54981e-05 2.34335e-05 3.12582e-05 3.85478e-05 4.51194e-05 5.07244e-05 5.52302e-05 5.92042e-05 6.2705e-05 6.5608e-05 6.76825e-05 6.85441e-05 6.81841e-05 6.66526e-05 6.32021e-05 5.79282e-05 5.10928e-05 4.32326e-05 3.50703e-05 2.73075e-05 2.04615e-05 1.47717e-05 1.02463e-05 6.76485e-06 3.94015e-06 1.15209e-06 2.09037e-07 7.26396e-08 6.88902e-08 1.23132e-08 1.8993e-08 1.49415e-07 9.55648e-07 3.65651e-06 9.21545e-06 1.69283e-05 2.53963e-05 3.37151e-05 4.14612e-05 4.84531e-05 5.4617e-05 5.94613e-05 6.35829e-05 6.71563e-05 7.00833e-05 7.2179e-05 7.32047e-05 7.27857e-05 7.07542e-05 6.69428e-05 6.1343e-05 5.42118e-05 4.60842e-05 3.76608e-05 2.96189e-05 2.24468e-05 1.64058e-05 1.15275e-05 7.71096e-06 4.53202e-06 1.33887e-06 2.37879e-07 7.6215e-08 7.10525e-08 1.30973e-08 2.04329e-08 1.6585e-07 1.06539e-06 4.05938e-06 1.01223e-05 1.83989e-05 2.74045e-05 3.62199e-05 4.44212e-05 5.18262e-05 5.83582e-05 6.37434e-05 6.80377e-05 7.16611e-05 7.45864e-05 7.66308e-05 7.75433e-05 7.69586e-05 7.46944e-05 7.05994e-05 6.47077e-05 5.73083e-05 4.89379e-05 4.02745e-05 3.19701e-05 2.44891e-05 1.81046e-05 1.28756e-05 8.71907e-06 5.16309e-06 1.54133e-06 2.69237e-07 7.98636e-08 7.31343e-08 1.39099e-08 2.17422e-08 1.82614e-07 1.1811e-06 4.48577e-06 1.1072e-05 1.99236e-05 2.94717e-05 3.87838e-05 4.74355e-05 5.52444e-05 6.21331e-05 6.80388e-05 7.25107e-05 7.61691e-05 7.90601e-05 8.1017e-05 8.17848e-05 8.10092e-05 7.85093e-05 7.41536e-05 6.80044e-05 6.03701e-05 5.17837e-05 4.29001e-05 3.43455e-05 2.65787e-05 1.986e-05 1.42844e-05 9.78526e-06 5.82958e-06 1.75862e-06 3.03038e-07 8.35787e-08 7.5132e-08 1.47493e-08 2.29005e-08 2.00202e-07 1.30639e-06 4.94591e-06 1.20794e-05 2.15168e-05 3.16098e-05 4.14157e-05 5.05109e-05 5.87132e-05 6.59442e-05 7.2169e-05 7.69816e-05 8.06721e-05 8.34975e-05 8.53357e-05 8.5934e-05 8.49525e-05 8.22176e-05 7.76179e-05 7.12354e-05 6.33926e-05 5.46144e-05 4.55314e-05 3.6746e-05 2.87121e-05 2.16671e-05 1.57499e-05 1.09063e-05 6.52722e-06 1.98949e-06 3.39129e-07 8.73465e-08 7.70382e-08 1.56237e-08 2.4523e-08 2.21517e-07 1.45029e-06 5.45464e-06 1.31566e-05 2.31829e-05 3.38155e-05 4.41067e-05 5.36347e-05 6.22173e-05 6.97738e-05 7.62662e-05 8.14117e-05 8.5141e-05 8.78828e-05 8.95809e-05 8.99949e-05 8.87994e-05 8.58314e-05 8.10012e-05 7.44069e-05 6.63762e-05 5.74253e-05 4.8161e-05 3.91598e-05 3.08645e-05 2.35152e-05 1.72646e-05 1.20769e-05 7.2508e-06 2.23247e-06 3.77339e-07 9.11523e-08 7.88462e-08 1.65311e-08 2.65684e-08 2.45801e-07 1.60778e-06 5.99536e-06 1.42739e-05 2.48868e-05 3.60549e-05 4.68271e-05 5.67825e-05 6.5738e-05 7.36111e-05 8.03613e-05 8.58e-05 8.95555e-05 9.22028e-05 9.3747e-05 9.39673e-05 9.25555e-05 8.93598e-05 8.43136e-05 7.75295e-05 6.93318e-05 6.02238e-05 5.07897e-05 4.15829e-05 3.30346e-05 2.53979e-05 1.88228e-05 1.3292e-05 7.99465e-06 2.48555e-06 4.17393e-07 9.49742e-08 8.05474e-08 1.74703e-08 2.86795e-08 2.71068e-07 1.77184e-06 6.55321e-06 1.54118e-05 2.66098e-05 3.83118e-05 4.9562e-05 5.99394e-05 6.92594e-05 7.74377e-05 8.4431e-05 9.01245e-05 9.38905e-05 9.64351e-05 9.78185e-05 9.78423e-05 9.62185e-05 9.28061e-05 8.75558e-05 8.05961e-05 7.22505e-05 6.3003e-05 5.3413e-05 4.4012e-05 3.5222e-05 2.73091e-05 2.04183e-05 1.4547e-05 8.75387e-06 2.74705e-06 4.59056e-07 9.87924e-08 8.21343e-08 1.84395e-08 3.09241e-08 2.98381e-07 1.94856e-06 7.14493e-06 1.65962e-05 2.83803e-05 4.06114e-05 5.23317e-05 6.31213e-05 7.27948e-05 8.12661e-05 8.84899e-05 9.43811e-05 9.81346e-05 0.000100568 0.000101788 0.000101618 9.97891e-05 9.61741e-05 9.07377e-05 8.36181e-05 7.51368e-05 6.57609e-05 5.60261e-05 4.64426e-05 3.74233e-05 2.92452e-05 2.20468e-05 1.58369e-05 9.52268e-06 3.01472e-06 5.02005e-07 1.02585e-07 8.36031e-08 1.94383e-08 3.32785e-08 3.2728e-07 2.13465e-06 7.75874e-06 1.78054e-05 3.01718e-05 4.29265e-05 5.51103e-05 6.63037e-05 7.63206e-05 8.50734e-05 9.25151e-05 9.85518e-05 0.000102271 0.000104587 0.000105646 0.000105289 0.000103267 9.94647e-05 9.38606e-05 8.65985e-05 7.79949e-05 6.85007e-05 5.86298e-05 4.88734e-05 3.96346e-05 3.1197e-05 2.37044e-05 1.71584e-05 1.02974e-05 3.28705e-06 5.46009e-07 1.06335e-07 8.49494e-08 2.04635e-08 3.57409e-08 3.57802e-07 2.33033e-06 8.3943e-06 1.90373e-05 3.19791e-05 4.52489e-05 5.78868e-05 6.94739e-05 7.98234e-05 8.88462e-05 9.64936e-05 0.000102627 0.000106291 0.000108483 0.000109384 0.000108851 0.00010665 0.000102679 9.69253e-05 8.95388e-05 8.08294e-05 7.1229e-05 6.12291e-05 5.13055e-05 4.18534e-05 3.31601e-05 2.53867e-05 1.85074e-05 1.10739e-05 3.56231e-06 5.90782e-07 1.10024e-07 8.6171e-08 2.15134e-08 3.83171e-08 3.90065e-07 2.53613e-06 9.05253e-06 2.02937e-05 3.38056e-05 4.75825e-05 6.06648e-05 7.26343e-05 8.3304e-05 9.2584e-05 0.000100424 0.000106592 0.000110179 0.000112245 0.000112996 0.000112301 0.000109939 0.000105818 9.99349e-05 9.24407e-05 8.36385e-05 7.39433e-05 6.38242e-05 5.37399e-05 4.40806e-05 3.51396e-05 2.70925e-05 1.98822e-05 1.18498e-05 3.83942e-06 6.36167e-07 1.1364e-07 8.72661e-08 2.25845e-08 4.09909e-08 4.23821e-07 2.75037e-06 9.72723e-06 2.15625e-05 3.56349e-05 4.99081e-05 6.34235e-05 7.57641e-05 8.67425e-05 9.62683e-05 0.000104291 0.000110435 0.000113924 0.000115863 0.000116475 0.000115634 0.000113131 0.000108881 0.000102887 9.53011e-05 8.6418e-05 7.66369e-05 6.64072e-05 5.6171e-05 4.63131e-05 3.71335e-05 2.88199e-05 2.12799e-05 1.26227e-05 4.11736e-06 6.81973e-07 1.17174e-07 8.82423e-08 2.36736e-08 4.37668e-08 4.59197e-07 2.97364e-06 1.04195e-05 2.28458e-05 3.74693e-05 5.22279e-05 6.61642e-05 7.88627e-05 9.01364e-05 9.98946e-05 0.000108087 0.000114145 0.000117517 0.000119333 0.000119819 0.000118851 0.000116227 0.000111867 0.000105782 9.81207e-05 8.91694e-05 7.93122e-05 6.89796e-05 5.85986e-05 4.85509e-05 3.91426e-05 3.0571e-05 2.27027e-05 1.33934e-05 4.39651e-06 7.28302e-07 1.20635e-07 8.91026e-08 2.47775e-08 4.66305e-08 4.9597e-07 3.20441e-06 1.1124e-05 2.41344e-05 3.92977e-05 5.45294e-05 6.88742e-05 8.1918e-05 9.34745e-05 0.000103453 0.000111804 0.000117712 0.000120952 0.000122651 0.000123026 0.000121951 0.000119227 0.000114779 0.00010862 0.0001009 9.18921e-05 8.19672e-05 7.15385e-05 6.10198e-05 5.07898e-05 4.11616e-05 3.23399e-05 2.41443e-05 1.41567e-05 4.67442e-06 7.74688e-07 1.23997e-07 8.98513e-08 2.58926e-08 4.95733e-08 5.34026e-07 3.44177e-06 1.18378e-05 2.54232e-05 4.11135e-05 5.6805e-05 7.1545e-05 8.4921e-05 9.67475e-05 0.000106935 0.000115434 0.000121128 0.000124222 0.000125814 0.000126098 0.000124936 0.000122133 0.000117616 0.000111403 0.000103637 9.45849e-05 8.46005e-05 7.40827e-05 6.34344e-05 5.30313e-05 4.31939e-05 3.41315e-05 2.56098e-05 1.49161e-05 4.95282e-06 8.2149e-07 1.27281e-07 9.04925e-08 2.70174e-08 5.25896e-08 5.73284e-07 3.68511e-06 1.25587e-05 2.67089e-05 4.29125e-05 5.90499e-05 7.41711e-05 8.78658e-05 9.99494e-05 0.000110333 0.00011897 0.00012439 0.000127328 0.000128827 0.000129039 0.00012781 0.000124946 0.000120379 0.000114127 0.000106331 9.72459e-05 8.7211e-05 7.66117e-05 6.58411e-05 5.52728e-05 4.52348e-05 3.59395e-05 2.70921e-05 1.56666e-05 5.22927e-06 8.68195e-07 1.30459e-07 9.10326e-08 2.81484e-08 5.5665e-08 6.13523e-07 3.93298e-06 1.32824e-05 2.79852e-05 4.46872e-05 6.12556e-05 7.67438e-05 9.07434e-05 0.000103071 0.000113641 0.000122406 0.000127488 0.000130271 0.000131694 0.000131854 0.000130576 0.000127668 0.000123067 0.000116793 0.000108979 9.98696e-05 8.97915e-05 7.91176e-05 6.82326e-05 5.75092e-05 4.72831e-05 3.77669e-05 2.85957e-05 1.64098e-05 5.50472e-06 9.15055e-07 1.33545e-07 9.14766e-08 2.92832e-08 5.87953e-08 6.54694e-07 4.18496e-06 1.40078e-05 2.92502e-05 4.64351e-05 6.3419e-05 7.92589e-05 9.35488e-05 0.000106108 0.00011685 0.000125736 0.000130412 0.000133059 0.00013443 0.000134549 0.000133234 0.000130298 0.000125681 0.000119399 0.00011158 0.000102459 9.23477e-05 8.16083e-05 7.06172e-05 5.97469e-05 4.93416e-05 3.96126e-05 3.0119e-05 1.71472e-05 5.77984e-06 9.62113e-07 1.36535e-07 9.18358e-08 3.04174e-08 6.19672e-08 6.96606e-07 4.43981e-06 1.47312e-05 3.04987e-05 4.81503e-05 6.55339e-05 8.17103e-05 9.62761e-05 0.000109052 0.000119954 0.000128664 0.00013317 0.000135731 0.000137047 0.000137131 0.000135793 0.000132846 0.000128227 0.000121951 0.000114139 0.000105014 9.48765e-05 8.4077e-05 7.29866e-05 6.19788e-05 5.14038e-05 4.14682e-05 3.16486e-05 1.78689e-05 6.04961e-06 1.00842e-06 1.39373e-07 9.21168e-08 3.15471e-08 6.51697e-08 7.39116e-07 4.69659e-06 1.54505e-05 3.17279e-05 4.98295e-05 6.75969e-05 8.40948e-05 9.89227e-05 0.000111903 0.000122953 0.000131404 0.000135766 0.000138251 0.00013953 0.000139595 0.00013825 0.000135306 0.000130699 0.000124441 0.000116644 0.000107523 9.73649e-05 8.651e-05 7.5325e-05 6.41884e-05 5.34618e-05 4.33479e-05 3.32182e-05 1.85905e-05 6.3211e-06 1.0551e-06 1.42085e-07 9.23232e-08 3.26689e-08 6.83809e-08 7.81854e-07 4.95304e-06 1.61597e-05 3.29294e-05 5.14634e-05 6.95984e-05 8.64031e-05 0.00010148 0.000114652 0.000125841 0.000133981 0.000138189 0.000140611 0.000141868 0.000141933 0.000140596 0.000137669 0.000133086 0.000126855 0.000119085 0.000109978 9.98115e-05 8.89177e-05 7.76603e-05 6.6419e-05 5.55536e-05 4.52327e-05 3.46846e-05 1.92883e-05 6.58663e-06 1.10106e-06 1.44574e-07 9.24621e-08 3.3784e-08 7.16006e-08 8.24807e-07 5.20905e-06 1.68588e-05 3.41034e-05 5.3052e-05 7.15381e-05 8.86345e-05 0.000103946 0.0001173 0.000128617 0.000136404 0.000140454 0.000142823 0.000144074 0.000144152 0.000142837 0.000139939 0.000135391 0.000129199 0.000121466 0.000112385 0.000102225 9.13094e-05 8.00003e-05 6.86775e-05 5.76865e-05 4.71065e-05 3.58129e-05 1.99448e-05 6.83973e-06 1.14496e-06 1.46688e-07 9.25454e-08 3.48918e-08 7.48255e-08 8.67924e-07 5.46428e-06 1.75473e-05 3.52494e-05 5.45951e-05 7.34156e-05 9.07886e-05 0.000106322 0.000119845 0.000131282 0.000138681 0.000142571 0.000144899 0.00014616 0.000146266 0.000144984 0.000142125 0.000137622 0.000131479 0.000123794 0.000114751 0.000104608 9.36838e-05 8.23356e-05 7.09413e-05 5.98252e-05 4.89666e-05 3.69023e-05 2.05702e-05 7.07907e-06 1.1857e-06 1.4822e-07 9.25761e-08 3.59876e-08 7.80429e-08 9.1103e-07 5.71766e-06 1.82225e-05 3.63641e-05 5.60888e-05 7.52273e-05 9.28621e-05 0.000108604 0.000122286 0.000133834 0.000140811 0.000144543 0.000146845 0.000148132 0.000148278 0.000147041 0.000144229 0.00013978 0.000133695 0.000126066 0.00011707 0.000106956 9.60331e-05 8.46566e-05 7.31994e-05 6.1961e-05 5.08165e-05 3.7961e-05 2.11718e-05 7.3058e-06 1.22264e-06 1.48875e-07 9.25595e-08 3.70658e-08 8.12402e-08 9.53963e-07 5.96822e-06 1.88823e-05 3.74445e-05 5.75297e-05 7.69695e-05 9.48513e-05 0.00011079 0.00012462 0.000136271 0.000142788 0.000146369 0.000148665 0.000149993 0.000150189 0.000149001 0.000146244 0.000141856 0.000135837 0.000128275 0.000119336 0.00010926 9.83503e-05 8.69578e-05 7.54498e-05 6.40973e-05 5.26621e-05 3.89825e-05 2.17423e-05 7.51439e-06 1.25384e-06 1.48368e-07 9.25044e-08 3.81215e-08 8.43928e-08 9.96322e-07 6.2137e-06 1.95218e-05 3.84844e-05 5.89114e-05 7.86361e-05 9.67509e-05 0.000112874 0.000126842 0.000138591 0.000144611 0.000148061 0.000150374 0.000151754 0.000152001 0.000150866 0.000148168 0.000143848 0.000137903 0.000130415 0.000121542 0.000111514 0.000100629 8.92326e-05 7.76862e-05 6.62282e-05 5.44917e-05 3.99447e-05 2.22629e-05 7.69624e-06 1.27861e-06 1.47272e-07 9.24269e-08 3.91554e-08 8.74921e-08 1.0379e-06 6.45274e-06 2.0138e-05 3.94807e-05 6.02314e-05 8.02251e-05 9.85586e-05 0.000114853 0.000128948 0.000140568 0.000146277 0.000149675 0.000152007 0.000153425 0.000153719 0.000152638 0.000150006 0.000145759 0.000139895 0.000132487 0.000123688 0.000113718 0.000102868 9.14799e-05 7.99073e-05 6.83504e-05 5.63049e-05 4.08647e-05 2.27559e-05 7.86986e-06 1.30381e-06 1.47056e-07 9.23456e-08 4.0169e-08 9.05329e-08 1.07861e-06 6.68534e-06 2.0732e-05 4.04355e-05 6.14927e-05 8.17409e-05 0.000100281 0.000116736 0.000130949 0.000142252 0.00014783 0.000151197 0.000153547 0.000155004 0.000155348 0.000154327 0.000151763 0.000147595 0.000141817 0.000134497 0.000125779 0.000115876 0.00010507 9.3701e-05 8.21113e-05 7.04612e-05 5.8105e-05 4.17717e-05 2.32525e-05 8.05481e-06 1.33452e-06 1.48241e-07 9.22673e-08 4.11642e-08 9.35245e-08 1.11862e-06 6.91236e-06 2.13062e-05 4.13528e-05 6.27001e-05 8.31886e-05 0.000101923 0.000118531 0.000132854 0.000143839 0.000149288 0.000152631 0.000155004 0.000156504 0.0001569 0.000155941 0.000153448 0.00014936 0.00014367 0.00013644 0.000127807 0.000117977 0.000107225 9.5885e-05 8.42888e-05 7.25528e-05 5.98877e-05 4.26689e-05 2.37527e-05 8.24756e-06 1.36825e-06 1.49929e-07 9.21841e-08 4.21398e-08 9.64671e-08 1.15793e-06 7.13389e-06 2.18613e-05 4.22342e-05 6.38562e-05 8.45714e-05 0.00010349 0.000120239 0.000134667 0.000145328 0.000150652 0.000153976 0.000156376 0.000157923 0.000158374 0.000157477 0.000155056 0.000151048 0.000145447 0.00013831 0.000129766 0.000120014 0.000109324 9.80265e-05 8.6444e-05 7.46453e-05 6.16849e-05 4.35744e-05 2.42678e-05 8.4513e-06 1.40467e-06 1.51812e-07 9.21045e-08 4.3095e-08 9.9354e-08 1.19639e-06 7.34911e-06 2.23958e-05 4.30788e-05 6.49609e-05 8.58905e-05 0.000104982 0.000121866 0.000136391 0.000146717 0.000151919 0.00015523 0.000157663 0.00015926 0.000159768 0.000158933 0.000156583 0.000152656 0.000147144 0.000140104 0.00013166 0.000122002 0.000111391 0.000100149 8.85868e-05 7.67347e-05 6.34914e-05 4.44926e-05 2.47976e-05 8.66404e-06 1.44304e-06 1.53812e-07 9.20379e-08 4.40316e-08 1.02168e-07 1.23367e-06 7.55629e-06 2.29066e-05 4.38827e-05 6.60108e-05 8.71435e-05 0.000106399 0.000123411 0.000138028 0.000148018 0.000153101 0.000156404 0.000158874 0.000160523 0.000161089 0.000160316 0.000158036 0.000154189 0.000148767 0.000141827 0.000133491 0.000123946 0.000113447 0.000102299 9.07712e-05 7.87792e-05 6.50097e-05 4.53752e-05 2.53156e-05 8.87579e-06 1.48174e-06 1.55845e-07 9.19837e-08 4.49559e-08 1.04925e-07 1.26997e-06 7.75665e-06 2.33968e-05 4.46509e-05 6.70119e-05 8.83367e-05 0.000107747 0.00012488 0.000139585 0.000149243 0.000154213 0.000157511 0.000160021 0.000161724 0.000162348 0.000161638 0.000159426 0.000155657 0.000150324 0.000143485 0.000135262 0.000125839 0.000115467 0.000104433 9.29506e-05 8.07794e-05 6.62242e-05 4.62288e-05 2.58224e-05 9.08521e-06 1.52036e-06 1.57891e-07 9.19422e-08 4.58721e-08 1.07639e-07 1.30549e-06 7.95147e-06 2.38698e-05 4.53888e-05 6.7971e-05 8.94777e-05 0.000109036 0.000126282 0.000141071 0.000150404 0.000155267 0.000158567 0.00016112 0.000162879 0.000163561 0.000162911 0.000160766 0.000157071 0.000151825 0.000145086 0.000136975 0.000127676 0.000117436 0.000106523 9.50917e-05 8.27406e-05 6.74136e-05 4.70675e-05 2.63236e-05 9.29391e-06 1.55907e-06 1.59959e-07 9.19193e-08 4.67832e-08 1.10323e-07 1.34042e-06 8.14186e-06 2.43288e-05 4.61015e-05 6.88945e-05 9.05742e-05 0.000110271 0.000127626 0.000142493 0.0001515 0.00015626 0.000159568 0.00016217 0.000163987 0.000164727 0.000164136 0.000162054 0.00015843 0.000153266 0.000146622 0.000138621 0.000129448 0.000119343 0.000108559 9.71879e-05 8.4665e-05 6.85765e-05 4.7891e-05 2.68186e-05 9.50149e-06 1.59779e-06 1.62046e-07 9.19171e-08 4.7691e-08 1.12966e-07 1.37452e-06 8.32655e-06 2.47711e-05 4.67858e-05 6.97798e-05 9.16243e-05 0.000111454 0.000128912 0.000143854 0.000152537 0.000157202 0.000160523 0.000163177 0.000165053 0.00016585 0.000165314 0.000163291 0.000159734 0.000154647 0.000148094 0.000140199 0.000131149 0.000121182 0.000110533 9.92318e-05 8.65482e-05 6.97117e-05 4.86989e-05 2.73071e-05 9.70775e-06 1.63646e-06 1.64151e-07 9.19374e-08 4.86006e-08 1.15585e-07 1.40805e-06 8.50699e-06 2.52001e-05 4.74463e-05 7.06315e-05 9.26327e-05 0.000112589 0.000130145 0.000145158 0.000153522 0.000158099 0.00016144 0.000164149 0.000166083 0.000166935 0.000166452 0.000164483 0.000160987 0.000155971 0.000149502 0.000141708 0.000132778 0.00012295 0.000112442 0.000101223 8.83921e-05 7.08205e-05 4.94918e-05 2.77896e-05 9.91306e-06 1.67521e-06 1.66281e-07 9.19776e-08 4.9514e-08 1.18175e-07 1.44091e-06 8.68281e-06 2.56154e-05 4.80831e-05 7.14508e-05 9.36009e-05 0.000113677 0.000131326 0.000146407 0.000154453 0.00015895 0.000162319 0.000165086 0.000167079 0.000167983 0.000167547 0.000165629 0.000162189 0.00015724 0.00015085 0.000143151 0.000134337 0.000124646 0.000114282 0.000103154 9.01876e-05 7.1899e-05 5.02669e-05 2.82639e-05 1.01162e-05 1.71374e-06 1.68416e-07 9.20332e-08 5.04305e-08 1.20749e-07 1.47335e-06 8.85524e-06 2.60197e-05 4.87001e-05 7.22419e-05 9.45337e-05 0.000114723 0.000132461 0.000147606 0.000155335 0.000159763 0.000163168 0.000165997 0.000168046 0.000168996 0.000168604 0.000166732 0.000163344 0.000158455 0.000152137 0.000144528 0.000135824 0.000126268 0.000116051 0.00010502 9.19304e-05 7.29447e-05 5.10216e-05 2.87281e-05 1.03164e-05 1.75196e-06 1.70551e-07 9.21035e-08 5.13488e-08 1.23295e-07 1.50512e-06 9.02319e-06 2.64112e-05 4.92949e-05 7.30024e-05 9.54287e-05 0.000115726 0.000133547 0.000148755 0.000156157 0.000160533 0.000163987 0.000166878 0.000168979 0.000169972 0.000169619 0.000167789 0.000164449 0.000159616 0.000153366 0.000145839 0.00013724 0.000127815 0.000117746 0.000106822 9.3625e-05 7.39642e-05 5.17626e-05 2.91876e-05 1.05162e-05 1.79035e-06 1.72713e-07 9.21917e-08 5.22687e-08 1.25803e-07 1.53609e-06 9.18596e-06 2.67884e-05 4.98662e-05 7.37311e-05 9.62842e-05 0.000116682 0.00013458 0.000149768 0.000156919 0.000161289 0.000164792 0.000167734 0.000169877 0.000170908 0.000170593 0.000168801 0.000165505 0.000160725 0.000154542 0.0001471 0.000138606 0.000129307 0.000119372 0.000108543 9.5247e-05 7.49528e-05 5.24854e-05 2.96387e-05 1.07137e-05 1.82851e-06 1.74879e-07 9.22977e-08 5.31958e-08 1.28292e-07 1.56652e-06 9.34511e-06 2.71552e-05 5.04193e-05 7.44344e-05 9.71078e-05 0.0001176 0.000135569 0.000150545 0.000157641 0.000162029 0.000165575 0.000168562 0.000170746 0.000171814 0.000171534 0.000169778 0.000166522 0.00016179 0.00015567 0.000148313 0.000139933 0.00013077 0.000120961 0.000110152 9.66135e-05 7.58806e-05 5.31704e-05 3.00701e-05 1.09043e-05 1.86565e-06 1.77005e-07 9.24169e-08 5.41291e-08 1.30758e-07 1.59638e-06 9.50054e-06 2.75114e-05 5.09542e-05 7.51124e-05 9.79e-05 0.000118482 0.000136518 0.000151282 0.000158327 0.000162737 0.000166328 0.000169361 0.000171587 0.000172691 0.000172443 0.00017072 0.0001675 0.000162813 0.000156751 0.000149475 0.000141204 0.000132175 0.000122486 0.000111662 9.76821e-05 7.67537e-05 5.38202e-05 3.0482e-05 1.10876e-05 1.90157e-06 1.79077e-07 9.25438e-08 5.50674e-08 1.33213e-07 1.62589e-06 9.65334e-06 2.78593e-05 5.14739e-05 7.57686e-05 9.86642e-05 0.00011933 0.000137429 0.000151978 0.000158974 0.000163411 0.000167049 0.00017013 0.000172397 0.000173535 0.000173319 0.000171626 0.000168439 0.000163791 0.000157782 0.000150579 0.000142407 0.000133501 0.000123921 0.000113078 9.86928e-05 7.75802e-05 5.44367e-05 3.0874e-05 1.12625e-05 1.93604e-06 1.81074e-07 9.26715e-08 5.60071e-08 1.35626e-07 1.65454e-06 9.80103e-06 2.81942e-05 5.19726e-05 7.63972e-05 9.93955e-05 0.000120141 0.000138299 0.000152633 0.000159582 0.000164048 0.000167737 0.000170868 0.000173176 0.000174349 0.000174162 0.000172498 0.00016934 0.000164727 0.000158764 0.000151627 0.000143545 0.00013475 0.00012527 0.00011441 9.96505e-05 7.83655e-05 5.50249e-05 3.12498e-05 1.14312e-05 1.96943e-06 1.83018e-07 9.28013e-08 5.69507e-08 1.38007e-07 1.6825e-06 9.94447e-06 2.85176e-05 5.24522e-05 7.69997e-05 0.000100095 0.000120916 0.000139129 0.000153249 0.000160155 0.000164653 0.000168395 0.000171577 0.000173928 0.000175136 0.000174978 0.000173339 0.000170208 0.000165625 0.000159703 0.000152623 0.000144622 0.000135929 0.00012654 0.000115664 0.000100557 7.91106e-05 5.55851e-05 3.16098e-05 1.15938e-05 2.00177e-06 1.8491e-07 9.29355e-08 5.78981e-08 1.40344e-07 1.70955e-06 1.00828e-05 2.8828e-05 5.29109e-05 7.75744e-05 0.000100761 0.000121652 0.000139918 0.000153825 0.000160691 0.000165225 0.000169023 0.000172257 0.000174652 0.000175895 0.000175765 0.000174151 0.000171043 0.000166487 0.0001606 0.00015357 0.00014564 0.000137038 0.000127733 0.000116841 0.000101411 7.98141e-05 5.61156e-05 3.19522e-05 1.17493e-05 2.03284e-06 1.86735e-07 9.30726e-08 5.88517e-08 1.42658e-07 1.73609e-06 1.02179e-05 2.91295e-05 5.33537e-05 7.81264e-05 0.000101397 0.000122354 0.000140668 0.000154363 0.000161193 0.000165766 0.000169622 0.00017291 0.000175349 0.000176627 0.000176525 0.000174934 0.000171847 0.000167314 0.000161457 0.00015447 0.000146603 0.000138082 0.000128851 0.000117942 0.000102214 8.04753e-05 5.66153e-05 3.22757e-05 1.18969e-05 2.06244e-06 1.88478e-07 9.32059e-08 5.98106e-08 1.44954e-07 1.76218e-06 1.03503e-05 2.94229e-05 5.3782e-05 7.86572e-05 0.000102007 0.000123024 0.000141382 0.000154862 0.000161658 0.000166273 0.000170189 0.000173534 0.000176019 0.000177331 0.000177256 0.000175687 0.00017262 0.000168107 0.000162275 0.000155325 0.000147513 0.000139063 0.000129898 0.000118971 0.000102965 8.10944e-05 5.70833e-05 3.25794e-05 1.20359e-05 2.09042e-06 1.90127e-07 9.33292e-08 6.07714e-08 1.47197e-07 1.78728e-06 1.04771e-05 2.9703e-05 5.41896e-05 7.91611e-05 0.000102584 0.000123657 0.000142056 0.000155315 0.000162081 0.000166743 0.000170723 0.000174125 0.000176657 0.000178006 0.000177958 0.000176411 0.000173361 0.000168866 0.000163056 0.000156138 0.000148373 0.000139986 0.000130878 0.000119931 0.000103669 8.16745e-05 5.75226e-05 3.28654e-05 1.21675e-05 2.11703e-06 1.91693e-07 9.34425e-08 6.17384e-08 1.49402e-07 1.81157e-06 1.05994e-05 2.99717e-05 5.45783e-05 7.96395e-05 0.000103131 0.000124254 0.00014269 0.00015573 0.000162467 0.000167179 0.000171226 0.000174689 0.000177269 0.000178654 0.000178635 0.000177108 0.000174075 0.000169595 0.000163804 0.000156912 0.000149188 0.000140856 0.000131797 0.000120828 0.000104327 8.22155e-05 5.79324e-05 3.31327e-05 1.2291e-05 2.14212e-06 1.93166e-07 9.35433e-08 6.27097e-08 1.5155e-07 1.83478e-06 1.07159e-05 3.02264e-05 5.49447e-05 8.00883e-05 0.000103641 0.000124812 0.000143281 0.000156107 0.00016282 0.000167585 0.000171702 0.000175228 0.000177857 0.00017928 0.000179288 0.000177782 0.000174765 0.000170299 0.000164523 0.000157654 0.000149964 0.000141677 0.000132659 0.000121665 0.000104938 8.2718e-05 5.83128e-05 3.33813e-05 1.24063e-05 2.16562e-06 1.94539e-07 9.36311e-08 6.36865e-08 1.53661e-07 1.85725e-06 1.08283e-05 3.04703e-05 5.52926e-05 8.05113e-05 0.00010412 0.000125332 0.000143831 0.000156443 0.000163137 0.000167958 0.000172148 0.000175739 0.00017842 0.000179881 0.000179918 0.000178433 0.000175431 0.000170977 0.000165214 0.000158363 0.000150702 0.000142454 0.000133468 0.000122445 0.000105506 8.31831e-05 5.86646e-05 3.36115e-05 1.25135e-05 2.18755e-06 1.95812e-07 9.37025e-08 6.46645e-08 1.55727e-07 1.87886e-06 1.0936e-05 3.07025e-05 5.56211e-05 8.09078e-05 0.000104566 0.000125814 0.00014434 0.000156738 0.000163416 0.000168299 0.000172565 0.000176224 0.000178959 0.00018046 0.000180526 0.000179062 0.000176074 0.000171632 0.00016588 0.000159044 0.000151406 0.000143188 0.000134226 0.000123171 0.00010603 8.36103e-05 5.89867e-05 3.38222e-05 1.26119e-05 2.20775e-06 1.96971e-07 9.37525e-08 6.56435e-08 1.57732e-07 1.89935e-06 1.10379e-05 3.09209e-05 5.59276e-05 8.12749e-05 0.000104976 0.000126257 0.000144805 0.000156982 0.000163648 0.0001686 0.000172947 0.000176678 0.000179469 0.000181012 0.000181108 0.000179666 0.000176694 0.000172263 0.000166521 0.000159698 0.000152078 0.000143884 0.000134938 0.000123844 0.000106512 8.40027e-05 5.92821e-05 3.40154e-05 1.27024e-05 2.22636e-06 1.98022e-07 9.3779e-08 6.66247e-08 1.59688e-07 1.91894e-06 1.11351e-05 3.11273e-05 5.62138e-05 8.16141e-05 0.000105353 0.00012666 0.000145227 0.000157188 0.000163847 0.000168871 0.000173304 0.00017711 0.000179959 0.000181547 0.000181675 0.000180256 0.0001773 0.000172881 0.000167148 0.000160336 0.000152729 0.000144552 0.000135612 0.000124472 0.000106955 8.43607e-05 5.9551e-05 3.41916e-05 1.27853e-05 2.24347e-06 1.98966e-07 9.37793e-08 6.76076e-08 1.61611e-07 1.93791e-06 1.1229e-05 3.13253e-05 5.6485e-05 8.19311e-05 0.0001057 0.000127028 0.000145611 0.000157349 0.000164005 0.000169108 0.000173633 0.000177519 0.00018043 0.000182063 0.000182225 0.00018083 0.000177891 0.000173484 0.000167761 0.000160958 0.000153364 0.000145198 0.000136256 0.000125061 0.000107354 8.46784e-05 5.97866e-05 3.43448e-05 1.28573e-05 2.25829e-06 1.99752e-07 9.37435e-08 6.85932e-08 1.63492e-07 1.95608e-06 1.13188e-05 3.15134e-05 5.67394e-05 8.22247e-05 0.000106018 0.000127362 0.000145955 0.000157453 0.00016411 0.0001693 0.000173925 0.000177896 0.000180873 0.000182554 0.000182751 0.000181381 0.000178461 0.000174068 0.000168357 0.000161565 0.000153982 0.000145825 0.000136874 0.000125615 0.000107715 8.49621e-05 5.9994e-05 3.44784e-05 1.292e-05 2.27121e-06 2.00399e-07 9.36691e-08 6.95819e-08 1.6532e-07 1.97326e-06 1.14036e-05 3.16894e-05 5.69744e-05 8.24918e-05 0.000106303 0.000127658 0.000146258 0.000157514 0.000164176 0.00016946 0.000174192 0.000178253 0.000181299 0.00018303 0.000183263 0.00018192 0.00017902 0.000174643 0.000168945 0.000162167 0.000154597 0.000146448 0.000137485 0.000126153 0.000108048 8.5219e-05 6.01797e-05 3.45978e-05 1.29764e-05 2.28287e-06 2.00946e-07 9.35613e-08 7.0575e-08 1.67102e-07 1.98953e-06 1.14837e-05 3.18538e-05 5.71895e-05 8.27313e-05 0.000106553 0.000127914 0.000146517 0.000157521 0.000164192 0.00016958 0.000174427 0.000178585 0.000181703 0.000183486 0.000183756 0.000182441 0.000179562 0.000175203 0.000169522 0.000162761 0.000155207 0.00014707 0.000138093 0.000126679 0.000108351 8.54468e-05 6.03395e-05 3.4698e-05 1.30234e-05 2.2926e-06 2.01351e-07 9.34128e-08 7.15645e-08 1.68781e-07 2.00399e-06 1.15545e-05 3.19976e-05 5.73735e-05 8.29311e-05 0.000106758 0.00012812 0.000146722 0.00015746 0.000164147 0.000169652 0.000174625 0.000178886 0.000182079 0.000183916 0.000184225 0.000182939 0.000180084 0.000175746 0.000170085 0.000163345 0.000155812 0.000147689 0.000138699 0.000127198 0.000108632 8.56534e-05 6.04808e-05 3.47847e-05 1.30639e-05 2.301e-06 2.01648e-07 9.32242e-08 7.25535e-08 1.70366e-07 2.01677e-06 1.16167e-05 3.2121e-05 5.75255e-05 8.30889e-05 0.000106913 0.00012827 0.00014687 0.000157331 0.000164045 0.00016968 0.00017479 0.00017916 0.000182431 0.000184323 0.000184672 0.000183418 0.00018059 0.000176276 0.00017064 0.000163926 0.00015642 0.000148317 0.000139315 0.00012772 0.000108896 8.58431e-05 6.06078e-05 3.48615e-05 1.30999e-05 2.3085e-06 2.01865e-07 9.30005e-08 7.35436e-08 1.71865e-07 2.02795e-06 1.16705e-05 3.22249e-05 5.76458e-05 8.32043e-05 0.000107017 0.000128363 0.000146957 0.000157125 0.000163882 0.000169666 0.000174923 0.000179404 0.000182755 0.000184702 0.000185093 0.000183874 0.000181076 0.00017679 0.000171183 0.000164501 0.00015703 0.000148954 0.000139947 0.000128251 0.00010914 8.60132e-05 6.07167e-05 3.49244e-05 1.31291e-05 2.31459e-06 2.01969e-07 9.27409e-08 7.45358e-08 1.73263e-07 2.03728e-06 1.17148e-05 3.23066e-05 5.77308e-05 8.32725e-05 0.000107064 0.000128393 0.000146978 0.000156827 0.00016366 0.000169617 0.000175024 0.000179615 0.000183042 0.000185047 0.000185484 0.000184303 0.000181539 0.000177286 0.000171713 0.000165068 0.000157638 0.000149597 0.00014059 0.000128792 0.000109374 8.61729e-05 6.08161e-05 3.49801e-05 1.31545e-05 2.31991e-06 2.02005e-07 9.24533e-08 7.55371e-08 1.74591e-07 2.04519e-06 1.17518e-05 3.23705e-05 5.77856e-05 8.32976e-05 0.000107055 0.000128352 0.000146601 0.000156441 0.000163426 0.000169547 0.000175091 0.000179788 0.000183296 0.000185362 0.000185849 0.000184709 0.000181982 0.000177765 0.000172231 0.000165631 0.00015825 0.000150252 0.000141251 0.000129348 0.000109601 8.63263e-05 6.09107e-05 3.50328e-05 1.31789e-05 2.32502e-06 2.0201e-07 9.21448e-08 7.65445e-08 1.75847e-07 2.05167e-06 1.17812e-05 3.24163e-05 5.78105e-05 8.32819e-05 0.000106995 0.000128254 0.00014612 0.00015598 0.000163125 0.000169419 0.000175109 0.000179918 0.00018351 0.000185641 0.000186179 0.000185083 0.000182397 0.000178222 0.000172733 0.000166184 0.000158858 0.000150913 0.000141925 0.000129917 0.00010982 8.64735e-05 6.09999e-05 3.50813e-05 1.32012e-05 2.32972e-06 2.01971e-07 9.18148e-08 7.75563e-08 1.7703e-07 2.05668e-06 1.18029e-05 3.24436e-05 5.78049e-05 8.32242e-05 0.000106884 0.000128095 0.00014555 0.000155431 0.000162748 0.000169227 0.00017507 0.000179997 0.000183678 0.000185876 0.000186469 0.00018542 0.00018278 0.000178654 0.00017322 0.000166731 0.000159466 0.000151569 0.000142588 0.000130475 0.000110033 8.66159e-05 6.10853e-05 3.5127e-05 1.32221e-05 2.3341e-06 2.01897e-07 9.14669e-08 7.85742e-08 1.78122e-07 2.05991e-06 1.18154e-05 3.24498e-05 5.77656e-05 8.31216e-05 0.000106719 0.000127875 0.000144899 0.000154802 0.000162299 0.000168972 0.000174978 0.000180029 0.000183804 0.000186074 0.000186725 0.000185727 0.000183136 0.000179065 0.000173697 0.000167285 0.000160096 0.000152244 0.000143226 0.000130968 0.000110226 8.67455e-05 6.11636e-05 3.51694e-05 1.32421e-05 2.33839e-06 2.01806e-07 9.11054e-08 7.96061e-08 1.7915e-07 2.06169e-06 1.18203e-05 3.24377e-05 5.76959e-05 8.29767e-05 0.0001065 0.000127593 0.000144169 0.000154095 0.000161779 0.000168656 0.000174833 0.000180017 0.00018389 0.000186235 0.000186945 0.000186 0.000183462 0.000179448 0.000174151 0.000167824 0.000160725 0.000152927 0.000143836 0.000131192 0.00011039 8.68552e-05 6.12281e-05 3.52029e-05 1.3258e-05 2.34191e-06 2.01662e-07 9.07288e-08 8.06575e-08 1.80122e-07 2.06214e-06 1.18184e-05 3.24091e-05 5.75979e-05 8.27915e-05 0.000106231 0.000127252 0.000143354 0.000153303 0.000161185 0.000168277 0.000174635 0.000179957 0.000183934 0.000186358 0.00018713 0.000186238 0.000183753 0.000179799 0.000174575 0.000168336 0.000161328 0.000153588 0.000144422 0.000131392 0.000110535 8.69496e-05 6.12814e-05 3.52289e-05 1.32704e-05 2.34467e-06 2.01465e-07 9.03405e-08 8.17312e-08 1.81051e-07 2.06144e-06 1.18105e-05 3.23653e-05 5.74726e-05 8.25667e-05 0.000105911 0.00012685 0.000142459 0.000152432 0.00016052 0.000167838 0.000174387 0.000179855 0.000183941 0.000186446 0.000187282 0.000186445 0.000184012 0.000180119 0.000174969 0.00016882 0.000161908 0.000154229 0.000144989 0.00013157 0.000110664 8.7034e-05 6.13294e-05 3.5253e-05 1.32823e-05 2.34742e-06 2.01266e-07 8.99479e-08 8.28266e-08 1.81933e-07 2.05949e-06 1.17964e-05 3.23062e-05 5.73203e-05 8.23023e-05 0.00010554 0.000126387 0.000141473 0.00015147 0.000159775 0.000167333 0.000174084 0.000179706 0.000183905 0.000186493 0.000187392 0.000186609 0.000184229 0.000180394 0.000175317 0.000169258 0.000162445 0.000154829 0.00014552 0.000131715 0.000110765 8.70966e-05 6.13608e-05 3.52657e-05 1.32888e-05 2.34904e-06 2.00995e-07 8.95439e-08 8.39466e-08 1.82737e-07 2.0557e-06 1.17729e-05 3.22259e-05 5.7134e-05 8.19913e-05 0.00010511 0.000125856 0.000140389 0.000150411 0.000158948 0.00016676 0.000173726 0.00017951 0.000183825 0.000186498 0.000187462 0.000186731 0.000184402 0.000180624 0.000175618 0.000169649 0.000162933 0.000155384 0.000146009 0.000131824 0.000110838 8.7137e-05 6.13764e-05 3.52684e-05 1.32906e-05 2.34974e-06 2.00666e-07 8.91294e-08 8.50983e-08 1.83493e-07 2.05046e-06 1.17416e-05 3.21265e-05 5.69149e-05 8.16336e-05 0.000104622 0.000125256 0.000139205 0.000149261 0.000158046 0.00016613 0.000173321 0.000179272 0.000183707 0.000186465 0.000187492 0.000186813 0.000184532 0.00018081 0.000175873 0.000169991 0.000163374 0.000155893 0.000146458 0.000131895 0.000110879 8.71543e-05 6.13765e-05 3.5262e-05 1.32887e-05 2.34977e-06 2.00298e-07 8.87083e-08 8.62833e-08 1.84185e-07 2.0435e-06 1.17009e-05 3.20039e-05 5.66566e-05 8.12214e-05 0.000104066 0.000124579 0.000137903 0.000148009 0.000157071 0.000165442 0.000172864 0.000178984 0.000183537 0.000186379 0.000187469 0.00018684 0.000184605 0.000180934 0.000176062 0.000170264 0.000163741 0.000156327 0.000146834 0.000131913 0.000110878 8.71381e-05 6.13519e-05 3.52397e-05 1.32795e-05 2.34834e-06 1.99846e-07 8.82816e-08 8.75053e-08 1.84874e-07 2.0358e-06 1.16552e-05 3.18651e-05 5.63657e-05 8.0758e-05 0.00010344 0.000123736 0.000136481 0.000146699 0.000156064 0.000164726 0.000172373 0.000178656 0.000183326 0.000186253 0.000187407 0.000186828 0.000184639 0.000181017 0.000176207 0.000170489 0.000164056 0.000156708 0.000147159 0.000131882 0.000110836 8.70915e-05 6.13072e-05 3.52063e-05 1.32658e-05 2.34603e-06 1.99344e-07 8.78542e-08 8.87697e-08 1.85545e-07 2.02702e-06 1.16037e-05 3.17097e-05 5.60419e-05 8.02401e-05 0.000102731 0.000122208 0.000134916 0.000145386 0.000155045 0.000163964 0.000171816 0.000178257 0.000183047 0.000186064 0.000187284 0.000186757 0.000184613 0.000181038 0.000176287 0.000170644 0.000164299 0.000157014 0.00014741 0.000131787 0.000110739 8.69995e-05 6.12281e-05 3.51504e-05 1.32417e-05 2.34164e-06 1.98725e-07 8.74216e-08 9.00859e-08 1.86161e-07 2.01658e-06 1.15441e-05 3.15356e-05 5.56871e-05 7.96793e-05 0.000101968 0.000120621 0.000133278 0.000143988 0.000153945 0.000163131 0.000171197 0.000177803 0.000182715 0.000185821 0.000187106 0.000186628 0.000184524 0.000180992 0.000176293 0.00017072 0.000164455 0.000157227 0.00014757 0.000131625 0.000110585 8.68604e-05 6.11127e-05 3.50698e-05 1.32056e-05 2.33476e-06 1.97956e-07 8.69694e-08 9.14734e-08 1.86873e-07 2.00674e-06 1.14867e-05 3.1361e-05 5.53208e-05 7.90923e-05 0.000101164 0.000118959 0.000131563 0.000142526 0.000152791 0.000162252 0.000170539 0.000177311 0.000182346 0.00018554 0.000186888 0.000186456 0.00018439 0.000180894 0.000176242 0.00017073 0.000164535 0.000157357 0.000147648 0.000131396 0.000110375 8.66792e-05 6.09683e-05 3.49723e-05 1.31625e-05 2.32655e-06 1.97111e-07 8.65085e-08 9.29235e-08 1.87553e-07 1.99548e-06 1.14226e-05 3.11698e-05 5.49256e-05 7.84629e-05 0.000100303 0.000117208 0.000129755 0.000140976 0.000151559 0.000161305 0.000169817 0.000176758 0.000181917 0.000185199 0.000186608 0.000186218 0.000184185 0.000180722 0.00017611 0.000170652 0.00016452 0.000157385 0.000147622 0.000131087 0.000110096 8.64412e-05 6.07817e-05 3.48478e-05 1.31071e-05 2.31589e-06 1.96116e-07 8.6029e-08 9.44402e-08 1.8824e-07 1.98337e-06 1.13536e-05 3.09642e-05 5.45014e-05 7.77891e-05 9.93854e-05 0.000115378 0.000127878 0.000139373 0.000150285 0.000160319 0.000169058 0.000176168 0.000181447 0.000184813 0.000186279 0.000185928 0.000183921 0.000180484 0.000175906 0.000170492 0.000164412 0.000157309 0.000147489 0.000130684 0.000109735 8.6136e-05 6.05443e-05 3.46904e-05 1.30366e-05 2.30218e-06 1.94939e-07 8.55298e-08 9.60325e-08 1.88986e-07 1.9712e-06 1.1283e-05 3.07489e-05 5.40528e-05 7.70743e-05 9.8414e-05 0.000113448 0.000125927 0.00013772 0.00014897 0.000159291 0.000168249 0.00017552 0.000180916 0.000184362 0.000185881 0.000185563 0.000183579 0.000180163 0.00017561 0.000170233 0.000164195 0.000157115 0.000147237 0.000130185 0.00010929 8.57599e-05 6.02524e-05 3.44969e-05 1.29494e-05 2.28507e-06 1.93549e-07 8.49973e-08 9.76811e-08 1.89694e-07 1.95746e-06 1.1203e-05 3.05062e-05 5.35527e-05 7.62801e-05 9.70706e-05 0.000111402 0.000123968 0.000136072 0.000147637 0.000158218 0.000167379 0.000174804 0.000180313 0.000183838 0.000185408 0.00018512 0.000183154 0.000179752 0.000175218 0.000169866 0.000163857 0.000156787 0.000146848 0.000129581 0.000108752 8.53084e-05 5.99041e-05 3.42676e-05 1.28462e-05 2.26484e-06 1.91967e-07 8.44331e-08 9.94023e-08 1.9046e-07 1.94378e-06 1.11223e-05 3.0253e-05 5.30199e-05 7.54188e-05 9.50873e-05 0.000109271 0.000122051 0.000134442 0.000146278 0.000157092 0.000166444 0.00017402 0.00017964 0.000183243 0.000184862 0.000184601 0.000182649 0.000179257 0.000174734 0.000169401 0.000163412 0.000156342 0.00014634 0.000128869 0.000108121 8.47797e-05 5.94977e-05 3.40008e-05 1.27261e-05 2.24122e-06 1.90165e-07 8.38285e-08 1.01194e-07 1.91223e-07 1.92925e-06 1.10382e-05 2.99897e-05 5.2466e-05 7.45245e-05 9.30831e-05 0.0001071 0.000120071 0.000132744 0.000144854 0.000155904 0.000165448 0.000173172 0.000178898 0.000182571 0.000184231 0.00018399 0.000182045 0.000178655 0.000174137 0.00016881 0.000162826 0.000155742 0.000145674 0.00012804 0.000107386 8.4166e-05 5.90277e-05 3.36938e-05 1.25884e-05 2.2142e-06 1.88154e-07 8.31908e-08 1.03051e-07 1.91959e-07 1.91347e-06 1.09474e-05 2.9707e-05 5.18755e-05 7.35776e-05 9.1015e-05 0.000104876 0.000118051 0.000131013 0.000143399 0.000154682 0.000164412 0.000172275 0.000178099 0.000181834 0.000183525 0.000183295 0.000181349 0.000177954 0.000173431 0.000168102 0.000162111 0.000155002 0.000144864 0.000127091 0.000106548 8.3467e-05 5.84928e-05 3.33442e-05 1.24312e-05 2.18328e-06 1.85884e-07 8.25009e-08 1.04969e-07 1.92679e-07 1.89671e-06 1.08512e-05 2.9407e-05 5.12512e-05 7.25825e-05 8.88873e-05 0.000102607 0.000115996 0.000129248 0.000141904 0.000153413 0.000163319 0.000171311 0.000177223 0.000181009 0.000182723 0.000182495 0.00018054 0.000177133 0.000172606 0.000167278 0.000161271 0.000154072 0.000143672 0.000125999 0.000105588 8.267e-05 5.78866e-05 3.29514e-05 1.22559e-05 2.14897e-06 1.83404e-07 8.17757e-08 1.06924e-07 1.93296e-07 1.87758e-06 1.07412e-05 2.90705e-05 5.05669e-05 7.15162e-05 8.66818e-05 0.000100303 0.000113929 0.000127469 0.000140381 0.000152097 0.000162165 0.000170277 0.000176267 0.000180094 0.00018182 0.000181583 0.00017961 0.000176187 0.000171646 0.000166305 0.000160263 0.000152963 0.000142329 0.000124767 0.000104504 8.17681e-05 5.71986e-05 3.25035e-05 1.20552e-05 2.10959e-06 1.80585e-07 8.09802e-08 1.08912e-07 1.93853e-07 1.85686e-06 1.06192e-05 2.86923e-05 4.97948e-05 6.98786e-05 8.43949e-05 9.80621e-05 0.000111915 0.000125695 0.000138821 0.000150721 0.000160938 0.00016916 0.00017522 0.00017908 0.000180809 0.000180555 0.000178557 0.000175107 0.000170542 0.000165171 0.000159074 0.000151661 0.000140828 0.000123393 0.000103298 8.07681e-05 5.64401e-05 3.20138e-05 1.18379e-05 2.06721e-06 1.7758e-07 8.01509e-08 1.10931e-07 1.94367e-07 1.83522e-06 1.04916e-05 2.82913e-05 4.89675e-05 6.78049e-05 8.20769e-05 9.5848e-05 0.000109893 0.00012388 0.000137207 0.000149287 0.00015965 0.000167975 0.000174094 0.000177973 0.000179691 0.000179409 0.000177375 0.000173891 0.000169293 0.000163882 0.000157719 0.000150188 0.000139173 0.000121877 0.000101966 7.96644e-05 5.56019e-05 3.14718e-05 1.1597e-05 2.02024e-06 1.74259e-07 7.92517e-08 1.12968e-07 1.94739e-07 1.81122e-06 1.03528e-05 2.78626e-05 4.80941e-05 6.56994e-05 7.97174e-05 9.35805e-05 0.000107819 0.000122022 0.000135556 0.000147816 0.000158318 0.000166734 0.000172895 0.000176774 0.000178463 0.000178136 0.000176053 0.000172521 0.000167874 0.000162403 0.000156154 0.000148501 0.000137347 0.000120208 0.000100502 7.84528e-05 5.46848e-05 3.08817e-05 1.13364e-05 1.96968e-06 1.70722e-07 7.83203e-08 1.15014e-07 1.94982e-07 1.78516e-06 1.02027e-05 2.74023e-05 4.71664e-05 6.35453e-05 7.73145e-05 9.12728e-05 0.000105707 0.000120127 0.000133867 0.000146302 0.000156934 0.000165429 0.000171616 0.000175479 0.000177121 0.000176733 0.000174589 0.000171001 0.000166299 0.000160763 0.000154423 0.000146649 0.00013537 0.000118403 9.89215e-05 7.71461e-05 5.3697e-05 3.02471e-05 1.1057e-05 1.91555e-06 1.66923e-07 7.73191e-08 1.17048e-07 1.95063e-07 1.75666e-06 1.00396e-05 2.69081e-05 4.61818e-05 6.1338e-05 7.48727e-05 8.8935e-05 0.00010357 0.000118208 0.00013215 0.000144752 0.000155501 0.000164056 0.000170249 0.000174075 0.000175651 0.000175184 0.000172959 0.000169296 0.000164523 0.000158903 0.000152456 0.000144559 0.000133212 0.000116433 9.71977e-05 7.57225e-05 5.26226e-05 2.95593e-05 1.07559e-05 1.85758e-06 1.629e-07 7.62887e-08 1.1904e-07 1.94949e-07 1.72489e-06 9.85608e-06 2.63603e-05 4.51187e-05 5.90608e-05 7.23968e-05 8.65781e-05 0.000101412 0.000116258 0.000130392 0.00014315 0.000154004 0.000162604 0.000168786 0.000172556 0.000174051 0.000173493 0.000171179 0.000167432 0.000162577 0.000156867 0.000150311 0.000142301 0.000130913 0.00011434 9.53692e-05 7.42148e-05 5.14859e-05 2.88321e-05 1.04385e-05 1.79658e-06 1.58641e-07 7.51839e-08 1.20988e-07 1.94973e-07 1.69271e-06 9.65672e-06 2.5745e-05 4.37132e-05 5.67304e-05 6.99603e-05 8.42543e-05 9.92534e-05 0.000114279 0.000128587 0.000141491 0.000152438 0.000161067 0.000167217 0.00017091 0.000172303 0.000171638 0.000169224 0.000165384 0.000160434 0.000154617 0.000147938 0.000139817 0.000128441 0.000112095 9.34124e-05 7.26067e-05 5.028e-05 2.80672e-05 1.01083e-05 1.73373e-06 1.5429e-07 7.40764e-08 1.22878e-07 1.96116e-07 1.66275e-06 9.44188e-06 2.50465e-05 4.1666e-05 5.43704e-05 6.7585e-05 8.19454e-05 9.70631e-05 0.000112248 0.000126728 0.000139777 0.00015081 0.000159453 0.00016555 0.000169143 0.000170415 0.000169629 0.000167106 0.000163169 0.000158126 0.000152205 0.000145408 0.000137189 0.000125844 0.000109739 9.13612e-05 7.09207e-05 4.90139e-05 2.72625e-05 9.76127e-06 1.6678e-06 1.49701e-07 7.28959e-08 1.24732e-07 2.00424e-07 1.63743e-06 9.21876e-06 2.43138e-05 3.96577e-05 5.2024e-05 6.51771e-05 7.95889e-05 9.48358e-05 0.000110199 0.000124864 0.000138057 0.000149161 0.000157789 0.000163801 0.000167263 0.000168385 0.000167456 0.000164808 0.000160763 0.000155617 0.000149582 0.00014266 0.000134351 0.000123101 0.000107259 8.92101e-05 6.91621e-05 4.77035e-05 2.64387e-05 9.41084e-06 1.60191e-06 1.4515e-07 7.17425e-08 1.26468e-07 2.03659e-07 1.59525e-06 8.92852e-06 2.34765e-05 3.76187e-05 4.96548e-05 6.27392e-05 7.71987e-05 9.25781e-05 0.000108127 0.000122982 0.000136317 0.000147477 0.000156067 0.000161962 0.000165262 0.00016621 0.000165121 0.000162339 0.000158186 0.000152943 0.000146808 0.000139782 0.000131406 0.000120259 0.000104693 8.69867e-05 6.73433e-05 4.63451e-05 2.55823e-05 9.0469e-06 1.53362e-06 1.40395e-07 7.05135e-08 1.28098e-07 2.03761e-07 1.54189e-06 8.61197e-06 2.26031e-05 3.56005e-05 4.72948e-05 6.029e-05 7.47887e-05 9.03071e-05 0.000106056 0.000121111 0.000134583 0.000145778 0.000154296 0.000160036 0.000163138 0.000163883 0.000162612 0.00015968 0.000155404 0.000150051 0.000143806 0.00013667 0.000128244 0.000117286 0.00010202 8.46805e-05 6.5468e-05 4.49563e-05 2.47171e-05 8.68453e-06 1.46639e-06 1.35756e-07 6.93325e-08 1.29606e-07 2.02195e-07 1.47999e-06 8.26166e-06 2.16671e-05 3.35708e-05 4.49212e-05 5.7814e-05 7.23493e-05 8.80158e-05 0.000103978 0.000119238 0.000132838 0.000144044 0.000152455 0.000158004 0.000160878 0.000161398 0.000159933 0.000156849 0.000152456 0.000147008 0.000140674 0.000133458 0.000125012 0.000114246 9.92932e-05 8.23296e-05 6.35545e-05 4.35354e-05 2.38291e-05 8.31348e-06 1.39777e-06 1.30966e-07 6.80722e-08 1.30992e-07 1.99682e-07 1.41308e-06 7.88964e-06 2.06905e-05 3.15556e-05 4.25606e-05 5.5339e-05 6.99093e-05 8.57341e-05 0.000101921 0.00011739 0.000131101 0.000142282 0.000150541 0.000155857 0.000158468 0.000158739 0.000157064 0.000153816 0.000149296 0.000143741 0.000137307 0.000130007 0.000121567 0.000111098 9.64821e-05 7.99203e-05 6.16085e-05 4.21057e-05 2.29489e-05 7.95215e-06 1.33187e-06 1.2642e-07 6.6899e-08 1.3224e-07 1.96406e-07 1.33949e-06 7.48512e-06 1.9654e-05 2.95345e-05 4.01955e-05 5.28503e-05 6.74545e-05 8.34457e-05 9.98662e-05 0.000115537 0.000129333 0.000140447 0.000148514 0.000153567 0.0001559 0.000155919 0.000154037 0.000150634 0.000146002 0.000140366 0.000133868 0.000126525 0.000118095 0.00010778 9.36427e-05 7.74897e-05 5.96427e-05 4.06556e-05 2.20517e-05 7.58433e-06 1.26494e-06 1.21736e-07 6.56432e-08 1.3334e-07 1.92652e-07 1.2619e-06 7.05673e-06 1.85735e-05 2.7532e-05 3.78606e-05 5.03863e-05 6.5023e-05 8.11862e-05 9.78404e-05 0.000113688 0.00012751 0.00013848 0.000146292 0.000151059 0.000153125 0.00015291 0.00015083 0.000147269 0.000142519 0.000136794 0.000130225 0.000122825 0.000114386 0.000104233 9.07245e-05 7.50108e-05 5.7657e-05 3.92096e-05 2.11721e-05 7.23037e-06 1.20146e-06 1.17363e-07 6.4506e-08 1.34275e-07 1.88395e-07 1.17842e-06 6.58849e-06 1.7313e-05 2.55356e-05 3.55563e-05 4.79334e-05 6.25861e-05 7.89187e-05 9.58014e-05 0.00011179 0.000125555 0.000136286 0.000143786 0.000148282 0.000150142 0.000149757 0.000147522 0.000143824 0.000138969 0.000133175 0.000126565 0.00011915 0.000110748 0.000100778 8.78272e-05 7.25504e-05 5.56827e-05 3.77659e-05 2.029e-05 6.87621e-06 1.13804e-06 1.129e-07 6.32767e-08 1.35047e-07 1.84031e-07 1.09515e-06 6.10558e-06 1.57679e-05 2.35913e-05 3.33241e-05 4.55204e-05 6.01765e-05 7.6699e-05 9.38439e-05 0.00010996 0.000123457 0.000133085 0.000139639 0.000144211 0.000146878 0.000146686 0.000144243 0.000140301 0.000135266 0.000129359 0.000122685 0.00011524 0.000106869 9.71167e-05 8.48643e-05 7.00556e-05 5.37027e-05 3.63391e-05 1.94345e-05 6.53956e-06 1.07868e-06 1.08813e-07 6.21997e-08 1.35664e-07 1.79529e-07 1.01236e-06 5.62569e-06 1.43018e-05 2.16908e-05 3.10882e-05 4.30846e-05 5.77556e-05 7.45016e-05 9.19143e-05 0.000107996 0.000120547 0.000128886 0.000135235 0.000139644 0.000142203 0.000143023 0.000141075 0.000136946 0.000131641 0.000125565 0.000118829 0.0001114 0.000103121 9.36085e-05 8.1949e-05 6.76006e-05 5.17486e-05 3.49224e-05 1.85793e-05 6.20324e-06 1.01935e-06 1.046e-07 6.09939e-08 1.36129e-07 1.7497e-07 9.3092e-07 5.14973e-06 1.28926e-05 1.98463e-05 2.89009e-05 4.07023e-05 5.54111e-05 7.24057e-05 9.0036e-05 0.000105785 0.000116463 0.000124541 0.000130656 0.000134876 0.000137306 0.000138069 0.000137238 0.000133496 0.000127961 0.000121623 0.000114744 0.000107282 9.90793e-05 8.98457e-05 7.89555e-05 6.51055e-05 4.97894e-05 3.3528e-05 1.7757e-05 5.88756e-06 9.6472e-07 1.00832e-07 5.99707e-08 1.36403e-07 1.70251e-07 8.49329e-07 4.67064e-06 1.15408e-05 1.80417e-05 2.67209e-05 3.83008e-05 5.30452e-05 7.02855e-05 8.79486e-05 0.000102466 0.000112215 0.000120017 0.000125887 0.000129913 0.000132218 0.000132932 0.000132131 0.000129806 0.000124393 0.000117842 0.000110801 0.000103324 9.52493e-05 8.63005e-05 7.59139e-05 6.26596e-05 4.78582e-05 3.2139e-05 1.69283e-05 5.56833e-06 9.09222e-07 9.68329e-08 5.87609e-08 1.36509e-07 1.65609e-07 7.71531e-07 4.20846e-06 1.02627e-05 1.6307e-05 2.45979e-05 3.59541e-05 5.0754e-05 6.82471e-05 8.57926e-05 9.84254e-05 0.000107857 0.000115349 0.000120944 0.000124754 0.000126917 0.000127576 0.0001268 0.000124643 0.000120414 0.000113902 0.000106693 9.91496e-05 9.11548e-05 8.24276e-05 7.2478e-05 6.0171e-05 4.59395e-05 3.07992e-05 1.61562e-05 5.28053e-06 8.60438e-07 9.34489e-08 5.77985e-08 1.36395e-07 1.60807e-07 6.93976e-07 3.74651e-06 9.04026e-06 1.46135e-05 2.24813e-05 3.35756e-05 4.84094e-05 6.61101e-05 8.32345e-05 9.41901e-05 0.00010329 0.000110463 0.000115783 0.000119384 0.000121421 0.000122046 0.000121326 0.000119299 0.000116029 0.000110044 0.000102794 9.52176e-05 8.73256e-05 7.88342e-05 6.92834e-05 5.77078e-05 4.40136e-05 2.94292e-05 1.5352e-05 4.97826e-06 8.08542e-07 8.95921e-08 5.65638e-08 1.36094e-07 1.5621e-07 6.2264e-07 3.31524e-06 7.90729e-06 1.3011e-05 2.0444e-05 3.12751e-05 4.61597e-05 6.38771e-05 7.92719e-05 8.98636e-05 9.85842e-05 0.000105399 0.000110414 0.000113789 0.000115691 0.000116284 0.000115625 0.000113736 0.000110672 0.000105751 9.86338e-05 9.10144e-05 8.31659e-05 7.48746e-05 6.57803e-05 5.52229e-05 4.21268e-05 2.81349e-05 1.46212e-05 4.71294e-06 7.65307e-07 8.72278e-08 5.56671e-08 1.35585e-07 1.51496e-07 5.52217e-07 2.89018e-06 6.83339e-06 1.14597e-05 1.84242e-05 2.89426e-05 4.38577e-05 6.16196e-05 7.5078e-05 8.52773e-05 9.36009e-05 0.000100054 0.000104774 0.000107943 0.000109743 0.000110343 0.000109789 0.000108081 0.000105265 0.000101353 9.46802e-05 8.71197e-05 7.93775e-05 7.13214e-05 6.26213e-05 5.27289e-05 4.01783e-05 2.67525e-05 1.38226e-05 4.42845e-06 7.22236e-07 8.56072e-08 5.43666e-08 1.34883e-07 1.47081e-07 4.89857e-07 2.50707e-06 5.86014e-06 1.00171e-05 1.65066e-05 2.67121e-05 4.1676e-05 5.93722e-05 7.07812e-05 8.05342e-05 8.84106e-05 9.44629e-05 9.88665e-05 0.000101825 0.000103532 0.000104158 0.000103733 0.00010223 9.9682e-05 9.6092e-05 9.02616e-05 8.28766e-05 7.52411e-05 6.74123e-05 5.91083e-05 4.98519e-05 3.83373e-05 2.5533e-05 1.31707e-05 4.21102e-06 6.90668e-07 8.4445e-08 5.35504e-08 1.33961e-07 1.42552e-07 4.28635e-07 2.13305e-06 4.94505e-06 8.62557e-06 1.46e-05 2.44231e-05 3.92147e-05 5.52386e-05 6.61762e-05 7.54363e-05 8.28416e-05 8.84935e-05 9.2602e-05 9.53885e-05 9.7052e-05 9.77631e-05 9.75278e-05 9.62885e-05 9.40625e-05 9.08407e-05 8.61282e-05 7.90601e-05 7.16169e-05 6.40483e-05 5.60905e-05 4.72732e-05 3.64156e-05 2.41824e-05 1.2405e-05 3.94348e-06 6.48232e-07 8.15504e-08 5.21218e-08 1.32832e-07 1.38391e-07 3.77197e-07 1.81305e-06 4.14734e-06 7.37619e-06 1.28452e-05 2.23172e-05 3.70645e-05 5.1073e-05 6.14439e-05 7.01224e-05 7.69906e-05 8.22042e-05 8.60044e-05 8.86213e-05 9.02601e-05 9.10878e-05 9.10757e-05 9.01294e-05 8.82491e-05 8.54048e-05 8.14706e-05 7.46595e-05 6.74217e-05 6.01279e-05 5.25508e-05 4.43297e-05 3.46405e-05 2.30441e-05 1.18142e-05 3.74634e-06 6.17292e-07 7.95812e-08 5.13618e-08 1.31466e-07 1.3406e-07 3.26154e-07 1.49837e-06 3.39444e-06 6.16222e-06 1.1068e-05 2.00774e-05 3.47504e-05 4.64323e-05 5.61885e-05 6.42695e-05 7.06182e-05 7.54401e-05 7.89978e-05 8.15176e-05 8.32087e-05 8.42358e-05 8.45256e-05 8.3948e-05 8.24825e-05 8.00606e-05 7.66399e-05 7.09163e-05 6.40124e-05 5.69813e-05 4.97376e-05 4.1932e-05 3.2804e-05 2.17519e-05 1.10808e-05 3.4896e-06 5.75017e-07 7.59718e-08 4.97459e-08 1.29818e-07 1.3016e-07 2.87455e-07 1.2522e-06 2.7748e-06 5.11511e-06 9.47163e-06 1.79767e-05 3.16795e-05 4.17766e-05 5.07864e-05 5.81652e-05 6.39344e-05 6.83461e-05 7.16703e-05 7.41149e-05 7.5862e-05 7.70889e-05 7.76993e-05 7.74965e-05 7.64053e-05 7.43621e-05 7.1364e-05 6.62034e-05 5.96229e-05 5.29272e-05 4.61063e-05 3.89118e-05 3.09189e-05 2.05353e-05 1.0443e-05 3.27453e-06 5.4045e-07 7.35091e-08 4.89294e-08 1.27856e-07 1.25965e-07 2.48203e-07 1.00733e-06 2.1903e-06 4.08997e-06 7.80201e-06 1.55223e-05 2.72063e-05 3.64052e-05 4.45985e-05 5.12944e-05 5.6571e-05 6.07003e-05 6.39381e-05 6.64597e-05 6.83956e-05 6.99264e-05 7.09503e-05 7.1181e-05 7.05507e-05 6.90213e-05 6.6572e-05 6.27511e-05 5.65812e-05 5.01483e-05 4.36336e-05 3.68197e-05 2.93352e-05 1.94392e-05 9.8267e-06 3.05988e-06 5.04241e-07 6.99217e-08 4.71334e-08 1.25417e-07 1.22199e-07 2.24716e-07 8.51098e-07 1.76732e-06 3.28298e-06 6.38835e-06 1.33363e-05 2.29187e-05 3.10255e-05 3.82263e-05 4.41179e-05 4.88348e-05 5.26515e-05 5.57966e-05 5.84328e-05 6.06424e-05 6.24561e-05 6.37741e-05 6.43498e-05 6.41042e-05 6.29824e-05 6.09523e-05 5.75766e-05 5.18274e-05 4.58688e-05 3.98809e-05 3.36491e-05 2.68384e-05 1.78666e-05 8.97036e-06 2.77216e-06 4.58819e-07 6.64728e-08 4.59483e-08 1.22479e-07 1.17897e-07 1.9906e-07 6.89147e-07 1.36501e-06 2.46937e-06 4.7881e-06 1.0323e-05 1.76448e-05 2.44647e-05 3.06986e-05 3.5932e-05 4.02618e-05 4.39229e-05 4.71364e-05 5.00737e-05 5.27434e-05 5.50703e-05 5.68861e-05 5.79855e-05 5.83229e-05 5.78313e-05 5.6462e-05 5.41592e-05 4.92457e-05 4.35678e-05 3.78244e-05 3.18736e-05 2.54381e-05 1.72343e-05 8.65442e-06 2.66189e-06 4.37798e-07 6.3709e-08 4.42192e-08 1.18797e-07 1.13997e-07 1.93638e-07 6.47832e-07 1.19911e-06 2.02614e-06 3.71701e-06 7.89237e-06 1.30189e-05 1.83162e-05 2.34273e-05 2.79277e-05 3.18078e-05 3.52244e-05 3.84502e-05 4.15682e-05 4.4528e-05 4.72222e-05 4.94783e-05 5.10212e-05 5.17095e-05 5.15662e-05 5.05496e-05 4.8611e-05 4.41972e-05 3.91382e-05 3.4036e-05 2.87014e-05 2.2896e-05 1.51827e-05 7.49358e-06 2.27973e-06 3.79649e-07 5.88945e-08 4.22772e-08 1.14334e-07 1.09081e-07 1.81527e-07 5.85465e-07 1.05567e-06 1.66331e-06 2.73933e-06 5.16419e-06 7.95278e-06 1.1207e-05 1.49197e-05 1.87427e-05 2.24425e-05 2.59074e-05 2.93108e-05 3.27026e-05 3.60317e-05 3.91947e-05 4.20449e-05 4.43665e-05 4.58956e-05 4.64485e-05 4.60925e-05 4.48399e-05 4.14085e-05 3.66623e-05 3.17505e-05 2.66567e-05 2.12651e-05 1.48898e-05 7.43734e-06 2.26519e-06 3.72817e-07 5.73422e-08 4.1183e-08 1.08948e-07 1.04351e-07 1.87355e-07 6.31485e-07 1.18766e-06 1.85986e-06 2.92228e-06 4.67695e-06 5.97287e-06 7.54521e-06 9.52249e-06 1.19866e-05 1.49308e-05 1.8195e-05 2.15703e-05 2.50443e-05 2.85301e-05 3.19087e-05 3.50434e-05 3.77671e-05 3.98774e-05 4.111e-05 4.12135e-05 4.02814e-05 3.79454e-05 3.38301e-05 2.94587e-05 2.48827e-05 1.99713e-05 1.34439e-05 6.59509e-06 1.98383e-06 3.3006e-07 5.32303e-08 3.91126e-08 1.01985e-07 9.83866e-08 1.88883e-07 6.51363e-07 1.29812e-06 2.07364e-06 3.21997e-06 4.36594e-06 5.17566e-06 5.97445e-06 6.83582e-06 7.86884e-06 9.23454e-06 1.11304e-05 1.37057e-05 1.69059e-05 2.03879e-05 2.39427e-05 2.73923e-05 3.05317e-05 3.31627e-05 3.50568e-05 3.5898e-05 3.54135e-05 3.29145e-05 2.91584e-05 2.50546e-05 2.08884e-05 1.65329e-05 1.16116e-05 5.78304e-06 1.79188e-06 3.05598e-07 5.1514e-08 3.90242e-08 9.51543e-08 9.42715e-08 2.0736e-07 7.50435e-07 1.79943e-06 2.98357e-06 4.01565e-06 4.85206e-06 5.54857e-06 6.173e-06 6.78604e-06 7.44569e-06 8.21716e-06 9.18681e-06 1.0484e-05 1.23032e-05 1.48738e-05 1.82801e-05 2.21478e-05 2.60545e-05 2.97557e-05 3.3006e-05 3.55644e-05 3.71047e-05 3.62116e-05 3.32362e-05 2.92008e-05 2.46305e-05 1.97968e-05 1.46625e-05 7.32576e-06 2.13057e-06 3.34889e-07 5.36938e-08 4.01696e-08 9.05438e-08 9.56155e-08 2.75226e-07 1.0578e-06 2.48116e-06 3.98391e-06 5.17949e-06 6.08617e-06 6.84728e-06 7.58037e-06 8.37287e-06 9.3038e-06 1.04538e-05 1.18972e-05 1.36787e-05 1.5787e-05 1.81378e-05 2.05577e-05 2.28063e-05 2.46517e-05 2.58225e-05 2.6179e-05 2.57267e-05 2.4552e-05 2.27768e-05 2.05522e-05 1.79674e-05 1.50822e-05 1.1902e-05 8.40633e-06 4.71526e-06 1.67087e-06 3.0428e-07 5.08992e-08 3.77663e-08 9.29267e-08 1.07644e-07 4.15882e-07 1.57986e-06 3.27488e-06 4.60475e-06 5.51653e-06 6.26979e-06 7.01488e-06 7.82269e-06 8.7436e-06 9.84199e-06 1.12191e-05 1.30256e-05 1.54569e-05 1.87209e-05 2.29828e-05 2.83023e-05 3.45726e-05 4.14525e-05 4.83475e-05 5.45209e-05 5.91558e-05 6.15127e-05 6.10631e-05 5.70457e-05 4.06036e-05 2.82972e-05 1.98223e-05 1.33831e-05 6.66785e-06 1.52219e-06 2.16611e-07 4.20699e-08 3.26353e-08 7.33136e-08 1.50033e-07 1.18153e-06 3.76012e-06 4.86884e-06 5.29974e-06 5.83676e-06 6.49063e-06 7.22196e-06 8.02063e-06 8.88571e-06 9.81542e-06 1.08031e-05 1.18341e-05 1.28804e-05 1.38958e-05 1.48104e-05 1.55298e-05 1.59243e-05 1.60166e-05 1.57585e-05 1.51164e-05 1.40996e-05 1.27482e-05 1.11235e-05 9.29804e-06 7.35239e-06 5.38923e-06 3.50972e-06 1.89952e-06 7.682e-07 2.08392e-07 4.18439e-08 1.3646e-08 1.12851e-08 3.59647e-08 2.08864e-06 2.49086e-06 2.70978e-06 2.91991e-06 3.07609e-06 3.18448e-06 3.25824e-06 3.30449e-06 3.32792e-06 3.33202e-06 3.31958e-06 3.2928e-06 3.25343e-06 3.2028e-06 3.14189e-06 3.07121e-06 2.9906e-06 2.89805e-06 2.79537e-06 2.68027e-06 2.55038e-06 2.4027e-06 2.23401e-06 2.04081e-06 1.82003e-06 1.57008e-06 1.29294e-06 9.97477e-07 7.05879e-07 4.52424e-07 2.70467e-07 1.60753e-07 9.26954e-08 1.55571e-09 4.44767e-11 4.10439e-09 7.65264e-09 1.1896e-08 1.70773e-08 2.3427e-08 3.1126e-08 4.02774e-08 5.08911e-08 6.28831e-08 7.60867e-08 9.02735e-08 1.05176e-07 1.20508e-07 1.35973e-07 1.51272e-07 1.661e-07 1.80138e-07 1.93047e-07 2.04441e-07 2.13984e-07 2.21329e-07 2.26142e-07 2.28146e-07 2.27158e-07 2.23137e-07 2.16223e-07 2.0676e-07 1.9529e-07 1.82508e-07 1.69277e-07 1.56754e-07 1.44456e-07 1.22107e-07 3.43699e-09 1.00448e-10 1.01006e-10 1.91338e-10 8.55191e-10 3.3997e-09 1.01091e-08 2.39494e-08 4.79125e-08 8.41054e-08 1.3281e-07 1.91871e-07 2.56709e-07 3.21018e-07 3.77963e-07 4.21577e-07 4.47959e-07 4.55952e-07 4.47126e-07 4.25076e-07 3.94676e-07 3.60617e-07 3.26895e-07 2.97549e-07 2.7291e-07 2.52901e-07 2.37054e-07 2.24307e-07 2.12639e-07 1.97955e-07 1.72224e-07 1.21861e-07 5.85157e-08 2.03614e-08 1.03221e-08 1.01509e-08 2.65956e-10 2.93148e-10 8.53073e-10 4.23517e-09 1.56585e-08 4.29386e-08 9.48281e-08 1.78453e-07 2.96215e-07 4.43644e-07 6.09752e-07 7.79737e-07 9.3848e-07 1.07335e-06 1.17573e-06 1.24138e-06 1.26986e-06 1.2629e-06 1.2227e-06 1.15462e-06 1.06494e-06 9.59796e-07 8.45616e-07 7.2873e-07 6.15147e-07 5.10097e-07 4.16937e-07 3.34942e-07 2.56324e-07 1.70314e-07 8.70629e-08 3.53015e-08 1.73601e-08 1.53807e-08 1.69154e-08 8.94028e-10 9.6542e-10 2.57483e-09 1.24428e-08 4.66798e-08 1.32515e-07 3.06009e-07 6.01254e-07 1.03085e-06 1.57123e-06 2.16667e-06 2.7481e-06 3.25253e-06 3.63496e-06 3.8722e-06 3.96146e-06 3.91613e-06 3.75992e-06 3.51764e-06 3.21889e-06 2.88934e-06 2.54898e-06 2.21232e-06 1.88917e-06 1.58577e-06 1.30492e-06 1.04384e-06 7.90356e-07 5.29427e-07 2.82491e-07 1.14176e-07 4.03685e-08 2.13113e-08 2.03203e-08 2.22442e-08 2.10706e-09 2.26647e-09 6.57246e-09 3.4281e-08 1.35835e-07 4.05435e-07 9.66596e-07 1.89604e-06 3.13318e-06 4.49484e-06 5.78022e-06 6.84521e-06 7.61222e-06 8.05316e-06 8.1736e-06 8.00366e-06 7.59237e-06 7.00321e-06 6.30239e-06 5.55356e-06 4.80869e-06 4.10422e-06 3.46072e-06 2.88492e-06 2.37223e-06 1.90838e-06 1.47138e-06 1.04168e-06 6.22706e-07 3.07522e-07 1.21747e-07 4.38708e-08 2.4455e-08 2.355e-08 2.55365e-08 2.96507e-09 3.28135e-09 1.14592e-08 6.44562e-08 2.57828e-07 7.50524e-07 1.68313e-06 3.03286e-06 4.60367e-06 6.17043e-06 7.5764e-06 8.73687e-06 9.61065e-06 1.01781e-05 1.04331e-05 1.03831e-05 1.00487e-05 9.45916e-06 8.66014e-06 7.7342e-06 6.75293e-06 5.77657e-06 4.84881e-06 3.99331e-06 3.21373e-06 2.49789e-06 1.72629e-06 1.0255e-06 5.65937e-07 3.0193e-07 1.33263e-07 4.8443e-08 2.69441e-08 2.58596e-08 2.79584e-08 3.44397e-09 3.8261e-09 1.37247e-08 7.71024e-08 3.03888e-07 8.71209e-07 1.93489e-06 3.47588e-06 5.2812e-06 7.09106e-06 8.58406e-06 9.71353e-06 1.07462e-05 1.16869e-05 1.23809e-05 1.25518e-05 1.24327e-05 1.20105e-05 1.13147e-05 1.04069e-05 9.34498e-06 8.18729e-06 6.98733e-06 5.78754e-06 4.61585e-06 3.27783e-06 2.02856e-06 1.16953e-06 6.45542e-07 3.48027e-07 1.60473e-07 5.65633e-08 3.00319e-08 2.85301e-08 3.08364e-08 4.00077e-09 4.55532e-09 1.81799e-08 1.0564e-07 4.20895e-07 1.20814e-06 2.6493e-06 4.6487e-06 6.88373e-06 9.03811e-06 1.05602e-05 1.19128e-05 1.318e-05 1.43414e-05 1.50585e-05 1.52463e-05 1.51342e-05 1.47247e-05 1.40355e-05 1.312e-05 1.20093e-05 1.07326e-05 9.32233e-06 7.81271e-06 6.24383e-06 4.15119e-06 2.50442e-06 1.43369e-06 7.93651e-07 4.28973e-07 2.01722e-07 6.80811e-08 3.37007e-08 3.1377e-08 3.38446e-08 4.3736e-09 5.06038e-09 2.13868e-08 1.25375e-07 4.96319e-07 1.409e-06 3.05125e-06 5.29879e-06 7.79981e-06 1.02241e-05 1.19255e-05 1.34749e-05 1.49683e-05 1.64095e-05 1.75322e-05 1.79176e-05 1.797e-05 1.7698e-05 1.71139e-05 1.62593e-05 1.51469e-05 1.37844e-05 1.21816e-05 1.03563e-05 8.21623e-06 5.35256e-06 3.228e-06 1.85765e-06 1.03413e-06 5.59366e-07 2.67788e-07 8.57231e-08 3.82438e-08 3.43434e-08 3.69225e-08 4.80919e-09 5.67482e-09 2.55244e-08 1.5163e-07 6.01398e-07 1.70351e-06 3.66028e-06 6.28728e-06 9.16228e-06 1.1923e-05 1.38945e-05 1.5716e-05 1.74946e-05 1.92131e-05 2.03599e-05 2.08819e-05 2.10474e-05 2.08756e-05 2.03823e-05 1.95801e-05 1.84674e-05 1.70331e-05 1.5261e-05 1.31466e-05 1.02484e-05 6.75613e-06 4.14033e-06 2.42427e-06 1.37039e-06 7.48382e-07 3.63693e-07 1.1111e-07 4.38898e-08 3.74179e-08 4.00349e-08 5.31134e-09 6.41513e-09 3.09274e-08 1.86249e-07 7.38882e-07 2.07901e-06 4.40743e-06 7.45673e-06 1.07343e-05 1.38473e-05 1.60817e-05 1.81713e-05 2.02264e-05 2.22283e-05 2.36203e-05 2.43095e-05 2.46068e-05 2.45315e-05 2.40968e-05 2.33057e-05 2.21462e-05 2.05917e-05 1.86072e-05 1.61716e-05 1.22624e-05 8.22966e-06 5.16252e-06 3.09292e-06 1.78407e-06 9.89237e-07 4.90464e-07 1.44792e-07 5.06467e-08 4.04963e-08 4.30646e-08 5.79786e-09 7.14311e-09 3.63159e-08 2.20536e-07 8.7336e-07 2.44045e-06 5.11601e-06 8.55962e-06 1.22244e-05 1.57105e-05 1.82916e-05 2.06748e-05 2.30368e-05 2.53518e-05 2.69285e-05 2.78288e-05 2.83039e-05 2.83659e-05 2.802e-05 2.72605e-05 2.60622e-05 2.43842e-05 2.21772e-05 1.93515e-05 1.44276e-05 9.86038e-06 6.33759e-06 3.89079e-06 2.29545e-06 1.29756e-06 6.59181e-07 1.90406e-07 5.89021e-08 4.3602e-08 4.60199e-08 6.35429e-09 8.02034e-09 4.33295e-08 2.65811e-07 1.05198e-06 2.91703e-06 6.03059e-06 9.94598e-06 1.40499e-05 1.79288e-05 2.08595e-05 2.35451e-05 2.62112e-05 2.88263e-05 3.05735e-05 3.16623e-05 3.22909e-05 3.24642e-05 3.21795e-05 3.14216e-05 3.01524e-05 2.83183e-05 2.58601e-05 2.20149e-05 1.65993e-05 1.15761e-05 7.61715e-06 4.79018e-06 2.89103e-06 1.66675e-06 8.59558e-07 2.42705e-07 6.65988e-08 4.66279e-08 4.88856e-08 6.92138e-09 8.93687e-09 5.08759e-08 3.14408e-07 1.24146e-06 3.41183e-06 6.95826e-06 1.13327e-05 1.58698e-05 2.01483e-05 2.34855e-05 2.64872e-05 2.94547e-05 3.23074e-05 3.43366e-05 3.56368e-05 3.64352e-05 3.67272e-05 3.65012e-05 3.57345e-05 3.43766e-05 3.23641e-05 2.96329e-05 2.47337e-05 1.88396e-05 1.33888e-05 9.00629e-06 5.7943e-06 3.57503e-06 2.10269e-06 1.10305e-06 3.08675e-07 7.72329e-08 4.97148e-08 5.16612e-08 7.51447e-09 9.938e-09 5.95527e-08 3.70527e-07 1.45933e-06 3.97243e-06 7.98863e-06 1.28485e-05 1.78373e-05 2.25295e-05 2.63247e-05 2.96553e-05 3.29033e-05 3.59024e-05 3.8257e-05 3.97605e-05 4.07179e-05 4.11138e-05 4.09275e-05 4.01306e-05 3.86617e-05 3.64506e-05 3.32455e-05 2.74898e-05 2.11381e-05 1.528e-05 1.0489e-05 6.89279e-06 4.3421e-06 2.60381e-06 1.3906e-06 3.88633e-07 9.00415e-08 5.28493e-08 5.43522e-08 8.13817e-09 1.10268e-08 6.93376e-08 4.33916e-07 1.70374e-06 4.5902e-06 9.10074e-06 1.44606e-05 1.99123e-05 2.50285e-05 2.93089e-05 3.2961e-05 3.64138e-05 3.9649e-05 4.23261e-05 4.40292e-05 4.51365e-05 4.56203e-05 4.54517e-05 4.46006e-05 4.29963e-05 4.05657e-05 3.64329e-05 3.0222e-05 2.34935e-05 1.72512e-05 1.20646e-05 8.08657e-06 5.19583e-06 3.17536e-06 1.72711e-06 4.84272e-07 1.05119e-07 5.6038e-08 5.69606e-08 8.77637e-09 1.2181e-08 8.009e-08 5.03608e-07 1.97005e-06 5.25074e-06 1.02673e-05 1.61329e-05 2.20547e-05 2.76057e-05 3.24302e-05 3.64126e-05 4.00894e-05 4.3546e-05 4.65011e-05 4.84007e-05 4.965e-05 5.02077e-05 5.00371e-05 4.91104e-05 4.73499e-05 4.46826e-05 3.96062e-05 3.29493e-05 2.58752e-05 1.92785e-05 1.3716e-05 9.36399e-06 6.12979e-06 3.81522e-06 2.1115e-06 5.95815e-07 1.2251e-07 5.92856e-08 5.94888e-08 9.44613e-09 1.34319e-08 9.21259e-08 5.81731e-07 2.2664e-06 5.97295e-06 1.15195e-05 1.79055e-05 2.4308e-05 3.03015e-05 3.56888e-05 3.99854e-05 4.39054e-05 4.75673e-05 5.07874e-05 5.28837e-05 5.42636e-05 5.48786e-05 5.46853e-05 5.36617e-05 5.17269e-05 4.84911e-05 4.27534e-05 3.57025e-05 2.82982e-05 2.1365e-05 1.54419e-05 1.07224e-05 7.14204e-06 4.52301e-06 2.54379e-06 7.23877e-07 1.42346e-07 6.26014e-08 6.19386e-08 1.0134e-08 1.47526e-08 1.0521e-07 6.66717e-07 2.58586e-06 6.73697e-06 1.2822e-05 1.9733e-05 2.66221e-05 3.30649e-05 3.88771e-05 4.36918e-05 4.78637e-05 5.1699e-05 5.50787e-05 5.74522e-05 5.8954e-05 5.96127e-05 5.9379e-05 5.82392e-05 5.61125e-05 5.20111e-05 4.58328e-05 3.84623e-05 3.07581e-05 2.35063e-05 1.72364e-05 1.21568e-05 8.22921e-06 5.29709e-06 3.02209e-06 8.68348e-07 1.64655e-07 6.59873e-08 6.43099e-08 1.08506e-08 1.61564e-08 1.19503e-07 7.59667e-07 2.93216e-06 7.55017e-06 1.41857e-05 2.16275e-05 2.9007e-05 3.59014e-05 4.21285e-05 4.7492e-05 5.19271e-05 5.59151e-05 5.94321e-05 6.20924e-05 6.37081e-05 6.43999e-05 6.41124e-05 6.28408e-05 6.03516e-05 5.54885e-05 4.8896e-05 4.12272e-05 3.32515e-05 2.56996e-05 1.90963e-05 1.36637e-05 9.38881e-06 6.1363e-06 3.54524e-06 1.02941e-06 1.89512e-07 6.94493e-08 6.66043e-08 1.15878e-08 1.7612e-08 1.34766e-07 8.59255e-07 3.30018e-06 8.39964e-06 1.55908e-05 2.3566e-05 3.14396e-05 3.87898e-05 4.54359e-05 5.13047e-05 5.60866e-05 6.02092e-05 6.38204e-05 6.67362e-05 6.85022e-05 6.92192e-05 6.8869e-05 6.74526e-05 6.41591e-05 5.8861e-05 5.19514e-05 4.40122e-05 3.57766e-05 2.79425e-05 2.10171e-05 1.52384e-05 1.06172e-05 7.03835e-06 4.11035e-06 1.20656e-06 2.16892e-07 7.29856e-08 6.88202e-08 1.23515e-08 1.90941e-08 1.50885e-07 9.65229e-07 3.68938e-06 9.28431e-06 1.70364e-05 2.5547e-05 3.39154e-05 4.17201e-05 4.87799e-05 5.50199e-05 6.02945e-05 6.45757e-05 6.8226e-05 7.11905e-05 7.32431e-05 7.40315e-05 7.3616e-05 7.16841e-05 6.7852e-05 6.2194e-05 5.49976e-05 4.68098e-05 3.83324e-05 3.02367e-05 2.29982e-05 1.68787e-05 1.19119e-05 8.00135e-06 4.7152e-06 1.39946e-06 2.4679e-07 7.65969e-08 7.0958e-08 1.31364e-08 2.05227e-08 1.67463e-07 1.07636e-06 4.09733e-06 1.0201e-05 1.85204e-05 2.75703e-05 3.64348e-05 4.46918e-05 5.21599e-05 5.87629e-05 6.44703e-05 6.90038e-05 7.26977e-05 7.56451e-05 7.76808e-05 7.85567e-05 7.79219e-05 7.55985e-05 7.14397e-05 6.54845e-05 5.80287e-05 4.96125e-05 4.09102e-05 3.25647e-05 2.50328e-05 1.85802e-05 1.32701e-05 9.02347e-06 5.35659e-06 1.60733e-06 2.79126e-07 8.02763e-08 7.30139e-08 1.3948e-08 2.17973e-08 1.84305e-07 1.19337e-06 4.5286e-06 1.11596e-05 2.00563e-05 2.96491e-05 3.90088e-05 4.77128e-05 5.55795e-05 6.25312e-05 6.85339e-05 7.34351e-05 7.71929e-05 8.00931e-05 8.20316e-05 8.27596e-05 8.19295e-05 7.93624e-05 7.49347e-05 6.87185e-05 6.1032e-05 5.24099e-05 4.35e-05 3.49175e-05 2.71122e-05 2.03348e-05 1.46856e-05 1.01006e-05 6.03057e-06 1.82916e-06 3.13796e-07 8.40157e-08 7.49847e-08 1.47855e-08 2.2958e-08 2.02216e-07 1.32091e-06 4.99545e-06 1.21775e-05 2.16611e-05 3.17978e-05 4.16487e-05 5.0792e-05 5.90462e-05 6.63323e-05 7.26143e-05 7.78536e-05 8.16689e-05 8.44994e-05 8.6307e-05 8.68581e-05 8.58159e-05 8.30085e-05 7.83353e-05 7.18891e-05 6.40002e-05 5.51951e-05 4.60969e-05 3.72954e-05 2.92344e-05 2.21393e-05 1.61554e-05 1.123e-05 6.73323e-06 2.06376e-06 3.50651e-07 8.78036e-08 7.68659e-08 1.56581e-08 2.47017e-08 2.24323e-07 1.4681e-06 5.51144e-06 1.32639e-05 2.33356e-05 3.40099e-05 4.43432e-05 5.39155e-05 6.25451e-05 7.01513e-05 7.66953e-05 8.21526e-05 8.60933e-05 8.88454e-05 9.05024e-05 9.08588e-05 8.95975e-05 8.65544e-05 8.16511e-05 7.49993e-05 6.69325e-05 5.79654e-05 4.86955e-05 3.96866e-05 3.13702e-05 2.39824e-05 1.76724e-05 1.24068e-05 7.45954e-06 2.30957e-06 3.89499e-07 9.1624e-08 7.86503e-08 1.65624e-08 2.67463e-08 2.48692e-07 1.62623e-06 6.05376e-06 1.43829e-05 2.50408e-05 3.625e-05 4.70628e-05 5.706e-05 6.6059e-05 7.39771e-05 8.07729e-05 8.64179e-05 9.04559e-05 9.31216e-05 9.4614e-05 9.47655e-05 9.32824e-05 9.00132e-05 8.48972e-05 7.80595e-05 6.98338e-05 6.07203e-05 5.12917e-05 4.20872e-05 3.35264e-05 2.5859e-05 1.92311e-05 1.36265e-05 8.20426e-06 2.56476e-06 4.30081e-07 9.54566e-08 8.03305e-08 1.74987e-08 2.88699e-08 2.74244e-07 1.79202e-06 6.61596e-06 1.55262e-05 2.67687e-05 3.85101e-05 4.97987e-05 6.02147e-05 6.95744e-05 7.77929e-05 8.48262e-05 9.06419e-05 9.47366e-05 9.73055e-05 9.86285e-05 9.85742e-05 9.68727e-05 9.33875e-05 8.8075e-05 8.10703e-05 7.27032e-05 6.34569e-05 5.38807e-05 4.44913e-05 3.56981e-05 2.77623e-05 2.08251e-05 1.48836e-05 8.96224e-06 2.82754e-06 4.72165e-07 9.92828e-08 8.18993e-08 1.84652e-08 3.11272e-08 3.01838e-07 1.97042e-06 7.21178e-06 1.67158e-05 2.85442e-05 4.08135e-05 5.25699e-05 6.3395e-05 7.31041e-05 8.1611e-05 8.88695e-05 9.48434e-05 9.89269e-05 0.000101382 0.000102537 0.000102284 0.000100375 9.66864e-05 9.11929e-05 8.40387e-05 7.55466e-05 6.61796e-05 5.64644e-05 4.68989e-05 3.78835e-05 2.96893e-05 2.24506e-05 1.6174e-05 9.72853e-06 3.09581e-06 5.15407e-07 1.03078e-07 8.33514e-08 1.94614e-08 3.34901e-08 3.30936e-07 2.15762e-06 7.82769e-06 1.79264e-05 3.03354e-05 4.31264e-05 5.53441e-05 6.65703e-05 7.66197e-05 8.54045e-05 9.2877e-05 9.89992e-05 0.000103011 0.000105338 0.00010633 0.00010589 0.000103787 9.99133e-05 9.42555e-05 8.69654e-05 7.83611e-05 6.88863e-05 5.90425e-05 4.93091e-05 4.0079e-05 3.16293e-05 2.41036e-05 1.74948e-05 1.04996e-05 3.36822e-06 5.59608e-07 1.06826e-07 8.46822e-08 2.04843e-08 3.59638e-08 3.61703e-07 2.35469e-06 8.46618e-06 1.91612e-05 3.21445e-05 4.54487e-05 5.81178e-05 6.97346e-05 8.01129e-05 8.91638e-05 9.68382e-05 0.000103099 0.000106979 0.000109164 0.000109999 0.000109385 0.000107106 0.000103066 9.72632e-05 8.98537e-05 8.11493e-05 7.15765e-05 6.16128e-05 5.17192e-05 4.22808e-05 3.35804e-05 2.57787e-05 1.88405e-05 1.12704e-05 3.64262e-06 6.04428e-07 1.10507e-07 8.58904e-08 2.1532e-08 3.85464e-08 3.94115e-07 2.56125e-06 9.12527e-06 2.04168e-05 3.39681e-05 4.77772e-05 6.08881e-05 7.28845e-05 8.35799e-05 9.28846e-05 0.000100749 0.000107137 0.000110809 0.00011285 0.00011354 0.000112768 0.000110331 0.000106145 0.000100218 9.27061e-05 8.39134e-05 7.42496e-05 6.41724e-05 5.41261e-05 4.44887e-05 3.55475e-05 2.74774e-05 2.02114e-05 1.20403e-05 3.91864e-06 6.49806e-07 1.14114e-07 8.69769e-08 2.26009e-08 4.12254e-08 4.27995e-07 2.77606e-06 9.80024e-06 2.16839e-05 3.57929e-05 5.00955e-05 6.36366e-05 7.60009e-05 8.70017e-05 9.65487e-05 0.000104591 0.000110957 0.000114497 0.000116406 0.000116954 0.000116038 0.000113464 0.000109154 0.000103121 9.55231e-05 8.66541e-05 7.6908e-05 6.67232e-05 5.65289e-05 4.66989e-05 3.7526e-05 2.91954e-05 2.16034e-05 1.28057e-05 4.19469e-06 6.95468e-07 1.17634e-07 8.79447e-08 2.36882e-08 4.40056e-08 4.63472e-07 2.99974e-06 1.04922e-05 2.29645e-05 3.76219e-05 5.24068e-05 6.63657e-05 7.90846e-05 9.03773e-05 0.000100153 0.000108362 0.000114619 0.000118033 0.000119814 0.000120235 0.000119194 0.000116504 0.000112091 0.000105972 9.83039e-05 8.93707e-05 7.95515e-05 6.92666e-05 5.89305e-05 4.89141e-05 3.95172e-05 3.09335e-05 2.30167e-05 1.35666e-05 4.47072e-06 7.41415e-07 1.21065e-07 8.87963e-08 2.479e-08 4.68706e-08 5.00291e-07 3.23056e-06 1.11955e-05 2.42489e-05 3.94427e-05 5.46974e-05 6.90614e-05 8.21224e-05 9.36946e-05 0.000103688 0.000112052 0.000118138 0.000121411 0.000123072 0.000123383 0.000122238 0.000119452 0.000114958 0.000108773 0.000101049 9.20621e-05 8.21774e-05 7.17982e-05 6.13267e-05 5.11314e-05 4.1519e-05 3.26897e-05 2.44491e-05 1.43212e-05 4.74594e-06 7.8749e-07 1.24403e-07 8.95394e-08 2.59039e-08 4.98181e-08 5.38446e-07 3.46831e-06 1.1909e-05 2.5535e-05 4.12529e-05 5.69641e-05 7.17198e-05 8.51094e-05 9.69481e-05 0.000107146 0.000115656 0.000121506 0.000124624 0.000126176 0.000126397 0.000125168 0.000122308 0.000117751 0.000111517 0.000103752 9.47231e-05 8.47804e-05 7.43134e-05 6.37142e-05 5.33488e-05 4.35309e-05 3.44651e-05 2.5902e-05 1.50695e-05 5.02051e-06 8.33753e-07 1.27651e-07 9.01765e-08 2.7027e-08 5.28316e-08 5.77666e-07 3.71118e-06 1.26272e-05 2.68147e-05 4.30424e-05 5.91962e-05 7.43299e-05 8.8035e-05 0.000100128 0.00011052 0.000119164 0.00012472 0.000127674 0.000129131 0.000129282 0.000127993 0.000125077 0.000120475 0.000114206 0.000106414 9.73536e-05 8.73608e-05 7.68128e-05 6.60925e-05 5.55643e-05 4.55495e-05 3.6255e-05 2.73696e-05 1.58083e-05 5.29265e-06 8.79808e-07 1.30786e-07 9.07139e-08 2.81577e-08 5.5907e-08 6.179e-07 3.95876e-06 1.33489e-05 2.80856e-05 4.48083e-05 6.13898e-05 7.68872e-05 9.08942e-05 0.000103228 0.000113803 0.000122572 0.000127771 0.00013056 0.00013194 0.000132044 0.000130711 0.000127758 0.000123125 0.000116837 0.00010903 9.99473e-05 8.99116e-05 7.92891e-05 6.84552e-05 5.7774e-05 4.75747e-05 3.80638e-05 2.88588e-05 1.65403e-05 5.56409e-06 9.26073e-07 1.33831e-07 9.11559e-08 2.9292e-08 5.903e-08 6.58932e-07 4.20964e-06 1.407e-05 2.9342e-05 4.65437e-05 6.35372e-05 7.93832e-05 9.36779e-05 0.000106241 0.000116987 0.000125874 0.000130654 0.00013329 0.000134619 0.000134691 0.000133329 0.000130353 0.000125706 0.000119413 0.000111603 0.000102509 9.244e-05 8.17514e-05 7.08115e-05 5.99844e-05 4.96076e-05 3.98862e-05 3.03614e-05 1.7263e-05 5.8333e-06 9.72133e-07 1.36755e-07 9.15123e-08 3.04263e-08 6.21965e-08 7.00736e-07 4.46362e-06 1.479e-05 3.05835e-05 4.8248e-05 6.56377e-05 8.18169e-05 9.63843e-05 0.000109161 0.000120065 0.000128843 0.000133363 0.000135907 0.00013719 0.000137233 0.000135852 0.000132868 0.000128223 0.000121937 0.000114134 0.000105035 9.4939e-05 8.41884e-05 7.3148e-05 6.21842e-05 5.16411e-05 4.17183e-05 3.18724e-05 1.79707e-05 6.0975e-06 1.0175e-06 1.39524e-07 9.17904e-08 3.15549e-08 6.53826e-08 7.42945e-07 4.71839e-06 1.55029e-05 3.18013e-05 4.99116e-05 6.76814e-05 8.41791e-05 9.90059e-05 0.000111985 0.000123035 0.000131537 0.000135908 0.000138378 0.000139627 0.000139656 0.000138273 0.000135296 0.000130666 0.000124399 0.000116611 0.000107517 9.73994e-05 8.65934e-05 7.54585e-05 6.43661e-05 5.36726e-05 4.35747e-05 3.34239e-05 1.86804e-05 6.36404e-06 1.06328e-06 1.42163e-07 9.19969e-08 3.26758e-08 6.85806e-08 7.85439e-07 4.97318e-06 1.62068e-05 3.29929e-05 5.15311e-05 6.96644e-05 8.64655e-05 0.000101538 0.000114708 0.000125894 0.000134069 0.000138285 0.000140694 0.000141926 0.000141958 0.000140587 0.000137631 0.000133027 0.000126789 0.000119028 0.000109947 9.98209e-05 8.89764e-05 7.77708e-05 6.65777e-05 5.57483e-05 4.54299e-05 3.47819e-05 1.93576e-05 6.62218e-06 1.10798e-06 1.44552e-07 9.21387e-08 3.37888e-08 7.17813e-08 8.28054e-07 5.227e-06 1.68995e-05 3.41553e-05 5.31037e-05 7.1584e-05 8.86732e-05 0.000103978 0.000117326 0.00012864 0.000136446 0.000140502 0.000142862 0.000144092 0.000144143 0.0001428 0.000139876 0.000135311 0.000129114 0.00012139 0.000112334 0.000102213 9.13454e-05 8.00871e-05 6.88113e-05 5.78537e-05 4.72724e-05 3.58866e-05 1.99969e-05 6.86765e-06 1.1504e-06 1.46536e-07 9.22257e-08 3.48939e-08 7.49852e-08 8.70802e-07 5.47989e-06 1.75812e-05 3.52897e-05 5.46306e-05 7.34414e-05 9.08038e-05 0.000106328 0.000119843 0.000131275 0.000138678 0.000142573 0.000144896 0.000146142 0.000146226 0.000144922 0.000142043 0.000137525 0.000131379 0.000123703 0.000114683 0.000104577 9.36982e-05 8.23983e-05 7.10481e-05 5.99623e-05 4.91014e-05 3.69545e-05 2.06072e-05 7.09988e-06 1.18962e-06 1.47912e-07 9.22617e-08 3.59875e-08 7.81841e-08 9.13579e-07 5.73117e-06 1.82503e-05 3.63939e-05 5.61096e-05 7.52346e-05 9.28554e-05 0.000108585 0.000122257 0.000133797 0.000140762 0.000144497 0.000146799 0.000148078 0.000148209 0.000146953 0.000144126 0.000139666 0.000133579 0.00012596 0.000116986 0.000106906 9.60255e-05 8.46948e-05 7.32795e-05 6.20698e-05 5.09231e-05 3.7993e-05 2.11945e-05 7.31961e-06 1.22493e-06 1.48382e-07 9.22512e-08 3.70633e-08 8.13596e-08 9.56117e-07 5.97921e-06 1.89031e-05 3.74627e-05 5.75349e-05 7.69578e-05 9.48227e-05 0.000110746 0.000124564 0.000136206 0.000142695 0.000146279 0.00014858 0.000149906 0.000150092 0.000148891 0.000146121 0.000141724 0.000135705 0.000128152 0.000119233 0.000109189 9.83194e-05 8.697e-05 7.55019e-05 6.41766e-05 5.27385e-05 3.89905e-05 2.17473e-05 7.51948e-06 1.25426e-06 1.47744e-07 9.22011e-08 3.81174e-08 8.44911e-08 9.98076e-07 6.22211e-06 1.95355e-05 3.8491e-05 5.89012e-05 7.86056e-05 9.67006e-05 0.000112806 0.000126761 0.000138499 0.000144476 0.000147932 0.000150256 0.000151639 0.000151881 0.000150737 0.000148029 0.000143702 0.000137758 0.000130279 0.000121425 0.000111427 0.000100578 8.9221e-05 7.77113e-05 6.62776e-05 5.45373e-05 3.99301e-05 2.22523e-05 7.69447e-06 1.27794e-06 1.46704e-07 9.21288e-08 3.91509e-08 8.75723e-08 1.03932e-06 6.45926e-06 2.01468e-05 3.9479e-05 6.02095e-05 8.01797e-05 9.84902e-05 0.000114764 0.000128843 0.000140398 0.000146103 0.000149516 0.000151861 0.000153284 0.000153576 0.00015249 0.000149851 0.0001456 0.000139738 0.000132341 0.000123559 0.000113617 0.000102799 9.14471e-05 7.99073e-05 6.83717e-05 5.63223e-05 4.08336e-05 2.2736e-05 7.86523e-06 1.30308e-06 1.46655e-07 9.20537e-08 4.01658e-08 9.0598e-08 1.07974e-06 6.69007e-06 2.07362e-05 4.0426e-05 6.14598e-05 8.16814e-05 0.000100196 0.000116629 0.000130823 0.000142053 0.000147625 0.000151009 0.000153376 0.000154843 0.000155188 0.000154165 0.000151597 0.000147427 0.000141652 0.000134341 0.00012564 0.000115761 0.000104985 9.36473e-05 8.2086e-05 7.04537e-05 5.80943e-05 4.17263e-05 2.32245e-05 8.04732e-06 1.3335e-06 1.47898e-07 9.19789e-08 4.11633e-08 9.3584e-08 1.11959e-06 6.91616e-06 2.13077e-05 4.13383e-05 6.26593e-05 8.3118e-05 0.000101824 0.000118406 0.000132709 0.000143608 0.000149052 0.000152416 0.00015481 0.000156324 0.000156726 0.000155767 0.000153273 0.000149185 0.000143497 0.000136277 0.000127659 0.00011785 0.000107125 9.58125e-05 8.42411e-05 7.25207e-05 5.9854e-05 4.26134e-05 2.37193e-05 8.2381e-06 1.36694e-06 1.49585e-07 9.19015e-08 4.21406e-08 9.65224e-08 1.15877e-06 7.13685e-06 2.18606e-05 4.22155e-05 6.38087e-05 8.44914e-05 0.000103378 0.0001201 0.000134504 0.000145063 0.000150382 0.000153731 0.000156159 0.000157724 0.000158186 0.000157293 0.000154872 0.000150866 0.000145268 0.000138139 0.00012961 0.000119878 0.000109211 9.79377e-05 8.63764e-05 7.45906e-05 6.16302e-05 4.351e-05 2.42293e-05 8.43974e-06 1.40296e-06 1.51453e-07 9.183e-08 4.30958e-08 9.93899e-08 1.19684e-06 7.3499e-06 2.23901e-05 4.30523e-05 6.49031e-05 8.57979e-05 0.000104856 0.00012171 0.000136209 0.000146418 0.000151613 0.000154955 0.000157421 0.000159042 0.000159565 0.000158737 0.00015639 0.000152466 0.000146959 0.000139928 0.000131497 0.000121858 0.00011127 0.000100049 8.85042e-05 7.66595e-05 6.34148e-05 4.44181e-05 2.47526e-05 8.64956e-06 1.44077e-06 1.53428e-07 9.17715e-08 4.40347e-08 1.0219e-07 1.23381e-06 7.55539e-06 2.2897e-05 4.38503e-05 6.5945e-05 8.70405e-05 0.00010626 0.00012324 0.00013783 0.000147685 0.00015276 0.000156098 0.000158607 0.000160285 0.00016087 0.000160108 0.000157833 0.00015399 0.000148574 0.000141643 0.00013332 0.000123792 0.000113313 0.000102185 9.06705e-05 7.86811e-05 6.49006e-05 4.52889e-05 2.52629e-05 8.85768e-06 1.47876e-06 1.55429e-07 9.17241e-08 4.49624e-08 1.04929e-07 1.26971e-06 7.75365e-06 2.33827e-05 4.46121e-05 6.69378e-05 8.82235e-05 0.000107596 0.000124695 0.000139371 0.000148881 0.000153841 0.00015718 0.000159735 0.000161472 0.000162119 0.000161423 0.000159219 0.000155455 0.000150128 0.000143298 0.000135086 0.000125678 0.000115322 0.000104303 9.28301e-05 8.06595e-05 6.61016e-05 4.61316e-05 2.57621e-05 9.06346e-06 1.51666e-06 1.5744e-07 9.16877e-08 4.58838e-08 1.0763e-07 1.30491e-06 7.94689e-06 2.38527e-05 4.53458e-05 6.78916e-05 8.93578e-05 0.000108876 0.000126087 0.000140844 0.00015001 0.000154861 0.000158206 0.000160811 0.00016261 0.000163319 0.000162686 0.000160551 0.000156863 0.000151623 0.000144892 0.000136791 0.000127506 0.000117279 0.000106377 9.49506e-05 8.25987e-05 6.72753e-05 4.69574e-05 2.62539e-05 9.26749e-06 1.55443e-06 1.5946e-07 9.16688e-08 4.67991e-08 1.10286e-07 1.33927e-06 8.13429e-06 2.43056e-05 4.60505e-05 6.88061e-05 9.04445e-05 0.000110101 0.000127419 0.000142253 0.000151076 0.000155825 0.000159181 0.00016184 0.000163701 0.000164472 0.0001639 0.00016183 0.000158215 0.000153058 0.000146422 0.00013843 0.000129267 0.000119173 0.000108396 9.70262e-05 8.45013e-05 6.84233e-05 4.77686e-05 2.67402e-05 9.47073e-06 1.59227e-06 1.61503e-07 9.16712e-08 4.77127e-08 1.12914e-07 1.373e-06 8.31712e-06 2.47442e-05 4.67303e-05 6.96861e-05 9.14885e-05 0.000111277 0.000128696 0.000143604 0.000152088 0.000156739 0.000160114 0.00016283 0.000164754 0.000165585 0.00016507 0.000163061 0.000159513 0.000154433 0.000147887 0.000140001 0.000130959 0.000121 0.000110353 9.905e-05 8.63628e-05 6.95431e-05 4.85632e-05 2.72188e-05 9.67196e-06 1.62992e-06 1.63555e-07 9.16955e-08 4.86263e-08 1.15503e-07 1.40593e-06 8.4945e-06 2.51672e-05 4.73834e-05 7.05301e-05 9.24888e-05 0.000112403 0.000129919 0.000144897 0.000153045 0.000157608 0.000161008 0.000163784 0.000165772 0.000166659 0.000166198 0.000164244 0.000160759 0.000155752 0.000149291 0.000141504 0.000132581 0.000122757 0.000112249 0.000101023 8.81862e-05 7.06382e-05 4.93445e-05 2.76926e-05 9.87279e-06 1.66772e-06 1.65638e-07 9.17437e-08 4.95442e-08 1.18083e-07 1.43852e-06 8.66898e-06 2.55801e-05 4.80174e-05 7.13463e-05 9.34535e-05 0.000113486 0.000131095 0.00014614 0.000153952 0.000158437 0.000161872 0.000164711 0.000166759 0.000167698 0.000167285 0.000165383 0.000161955 0.000157015 0.000150634 0.000142942 0.000134133 0.000124444 0.000114077 0.000102937 8.99625e-05 7.17032e-05 5.01074e-05 2.81575e-05 1.00709e-05 1.7052e-06 1.67722e-07 9.18094e-08 5.04659e-08 1.20649e-07 1.47071e-06 8.84023e-06 2.59825e-05 4.86323e-05 7.21351e-05 9.43834e-05 0.000114529 0.000132225 0.000147333 0.000154803 0.000159227 0.000162708 0.000165612 0.000167714 0.000168699 0.00016833 0.000166475 0.0001631 0.000158221 0.000151913 0.00014431 0.00013561 0.000126054 0.000115829 0.000104784 9.16847e-05 7.27342e-05 5.08487e-05 2.86109e-05 1.02652e-05 1.74217e-06 1.69795e-07 9.18884e-08 5.13897e-08 1.23195e-07 1.50238e-06 9.00769e-06 2.63736e-05 4.92271e-05 7.28955e-05 9.52771e-05 0.000115528 0.000133305 0.000148427 0.000155593 0.000159998 0.00016353 0.000166488 0.000168636 0.000169662 0.000169334 0.000167522 0.000164196 0.000159374 0.000153133 0.000145613 0.000137018 0.000127591 0.00011751 0.000106568 9.33598e-05 7.37411e-05 5.1578e-05 2.9061e-05 1.04598e-05 1.77943e-06 1.71902e-07 9.19858e-08 5.23183e-08 1.25721e-07 1.53349e-06 9.17133e-06 2.67536e-05 4.98032e-05 7.36302e-05 9.61386e-05 0.000116489 0.000134339 0.000149233 0.000156336 0.000160756 0.00016433 0.000167333 0.000169524 0.000170589 0.000170299 0.000168526 0.000165245 0.000160477 0.000154302 0.000146867 0.000138375 0.000129071 0.000119122 0.000108272 9.49631e-05 7.47176e-05 5.22896e-05 2.95029e-05 1.06522e-05 1.81645e-06 1.74012e-07 9.21027e-08 5.32531e-08 1.28212e-07 1.56382e-06 9.33007e-06 2.71206e-05 5.03582e-05 7.43369e-05 9.69666e-05 0.000117411 0.000135331 0.000149999 0.000157042 0.000161482 0.0001651 0.00016815 0.000170382 0.000171485 0.00017123 0.000169494 0.000166254 0.000161534 0.000155424 0.000148073 0.000139693 0.000130521 0.000120694 0.000109867 9.63478e-05 7.56364e-05 5.29654e-05 2.99263e-05 1.08381e-05 1.85251e-06 1.76088e-07 9.22343e-08 5.41975e-08 1.307e-07 1.59387e-06 9.48651e-06 2.74799e-05 5.08985e-05 7.50221e-05 9.77668e-05 0.000118301 0.000136287 0.00015073 0.000157717 0.000162178 0.000165842 0.000168939 0.000171214 0.000172353 0.000172131 0.000170428 0.000167224 0.000162549 0.000156496 0.000149225 0.000140952 0.000131911 0.000122201 0.000111359 9.74073e-05 7.65001e-05 5.36058e-05 3.03301e-05 1.10164e-05 1.8873e-06 1.78105e-07 9.23741e-08 5.5146e-08 1.33162e-07 1.62331e-06 9.63908e-06 2.78285e-05 5.14209e-05 7.56829e-05 9.85371e-05 0.000119156 0.000137204 0.000151424 0.000158359 0.000162845 0.000166557 0.000169702 0.000172018 0.000173193 0.000173003 0.000171331 0.000168159 0.000163524 0.000157523 0.000150323 0.000142148 0.000133227 0.000123622 0.000112761 9.8413e-05 7.73216e-05 5.42174e-05 3.07175e-05 1.11884e-05 1.92099e-06 1.80073e-07 9.25195e-08 5.60985e-08 1.35606e-07 1.65226e-06 9.7883e-06 2.81677e-05 5.19271e-05 7.63213e-05 9.92795e-05 0.000119979 0.000138086 0.000152079 0.000158963 0.000163477 0.00016724 0.000170435 0.000172793 0.000174003 0.000173843 0.000172199 0.000169057 0.000164456 0.000158501 0.000151366 0.000143278 0.000134465 0.000124958 0.00011408 9.93666e-05 7.81023e-05 5.48004e-05 3.10883e-05 1.13537e-05 1.95353e-06 1.81983e-07 9.26671e-08 5.7054e-08 1.37988e-07 1.67998e-06 9.93076e-06 2.84906e-05 5.24086e-05 7.69284e-05 9.99857e-05 0.000120761 0.000138925 0.000152694 0.00015953 0.000164076 0.000167891 0.000171138 0.00017354 0.000174784 0.000174654 0.000173036 0.00016992 0.00016535 0.000159434 0.000152354 0.000144345 0.00013563 0.000126211 0.000115318 0.000100271 7.88446e-05 5.53571e-05 3.14444e-05 1.15133e-05 1.98508e-06 1.83844e-07 9.28193e-08 5.80181e-08 1.40342e-07 1.70707e-06 1.00694e-05 2.88031e-05 5.2872e-05 7.75106e-05 0.000100661 0.000121509 0.000139725 0.000153277 0.000160071 0.000164651 0.00016852 0.00017182 0.000174265 0.000175545 0.000175442 0.000173849 0.000170757 0.000166212 0.000160331 0.000153299 0.000145358 0.00013673 0.000127392 0.000116483 0.000101126 7.95491e-05 5.58878e-05 3.17858e-05 1.16674e-05 2.01569e-06 1.8566e-07 9.29768e-08 5.89918e-08 1.42696e-07 1.73396e-06 1.02064e-05 2.91099e-05 5.3324e-05 7.80749e-05 0.000101312 0.000122227 0.000140491 0.000153827 0.000160581 0.000165197 0.000169124 0.000172477 0.000174967 0.000176281 0.000176207 0.000174637 0.000171565 0.000167042 0.00016119 0.000154199 0.000146317 0.000137767 0.0001285 0.000117575 0.000101931 8.02118e-05 5.63876e-05 3.21082e-05 1.18134e-05 2.04479e-06 1.87391e-07 9.31315e-08 5.99689e-08 1.45009e-07 1.76002e-06 1.03388e-05 2.94052e-05 5.37576e-05 7.86146e-05 0.000101934 0.00012291 0.00014122 0.000154333 0.00016105 0.000165708 0.000169695 0.000173104 0.000175639 0.000176989 0.000176942 0.000175393 0.000172341 0.000167837 0.000162009 0.000155053 0.000147223 0.000138741 0.000129536 0.000118596 0.000102688 8.08354e-05 5.68587e-05 3.24129e-05 1.19519e-05 2.0725e-06 1.89041e-07 9.32783e-08 6.0952e-08 1.4729e-07 1.7854e-06 1.04671e-05 2.969e-05 5.41736e-05 7.91303e-05 0.000102526 0.00012356 0.000141911 0.000154802 0.000161485 0.000166187 0.000170237 0.000173704 0.000176285 0.000177671 0.000177651 0.000176124 0.000173089 0.000168602 0.000162794 0.000155868 0.000148082 0.000139659 0.000130509 0.00011955 0.0001034 8.14223e-05 5.73029e-05 3.27013e-05 1.20837e-05 2.09897e-06 1.90618e-07 9.34145e-08 6.19388e-08 1.49513e-07 1.80964e-06 1.05893e-05 2.99603e-05 5.45671e-05 7.96168e-05 0.000103083 0.000124171 0.000142561 0.000155231 0.000161885 0.000166635 0.00017075 0.000174277 0.000176907 0.000178329 0.000178337 0.00017683 0.000173811 0.000169339 0.000163548 0.000156646 0.000148898 0.000140526 0.000131422 0.000120444 0.000104067 8.19718e-05 5.7719e-05 3.29721e-05 1.22079e-05 2.12403e-06 1.92106e-07 9.3538e-08 6.29327e-08 1.51691e-07 1.83297e-06 1.07066e-05 3.0218e-05 5.49398e-05 8.00753e-05 0.000103606 0.000124743 0.000143168 0.000155621 0.000162249 0.000167051 0.000171235 0.000174823 0.000177503 0.000178962 0.000178998 0.000177512 0.000174508 0.000170049 0.000164271 0.00015739 0.000149673 0.000141344 0.000132279 0.000121279 0.00010469 8.24844e-05 5.81071e-05 3.3225e-05 1.23243e-05 2.14758e-06 1.93498e-07 9.36443e-08 6.39316e-08 1.53834e-07 1.8556e-06 1.08199e-05 3.04654e-05 5.52947e-05 8.05086e-05 0.000104098 0.000125278 0.000143735 0.000155973 0.00016258 0.000167438 0.000171694 0.000175347 0.000178078 0.000179576 0.000179639 0.000178174 0.000175185 0.000170737 0.000164971 0.000158105 0.000150414 0.000142119 0.000133085 0.00012206 0.000105271 8.29616e-05 5.84684e-05 3.3461e-05 1.24335e-05 2.16977e-06 1.94799e-07 9.37318e-08 6.49351e-08 1.55939e-07 1.87742e-06 1.09288e-05 3.0702e-05 5.56317e-05 8.09172e-05 0.000104559 0.000125778 0.000144263 0.000156279 0.000162869 0.000167788 0.00017212 0.000175842 0.000178626 0.000180164 0.000180256 0.000178812 0.000175837 0.0001714 0.000165644 0.000158792 0.00015112 0.000142854 0.000133843 0.000122788 0.00010581 8.34032e-05 5.88021e-05 3.3679e-05 1.25347e-05 2.19041e-06 1.95996e-07 9.3796e-08 6.5941e-08 1.5798e-07 1.89808e-06 1.10317e-05 3.09242e-05 5.5946e-05 8.12958e-05 0.000104984 0.000126237 0.000144747 0.000156543 0.00016312 0.000168106 0.000172519 0.000176312 0.000179152 0.000180731 0.000180854 0.000179431 0.000176471 0.000172045 0.000166297 0.000159456 0.0001518 0.000143555 0.000134558 0.000123469 0.000106312 8.38131e-05 5.9112e-05 3.38823e-05 1.26296e-05 2.2098e-06 1.97102e-07 9.38373e-08 6.69507e-08 1.59977e-07 1.91785e-06 1.113e-05 3.11352e-05 5.62412e-05 8.16482e-05 0.000105377 0.000126659 0.000145189 0.000156765 0.000163334 0.000168393 0.000172893 0.000176761 0.00017966 0.000181283 0.000181437 0.000180036 0.000177092 0.000172676 0.000166937 0.000160104 0.000152461 0.000144231 0.000135241 0.000124109 0.000106775 8.41898e-05 5.93966e-05 3.40695e-05 1.27175e-05 2.22785e-06 1.98112e-07 9.38531e-08 6.79643e-08 1.6193e-07 1.93681e-06 1.12241e-05 3.13358e-05 5.6519e-05 8.19759e-05 0.000105738 0.000127045 0.000145592 0.000156937 0.000163503 0.000168642 0.000173236 0.000177185 0.000180146 0.000181814 0.000182001 0.000180623 0.000177695 0.00017329 0.00016756 0.000160736 0.000153103 0.000144884 0.000135892 0.000124708 0.000107194 8.45264e-05 5.96478e-05 3.42335e-05 1.27944e-05 2.24365e-06 1.98962e-07 9.38289e-08 6.89803e-08 1.63822e-07 1.95462e-06 1.13125e-05 3.15232e-05 5.67757e-05 8.22753e-05 0.000106065 0.000127391 0.000145951 0.000157059 0.000163626 0.000168855 0.00017355 0.000177585 0.000180611 0.000182327 0.000182547 0.000181193 0.000178282 0.00017389 0.00016817 0.000161356 0.000153733 0.000145522 0.000136521 0.000125277 0.000107577 8.48295e-05 5.98712e-05 3.43782e-05 1.28623e-05 2.25758e-06 1.99674e-07 9.37651e-08 7.00048e-08 1.65681e-07 1.97173e-06 1.13971e-05 3.17006e-05 5.70147e-05 8.25492e-05 0.00010636 0.000127699 0.000146269 0.000157129 0.000163703 0.00016903 0.000173835 0.000177962 0.000181057 0.000182821 0.000183076 0.000181748 0.000178855 0.000174478 0.000168771 0.000161968 0.000154358 0.000146155 0.000137143 0.00012583 0.000107932 8.51068e-05 6.00735e-05 3.45087e-05 1.29237e-05 2.27022e-06 2.00285e-07 9.36664e-08 7.10289e-08 1.67466e-07 1.98748e-06 1.14747e-05 3.18619e-05 5.72281e-05 8.27892e-05 0.000106614 0.000127961 0.000146537 0.00015714 0.000163728 0.000169165 0.00017409 0.000178316 0.000181482 0.000183297 0.000183588 0.000182286 0.000179414 0.000175053 0.000169362 0.000162575 0.00015498 0.000146787 0.000137764 0.000126373 0.000108259 8.53558e-05 6.02507e-05 3.46208e-05 1.29762e-05 2.28101e-06 2.00756e-07 9.35265e-08 7.20504e-08 1.69154e-07 2.00147e-06 1.15432e-05 3.20023e-05 5.74095e-05 8.29879e-05 0.000106819 0.00012817 0.000146748 0.000157077 0.000163688 0.00016925 0.000174306 0.000178635 0.000181875 0.000183742 0.00018407 0.000182797 0.000179949 0.000175609 0.000169936 0.000163169 0.000155594 0.000147415 0.000138381 0.000126908 0.000108564 8.55837e-05 6.04091e-05 3.47189e-05 1.30217e-05 2.29036e-06 2.01112e-07 9.33445e-08 7.30717e-08 1.7075e-07 2.01382e-06 1.16032e-05 3.21223e-05 5.75579e-05 8.31428e-05 0.000106973 0.000128321 0.000146899 0.000156942 0.000163592 0.000169296 0.000174492 0.000178928 0.000182243 0.000184162 0.000184531 0.000183289 0.000180467 0.000176151 0.000170501 0.000163759 0.000156209 0.000148049 0.000139006 0.000127446 0.000108854 8.57985e-05 6.0557e-05 3.48102e-05 1.30645e-05 2.29919e-06 2.01408e-07 9.3127e-08 7.40928e-08 1.72258e-07 2.02456e-06 1.16547e-05 3.22224e-05 5.76736e-05 8.32529e-05 0.000107071 0.000128409 0.000146985 0.000156722 0.000163447 0.000169315 0.000174653 0.000179193 0.000182582 0.000184556 0.000184968 0.000183761 0.000180969 0.00017668 0.000171059 0.000164346 0.000156828 0.000148696 0.000139648 0.000127995 0.000109128 8.59962e-05 6.06899e-05 3.48905e-05 1.3102e-05 2.30696e-06 2.01614e-07 9.28779e-08 7.5118e-08 1.73669e-07 2.03344e-06 1.16968e-05 3.23008e-05 5.7755e-05 8.33167e-05 0.000107111 0.000128426 0.00014667 0.000156404 0.000163275 0.0001693 0.000174771 0.000179413 0.000182879 0.000184913 0.000185371 0.000184204 0.000181445 0.000177188 0.000171598 0.000164922 0.000157444 0.000149347 0.000140302 0.000128553 0.00010939 8.61829e-05 6.08124e-05 3.49629e-05 1.31356e-05 2.31391e-06 2.01747e-07 9.26001e-08 7.61515e-08 1.74978e-07 2.04038e-06 1.17291e-05 3.23565e-05 5.78004e-05 8.3333e-05 0.000107095 0.000128381 0.000146263 0.000156018 0.000163043 0.000169235 0.000174845 0.000179595 0.000183144 0.00018524 0.000185748 0.000184622 0.000181901 0.000177678 0.000172126 0.000165491 0.00015806 0.000150005 0.000140967 0.000129121 0.000109645 8.63635e-05 6.09307e-05 3.50328e-05 1.31683e-05 2.32071e-06 2.01851e-07 9.22992e-08 7.7197e-08 1.76257e-07 2.04657e-06 1.1757e-05 3.24e-05 5.78221e-05 8.3313e-05 0.000107031 0.000128278 0.000145782 0.000155562 0.000162752 0.00016912 0.000174879 0.000179742 0.000183376 0.000185538 0.000186099 0.000185017 0.000182334 0.00017815 0.000172639 0.000166051 0.000158673 0.000150669 0.000141645 0.0001297 0.000109887 8.6533e-05 6.10397e-05 3.5096e-05 1.31979e-05 2.32691e-06 2.01898e-07 9.19735e-08 7.82464e-08 1.77449e-07 2.05105e-06 1.17762e-05 3.24234e-05 5.78118e-05 8.32501e-05 0.000106914 0.000128114 0.000145204 0.000155008 0.000162374 0.000168932 0.000174848 0.000179832 0.000183558 0.00018579 0.000186406 0.000185371 0.000182732 0.000178591 0.000173127 0.000166593 0.000159274 0.000151326 0.000142323 0.00013028 0.000110121 8.66963e-05 6.11438e-05 3.51559e-05 1.3226e-05 2.33277e-06 2.01908e-07 9.16276e-08 7.93052e-08 1.78561e-07 2.05387e-06 1.17867e-05 3.24262e-05 5.77683e-05 8.31419e-05 0.000106742 0.000127887 0.000144548 0.000154377 0.000161925 0.000168681 0.000174763 0.000179876 0.000183698 0.000186003 0.000186678 0.000185694 0.000183103 0.000179013 0.000173607 0.000167135 0.000159881 0.000151986 0.000142997 0.000130855 0.000110351 8.68585e-05 6.12491e-05 3.52178e-05 1.32556e-05 2.339e-06 2.01926e-07 9.12691e-08 8.03787e-08 1.79613e-07 2.05534e-06 1.17901e-05 3.2412e-05 5.76953e-05 8.29921e-05 0.000106517 0.000127598 0.00014381 0.000153665 0.000161405 0.000168368 0.000174626 0.000179874 0.000183797 0.00018618 0.000186916 0.000185984 0.000183444 0.00017941 0.000174069 0.000167676 0.0001605 0.000152654 0.000143635 0.000131354 0.000110552 8.69987e-05 6.13386e-05 3.52695e-05 1.32807e-05 2.34441e-06 2.01885e-07 9.0894e-08 8.14653e-08 1.80559e-07 2.05466e-06 1.17829e-05 3.23737e-05 5.75846e-05 8.27922e-05 0.000106232 0.00012724 0.000142982 0.000152863 0.000160803 0.000167987 0.00017443 0.000179821 0.000183851 0.000186315 0.000187115 0.000186237 0.000183749 0.000179774 0.000174503 0.000168195 0.00016111 0.000153323 0.000144237 0.000131581 0.000110724 8.71197e-05 6.14156e-05 3.53138e-05 1.33026e-05 2.34921e-06 2.01799e-07 9.05034e-08 8.25754e-08 1.81486e-07 2.05325e-06 1.17714e-05 3.23232e-05 5.74499e-05 8.2555e-05 0.000105897 0.000126822 0.000142076 0.000151985 0.000160135 0.000167548 0.000174187 0.000179729 0.000183871 0.000186419 0.000187284 0.000186461 0.000184027 0.000180111 0.000174913 0.000168693 0.000161702 0.000153976 0.00014482 0.000131783 0.000110877 8.72271e-05 6.14844e-05 3.53541e-05 1.33232e-05 2.35383e-06 2.01697e-07 9.01038e-08 8.37029e-08 1.82333e-07 2.05006e-06 1.1751e-05 3.2252e-05 5.72813e-05 8.22711e-05 0.000105504 0.000126336 0.000141074 0.000151011 0.000159381 0.000167039 0.000173884 0.000179584 0.000183844 0.000186477 0.000187409 0.000186642 0.00018426 0.000180403 0.000175278 0.000169147 0.000162252 0.00015459 0.000145366 0.000131948 0.000110998 8.73093e-05 6.15337e-05 3.53809e-05 1.33374e-05 2.35713e-06 2.01507e-07 8.96851e-08 8.48522e-08 1.83127e-07 2.0455e-06 1.17232e-05 3.21623e-05 5.70808e-05 8.19415e-05 0.000105053 0.000125782 0.000139977 0.000149944 0.00015855 0.000166465 0.000173528 0.000179393 0.000183773 0.000186494 0.000187491 0.000186779 0.00018445 0.00018065 0.000175596 0.000169554 0.000162756 0.000155159 0.000145872 0.000132077 0.00011109 8.73688e-05 6.15668e-05 3.53975e-05 1.33469e-05 2.35952e-06 2.01256e-07 8.92504e-08 8.603e-08 1.83881e-07 2.03967e-06 1.16883e-05 3.20545e-05 5.68481e-05 8.15656e-05 0.000104542 0.000125157 0.000138777 0.000148785 0.000157645 0.000165835 0.000173125 0.000179159 0.000183659 0.000186468 0.000187532 0.000186873 0.000184595 0.000180851 0.000175868 0.000169913 0.000163212 0.000155683 0.000146336 0.000132167 0.000111153 8.74068e-05 6.1586e-05 3.54066e-05 1.33536e-05 2.36146e-06 2.00976e-07 8.88076e-08 8.72315e-08 1.84541e-07 2.0317e-06 1.16418e-05 3.19188e-05 5.65701e-05 8.11279e-05 0.000103956 0.00012445 0.000137457 0.000147533 0.000156677 0.000165155 0.000172674 0.000178876 0.000183496 0.000186393 0.000187523 0.000186918 0.00018469 0.000181001 0.000176084 0.000170215 0.00016361 0.000156149 0.000146744 0.000132208 0.000111174 8.74125e-05 6.15821e-05 3.54014e-05 1.33541e-05 2.36216e-06 2.00622e-07 8.83587e-08 8.84749e-08 1.8523e-07 2.02355e-06 1.15932e-05 3.17719e-05 5.62643e-05 8.06406e-05 0.000103295 0.000123323 0.000136003 0.000146263 0.000155706 0.000164454 0.000172184 0.000178544 0.000183284 0.00018627 0.000187468 0.000186919 0.000184739 0.000181103 0.000176252 0.000170466 0.000163955 0.000156561 0.000147098 0.000132199 0.000111154 8.73873e-05 6.15572e-05 3.53842e-05 1.33496e-05 2.36193e-06 2.00215e-07 8.79087e-08 8.97621e-08 1.85906e-07 2.01449e-06 1.15402e-05 3.1613e-05 5.5934e-05 8.01132e-05 0.000102574 0.000121813 0.000134452 0.000144951 0.000154683 0.000163689 0.000171628 0.000178151 0.000183015 0.000186094 0.000187363 0.000186869 0.000184737 0.000181151 0.000176361 0.000170654 0.000164233 0.000156904 0.000147383 0.000132125 0.000111078 8.73163e-05 6.14976e-05 3.53442e-05 1.33345e-05 2.35955e-06 1.99684e-07 8.7448e-08 9.10996e-08 1.86553e-07 2.00415e-06 1.14805e-05 3.14372e-05 5.55735e-05 7.95417e-05 0.000101796 0.00012022 0.000132813 0.000143555 0.000153584 0.000162858 0.000171013 0.000177703 0.000182693 0.000185865 0.000187203 0.000186761 0.000184674 0.000181134 0.000176401 0.000170767 0.000164431 0.000157162 0.000147586 0.000131985 0.000110946 8.7199e-05 6.14027e-05 3.52805e-05 1.33081e-05 2.35485e-06 1.99012e-07 8.69685e-08 9.24972e-08 1.87257e-07 1.99401e-06 1.14216e-05 3.12581e-05 5.51986e-05 7.89413e-05 0.000100974 0.000118556 0.000131099 0.000142091 0.000152427 0.000161976 0.000170354 0.000177214 0.000182331 0.000185596 0.000187001 0.000186608 0.000184562 0.000181063 0.000176381 0.000170815 0.000164556 0.000157341 0.000147707 0.000131778 0.000110758 8.704e-05 6.128e-05 3.52017e-05 1.3276e-05 2.34915e-06 1.98285e-07 8.64837e-08 9.39537e-08 1.87926e-07 1.98242e-06 1.13556e-05 3.1062e-05 5.47938e-05 7.82972e-05 0.000100094 0.000116801 0.000129292 0.000140542 0.000151197 0.000161031 0.000169637 0.00017667 0.000181914 0.000185271 0.00018674 0.000186395 0.000184385 0.000180923 0.000176287 0.000170782 0.000164594 0.000157428 0.000147734 0.000131483 0.000110492 8.68152e-05 6.11062e-05 3.50884e-05 1.32275e-05 2.34011e-06 1.97353e-07 8.59735e-08 9.54838e-08 1.88637e-07 1.97055e-06 1.12874e-05 3.0856e-05 5.43654e-05 7.7614e-05 9.91619e-05 0.00011496 0.000127409 0.000138934 0.000149918 0.00016004 0.000168872 0.000176075 0.000181442 0.000184886 0.000186417 0.000186113 0.000184135 0.000180704 0.000176108 0.000170656 0.000164529 0.000157401 0.000147645 0.000131094 0.000110145 8.65233e-05 6.08817e-05 3.49424e-05 1.3164e-05 2.32804e-06 1.96239e-07 8.54394e-08 9.70823e-08 1.89405e-07 1.95866e-06 1.12175e-05 3.06395e-05 5.3911e-05 7.6888e-05 9.81753e-05 0.000113026 0.000125463 0.00013729 0.000148609 0.000159014 0.000168064 0.00017543 0.000180916 0.000184444 0.000186032 0.000185766 0.000183815 0.00018041 0.000175847 0.000170441 0.000164367 0.00015727 0.000147449 0.000130607 0.000109711 8.61601e-05 6.06033e-05 3.47613e-05 1.30847e-05 2.31281e-06 1.94924e-07 8.48709e-08 9.87374e-08 1.90165e-07 1.94572e-06 1.11406e-05 3.03995e-05 5.34085e-05 7.60826e-05 9.67188e-05 0.00011097 0.000123523 0.000135656 0.000147277 0.000157934 0.000167183 0.000174703 0.000180304 0.000183915 0.000185558 0.000185327 0.0001834 0.000180015 0.000175478 0.000170107 0.000164074 0.000156996 0.000147109 0.000130007 0.000109178 8.57124e-05 6.0259e-05 3.45361e-05 1.29846e-05 2.29339e-06 1.93353e-07 8.42655e-08 1.00455e-07 1.90938e-07 1.93227e-06 1.10611e-05 3.01474e-05 5.28743e-05 7.52164e-05 9.47466e-05 0.000108846 0.000121601 0.000134013 0.000145903 0.000156793 0.000166237 0.00017391 0.000179628 0.00018332 0.000185015 0.000184815 0.000182905 0.000179536 0.000175018 0.000169674 0.000163671 0.000156602 0.000146645 0.000129302 0.000108554 8.51919e-05 5.98614e-05 3.42776e-05 1.28698e-05 2.27106e-06 1.91593e-07 8.36243e-08 1.02247e-07 1.91745e-07 1.91855e-06 1.09806e-05 2.98888e-05 5.23225e-05 7.43198e-05 9.27384e-05 0.000106674 0.000119621 0.000132313 0.000144474 0.000155599 0.000165234 0.000173056 0.000178881 0.000182647 0.000184387 0.00018421 0.000182312 0.000178951 0.000174446 0.000169121 0.000163135 0.00015606 0.000146029 0.000128472 0.000107818 8.45779e-05 5.93924e-05 3.39727e-05 1.27341e-05 2.24458e-06 1.89577e-07 8.29462e-08 1.041e-07 1.92516e-07 1.90352e-06 1.08934e-05 2.96113e-05 5.17355e-05 7.33728e-05 9.06707e-05 0.000104449 0.000117596 0.000130572 0.000143003 0.000154358 0.000164176 0.000172138 0.000178064 0.000181893 0.000183669 0.000183507 0.000181613 0.000178253 0.000173751 0.000168433 0.000162453 0.000155364 0.000145261 0.000127517 0.000106974 8.38737e-05 5.88543e-05 3.36224e-05 1.25775e-05 2.21391e-06 1.87288e-07 8.22174e-08 1.06013e-07 1.93275e-07 1.88754e-06 1.0801e-05 2.9317e-05 5.11154e-05 7.23785e-05 8.8539e-05 0.000102176 0.000115537 0.000128802 0.000141501 0.000153077 0.000163069 0.00017116 0.000177175 0.000181059 0.000182859 0.000182702 0.000180803 0.000177438 0.000172941 0.000167636 0.000161651 0.000154472 0.000144072 0.000126412 0.000106002 8.3066e-05 5.82397e-05 3.32241e-05 1.24e-05 2.17921e-06 1.84747e-07 8.1446e-08 1.07962e-07 1.93918e-07 1.86896e-06 1.06932e-05 2.89831e-05 5.04317e-05 7.13104e-05 8.63253e-05 9.98655e-05 0.000113462 0.000127008 0.000139956 0.000151734 0.000161885 0.000170094 0.000176187 0.000180115 0.000181931 0.000181771 0.000179861 0.000176487 0.000171988 0.000166684 0.000160675 0.000153389 0.00014271 0.000125162 0.000104902 8.21514e-05 5.75426e-05 3.27711e-05 1.21975e-05 2.13951e-06 1.81877e-07 8.06109e-08 1.09946e-07 1.94499e-07 1.84877e-06 1.05734e-05 2.86065e-05 4.96564e-05 6.96174e-05 8.40284e-05 9.76282e-05 0.000111446 0.000125222 0.000138375 0.000150332 0.000160631 0.000168952 0.000175117 0.000179078 0.0001809 0.000180726 0.000178796 0.000175404 0.000170893 0.000165572 0.000159519 0.000152114 0.000141188 0.000123767 0.000103676 8.1135e-05 5.67718e-05 3.2274e-05 1.19771e-05 2.09654e-06 1.78805e-07 7.97419e-08 1.11964e-07 1.95034e-07 1.82761e-06 1.04483e-05 2.8209e-05 4.88307e-05 6.75389e-05 8.17007e-05 9.5397e-05 0.0001094 0.000123376 0.000136726 0.00014886 0.000159304 0.00016773 0.000173958 0.000177942 0.000179756 0.000179556 0.000177595 0.000174175 0.000169641 0.000164291 0.000158179 0.000150649 0.000139502 0.000122221 0.000102316 8.00054e-05 5.59124e-05 3.17172e-05 1.17293e-05 2.04812e-06 1.7537e-07 7.88024e-08 1.14001e-07 1.95425e-07 1.804e-06 1.03112e-05 2.77814e-05 4.79548e-05 6.54166e-05 7.93239e-05 9.31123e-05 0.000107305 0.000121491 0.000135039 0.000147346 0.000157925 0.00016644 0.000172713 0.000176704 0.000178495 0.000178256 0.00017625 0.00017279 0.000168216 0.000162818 0.000156627 0.000148969 0.000137649 0.000120525 0.000100827 7.87719e-05 5.49775e-05 3.11149e-05 1.14628e-05 1.99629e-06 1.71725e-07 7.78289e-08 1.16047e-07 1.95715e-07 1.77877e-06 1.01648e-05 2.73263e-05 4.70294e-05 6.32513e-05 7.69074e-05 9.07873e-05 0.000105169 0.000119563 0.000133308 0.000145781 0.000156484 0.000165075 0.000171374 0.000175353 0.000177106 0.000176816 0.000174757 0.000171246 0.000166624 0.000161169 0.000154893 0.000147109 0.000135635 0.000118684 9.92127e-05 7.74355e-05 5.39654e-05 3.04633e-05 1.11753e-05 1.94046e-06 1.67801e-07 7.67883e-08 1.18077e-07 1.9579e-07 1.75017e-06 1.0001e-05 2.68289e-05 4.6037e-05 6.10218e-05 7.44425e-05 8.84241e-05 0.000103 0.000117601 0.000131536 0.000144167 0.00015498 0.000163627 0.000169932 0.000173875 0.000175567 0.000175208 0.000173083 0.00016951 0.000164823 0.000159289 0.000152909 0.000145003 0.000133445 0.000116684 9.7461e-05 7.59873e-05 5.28709e-05 2.97612e-05 1.0867e-05 1.88095e-06 1.63657e-07 7.57174e-08 1.20074e-07 1.95767e-07 1.71939e-06 9.82049e-06 2.62824e-05 4.49713e-05 5.87316e-05 7.19565e-05 8.60535e-05 0.000100817 0.000115611 0.000129724 0.000142501 0.000153412 0.000162102 0.000168396 0.000172285 0.000173899 0.000173454 0.00017125 0.000167607 0.000162853 0.000157236 0.000150747 0.00014272 0.000131106 0.000114553 9.55982e-05 7.445e-05 5.17106e-05 2.90182e-05 1.0542e-05 1.81833e-06 1.59286e-07 7.45853e-08 1.22026e-07 1.96009e-07 1.68803e-06 9.62016e-06 2.56562e-05 4.34828e-05 5.63839e-05 6.9515e-05 8.3714e-05 9.86248e-05 0.000113581 0.000127854 0.000140765 0.000151763 0.00016048 0.000166743 0.000170558 0.000172074 0.000171528 0.000169228 0.000165502 0.000160668 0.000154961 0.000148359 0.00014022 0.0001286 0.000112275 9.36107e-05 7.28145e-05 5.04821e-05 2.82369e-05 1.02035e-05 1.75366e-06 1.54807e-07 7.34485e-08 1.2393e-07 1.98155e-07 1.6608e-06 9.40806e-06 2.49557e-05 4.14352e-05 5.40218e-05 6.7129e-05 8.13834e-05 9.64009e-05 0.000111505 0.000125938 0.000138985 0.000150064 0.000158792 0.000165001 0.000168719 0.000170116 0.00016945 0.000167043 0.000163224 0.000158301 0.000152498 0.000145789 0.000137557 0.000125962 0.000109881 9.15242e-05 7.10981e-05 4.91917e-05 2.74156e-05 9.84837e-06 1.68598e-06 1.50108e-07 7.22543e-08 1.25781e-07 2.02863e-07 1.63247e-06 9.16918e-06 2.41991e-05 3.94132e-05 5.16638e-05 6.47037e-05 7.8998e-05 9.41299e-05 0.000109396 0.000124001 0.000137182 0.000148327 0.000157041 0.000163168 0.000166758 0.00016801 0.000167204 0.000164676 0.000160751 0.000155728 0.000149816 0.000142989 0.000134676 0.000123179 0.000107363 8.93373e-05 6.93066e-05 4.7853e-05 2.6571e-05 9.48728e-06 1.61779e-06 1.45408e-07 7.10764e-08 1.27512e-07 2.05062e-07 1.58595e-06 8.87008e-06 2.33559e-05 3.73795e-05 4.92967e-05 6.22572e-05 7.6584e-05 9.1831e-05 0.000107266 0.000122046 0.00013536 0.000146557 0.000155232 0.000161246 0.000164677 0.000165759 0.000164796 0.000162135 0.000158101 0.000152979 0.000146965 0.000140032 0.000131658 0.000120294 0.000104757 8.70774e-05 6.74559e-05 4.64692e-05 2.56975e-05 9.11524e-06 1.54782e-06 1.40561e-07 6.98457e-08 1.29142e-07 2.04656e-07 1.53087e-06 8.54919e-06 2.24776e-05 3.53587e-05 4.69321e-05 5.97947e-05 7.41462e-05 8.95136e-05 0.00010513 0.000120094 0.000133536 0.000144765 0.00015337 0.000159234 0.000162473 0.000163355 0.000162213 0.000159403 0.000155246 0.000150013 0.000143885 0.000136843 0.000128431 0.000117286 0.000102051 8.47388e-05 6.55498e-05 4.50531e-05 2.48117e-05 8.74261e-06 1.47848e-06 1.35794e-07 6.86493e-08 1.30647e-07 2.02818e-07 1.46761e-06 8.19453e-06 2.15378e-05 3.33351e-05 4.45626e-05 5.73111e-05 7.16803e-05 8.71732e-05 0.00010298 0.000118134 0.000131696 0.000142934 0.000151437 0.000157116 0.000160132 0.000160794 0.00015946 0.000156497 0.00015222 0.000146885 0.000140662 0.000133536 0.000125115 0.000114213 9.92942e-05 8.23622e-05 6.36146e-05 4.36152e-05 2.39125e-05 8.36617e-06 1.40875e-06 1.30962e-07 6.74077e-08 1.32032e-07 2.0017e-07 1.39986e-06 7.81963e-06 2.05594e-05 3.13244e-05 4.22037e-05 5.48262e-05 6.92112e-05 8.48391e-05 0.000100849 0.000116196 0.000129863 0.00014108 0.000149439 0.000154893 0.000157652 0.000158068 0.000156526 0.000153399 0.000148993 0.00014355 0.000137223 0.000130014 0.00012161 0.000111043 9.64629e-05 7.9934e-05 6.16505e-05 4.21686e-05 2.30184e-05 7.99724e-06 1.34118e-06 1.26319e-07 6.6232e-08 1.33271e-07 1.96803e-07 1.32557e-06 7.41253e-06 1.9522e-05 2.9313e-05 3.98453e-05 5.23305e-05 6.67269e-05 8.24936e-05 9.87125e-05 0.000114246 0.000127997 0.000139156 0.000147332 0.000152528 0.000155012 0.000155175 0.000153426 0.000150142 0.000145621 0.000140086 0.000133684 0.000126428 0.000118068 0.000107789 9.36142e-05 7.74964e-05 5.96801e-05 4.0716e-05 2.21197e-05 7.62779e-06 1.27377e-06 1.21637e-07 6.50089e-08 1.34367e-07 1.92991e-07 1.24749e-06 6.98258e-06 1.84423e-05 2.73197e-05 3.75149e-05 4.98563e-05 6.42608e-05 8.01705e-05 9.65996e-05 0.000112305 0.000126098 0.000137138 0.000145075 0.000149982 0.000152182 0.000152096 0.000150141 0.000146703 0.000142069 0.000136452 0.000129983 0.000122676 0.000114319 0.000104219 9.06997e-05 7.50224e-05 5.76989e-05 3.92727e-05 2.12403e-05 7.27241e-06 1.20969e-06 1.17224e-07 6.38707e-08 1.35287e-07 1.88691e-07 1.16386e-06 6.51513e-06 1.72162e-05 2.53362e-05 3.52163e-05 4.73956e-05 6.17909e-05 7.78379e-05 9.4472e-05 0.000110321 0.000124091 0.000134933 0.000142577 0.000147194 0.000149152 0.000148862 0.000146736 0.000143159 0.000138426 0.000132745 0.000126238 0.000118917 0.000110599 0.000100701 8.78011e-05 7.25671e-05 5.57343e-05 3.7841e-05 2.03683e-05 6.92217e-06 1.14681e-06 1.12818e-07 6.26743e-08 1.36039e-07 1.84283e-07 1.08027e-06 6.03056e-06 1.56771e-05 2.34029e-05 3.29921e-05 4.49739e-05 5.93388e-05 7.55276e-05 9.23773e-05 0.000108353 0.000122016 0.00013241 0.000139046 0.000143632 0.000145935 0.000145568 0.000143247 0.00013949 0.000134628 0.000128867 0.000122314 0.000114974 0.000106699 9.70338e-05 8.48599e-05 7.00944e-05 5.37746e-05 3.64308e-05 1.95234e-05 6.58918e-06 1.08788e-06 1.08743e-07 6.15897e-08 1.36616e-07 1.7978e-07 9.98181e-07 5.55365e-06 1.42261e-05 2.15199e-05 3.07663e-05 4.25277e-05 5.68691e-05 7.32356e-05 9.0339e-05 0.000106398 0.000119612 0.000128351 0.000134705 0.000139126 0.000141703 0.000142253 0.000139917 0.000135909 0.000130835 0.000124962 0.000118377 0.000111062 0.000102882 9.34736e-05 8.19573e-05 6.7657e-05 5.1841e-05 3.50348e-05 1.86841e-05 6.25934e-06 1.02961e-06 1.04618e-07 6.04185e-08 1.37029e-07 1.75223e-07 9.17621e-07 5.08133e-06 1.28314e-05 1.96933e-05 2.85908e-05 4.0134e-05 5.44704e-05 7.1042e-05 8.83719e-05 0.000104238 0.00011599 0.000124062 0.000130181 0.000134415 0.000136865 0.000137652 0.000136343 0.000132311 0.000126977 0.000120906 0.000114236 0.000106925 9.88424e-05 8.97315e-05 7.90058e-05 6.52011e-05 4.99149e-05 3.36651e-05 1.78766e-05 5.94863e-06 9.75629e-07 1.00864e-07 5.93771e-08 1.37237e-07 1.70594e-07 8.38715e-07 4.61444e-06 1.1506e-05 1.79206e-05 2.64373e-05 3.77335e-05 5.20518e-05 6.88216e-05 8.63282e-05 0.000101848 0.000111788 0.000119585 0.000125461 0.000129504 0.00013183 0.000132571 0.000131798 0.000128614 0.000123215 0.000116937 0.000110167 0.000102893 9.49673e-05 8.6141e-05 7.58732e-05 6.27849e-05 4.80182e-05 3.2309e-05 1.7072e-05 5.63912e-06 9.21771e-07 9.69855e-08 5.82019e-08 1.37281e-07 1.66079e-07 7.64326e-07 4.16904e-06 1.02579e-05 1.62244e-05 2.43512e-05 3.54026e-05 4.97334e-05 6.67199e-05 8.41578e-05 9.80705e-05 0.000107476 0.000114961 0.000120564 0.000124393 0.000126581 0.00012727 0.000126528 0.000124406 0.000119264 0.000112832 0.000105946 9.86801e-05 9.08755e-05 8.22843e-05 7.24614e-05 6.03354e-05 4.61324e-05 3.09935e-05 1.6314e-05 5.35577e-06 8.73478e-07 9.35902e-08 5.72064e-08 1.37105e-07 1.61454e-07 6.91131e-07 3.7292e-06 9.07152e-06 1.45804e-05 2.22894e-05 3.30602e-05 4.73754e-05 6.455e-05 8.1839e-05 9.38894e-05 0.000102953 0.000110114 0.000115439 0.000119059 0.000121123 0.00012178 0.000121093 0.000119101 0.000115172 0.000108874 0.000101901 9.46383e-05 8.69694e-05 7.86348e-05 6.92377e-05 5.79072e-05 4.42447e-05 2.96581e-05 1.55334e-05 5.06284e-06 8.23364e-07 8.98968e-08 5.60029e-08 1.36742e-07 1.57007e-07 6.23783e-07 3.31859e-06 7.97078e-06 1.30243e-05 2.03083e-05 3.08007e-05 4.51242e-05 6.24428e-05 7.90681e-05 8.95894e-05 9.82698e-05 0.000105073 0.000110096 0.000113494 0.000115429 0.00011606 0.000115441 0.000113593 0.00011057 0.00010464 9.76286e-05 9.03578e-05 8.27923e-05 7.46906e-05 6.57607e-05 5.54548e-05 4.23841e-05 2.83835e-05 1.48151e-05 4.80076e-06 7.79172e-07 8.67739e-08 5.50555e-08 1.36142e-07 1.52432e-07 5.57544e-07 2.91462e-06 6.92855e-06 1.15158e-05 1.83412e-05 2.85158e-05 4.28083e-05 6.00681e-05 7.48981e-05 8.50132e-05 9.3289e-05 9.97261e-05 0.000104456 0.000107652 0.000109489 0.000110132 0.000109622 0.00010796 0.000105187 0.000100389 9.35789e-05 8.63491e-05 7.89204e-05 7.10937e-05 6.25882e-05 5.28967e-05 4.04845e-05 2.70423e-05 1.40365e-05 4.51615e-06 7.33474e-07 8.43971e-08 5.37783e-08 1.35342e-07 1.48133e-07 4.99182e-07 2.553e-06 5.99104e-06 1.01254e-05 1.64887e-05 2.63485e-05 4.06641e-05 5.79253e-05 7.06008e-05 8.02472e-05 8.8066e-05 9.41022e-05 9.85201e-05 0.000101513 0.000103266 0.000103944 0.000103574 0.000102125 9.96293e-05 9.58008e-05 8.92007e-05 8.20563e-05 7.47857e-05 6.72217e-05 5.90923e-05 4.99735e-05 3.86531e-05 2.58243e-05 1.33786e-05 4.29357e-06 7.01246e-07 8.34701e-08 5.29004e-08 1.34308e-07 1.43702e-07 4.41897e-07 2.20007e-06 5.10925e-06 8.78674e-06 1.4655e-05 2.41408e-05 3.83903e-05 5.51596e-05 6.59297e-05 7.50766e-05 8.24255e-05 8.8067e-05 9.21974e-05 9.5026e-05 9.67435e-05 9.75152e-05 9.73445e-05 9.61706e-05 9.40086e-05 9.08486e-05 8.50678e-05 7.81402e-05 7.10719e-05 6.38055e-05 5.60518e-05 4.73988e-05 3.67805e-05 2.4517e-05 1.2642e-05 4.03892e-06 6.62142e-07 8.11531e-08 5.15119e-08 1.33057e-07 1.39582e-07 3.93581e-07 1.89803e-06 4.34273e-06 7.58965e-06 1.29774e-05 2.21108e-05 3.62074e-05 5.09361e-05 6.11198e-05 6.96787e-05 7.64924e-05 8.17017e-05 8.55306e-05 8.81957e-05 8.98941e-05 9.07898e-05 9.08513e-05 8.99805e-05 8.81742e-05 8.53995e-05 8.04461e-05 7.37768e-05 6.69027e-05 5.99034e-05 5.25247e-05 4.44608e-05 3.50064e-05 2.33788e-05 1.20529e-05 3.84391e-06 6.32151e-07 7.93992e-08 5.06943e-08 1.3158e-07 1.35283e-07 3.4553e-07 1.60303e-06 3.62774e-06 6.45143e-06 1.13365e-05 2.00839e-05 3.40868e-05 4.63046e-05 5.58427e-05 6.37895e-05 7.00785e-05 7.4893e-05 7.84758e-05 8.10388e-05 8.27838e-05 8.38757e-05 8.42412e-05 8.37447e-05 8.23617e-05 8.00204e-05 7.63167e-05 7.00241e-05 6.33965e-05 5.67018e-05 4.96989e-05 4.20845e-05 3.32338e-05 2.21481e-05 1.13632e-05 3.60517e-06 5.93406e-07 7.61469e-08 4.91324e-08 1.29842e-07 1.31284e-07 3.07034e-07 1.36265e-06 3.02544e-06 5.46089e-06 9.87113e-06 1.82577e-05 3.18138e-05 4.16292e-05 5.04248e-05 5.76818e-05 6.34023e-05 6.78107e-05 7.11567e-05 7.3636e-05 7.54196e-05 7.66932e-05 7.73738e-05 7.72501e-05 7.62413e-05 7.42835e-05 7.13718e-05 6.54586e-05 5.90662e-05 5.26737e-05 4.60739e-05 3.90469e-05 3.12428e-05 2.09142e-05 1.07164e-05 3.38606e-06 5.58102e-07 7.36806e-08 4.82642e-08 1.27833e-07 1.26995e-07 2.67326e-07 1.12116e-06 2.45576e-06 4.49937e-06 8.37403e-06 1.61692e-05 2.754e-05 3.6474e-05 4.44585e-05 5.10261e-05 5.62331e-05 6.03265e-05 6.35476e-05 6.60681e-05 6.80105e-05 6.95523e-05 7.06128e-05 7.08999e-05 7.03468e-05 6.89097e-05 6.65594e-05 6.20894e-05 5.60716e-05 4.99243e-05 4.36509e-05 3.70202e-05 2.96558e-05 1.99039e-05 1.01619e-05 3.19594e-06 5.26261e-07 7.04429e-08 4.65587e-08 1.25443e-07 1.2304e-07 2.39711e-07 9.47453e-07 2.01068e-06 3.70847e-06 7.0873e-06 1.43664e-05 2.35095e-05 3.14352e-05 3.84886e-05 4.42751e-05 4.89036e-05 5.26312e-05 5.56833e-05 5.82337e-05 6.03988e-05 6.21909e-05 6.34879e-05 6.40779e-05 6.38797e-05 6.28325e-05 6.08938e-05 5.71747e-05 5.15323e-05 4.57626e-05 3.99364e-05 3.38202e-05 2.70893e-05 1.8284e-05 9.27315e-06 2.89265e-06 4.7787e-07 6.68405e-08 4.53391e-08 1.22655e-07 1.18659e-07 2.09761e-07 7.63217e-07 1.56709e-06 2.86808e-06 5.53709e-06 1.16635e-05 1.86617e-05 2.54698e-05 3.16698e-05 3.68484e-05 4.10827e-05 4.46002e-05 4.7617e-05 5.03294e-05 5.28151e-05 5.50238e-05 5.67736e-05 5.78214e-05 5.8156e-05 5.77062e-05 5.64145e-05 5.42129e-05 4.91644e-05 4.35914e-05 3.79935e-05 3.21632e-05 2.58137e-05 1.77619e-05 9.03954e-06 2.81718e-06 4.63067e-07 6.45434e-08 4.37408e-08 1.19292e-07 1.14774e-07 1.9877e-07 6.85769e-07 1.31721e-06 2.2879e-06 4.2593e-06 8.94155e-06 1.40334e-05 1.95112e-05 2.47748e-05 2.93681e-05 3.32548e-05 3.657e-05 3.95198e-05 4.23205e-05 4.49814e-05 4.74284e-05 4.95036e-05 5.09417e-05 5.15763e-05 5.14029e-05 5.04151e-05 4.85467e-05 4.43193e-05 3.92706e-05 3.41879e-05 2.88973e-05 2.31419e-05 1.55743e-05 7.77867e-06 2.3906e-06 3.97077e-07 5.9283e-08 4.17397e-08 1.15111e-07 1.10062e-07 1.86338e-07 6.15084e-07 1.13105e-06 1.80331e-06 2.98497e-06 5.52422e-06 8.55907e-06 1.19837e-05 1.58955e-05 1.99184e-05 2.37829e-05 2.73441e-05 3.06225e-05 3.37899e-05 3.68571e-05 3.97612e-05 4.23816e-05 4.45155e-05 4.59206e-05 4.64119e-05 4.60388e-05 4.48188e-05 4.17325e-05 3.69533e-05 3.20211e-05 2.69592e-05 2.16124e-05 1.5324e-05 7.76883e-06 2.40157e-06 3.95335e-07 5.80857e-08 4.07159e-08 1.09664e-07 1.05148e-07 1.91253e-07 6.57943e-07 1.26868e-06 1.97504e-06 3.00958e-06 4.6893e-06 5.93086e-06 7.33138e-06 9.16458e-06 1.15651e-05 1.45519e-05 1.79856e-05 2.15442e-05 2.50941e-05 2.85845e-05 3.19141e-05 3.49708e-05 3.7614e-05 3.96665e-05 4.08897e-05 4.10254e-05 4.0135e-05 3.8371e-05 3.42444e-05 2.96927e-05 2.50448e-05 2.01264e-05 1.36901e-05 6.78943e-06 2.06202e-06 3.42461e-07 5.34432e-08 3.8649e-08 1.0205e-07 9.86865e-08 1.93591e-07 6.85933e-07 1.43792e-06 2.35214e-06 3.65049e-06 4.8548e-06 5.66371e-06 6.39153e-06 7.11713e-06 7.94607e-06 9.03048e-06 1.05743e-05 1.27858e-05 1.57359e-05 1.91637e-05 2.27097e-05 2.61814e-05 2.93626e-05 3.20494e-05 3.40253e-05 3.50041e-05 3.46999e-05 3.32284e-05 2.97927e-05 2.5476e-05 2.11737e-05 1.6771e-05 1.17645e-05 5.93655e-06 1.86313e-06 3.17998e-07 5.166e-08 3.84667e-08 9.51893e-08 9.44709e-08 2.0761e-07 7.5338e-07 1.835e-06 3.11045e-06 4.27292e-06 5.25047e-06 6.09096e-06 6.86419e-06 7.62782e-06 8.42223e-06 9.27429e-06 1.02096e-05 1.12825e-05 1.26268e-05 1.44914e-05 1.71506e-05 2.05718e-05 2.43581e-05 2.81798e-05 3.17002e-05 3.45842e-05 3.64496e-05 3.67704e-05 3.42882e-05 2.97557e-05 2.47887e-05 1.97624e-05 1.45781e-05 7.29538e-06 2.1467e-06 3.397e-07 5.36439e-08 3.98524e-08 9.13742e-08 9.6868e-08 2.83456e-07 1.10399e-06 2.61284e-06 4.20283e-06 5.45637e-06 6.42298e-06 7.28451e-06 8.1836e-06 9.22063e-06 1.04683e-05 1.19657e-05 1.36981e-05 1.54135e-05 1.73896e-05 1.93498e-05 2.09304e-05 2.21575e-05 2.29877e-05 2.34047e-05 2.34074e-05 2.30157e-05 2.22302e-05 2.10223e-05 1.93909e-05 1.73402e-05 1.48768e-05 1.19736e-05 8.58013e-06 4.83672e-06 1.69789e-06 3.04952e-07 5.04753e-08 3.72807e-08 9.36673e-08 1.08842e-07 4.27971e-07 1.63898e-06 3.37201e-06 4.68081e-06 5.5654e-06 6.31999e-06 7.10601e-06 8.00664e-06 9.09233e-06 1.04514e-05 1.21987e-05 1.44643e-05 1.73648e-05 2.09692e-05 2.52761e-05 3.02006e-05 3.55601e-05 4.10299e-05 4.62208e-05 5.06414e-05 5.37556e-05 5.50608e-05 5.4153e-05 5.07857e-05 3.85892e-05 2.66382e-05 1.84844e-05 1.2421e-05 5.74511e-06 1.33541e-06 1.97399e-07 3.98556e-08 3.11634e-08 7.27854e-08 1.49597e-07 1.1829e-06 3.71803e-06 4.76196e-06 5.16327e-06 5.66304e-06 6.26176e-06 6.92555e-06 7.65044e-06 8.44011e-06 9.29655e-06 1.02157e-05 1.11826e-05 1.21656e-05 1.31113e-05 1.39433e-05 1.45667e-05 1.48537e-05 1.48676e-05 1.45517e-05 1.38942e-05 1.29114e-05 1.16422e-05 1.01397e-05 8.46413e-06 6.68261e-06 4.88453e-06 3.17196e-06 1.71191e-06 6.90922e-07 1.89944e-07 3.8993e-08 1.31186e-08 1.09813e-08 3.61012e-08 2.07365e-06 2.45922e-06 2.6651e-06 2.86389e-06 3.00987e-06 3.10901e-06 3.17372e-06 3.21082e-06 3.22504e-06 3.22008e-06 3.19893e-06 3.16399e-06 3.11718e-06 3.05992e-06 2.99317e-06 2.91747e-06 2.83272e-06 2.73684e-06 2.63245e-06 2.51654e-06 2.38765e-06 2.243e-06 2.07994e-06 1.89542e-06 1.68684e-06 1.45292e-06 1.19578e-06 9.23891e-07 6.57208e-07 4.26278e-07 2.60244e-07 1.57867e-07 9.28243e-08 1.63411e-09 4.4209e-11 4.2661e-09 8.00263e-09 1.24658e-08 1.79093e-08 2.45782e-08 3.26696e-08 4.22999e-08 5.34846e-08 6.61343e-08 8.00655e-08 9.50246e-08 1.10715e-07 1.26822e-07 1.43028e-07 1.59018e-07 1.7448e-07 1.89094e-07 2.02523e-07 2.14373e-07 2.24309e-07 2.31977e-07 2.37029e-07 2.3916e-07 2.38157e-07 2.33946e-07 2.26639e-07 2.16566e-07 2.04277e-07 1.90505e-07 1.76168e-07 1.62441e-07 1.48756e-07 1.24619e-07 3.44813e-09 9.66936e-11 9.84575e-11 2.03991e-10 9.61649e-10 3.84899e-09 1.14611e-08 2.72243e-08 5.47112e-08 9.66239e-08 1.53657e-07 2.23668e-07 3.01542e-07 3.79889e-07 4.5042e-07 5.05615e-07 5.40251e-07 5.52353e-07 5.43311e-07 5.17135e-07 4.79632e-07 4.36576e-07 3.92952e-07 3.52458e-07 3.18546e-07 2.90878e-07 2.68499e-07 2.50147e-07 2.3359e-07 2.15037e-07 1.85527e-07 1.30223e-07 6.16548e-08 2.08874e-08 1.03667e-08 1.01614e-08 2.66111e-10 2.96936e-10 9.05082e-10 4.57333e-09 1.7005e-08 4.69028e-08 1.04393e-07 1.98335e-07 3.32641e-07 5.03273e-07 6.98079e-07 8.99688e-07 1.08973e-06 1.25249e-06 1.37707e-06 1.45801e-06 1.49467e-06 1.48916e-06 1.44451e-06 1.36697e-06 1.26408e-06 1.14291e-06 1.01049e-06 8.74049e-07 7.40395e-07 6.1543e-07 5.03085e-07 4.02849e-07 3.06202e-07 2.00926e-07 1.00029e-07 3.86385e-08 1.7887e-08 1.54975e-08 1.7023e-08 9.31213e-10 1.00869e-09 2.73947e-09 1.33868e-08 5.05953e-08 1.45001e-07 3.38985e-07 6.75404e-07 1.17389e-06 1.81047e-06 2.51996e-06 3.21828e-06 3.82703e-06 4.28916e-06 4.57453e-06 4.67876e-06 4.61838e-06 4.42352e-06 4.12674e-06 3.76541e-06 3.37171e-06 2.96983e-06 2.57632e-06 2.20164e-06 1.85172e-06 1.52842e-06 1.22714e-06 9.32523e-07 6.26244e-07 3.33745e-07 1.33184e-07 4.50187e-08 2.20249e-08 2.04352e-08 2.23269e-08 2.15592e-09 2.32671e-09 6.88932e-09 3.63538e-08 1.45163e-07 4.37299e-07 1.05337e-06 2.08487e-06 3.46513e-06 4.98488e-06 6.41756e-06 7.60423e-06 8.46029e-06 8.95362e-06 9.08675e-06 8.8885e-06 8.41082e-06 7.72491e-06 6.90791e-06 6.04227e-06 5.19369e-06 4.40593e-06 3.7007e-06 3.08117e-06 2.53678e-06 2.0469e-06 1.58425e-06 1.12625e-06 6.71789e-07 3.38428e-07 1.3375e-07 4.7081e-08 2.49143e-08 2.35433e-08 2.54981e-08 2.9659e-09 3.27876e-09 1.13729e-08 6.37197e-08 2.54306e-07 7.40499e-07 1.66837e-06 3.03241e-06 4.6531e-06 6.30756e-06 7.8297e-06 9.12194e-06 1.00961e-05 1.07419e-05 1.11576e-05 1.12564e-05 1.09834e-05 1.03925e-05 9.53438e-06 8.49998e-06 7.38624e-06 6.27493e-06 5.22464e-06 4.26713e-06 3.40757e-06 2.62951e-06 1.74314e-06 1.04957e-06 5.90448e-07 3.20532e-07 1.42254e-07 5.09836e-08 2.73105e-08 2.58678e-08 2.7957e-08 3.47755e-09 3.84642e-09 1.3507e-08 7.54435e-08 2.98086e-07 8.61446e-07 1.937e-06 3.5271e-06 5.42361e-06 7.35197e-06 8.92172e-06 1.01169e-05 1.12047e-05 1.22006e-05 1.30659e-05 1.34993e-05 1.34561e-05 1.30733e-05 1.23724e-05 1.14166e-05 1.02627e-05 8.97808e-06 7.62889e-06 6.27264e-06 4.9524e-06 3.36555e-06 2.07441e-06 1.20147e-06 6.69095e-07 3.6416e-07 1.68385e-07 5.88336e-08 3.04014e-08 2.85956e-08 3.08991e-08 4.0514e-09 4.58593e-09 1.78619e-08 1.03128e-07 4.11312e-07 1.18771e-06 2.6316e-06 4.67387e-06 7.00158e-06 9.2885e-06 1.09559e-05 1.24039e-05 1.37555e-05 1.5021e-05 1.60864e-05 1.63889e-05 1.63662e-05 1.60191e-05 1.53528e-05 1.44181e-05 1.32428e-05 1.18541e-05 1.02869e-05 8.58528e-06 6.68641e-06 4.34505e-06 2.61238e-06 1.49546e-06 8.28842e-07 4.48419e-07 2.10558e-07 7.03444e-08 3.40628e-08 3.14658e-08 3.39308e-08 4.42804e-09 5.07351e-09 2.066e-08 1.19953e-07 4.74933e-07 1.35673e-06 2.97261e-06 5.23471e-06 7.80841e-06 1.03561e-05 1.22755e-05 1.3952e-05 1.5568e-05 1.7153e-05 1.8534e-05 1.90754e-05 1.92591e-05 1.90965e-05 1.85967e-05 1.77816e-05 1.66576e-05 1.52258e-05 1.34899e-05 1.14692e-05 8.80863e-06 5.7296e-06 3.45399e-06 1.98569e-06 1.10336e-06 5.95141e-07 2.84169e-07 8.97333e-08 3.88462e-08 3.44611e-08 3.70253e-08 4.89083e-09 5.71745e-09 2.48996e-08 1.46864e-07 5.83283e-07 1.66322e-06 3.61216e-06 6.27755e-06 9.24562e-06 1.21433e-05 1.43616e-05 1.63413e-05 1.8279e-05 2.01667e-05 2.14637e-05 2.2148e-05 2.24584e-05 2.24101e-05 2.20132e-05 2.12696e-05 2.01689e-05 1.86897e-05 1.68059e-05 1.45077e-05 1.10808e-05 7.31711e-06 4.49194e-06 2.62906e-06 1.48192e-06 8.05083e-07 3.88872e-07 1.16857e-07 4.46449e-08 3.75361e-08 4.01286e-08 5.40505e-09 6.45645e-09 3.00685e-08 1.79733e-07 7.13584e-07 2.02013e-06 4.32666e-06 7.40263e-06 1.0766e-05 1.40229e-05 1.65199e-05 1.87766e-05 2.10061e-05 2.3195e-05 2.47138e-05 2.55871e-05 2.60547e-05 2.61285e-05 2.58141e-05 2.51062e-05 2.39829e-05 2.24064e-05 2.03314e-05 1.77302e-05 1.33372e-05 8.98836e-06 5.65974e-06 3.39523e-06 1.95526e-06 1.07954e-06 5.3467e-07 1.55646e-07 5.21776e-08 4.06378e-08 4.31365e-08 5.8994e-09 7.18936e-09 3.54168e-08 2.1374e-07 8.47395e-07 2.38214e-06 5.04071e-06 8.51628e-06 1.22682e-05 1.58867e-05 1.87677e-05 2.13413e-05 2.38953e-05 2.63984e-05 2.79996e-05 2.90809e-05 2.97276e-05 2.99444e-05 2.9728e-05 2.90642e-05 2.79172e-05 2.62354e-05 2.39597e-05 2.09071e-05 1.56871e-05 1.07912e-05 6.97341e-06 4.29525e-06 2.53501e-06 1.42873e-06 7.2175e-07 2.0447e-07 5.99753e-08 4.37004e-08 4.60647e-08 6.47076e-09 8.07829e-09 4.23952e-08 2.58701e-07 1.02518e-06 2.85927e-06 5.96181e-06 9.91623e-06 1.41108e-05 1.8122e-05 2.13478e-05 2.423e-05 2.70937e-05 2.98906e-05 3.16292e-05 3.28913e-05 3.36844e-05 3.40062e-05 3.38459e-05 3.31811e-05 3.19639e-05 3.01314e-05 2.76174e-05 2.36631e-05 1.7971e-05 1.26264e-05 8.36566e-06 5.28845e-06 3.20014e-06 1.84373e-06 9.47958e-07 2.64109e-07 6.91266e-08 4.67624e-08 4.89001e-08 7.04011e-09 8.99186e-09 4.98429e-08 3.066e-07 1.21222e-06 3.34977e-06 6.88516e-06 1.12986e-05 1.59246e-05 2.03324e-05 2.39796e-05 2.7189e-05 3.03547e-05 3.33478e-05 3.53469e-05 3.68114e-05 3.77648e-05 3.81955e-05 3.80845e-05 3.7403e-05 3.60926e-05 3.40831e-05 3.13063e-05 2.64091e-05 2.02684e-05 1.45163e-05 9.84089e-06 6.37399e-06 3.95115e-06 2.32815e-06 1.22196e-06 3.39182e-07 8.11029e-08 4.98904e-08 5.16461e-08 7.64178e-09 1.00013e-08 5.85256e-08 3.62739e-07 1.43078e-06 3.91514e-06 7.92838e-06 1.28337e-05 1.79129e-05 2.2731e-05 2.68255e-05 3.03659e-05 3.38033e-05 3.69588e-05 3.92351e-05 4.0889e-05 4.19866e-05 4.25056e-05 4.24187e-05 4.16934e-05 4.02619e-05 3.80499e-05 3.49917e-05 2.91382e-05 2.25663e-05 1.64421e-05 1.13808e-05 7.53738e-06 4.7785e-06 2.87724e-06 1.54173e-06 4.29247e-07 9.53486e-08 5.30723e-08 5.4309e-08 8.26836e-09 1.10908e-08 6.82665e-08 4.25831e-07 1.67462e-06 4.53425e-06 9.04654e-06 1.44555e-05 1.99978e-05 2.52373e-05 2.9812e-05 3.36765e-05 3.7326e-05 4.07101e-05 4.32685e-05 4.5109e-05 4.63422e-05 4.69335e-05 4.68484e-05 4.60547e-05 4.44777e-05 4.20431e-05 3.81419e-05 3.1825e-05 2.48953e-05 1.84195e-05 1.29902e-05 8.78002e-06 5.6837e-06 3.49364e-06 1.90992e-06 5.35505e-07 1.11975e-07 5.63167e-08 5.68914e-08 8.91081e-09 1.22503e-08 7.9035e-08 4.95641e-07 1.94209e-06 5.20044e-06 1.02258e-05 1.61448e-05 2.21571e-05 2.78273e-05 3.29278e-05 3.71176e-05 4.09991e-05 4.46015e-05 4.74099e-05 4.94334e-05 5.07938e-05 5.14434e-05 5.13407e-05 5.04573e-05 4.87143e-05 4.60396e-05 4.12085e-05 3.44725e-05 2.72291e-05 2.04333e-05 1.46577e-05 1.00924e-05 6.66015e-06 4.17377e-06 2.32369e-06 6.57557e-07 1.30947e-07 5.96257e-08 5.93974e-08 9.58303e-09 1.35053e-08 9.10854e-08 5.73878e-07 2.23964e-06 5.92833e-06 1.14901e-05 1.79332e-05 2.44255e-05 3.05329e-05 3.60642e-05 4.06763e-05 4.48064e-05 4.86124e-05 5.16705e-05 5.38702e-05 5.5347e-05 5.60395e-05 5.58998e-05 5.49066e-05 5.29797e-05 5.00035e-05 4.42558e-05 3.71151e-05 2.95803e-05 2.24875e-05 1.63831e-05 1.14726e-05 7.70574e-06 4.91681e-06 2.7826e-06 7.95915e-07 1.52399e-07 6.30092e-08 6.18288e-08 1.02729e-08 1.48317e-08 1.04205e-07 6.591e-07 2.5607e-06 6.69859e-06 1.28044e-05 1.97747e-05 2.67513e-05 3.33018e-05 3.92378e-05 4.43486e-05 4.87371e-05 5.2726e-05 5.602e-05 5.83931e-05 5.99793e-05 6.07035e-05 6.05119e-05 5.93921e-05 5.72666e-05 5.34142e-05 4.72288e-05 3.97779e-05 3.19687e-05 2.45876e-05 1.81653e-05 1.29169e-05 8.81645e-06 5.71923e-06 3.28276e-06 9.49676e-07 1.76235e-07 6.64638e-08 6.41864e-08 1.09914e-08 1.62441e-08 1.18558e-07 7.52418e-07 2.90911e-06 7.5189e-06 1.41808e-05 2.16839e-05 2.9149e-05 3.61461e-05 4.24895e-05 4.81061e-05 5.2746e-05 5.69018e-05 6.04447e-05 6.29878e-05 6.46768e-05 6.54234e-05 6.51684e-05 6.3908e-05 6.1571e-05 5.6773e-05 5.01593e-05 4.24355e-05 3.43858e-05 2.67347e-05 2.00059e-05 1.44259e-05 9.99244e-06 6.58119e-06 3.82344e-06 1.11896e-06 2.02508e-07 6.99942e-08 6.64721e-08 1.17307e-08 1.77148e-08 1.33929e-07 8.5262e-07 3.27998e-06 8.37664e-06 1.55994e-05 2.36377e-05 3.15951e-05 3.90428e-05 4.5796e-05 5.17784e-05 5.68388e-05 6.11417e-05 6.48515e-05 6.76338e-05 6.94192e-05 7.01813e-05 6.98556e-05 6.84437e-05 6.53204e-05 6.0034e-05 5.30925e-05 4.51124e-05 3.68273e-05 2.89251e-05 2.18999e-05 1.59949e-05 1.123e-05 7.50016e-06 4.40136e-06 1.30299e-06 2.31144e-07 7.35967e-08 6.86851e-08 1.24971e-08 1.92247e-08 1.50231e-07 9.59507e-07 3.67275e-06 9.27024e-06 1.70582e-05 2.56327e-05 3.40821e-05 4.19788e-05 4.9138e-05 5.54823e-05 6.09725e-05 6.5419e-05 6.91933e-05 7.22149e-05 7.41526e-05 7.49241e-05 7.45302e-05 7.27284e-05 6.89074e-05 6.32274e-05 5.60074e-05 4.78002e-05 3.92993e-05 3.11633e-05 2.38482e-05 1.76223e-05 1.2527e-05 8.47418e-06 5.01398e-06 1.50118e-06 2.62086e-07 7.72677e-08 7.08242e-08 1.32843e-08 2.07018e-08 1.67058e-07 1.07155e-06 4.0835e-06 1.0193e-05 1.85502e-05 2.76631e-05 3.66057e-05 4.495e-05 5.25108e-05 5.92089e-05 6.50101e-05 6.9755e-05 7.35655e-05 7.65807e-05 7.86502e-05 7.95308e-05 7.88829e-05 7.6538e-05 7.2355e-05 6.63797e-05 5.8914e-05 5.04973e-05 4.17923e-05 3.34257e-05 2.58439e-05 1.93043e-05 1.38809e-05 9.50151e-06 5.65829e-06 1.71267e-06 2.95234e-07 8.09988e-08 7.28853e-08 1.40978e-08 2.20503e-08 1.84138e-07 1.18887e-06 4.51488e-06 1.11519e-05 2.00857e-05 2.97397e-05 3.91747e-05 4.7962e-05 5.59158e-05 6.29552e-05 6.90432e-05 7.41059e-05 7.7978e-05 8.09465e-05 8.29155e-05 8.36439e-05 8.2793e-05 8.01926e-05 7.57308e-05 6.94914e-05 6.18007e-05 5.31913e-05 4.42971e-05 3.57145e-05 2.7881e-05 2.10344e-05 1.52867e-05 1.05786e-05 6.3307e-06 1.93643e-06 3.30463e-07 8.47804e-08 7.48652e-08 1.49349e-08 2.3213e-08 2.01727e-07 1.31411e-06 4.97507e-06 1.21593e-05 2.16779e-05 3.1874e-05 4.1798e-05 5.10215e-05 5.93585e-05 6.67268e-05 7.30873e-05 7.8417e-05 8.23655e-05 8.52649e-05 8.71027e-05 8.76495e-05 8.65789e-05 8.37297e-05 7.90166e-05 7.25474e-05 6.46607e-05 5.58798e-05 4.68123e-05 3.80277e-05 2.99543e-05 2.28096e-05 1.67419e-05 1.17034e-05 7.02795e-06 2.17142e-06 3.67643e-07 8.86012e-08 7.67587e-08 1.58052e-08 2.47361e-08 2.22593e-07 1.45676e-06 5.48211e-06 1.32351e-05 2.33417e-05 3.40745e-05 4.44786e-05 5.41275e-05 6.28353e-05 7.05179e-05 7.71336e-05 8.26547e-05 8.67012e-05 8.95207e-05 9.1205e-05 9.15526e-05 9.02564e-05 8.71674e-05 8.22237e-05 7.55518e-05 6.74936e-05 5.856e-05 4.9333e-05 4.0355e-05 3.20403e-05 2.462e-05 1.82399e-05 1.2871e-05 7.74518e-06 2.41601e-06 4.0655e-07 9.24434e-08 7.8559e-08 1.67085e-08 2.67867e-08 2.4704e-07 1.61525e-06 6.02577e-06 1.43564e-05 2.50476e-05 3.63114e-05 4.719e-05 5.72582e-05 6.63293e-05 7.43173e-05 8.11778e-05 8.68793e-05 9.09803e-05 9.37056e-05 9.52247e-05 9.53661e-05 9.38449e-05 9.05262e-05 8.5369e-05 7.85146e-05 7.03037e-05 6.12317e-05 5.18558e-05 4.2694e-05 3.41486e-05 2.64623e-05 1.97767e-05 1.40783e-05 8.47854e-06 2.66884e-06 4.46995e-07 9.62905e-08 8.02588e-08 1.7644e-08 2.88962e-08 2.72312e-07 1.77934e-06 6.58374e-06 1.54936e-05 2.67673e-05 3.85605e-05 4.99112e-05 6.03943e-05 6.98216e-05 7.81051e-05 8.51979e-05 9.10646e-05 9.51843e-05 9.78008e-05 9.91481e-05 9.90827e-05 9.73425e-05 9.38073e-05 8.84538e-05 8.14353e-05 7.30888e-05 6.38913e-05 5.43758e-05 4.50389e-05 3.62723e-05 2.83296e-05 2.13462e-05 1.53199e-05 9.22269e-06 2.92792e-06 4.88689e-07 1.00119e-07 8.18497e-08 1.86097e-08 3.11331e-08 2.99531e-07 1.95547e-06 7.17336e-06 1.66728e-05 2.85281e-05 4.0845e-05 5.266e-05 6.35487e-05 7.33219e-05 8.18901e-05 8.92042e-05 9.52248e-05 9.93047e-05 0.000101796 0.000102971 0.000102705 0.000100757 9.70206e-05 9.14889e-05 8.43231e-05 7.58549e-05 6.65422e-05 5.6895e-05 4.73903e-05 3.84114e-05 3.0221e-05 2.29462e-05 1.6593e-05 9.97426e-06 3.19184e-06 5.31411e-07 1.03912e-07 8.33262e-08 1.96058e-08 3.34858e-08 3.28434e-07 2.1416e-06 7.78731e-06 1.78813e-05 3.03158e-05 4.31514e-05 5.54235e-05 6.67084e-05 7.68167e-05 8.56573e-05 9.31798e-05 9.93437e-05 0.000103324 0.000105677 0.000106685 0.00010623 0.000104088 0.000100168 9.44762e-05 8.71784e-05 7.86006e-05 6.91826e-05 5.94115e-05 4.97458e-05 4.05602e-05 3.21214e-05 2.45715e-05 1.78946e-05 1.07296e-05 3.45919e-06 5.74953e-07 1.07651e-07 8.46824e-08 2.06288e-08 3.59388e-08 3.58803e-07 2.33631e-06 8.41976e-06 1.91065e-05 3.21118e-05 4.54573e-05 5.81778e-05 6.98502e-05 8.02841e-05 8.93873e-05 9.71078e-05 0.000103406 0.000107231 0.000109439 0.000110286 0.000109654 0.000107334 0.00010325 9.74166e-05 9.00037e-05 8.13296e-05 7.18157e-05 6.19261e-05 5.21039e-05 4.27166e-05 3.40356e-05 2.62186e-05 1.922e-05 1.14846e-05 3.72826e-06 6.19034e-07 1.11318e-07 8.59162e-08 2.16771e-08 3.85069e-08 3.9093e-07 2.54126e-06 9.07531e-06 2.03569e-05 3.39276e-05 4.77746e-05 6.0933e-05 7.29809e-05 8.37278e-05 9.30805e-05 0.000100986 0.000107335 0.000111009 0.000113079 0.00011377 0.000112973 0.000110495 0.000106268 0.000100312 9.28001e-05 8.40399e-05 7.44371e-05 6.44358e-05 5.44627e-05 4.48803e-05 3.59652e-05 2.78876e-05 2.05689e-05 1.22383e-05 3.99859e-06 6.63587e-07 1.14906e-07 8.7027e-08 2.27466e-08 4.11686e-08 4.2447e-07 2.75413e-06 9.74584e-06 2.16174e-05 3.57435e-05 5.00812e-05 6.36669e-05 7.60795e-05 8.71283e-05 9.67197e-05 0.0001048 0.00011109 0.000114647 0.000116582 0.00011713 0.000116187 0.000113571 0.000109219 0.000103161 9.55643e-05 8.6729e-05 7.70447e-05 6.69371e-05 5.68185e-05 4.70472e-05 3.7906e-05 2.9575e-05 2.19378e-05 1.29876e-05 4.26879e-06 7.08373e-07 1.18401e-07 8.80181e-08 2.38344e-08 4.39296e-08 4.59575e-07 2.97573e-06 1.0433e-05 2.28906e-05 3.75621e-05 5.23788e-05 6.6379e-05 7.91431e-05 9.04807e-05 0.000100298 0.000108542 0.000114716 0.000118141 0.000119944 0.000120364 0.000119296 0.000116562 0.000112107 0.000105964 9.82978e-05 8.93984e-05 7.96407e-05 6.94331e-05 5.91741e-05 4.92199e-05 3.98602e-05 3.12827e-05 2.33279e-05 1.37331e-05 4.53921e-06 7.5346e-07 1.2181e-07 8.88939e-08 2.49363e-08 4.6778e-08 4.96077e-07 3.20482e-06 1.11326e-05 2.41694e-05 3.93749e-05 5.46586e-05 6.90607e-05 8.21637e-05 9.37776e-05 0.000103809 0.000112205 0.000118201 0.00012148 0.00012316 0.00012347 0.000122297 0.000119468 0.00011493 0.00010872 0.000100998 9.20454e-05 8.22209e-05 7.19181e-05 6.15246e-05 5.13945e-05 4.18243e-05 3.30077e-05 2.47361e-05 1.44724e-05 4.80877e-06 7.98647e-07 1.25121e-07 8.96599e-08 2.605e-08 4.97053e-08 5.33855e-07 3.44051e-06 1.18415e-05 2.54486e-05 4.11751e-05 5.69122e-05 7.17029e-05 8.51314e-05 9.70089e-05 0.000107243 0.000115781 0.00012154 0.000124662 0.000126229 0.000126447 0.000125193 0.00012229 0.000117689 0.000111427 0.000103663 9.46664e-05 8.4782e-05 7.43899e-05 6.38685e-05 5.35702e-05 4.37988e-05 3.47516e-05 2.61646e-05 1.52064e-05 5.07796e-06 8.44053e-07 1.28342e-07 9.03182e-08 2.71732e-08 5.27035e-08 5.72789e-07 3.6819e-06 1.25568e-05 2.67238e-05 4.29578e-05 5.91346e-05 7.43003e-05 8.80413e-05 0.00010017 0.000110594 0.000119264 0.000124725 0.000127683 0.000129154 0.0001293 0.000127984 0.000125027 0.000120382 0.000114086 0.000106292 9.72603e-05 8.73229e-05 7.68474e-05 6.6204e-05 5.57442e-05 4.57794e-05 3.6509e-05 2.76067e-05 1.5931e-05 5.34471e-06 8.89235e-07 1.31447e-07 9.08745e-08 2.83036e-08 5.57611e-08 6.12694e-07 3.92775e-06 1.32748e-05 2.79891e-05 4.47156e-05 6.13172e-05 7.68436e-05 9.08834e-05 0.000103251 0.000113855 0.000122648 0.000127752 0.000130545 0.000131941 0.000132038 0.000130676 0.000127681 0.000123008 0.000116691 0.000108879 9.98215e-05 8.98377e-05 7.92847e-05 6.85261e-05 5.79138e-05 4.77673e-05 3.82854e-05 2.90706e-05 1.66497e-05 5.61116e-06 9.34686e-07 1.34461e-07 9.13324e-08 2.94379e-08 5.8872e-08 6.53508e-07 4.17759e-06 1.39942e-05 2.9243e-05 4.64465e-05 6.34575e-05 7.93295e-05 9.36538e-05 0.000106246 0.000117019 0.000125927 0.000130608 0.000133263 0.000134606 0.000134667 0.000133272 0.000130254 0.000125569 0.000119247 0.000111429 0.000102354 9.23325e-05 8.17099e-05 7.08431e-05 6.00845e-05 4.97622e-05 4.00734e-05 3.05452e-05 1.73586e-05 5.875e-06 9.79838e-07 1.37344e-07 9.17021e-08 3.05713e-08 6.20212e-08 6.95014e-07 4.43005e-06 1.47111e-05 3.04798e-05 4.81441e-05 6.55488e-05 8.17516e-05 9.63462e-05 0.00010915 0.000120077 0.000128771 0.0001333 0.000135869 0.00013716 0.000137189 0.000135776 0.00013275 0.000128067 0.000121753 0.000113941 0.000104858 9.4802e-05 8.41122e-05 7.31413e-05 6.22449e-05 5.1758e-05 4.18723e-05 3.20304e-05 1.80542e-05 6.13462e-06 1.02444e-06 1.40078e-07 9.19908e-08 3.16987e-08 6.5197e-08 7.37058e-07 4.68409e-06 1.5423e-05 3.16958e-05 4.9804e-05 6.75865e-05 8.41053e-05 9.89568e-05 0.000111961 0.000123032 0.000131455 0.000135835 0.000138328 0.000139583 0.000139598 0.000138184 0.000135165 0.000130496 0.0001242 0.000116402 0.000107319 9.72365e-05 8.6486e-05 7.54175e-05 6.43909e-05 5.37532e-05 4.36942e-05 3.35532e-05 1.87516e-05 6.39642e-06 1.0694e-06 1.42674e-07 9.22059e-08 3.28168e-08 6.83817e-08 7.79353e-07 4.93796e-06 1.61253e-05 3.28847e-05 5.14191e-05 6.95631e-05 8.63828e-05 0.000101478 0.00011467 0.000125877 0.000133978 0.000138203 0.000140632 0.000141869 0.000141886 0.000140485 0.000137489 0.000132847 0.00012658 0.000118807 0.000109733 9.96372e-05 8.88423e-05 7.7699e-05 6.65702e-05 5.5797e-05 4.55144e-05 3.48535e-05 1.94151e-05 6.64956e-06 1.11326e-06 1.45016e-07 9.23555e-08 3.39258e-08 7.15723e-08 8.21845e-07 5.19129e-06 1.68173e-05 3.4046e-05 5.29891e-05 7.14779e-05 8.85836e-05 0.000103909 0.000117278 0.00012861 0.00013635 0.000140415 0.000142793 0.000144028 0.000144064 0.00014269 0.000139729 0.000135126 0.000128899 0.000121161 0.00011211 0.000102013 9.11878e-05 7.99854e-05 6.87695e-05 5.78656e-05 4.73217e-05 3.59399e-05 2.00431e-05 6.89046e-06 1.15484e-06 1.46952e-07 9.24502e-08 3.5026e-08 7.47655e-08 8.64474e-07 5.4437e-06 1.74984e-05 3.51791e-05 5.45132e-05 7.33306e-05 9.07073e-05 0.000106249 0.000119783 0.000131232 0.000138577 0.000142482 0.000144822 0.000146071 0.000146141 0.000144808 0.000141892 0.000137339 0.000131162 0.00012347 0.000114451 0.000104365 9.35213e-05 8.22701e-05 7.09739e-05 5.99388e-05 4.91177e-05 3.69921e-05 2.06441e-05 7.11888e-06 1.19335e-06 1.48285e-07 9.24923e-08 3.6115e-08 7.79635e-08 9.07308e-07 5.6955e-06 1.81693e-05 3.62856e-05 5.59937e-05 7.51235e-05 9.27564e-05 0.000108502 0.00012219 0.000133745 0.00014066 0.000144405 0.000146722 0.000148003 0.000148119 0.000146836 0.000143974 0.000139478 0.000133361 0.000125724 0.000116747 0.000106681 9.58302e-05 8.45408e-05 7.31731e-05 6.20105e-05 5.09059e-05 3.80137e-05 2.12209e-05 7.33419e-06 1.22786e-06 1.48723e-07 9.24839e-08 3.7186e-08 8.11369e-08 9.49882e-07 5.94392e-06 1.88235e-05 3.73563e-05 5.74205e-05 7.68469e-05 9.47221e-05 0.00011066 0.000124492 0.000136147 0.000142592 0.000146186 0.000148502 0.000149829 0.00015 0.000148773 0.000145971 0.00014154 0.000135491 0.000127918 0.000118993 0.000108958 9.81111e-05 8.67954e-05 7.53676e-05 6.4085e-05 5.2691e-05 3.89978e-05 2.1766e-05 7.5311e-06 1.25672e-06 1.48089e-07 9.24342e-08 3.82364e-08 8.42784e-08 9.92088e-07 6.18838e-06 1.94601e-05 3.83905e-05 5.87928e-05 7.84996e-05 9.66028e-05 0.00011272 0.000126687 0.000138436 0.000144371 0.00014784 0.000150179 0.000151561 0.000151788 0.000150618 0.000147881 0.000143522 0.00013755 0.000130051 0.000121187 0.000111193 0.000100361 8.90306e-05 7.75536e-05 6.61568e-05 5.44616e-05 3.9926e-05 2.22647e-05 7.70393e-06 1.28009e-06 1.47055e-07 9.2361e-08 3.92654e-08 8.73654e-08 1.03352e-06 6.42665e-06 2.00744e-05 3.93829e-05 6.01058e-05 8.00777e-05 9.83953e-05 0.000114679 0.000128767 0.000140286 0.000146001 0.000149431 0.000151785 0.000153205 0.000153483 0.000152374 0.000149707 0.000145427 0.000139538 0.00013212 0.000123327 0.000113383 0.000102577 9.12445e-05 7.97298e-05 6.82245e-05 5.622e-05 4.08194e-05 2.27424e-05 7.87216e-06 1.30472e-06 1.46959e-07 9.22833e-08 4.02761e-08 9.0409e-08 1.07433e-06 6.65976e-06 2.06694e-05 4.03379e-05 6.13649e-05 8.15877e-05 0.000100108 0.000116548 0.000130751 0.00014195 0.00014753 0.000150928 0.000153301 0.000154764 0.000155097 0.000154053 0.00015146 0.000147263 0.000141461 0.00013413 0.000125415 0.000115532 0.000104761 9.34369e-05 8.18944e-05 7.02874e-05 5.79731e-05 4.17071e-05 2.32286e-05 8.05351e-06 1.33496e-06 1.48171e-07 9.22068e-08 4.12684e-08 9.34092e-08 1.11452e-06 6.88777e-06 2.12458e-05 4.12573e-05 6.25726e-05 8.30326e-05 0.000101744 0.000118332 0.000132641 0.000143514 0.000148963 0.000152337 0.000154736 0.000156247 0.000156638 0.00015566 0.000153144 0.00014903 0.000143319 0.000136078 0.000127445 0.000117629 0.000106904 9.55987e-05 8.40392e-05 7.23382e-05 5.97161e-05 4.25903e-05 2.37216e-05 8.24359e-06 1.36822e-06 1.49842e-07 9.21262e-08 4.22397e-08 9.63565e-08 1.15395e-06 7.10983e-06 2.1802e-05 4.21397e-05 6.37282e-05 8.44126e-05 0.000103304 0.000120032 0.000134441 0.000144981 0.000150301 0.000153657 0.000156087 0.000157649 0.000158101 0.000157191 0.000154751 0.000150723 0.000145103 0.000137954 0.000129409 0.000119667 0.000108997 9.77258e-05 8.61695e-05 7.4396e-05 6.14767e-05 4.34818e-05 2.42283e-05 8.44393e-06 1.40401e-06 1.51692e-07 9.20488e-08 4.31916e-08 9.9247e-08 1.19249e-06 7.3254e-06 2.23374e-05 4.29848e-05 6.48322e-05 8.57289e-05 0.000104791 0.00012165 0.000136153 0.000146348 0.000151542 0.000154885 0.000157351 0.000158968 0.000159481 0.00015864 0.000156275 0.000152332 0.000146804 0.000139754 0.000131307 0.000121654 0.000111056 9.98313e-05 8.82893e-05 7.6459e-05 6.3258e-05 4.4388e-05 2.47507e-05 8.65348e-06 1.44175e-06 1.53658e-07 9.19827e-08 4.41279e-08 1.02075e-07 1.22999e-06 7.53377e-06 2.28509e-05 4.37921e-05 6.58847e-05 8.69823e-05 0.000106205 0.000123189 0.000137782 0.000147632 0.000152703 0.000156038 0.000158543 0.000160216 0.000160792 0.000160017 0.000157728 0.000153867 0.000148432 0.000141483 0.000133142 0.000123598 0.000113104 0.000101962 9.04425e-05 7.84829e-05 6.48408e-05 4.52659e-05 2.52639e-05 8.86271e-06 1.47993e-06 1.5566e-07 9.19265e-08 4.50558e-08 1.0487e-07 1.26692e-06 7.73753e-06 2.33489e-05 4.45709e-05 6.68965e-05 8.81845e-05 0.00010756 0.00012466 0.000139336 0.000148843 0.000153796 0.000157127 0.000159676 0.000161406 0.000162045 0.000161337 0.00015912 0.000155341 0.000149997 0.00014315 0.000134921 0.000125495 0.000115121 0.000104086 9.26057e-05 8.0466e-05 6.60454e-05 4.61116e-05 2.57652e-05 9.06955e-06 1.51802e-06 1.57674e-07 9.1882e-08 4.59761e-08 1.07629e-07 1.30318e-06 7.93625e-06 2.3831e-05 4.53215e-05 6.78695e-05 8.93385e-05 0.000108858 0.000126069 0.000140824 0.000149987 0.000154827 0.00015816 0.000160755 0.000162545 0.000163246 0.000162604 0.000160457 0.000156756 0.000151501 0.000144754 0.000136637 0.000127335 0.000117089 0.000106169 9.47339e-05 8.2412e-05 6.72244e-05 4.69414e-05 2.62599e-05 9.27527e-06 1.55616e-06 1.59709e-07 9.18564e-08 4.68912e-08 1.10359e-07 1.33886e-06 8.13041e-06 2.42984e-05 4.60462e-05 6.88066e-05 9.04481e-05 0.000110105 0.000127421 0.000142251 0.000151072 0.000155804 0.000159144 0.000161789 0.00016364 0.000164403 0.000163822 0.000161741 0.000158114 0.000152944 0.000146294 0.000138287 0.000129107 0.000118994 0.000108197 9.68177e-05 8.43217e-05 6.83782e-05 4.77566e-05 2.67486e-05 9.47978e-06 1.59429e-06 1.61763e-07 9.18528e-08 4.78023e-08 1.13042e-07 1.37358e-06 8.31816e-06 2.47477e-05 4.67405e-05 6.97035e-05 9.151e-05 0.000111299 0.000128715 0.000143618 0.000152099 0.00015673 0.000160083 0.000162783 0.000164696 0.000165518 0.000164995 0.000162976 0.000159418 0.000154328 0.000147769 0.000139869 0.000130811 0.000120832 0.000110166 9.88512e-05 8.61919e-05 6.9506e-05 4.85574e-05 2.72315e-05 9.68311e-06 1.63236e-06 1.63838e-07 9.1876e-08 4.87155e-08 1.15686e-07 1.40744e-06 8.50018e-06 2.51804e-05 4.74071e-05 7.05629e-05 9.25267e-05 0.000112441 0.000129954 0.000144926 0.000153073 0.000157611 0.000160986 0.000163744 0.000165718 0.000166597 0.000166128 0.000164166 0.000160672 0.000155654 0.000149182 0.000141383 0.000132444 0.000122602 0.000112073 0.000100836 8.80253e-05 7.06094e-05 4.93451e-05 2.77097e-05 9.88612e-06 1.6706e-06 1.65946e-07 9.19242e-08 4.96347e-08 1.18302e-07 1.44064e-06 8.67754e-06 2.55994e-05 4.80495e-05 7.13892e-05 9.35025e-05 0.000113536 0.000131142 0.00014618 0.000153995 0.000158452 0.000161858 0.000164677 0.000166711 0.00016764 0.00016722 0.00016531 0.000161875 0.000156926 0.000150534 0.00014283 0.000134006 0.000124299 0.000113911 0.00010276 8.9813e-05 7.16837e-05 5.01153e-05 2.81796e-05 1.00867e-05 1.70858e-06 1.68057e-07 9.1989e-08 5.05616e-08 1.20929e-07 1.4738e-06 8.85358e-06 2.60117e-05 4.86777e-05 7.21928e-05 9.44475e-05 0.000114594 0.000132286 0.000147386 0.000154866 0.000159258 0.000162705 0.000165586 0.000167674 0.00016865 0.000168274 0.000166411 0.000163029 0.000158141 0.000151823 0.000144209 0.000135495 0.00012592 0.000115675 0.000104618 9.15462e-05 7.27249e-05 5.08648e-05 2.86387e-05 1.02837e-05 1.74608e-06 1.70158e-07 9.20662e-08 5.1492e-08 1.23542e-07 1.50657e-06 9.02654e-06 2.64145e-05 4.92886e-05 7.29714e-05 9.53601e-05 0.000115612 0.000133384 0.000148541 0.000155675 0.000160037 0.000163536 0.000166472 0.000168606 0.000169623 0.000169287 0.000167468 0.000164135 0.000159305 0.000153054 0.000145522 0.000136913 0.000127468 0.000117367 0.000106413 9.32311e-05 7.37399e-05 5.16006e-05 2.90933e-05 1.04805e-05 1.78382e-06 1.72292e-07 9.21616e-08 5.24257e-08 1.26128e-07 1.53867e-06 9.19511e-06 2.68051e-05 4.98795e-05 7.37234e-05 9.62398e-05 0.00011659 0.000134435 0.000149362 0.000156431 0.000160807 0.000164345 0.000167325 0.000169501 0.000170557 0.00017026 0.000168481 0.000165194 0.000160417 0.000154232 0.000146783 0.000138274 0.000128952 0.000118989 0.000108135 9.48569e-05 7.47286e-05 5.23223e-05 2.95424e-05 1.06764e-05 1.82157e-06 1.74443e-07 9.22766e-08 5.33666e-08 1.28691e-07 1.57015e-06 9.35954e-06 2.71841e-05 5.0451e-05 7.44491e-05 9.70876e-05 0.000117532 0.000135446 0.000150146 0.000157152 0.000161542 0.000165123 0.000168149 0.000170366 0.000171459 0.000171198 0.000169455 0.000166208 0.000161481 0.000155359 0.000147993 0.000139594 0.0001304 0.000120556 0.00010975 9.63457e-05 7.56662e-05 5.30112e-05 2.99741e-05 1.08662e-05 1.85841e-06 1.7656e-07 9.24055e-08 5.43132e-08 1.31219e-07 1.60084e-06 9.51905e-06 2.755e-05 5.10011e-05 7.51464e-05 9.79013e-05 0.000118436 0.000136416 0.000150894 0.000157841 0.000162251 0.000165876 0.000168947 0.000171206 0.000172336 0.000172108 0.000170399 0.000167189 0.000162506 0.000156442 0.000149156 0.000140863 0.000131801 0.000122079 0.000111262 9.74322e-05 7.6547e-05 5.36664e-05 3.03888e-05 1.10501e-05 1.89436e-06 1.78645e-07 9.25463e-08 5.52666e-08 1.33747e-07 1.63136e-06 9.67679e-06 2.79093e-05 5.15382e-05 7.5824e-05 9.86893e-05 0.000119309 0.00013735 0.000151605 0.000158497 0.000162928 0.000166599 0.000169718 0.000172018 0.000173183 0.000172987 0.000171309 0.000168132 0.000163488 0.000157477 0.000150263 0.00014207 0.000133129 0.000123515 0.000112682 9.84522e-05 7.73818e-05 5.42893e-05 3.07845e-05 1.12263e-05 1.92898e-06 1.80664e-07 9.26903e-08 5.62195e-08 1.36208e-07 1.66055e-06 9.8271e-06 2.82511e-05 5.2049e-05 7.64692e-05 9.94402e-05 0.000120141 0.000138242 0.000152271 0.000159109 0.000163567 0.000167287 0.000170455 0.000172798 0.000173998 0.000173832 0.000172183 0.000169035 0.000164427 0.000158462 0.000151313 0.000143207 0.000134376 0.000124862 0.000114014 9.94186e-05 7.81745e-05 5.48828e-05 3.1163e-05 1.13955e-05 1.96238e-06 1.82621e-07 9.28353e-08 5.71799e-08 1.38628e-07 1.68886e-06 9.97218e-06 2.85793e-05 5.25378e-05 7.70851e-05 0.000100156 0.000120934 0.000139092 0.000152901 0.000159691 0.000164178 0.000167949 0.000171168 0.000173553 0.000174788 0.000174651 0.000173029 0.000169908 0.00016533 0.000159406 0.000152313 0.000144286 0.000135555 0.00012613 0.000115268 0.000100335 7.89288e-05 5.54499e-05 3.1527e-05 1.15594e-05 1.99487e-06 1.84533e-07 9.29832e-08 5.81512e-08 1.41034e-07 1.7167e-06 1.01143e-05 2.88988e-05 5.30107e-05 7.7678e-05 0.000100843 0.000121693 0.000139903 0.000153499 0.000160246 0.000164765 0.000168589 0.000171859 0.000174287 0.000175557 0.000175449 0.000173851 0.000170753 0.000166202 0.000160312 0.000153268 0.000145311 0.000136668 0.000127326 0.000116449 0.000101201 7.96415e-05 5.59873e-05 3.18732e-05 1.1716e-05 2.02606e-06 1.86375e-07 9.31321e-08 5.91316e-08 1.43426e-07 1.74413e-06 1.02537e-05 2.92105e-05 5.34695e-05 7.82503e-05 0.000101503 0.00012242 0.000140679 0.000154057 0.000160764 0.000165319 0.000169199 0.000172522 0.000174995 0.000176299 0.000176218 0.000174643 0.000171567 0.000167038 0.000161177 0.000154175 0.00014628 0.000137716 0.000128447 0.000117555 0.000102015 8.03129e-05 5.64942e-05 3.22006e-05 1.18646e-05 2.05578e-06 1.88133e-07 9.32753e-08 6.01214e-08 1.45819e-07 1.77139e-06 1.03917e-05 2.95168e-05 5.39173e-05 7.88053e-05 0.00010214 0.000123118 0.000141421 0.000154575 0.000161244 0.00016584 0.00016978 0.000173158 0.000175675 0.000177015 0.000176961 0.000175408 0.00017235 0.000167841 0.000162005 0.000155039 0.000147196 0.000138703 0.000129499 0.000118591 0.000102781 8.09443e-05 5.69711e-05 3.25092e-05 1.20052e-05 2.08397e-06 1.898e-07 9.3406e-08 6.11148e-08 1.48162e-07 1.79763e-06 1.0524e-05 2.98095e-05 5.43439e-05 7.9333e-05 0.000102744 0.00012378 0.000142124 0.000155052 0.000161686 0.000166327 0.000170329 0.000173766 0.000176329 0.000177704 0.000177678 0.000176146 0.000173106 0.000168614 0.000162799 0.000155863 0.000148067 0.000139635 0.000130488 0.000119564 0.000103504 8.154e-05 5.74223e-05 3.28024e-05 1.21395e-05 2.11102e-06 1.91397e-07 9.35266e-08 6.21162e-08 1.5047e-07 1.82308e-06 1.06516e-05 3.00904e-05 5.47509e-05 7.98339e-05 0.000103316 0.000124405 0.000142786 0.000155486 0.000162089 0.000166779 0.000170848 0.000174345 0.000176957 0.000178368 0.000178369 0.000176858 0.000173834 0.000169357 0.00016356 0.00015665 0.000148893 0.000140515 0.000131418 0.000120475 0.000104182 8.20997e-05 5.78467e-05 3.3079e-05 1.22668e-05 2.13676e-06 1.92912e-07 9.36342e-08 6.31224e-08 1.52717e-07 1.84734e-06 1.0773e-05 3.03563e-05 5.51343e-05 8.03039e-05 0.00010385 0.000124988 0.000143404 0.000155878 0.000162455 0.000167198 0.000171338 0.000174899 0.000177561 0.000179011 0.000179039 0.000177549 0.000174541 0.000170077 0.000164294 0.000157406 0.000149682 0.00014135 0.000132295 0.00012133 0.000104818 8.26233e-05 5.82436e-05 3.33382e-05 1.23865e-05 2.16105e-06 1.94334e-07 9.37269e-08 6.41359e-08 1.54918e-07 1.87065e-06 1.08892e-05 3.06094e-05 5.54966e-05 8.07453e-05 0.00010435 0.000125531 0.000143979 0.000156224 0.00016278 0.000167583 0.000171798 0.000175426 0.000178141 0.00017963 0.000179688 0.000178218 0.000175225 0.000170773 0.000165003 0.000158132 0.000150436 0.000142142 0.000133121 0.000122132 0.000105413 8.31124e-05 5.86146e-05 3.35811e-05 1.24992e-05 2.18402e-06 1.95669e-07 9.38025e-08 6.51574e-08 1.57087e-07 1.89324e-06 1.10015e-05 3.08525e-05 5.58417e-05 8.11621e-05 0.000104818 0.000126037 0.000144512 0.000156528 0.000163066 0.000167934 0.00017223 0.000175929 0.000178699 0.000180229 0.000180316 0.000178867 0.000175889 0.000171448 0.000165688 0.000158832 0.000151158 0.000142896 0.000133901 0.000122883 0.000105966 8.35665e-05 5.89585e-05 3.38064e-05 1.26041e-05 2.20549e-06 1.96901e-07 9.38556e-08 6.61852e-08 1.59203e-07 1.91476e-06 1.11082e-05 3.10826e-05 5.61662e-05 8.15514e-05 0.000105253 0.000126505 0.000145003 0.000156782 0.000163308 0.000168247 0.00017263 0.000176404 0.000179232 0.000180805 0.000180923 0.000179496 0.000176533 0.000172103 0.000166352 0.000159508 0.000151852 0.000143614 0.000134637 0.000123586 0.000106481 8.39873e-05 5.92769e-05 3.40154e-05 1.27019e-05 2.22553e-06 1.98034e-07 9.38843e-08 6.72194e-08 1.61273e-07 1.93536e-06 1.12102e-05 3.13012e-05 5.64715e-05 8.19141e-05 0.000105655 0.000126935 0.000145452 0.000156993 0.000163509 0.000168526 0.000173001 0.000176855 0.000179746 0.000181364 0.000181515 0.00018011 0.000177162 0.000172743 0.000167001 0.000160167 0.000152525 0.000144305 0.000135339 0.000124247 0.000106957 8.43749e-05 5.95699e-05 3.42082e-05 1.27926e-05 2.24419e-06 1.99064e-07 9.38833e-08 6.82563e-08 1.63301e-07 1.95517e-06 1.13082e-05 3.15101e-05 5.67602e-05 8.22531e-05 0.000106027 0.000127329 0.000145861 0.000157154 0.000163665 0.000168768 0.000173343 0.000177283 0.000180239 0.000181905 0.000182089 0.000180708 0.000177776 0.000173368 0.000167635 0.000160809 0.00015318 0.000144974 0.000136009 0.000124867 0.000107389 8.47224e-05 5.98295e-05 3.43777e-05 1.28724e-05 2.26062e-06 1.99937e-07 9.38421e-08 6.92964e-08 1.65265e-07 1.97375e-06 1.14e-05 3.17049e-05 5.70271e-05 8.25635e-05 0.000106364 0.000127683 0.000146226 0.000157255 0.000163765 0.000168964 0.000173648 0.00017768 0.000180706 0.000182421 0.00018264 0.000181284 0.00017837 0.000173974 0.000168251 0.000161436 0.000153819 0.000145623 0.000136655 0.000125455 0.000107786 8.50372e-05 6.00619e-05 3.45284e-05 1.29432e-05 2.27521e-06 2.00671e-07 9.37607e-08 7.03389e-08 1.67142e-07 1.99072e-06 1.14838e-05 3.18818e-05 5.72667e-05 8.28387e-05 0.00010666 0.000127992 0.000146543 0.000157309 0.000163823 0.000169126 0.000173927 0.000178058 0.000181157 0.000182924 0.00018318 0.00018185 0.000178955 0.000174574 0.000168864 0.000162061 0.000154456 0.000146271 0.000137295 0.000126028 0.000108155 8.53273e-05 6.02747e-05 3.46665e-05 1.30086e-05 2.28873e-06 2.01319e-07 9.3649e-08 7.13859e-08 1.6895e-07 2.0064e-06 1.15608e-05 3.20426e-05 5.74803e-05 8.30791e-05 0.000106914 0.000128253 0.00014681 0.000157302 0.000163829 0.000169247 0.000174175 0.00017841 0.000181585 0.000183406 0.000183699 0.000182397 0.000179523 0.00017516 0.000169465 0.000162678 0.00015509 0.000146917 0.000137931 0.000126589 0.000108496 8.55884e-05 6.04618e-05 3.47857e-05 1.30647e-05 2.30033e-06 2.01826e-07 9.34987e-08 7.24299e-08 1.70649e-07 2.02014e-06 1.1628e-05 3.21812e-05 5.76601e-05 8.32762e-05 0.000107118 0.000128459 0.000147018 0.000157226 0.000163777 0.000169324 0.000174389 0.000178732 0.000181985 0.00018386 0.000184193 0.000182921 0.000180072 0.000175728 0.000170053 0.000163285 0.000155716 0.000147558 0.000138563 0.000127139 0.000108814 8.58278e-05 6.06297e-05 3.48906e-05 1.31137e-05 2.31042e-06 2.02214e-07 9.33088e-08 7.34716e-08 1.72251e-07 2.03216e-06 1.16863e-05 3.22989e-05 5.78065e-05 8.34291e-05 0.000107268 0.000128607 0.000147165 0.000157081 0.000163673 0.000169368 0.000174577 0.00017903 0.000182361 0.000184291 0.000184667 0.000183428 0.000180606 0.000176287 0.000170634 0.000163891 0.000156348 0.000148209 0.000139206 0.000127695 0.000109117 8.6054e-05 6.07869e-05 3.49885e-05 1.31599e-05 2.32001e-06 2.02544e-07 9.30861e-08 7.45142e-08 1.73775e-07 2.04274e-06 1.1737e-05 3.23984e-05 5.79222e-05 8.35391e-05 0.000107365 0.000128692 0.00014721 0.000156846 0.000163529 0.000169388 0.000174737 0.000179295 0.000182702 0.000184691 0.000185113 0.000183912 0.000181121 0.00017683 0.000171205 0.000164492 0.000156981 0.000148869 0.000139862 0.000128259 0.000109403 8.62618e-05 6.09273e-05 3.50739e-05 1.31999e-05 2.32829e-06 2.02769e-07 9.2829e-08 7.55561e-08 1.75163e-07 2.05087e-06 1.17757e-05 3.24713e-05 5.79982e-05 8.35982e-05 0.000107402 0.000128706 0.000146877 0.000156529 0.000163355 0.000169371 0.000174853 0.000179515 0.000183003 0.000185055 0.000185526 0.000184366 0.00018161 0.000177351 0.000171759 0.000165081 0.000157609 0.000149533 0.000140529 0.000128831 0.000109677 8.64586e-05 6.10576e-05 3.51514e-05 1.32361e-05 2.33578e-06 2.02923e-07 9.25407e-08 7.66077e-08 1.76488e-07 2.05775e-06 1.18076e-05 3.25271e-05 5.80445e-05 8.36156e-05 0.000107386 0.000128661 0.000146482 0.000156154 0.000163131 0.000169311 0.000174933 0.000179705 0.000183277 0.000185394 0.000185917 0.0001848 0.000182082 0.000177859 0.000172303 0.000165667 0.000158241 0.000150207 0.000141211 0.000129415 0.000109945 8.66494e-05 6.11835e-05 3.52261e-05 1.32711e-05 2.34306e-06 2.03039e-07 9.22256e-08 7.76613e-08 1.7772e-07 2.06289e-06 1.18308e-05 3.25629e-05 5.80582e-05 8.35888e-05 0.000107317 0.000128555 0.000146004 0.0001557 0.00016284 0.000169196 0.000174967 0.000179855 0.000183515 0.000185701 0.000186279 0.000185208 0.00018253 0.000178346 0.000172831 0.000166242 0.000158869 0.000150885 0.000141903 0.000130008 0.000110199 8.6829e-05 6.13001e-05 3.52944e-05 1.33031e-05 2.34976e-06 2.03102e-07 9.18868e-08 7.87189e-08 1.78856e-07 2.0662e-06 1.18446e-05 3.2577e-05 5.80376e-05 8.35162e-05 0.000107192 0.000128384 0.000145438 0.000155161 0.000162474 0.000169016 0.000174944 0.000179954 0.000183708 0.000185966 0.000186603 0.000185581 0.000182948 0.000178807 0.00017334 0.000166803 0.000159491 0.000151564 0.000142603 0.000130608 0.000110445 8.70023e-05 6.14123e-05 3.53602e-05 1.33344e-05 2.35632e-06 2.03139e-07 9.153e-08 7.97905e-08 1.79944e-07 2.06838e-06 1.18525e-05 3.25759e-05 5.799e-05 8.34045e-05 0.000107017 0.000128156 0.0001448 0.000154551 0.000162043 0.000168781 0.000174875 0.000180013 0.000183865 0.000186198 0.000186894 0.000185924 0.000183339 0.000179249 0.000173838 0.000167364 0.000160116 0.000152244 0.000143299 0.000131203 0.000110681 8.71671e-05 6.15177e-05 3.54209e-05 1.33631e-05 2.36234e-06 2.03128e-07 9.11567e-08 8.08682e-08 1.80917e-07 2.06839e-06 1.18496e-05 3.25505e-05 5.79043e-05 8.32426e-05 0.000106782 0.000127859 0.000144073 0.000153854 0.000161537 0.000168482 0.00017475 0.000180024 0.000183978 0.00018639 0.000187149 0.000186233 0.000183699 0.000179665 0.00017432 0.000167924 0.000160756 0.000152936 0.000143959 0.000131704 0.000110891 8.73135e-05 6.16107e-05 3.54742e-05 1.33888e-05 2.36783e-06 2.03077e-07 9.07672e-08 8.19569e-08 1.818e-07 2.06659e-06 1.18374e-05 3.25035e-05 5.77832e-05 8.30322e-05 0.000106488 0.000127494 0.000143254 0.000153067 0.000160951 0.000168115 0.000174568 0.000179986 0.000184049 0.000186543 0.000187368 0.000186507 0.000184027 0.000180052 0.000174778 0.000168468 0.000161391 0.000153631 0.000144585 0.000131942 0.000111072 8.74406e-05 6.16914e-05 3.55205e-05 1.34116e-05 2.37281e-06 2.02987e-07 9.03631e-08 8.30615e-08 1.82595e-07 2.06294e-06 1.18158e-05 3.24344e-05 5.76259e-05 8.27721e-05 0.000106132 0.000127058 0.000142345 0.000152192 0.000160289 0.000167683 0.000174332 0.000179902 0.000184079 0.000186659 0.000187551 0.000186748 0.000184323 0.000180408 0.000175208 0.000168988 0.000162007 0.000154309 0.00014519 0.00013215 0.000111228 8.75493e-05 6.17598e-05 3.55596e-05 1.34314e-05 2.37725e-06 2.02857e-07 8.99482e-08 8.41862e-08 1.83332e-07 2.05791e-06 1.1787e-05 3.2347e-05 5.74362e-05 8.24654e-05 0.000105717 0.000126552 0.000141344 0.000151228 0.000159548 0.000167186 0.000174042 0.00017977 0.000184065 0.000186733 0.000187693 0.000186946 0.000184576 0.000180722 0.000175596 0.000169467 0.000162585 0.000154951 0.000145759 0.000132321 0.000111353 8.76322e-05 6.18081e-05 3.55847e-05 1.34446e-05 2.38033e-06 2.02639e-07 8.9515e-08 8.53321e-08 1.84008e-07 2.05137e-06 1.17502e-05 3.22399e-05 5.72126e-05 8.21103e-05 0.00010524 0.000125975 0.000140238 0.000150163 0.000158722 0.000166621 0.000173695 0.000179589 0.000184004 0.000186761 0.000187789 0.000187098 0.000184782 0.000180988 0.000175935 0.000169897 0.000163113 0.000155543 0.000146282 0.000132452 0.000111445 8.76894e-05 6.18374e-05 3.55974e-05 1.34518e-05 2.38219e-06 2.02341e-07 8.9064e-08 8.6502e-08 1.84619e-07 2.04322e-06 1.17045e-05 3.21108e-05 5.69518e-05 8.17029e-05 0.000104698 0.00012532 0.000139021 0.000148997 0.000157817 0.000165992 0.000173295 0.000179359 0.000183897 0.000186743 0.00018784 0.000187206 0.000184943 0.000181209 0.000176229 0.000170282 0.000163598 0.000156098 0.00014677 0.000132544 0.000111506 8.77248e-05 6.18533e-05 3.56037e-05 1.34571e-05 2.3838e-06 2.02027e-07 8.86064e-08 8.77042e-08 1.85192e-07 2.03378e-06 1.16513e-05 3.1961e-05 5.66536e-05 8.1241e-05 0.000104086 0.000124587 0.000137682 0.000147733 0.000156842 0.000165311 0.000172845 0.000179078 0.000183737 0.000186671 0.000187835 0.000187258 0.000185047 0.00018137 0.000176462 0.000170604 0.00016402 0.000156589 0.000147196 0.00013258 0.00011152 8.7722e-05 6.18408e-05 3.55914e-05 1.34538e-05 2.38374e-06 2.01613e-07 8.81406e-08 8.89431e-08 1.85755e-07 2.02357e-06 1.15932e-05 3.1795e-05 5.63209e-05 8.07232e-05 0.000103395 0.000123543 0.000136208 0.000146428 0.000155851 0.000164603 0.000172356 0.00017875 0.000183529 0.000186554 0.000187787 0.000187266 0.000185106 0.000181484 0.000176643 0.000170872 0.000164384 0.00015702 0.000147561 0.000132559 0.000111485 8.76799e-05 6.17989e-05 3.55602e-05 1.34417e-05 2.38181e-06 2.01089e-07 8.76667e-08 9.02303e-08 1.86361e-07 2.01336e-06 1.15347e-05 3.1623e-05 5.59687e-05 8.0166e-05 0.000102639 0.000121978 0.000134615 0.000145094 0.000154817 0.000163834 0.0001718 0.000178359 0.000183262 0.000186381 0.000187685 0.00018722 0.00018511 0.000181541 0.000176765 0.000171077 0.000164683 0.000157384 0.00014786 0.000132477 0.000111399 8.75977e-05 6.17285e-05 3.55114e-05 1.34219e-05 2.37839e-06 2.00481e-07 8.71878e-08 9.15708e-08 1.86921e-07 2.00152e-06 1.14679e-05 3.14311e-05 5.55822e-05 7.95601e-05 0.00010182 0.000120325 0.000132925 0.000143662 0.000153698 0.000162992 0.00017118 0.000177908 0.000182939 0.000186151 0.000187525 0.000187114 0.000185051 0.00018153 0.000176816 0.000171205 0.000164899 0.00015766 0.000148071 0.000132321 0.00011125 8.74639e-05 6.1619e-05 3.54368e-05 1.339e-05 2.37252e-06 1.99728e-07 8.66939e-08 9.29752e-08 1.87512e-07 1.98933e-06 1.13991e-05 3.12302e-05 5.51735e-05 7.89158e-05 0.000100947 0.000118582 0.000131143 0.00014215 0.000152509 0.000162091 0.000170508 0.000177411 0.00018257 0.000185877 0.000187319 0.000186958 0.000184938 0.000181461 0.000176801 0.000171261 0.000165035 0.00015785 0.000148195 0.000132088 0.000111034 8.7276e-05 6.14691e-05 3.53364e-05 1.33462e-05 2.36426e-06 1.98834e-07 8.6186e-08 9.44461e-08 1.88127e-07 1.97662e-06 1.13275e-05 3.102e-05 5.47429e-05 7.82342e-05 0.000100021 0.000116745 0.000129261 0.000140546 0.000151242 0.000161121 0.000169773 0.000176853 0.000182141 0.00018554 0.000187048 0.000186734 0.000184753 0.000181315 0.000176704 0.000171229 0.000165076 0.000157937 0.000148214 0.000131769 0.000110744 8.70273e-05 6.12738e-05 3.52064e-05 1.32889e-05 2.35326e-06 1.97775e-07 8.56588e-08 9.59789e-08 1.88735e-07 1.96291e-06 1.12503e-05 3.07936e-05 5.42812e-05 7.75053e-05 9.90324e-05 0.00011481 0.000127292 0.000138873 0.000149917 0.000160099 0.000168987 0.000176241 0.000181656 0.000185144 0.000186714 0.000186444 0.000184496 0.000181093 0.000176525 0.000171106 0.000165017 0.000157914 0.000148118 0.000131353 0.000110368 8.67078e-05 6.10249e-05 3.50418e-05 1.32157e-05 2.33905e-06 1.96523e-07 8.51079e-08 9.75818e-08 1.89407e-07 1.94919e-06 1.11712e-05 3.05558e-05 5.37913e-05 7.67298e-05 9.79853e-05 0.000112771 0.00012525 0.000137153 0.000148551 0.00015903 0.000168145 0.000175567 0.000181104 0.000184678 0.000186307 0.000186076 0.000184158 0.000180784 0.000176253 0.000170883 0.000164848 0.000157774 0.000147903 0.000130829 0.000109898 8.63097e-05 6.07155e-05 3.48373e-05 1.3124e-05 2.32112e-06 1.95041e-07 8.45247e-08 9.92387e-08 1.90028e-07 1.93374e-06 1.10819e-05 3.02884e-05 5.3244e-05 7.58612e-05 9.6346e-05 0.000110602 0.000123228 0.000135452 0.000147165 0.000157904 0.000167227 0.000174811 0.000180468 0.000184128 0.000185813 0.00018562 0.000183726 0.000180375 0.000175874 0.000170543 0.00016455 0.000157492 0.000147543 0.000130192 0.000109327 8.58275e-05 6.03419e-05 3.45907e-05 1.3013e-05 2.29933e-06 1.93326e-07 8.39103e-08 1.00968e-07 1.90693e-07 1.9182e-06 1.09923e-05 3.00134e-05 5.26718e-05 7.49407e-05 9.42748e-05 0.000108373 0.000121209 0.000133728 0.000145724 0.000156712 0.00016624 0.000173986 0.000179765 0.000183509 0.00018525 0.000185089 0.000183216 0.000179883 0.000175405 0.000170105 0.000164143 0.000157087 0.000147056 0.000129445 0.000108661 8.52668e-05 5.99095e-05 3.43065e-05 1.28851e-05 2.27415e-06 1.91398e-07 8.32632e-08 1.02775e-07 1.91392e-07 1.90237e-06 1.09016e-05 2.97323e-05 5.20818e-05 7.39885e-05 9.21645e-05 0.000106093 0.000119132 0.000131945 0.000144229 0.000155465 0.000165195 0.000173098 0.00017899 0.000182812 0.000184599 0.000184464 0.000182605 0.000179283 0.00017482 0.000169541 0.000163598 0.000156537 0.000146424 0.000128577 0.000107889 8.46191e-05 5.94122e-05 3.39813e-05 1.27392e-05 2.24546e-06 1.89257e-07 8.25891e-08 1.04644e-07 1.92075e-07 1.88551e-06 1.08055e-05 2.94345e-05 5.14598e-05 7.29898e-05 9.00028e-05 0.000103766 0.000117012 0.00013012 0.000142686 0.000154164 0.000164089 0.000172141 0.00017814 0.00018203 0.000183855 0.000183736 0.000181884 0.00017857 0.000174127 0.000168877 0.000162943 0.000155793 0.000145355 0.000127565 0.000106993 8.38703e-05 5.88373e-05 3.36046e-05 1.25694e-05 2.21197e-06 1.86811e-07 8.18633e-08 1.06567e-07 1.92699e-07 1.86693e-06 1.07002e-05 2.91128e-05 5.07961e-05 7.19354e-05 8.77725e-05 0.000101392 0.000114859 0.000128264 0.000141105 0.000152813 0.00016292 0.000171109 0.000177204 0.000181153 0.000183007 0.000182897 0.000181045 0.000177735 0.000173305 0.00016807 0.000162123 0.000154861 0.000144106 0.000126416 0.00010598 8.30266e-05 5.81933e-05 3.31857e-05 1.23818e-05 2.17513e-06 1.8416e-07 8.11026e-08 1.08526e-07 1.93243e-07 1.84634e-06 1.05818e-05 2.8754e-05 5.00705e-05 7.08109e-05 8.54711e-05 9.90017e-05 0.00011271 0.000126399 0.00013949 0.000151404 0.000161677 0.000169992 0.000176172 0.000180171 0.000182045 0.000181935 0.000180076 0.000176763 0.000172335 0.000167102 0.000161124 0.000153742 0.000142702 0.000125126 0.000104843 8.20798e-05 5.74709e-05 3.27157e-05 1.21715e-05 2.13386e-06 1.8122e-07 8.02869e-08 1.10516e-07 1.93707e-07 1.82385e-06 1.04497e-05 2.83468e-05 4.92368e-05 6.87737e-05 8.30857e-05 9.6729e-05 0.000110643 0.000124539 0.000137826 0.00014992 0.000160348 0.000168782 0.000175042 0.000179082 0.000180967 0.000180848 0.000178973 0.000175645 0.000171206 0.000165954 0.000159924 0.000152416 0.000141129 0.000123682 0.000103571 8.1021e-05 5.66637e-05 3.21917e-05 1.19375e-05 2.08808e-06 1.78005e-07 7.9431e-08 1.12542e-07 1.94148e-07 1.80097e-06 1.03166e-05 2.79325e-05 4.83824e-05 6.66654e-05 8.07042e-05 9.44166e-05 0.000108501 0.000122598 0.000136089 0.00014837 0.000158953 0.000167501 0.000173829 0.000177895 0.000179776 0.000179637 0.000177735 0.000174382 0.000169921 0.000164637 0.000158544 0.000150907 0.000139403 0.000122099 0.000102179 7.9865e-05 5.57843e-05 3.1622e-05 1.16838e-05 2.03851e-06 1.74533e-07 7.85208e-08 1.14593e-07 1.94465e-07 1.7758e-06 1.01717e-05 2.74869e-05 4.74738e-05 6.44905e-05 7.82675e-05 9.20675e-05 0.000106339 0.000120642 0.000134331 0.000146788 0.000157512 0.000166156 0.000172533 0.000176607 0.000178465 0.000178288 0.000176346 0.000172955 0.000168456 0.000163122 0.000156947 0.000149179 0.000137502 0.000120358 0.000100649 7.85956e-05 5.48206e-05 3.09997e-05 1.14079e-05 1.98482e-06 1.70815e-07 7.75772e-08 1.16641e-07 1.94661e-07 1.74883e-06 1.00168e-05 2.70129e-05 4.6516e-05 6.22867e-05 7.5803e-05 8.96813e-05 0.000104129 0.000118633 0.000132516 0.000145143 0.000155997 0.000164722 0.000171132 0.000175197 0.000177018 0.000176787 0.00017479 0.000171351 0.000166804 0.00016141 0.000155146 0.000147254 0.000135443 0.000118475 9.89974e-05 7.72269e-05 5.37823e-05 3.03299e-05 1.11116e-05 1.92728e-06 1.66831e-07 7.65734e-08 1.18684e-07 1.94736e-07 1.7196e-06 9.8486e-06 2.65021e-05 4.54965e-05 6.00236e-05 7.33036e-05 8.72759e-05 0.000101907 0.000116607 0.000130676 0.000143459 0.000154427 0.000163215 0.000169637 0.000173671 0.000175433 0.000175132 0.000173064 0.000169556 0.000164943 0.000159471 0.000153102 0.000145088 0.000133212 0.00011644 9.72148e-05 7.57533e-05 5.26684e-05 2.96151e-05 1.07977e-05 1.86672e-06 1.62672e-07 7.55457e-08 1.20682e-07 1.94832e-07 1.68862e-06 9.66171e-06 2.59332e-05 4.43938e-05 5.77034e-05 7.07967e-05 8.48744e-05 9.96729e-05 0.000114548 0.000128784 0.00014171 0.000152779 0.000161615 0.000168031 0.000172017 0.000173704 0.00017332 0.00017117 0.000167585 0.000162893 0.000157332 0.000150855 0.000142733 0.000130832 0.000114273 9.53212e-05 7.41903e-05 5.14882e-05 2.88585e-05 1.04665e-05 1.80299e-06 1.58284e-07 7.44589e-08 1.2264e-07 1.95906e-07 1.65968e-06 9.45783e-06 2.52746e-05 4.26378e-05 5.53429e-05 6.83806e-05 8.25313e-05 9.74415e-05 0.000112455 0.000126841 0.000139901 0.000151062 0.00015993 0.00016632 0.000170235 0.000171826 0.000171339 0.000169094 0.000165421 0.000160637 0.000154969 0.000148371 0.00014015 0.000128292 0.000111966 9.33108e-05 7.25374e-05 5.02472e-05 2.80697e-05 1.01248e-05 1.73783e-06 1.53828e-07 7.33725e-08 1.24546e-07 2.00036e-07 1.63463e-06 9.23879e-06 2.45548e-05 4.06141e-05 5.29928e-05 6.59736e-05 8.01527e-05 9.51542e-05 0.000110309 0.000124855 0.000138056 0.000149303 0.000158188 0.000164529 0.000168347 0.000169819 0.000169211 0.000166855 0.000163083 0.000158204 0.000152429 0.000145712 0.000137405 0.000125624 0.000109548 9.12063e-05 7.08077e-05 4.89479e-05 2.72433e-05 9.76782e-06 1.66993e-06 1.49171e-07 7.22319e-08 1.2638e-07 2.03838e-07 1.59746e-06 8.97124e-06 2.37621e-05 3.85945e-05 5.06432e-05 6.35491e-05 7.77526e-05 9.28513e-05 0.000108155 0.000122865 0.000136199 0.000147515 0.000156391 0.000162652 0.000166345 0.00016767 0.00016692 0.000164437 0.000160553 0.000155565 0.000149673 0.000142832 0.000134451 0.000122821 0.000107016 8.90108e-05 6.90121e-05 4.76083e-05 2.63993e-05 9.40759e-06 1.60208e-06 1.44547e-07 7.11129e-08 1.28093e-07 2.04454e-07 1.54682e-06 8.66698e-06 2.29177e-05 3.65888e-05 4.82998e-05 6.11079e-05 7.53231e-05 9.05183e-05 0.000105979 0.000120859 0.000134326 0.000145698 0.00015454 0.000160692 0.000164228 0.000165383 0.000164472 0.000161852 0.000157852 0.000152757 0.000146756 0.000139809 0.000131382 0.000119924 0.000104405 8.67511e-05 6.71655e-05 4.62303e-05 2.5531e-05 9.03841e-06 1.5328e-06 1.39795e-07 6.99398e-08 1.29713e-07 2.03391e-07 1.48967e-06 8.34006e-06 2.20303e-05 3.45877e-05 4.59572e-05 5.86554e-05 7.28788e-05 8.81787e-05 0.000103808 0.000118866 0.00013246 0.000143866 0.000152641 0.000158645 0.000161988 0.000162942 0.000161849 0.000159075 0.000154946 0.000149733 0.000143612 0.000136557 0.000128107 0.00011691 0.0001017 8.44201e-05 6.52712e-05 4.48274e-05 2.46563e-05 8.67137e-06 1.46465e-06 1.35151e-07 6.88043e-08 1.31205e-07 2.01272e-07 1.42635e-06 7.98653e-06 2.10942e-05 3.25971e-05 4.36217e-05 5.61936e-05 7.04175e-05 8.58257e-05 0.000101633 0.000116874 0.000130587 0.000142006 0.000150683 0.000156504 0.000159625 0.000160357 0.000159069 0.000156138 0.000151882 0.000146562 0.000140341 0.000133203 0.000124757 0.000113836 9.89488e-05 8.20542e-05 6.33507e-05 4.34045e-05 2.37681e-05 8.29989e-06 1.39589e-06 1.30411e-07 6.76059e-08 1.3258e-07 1.98505e-07 1.35875e-06 7.61256e-06 2.01181e-05 3.0615e-05 4.12952e-05 5.37322e-05 6.79572e-05 8.34844e-05 9.94819e-05 0.000114908 0.000128724 0.000140121 0.000148654 0.00015425 0.000157114 0.0001576 0.000156101 0.000153003 0.000148616 0.000143181 0.000136854 0.000129636 0.00012122 0.000110663 9.61212e-05 7.96348e-05 6.13998e-05 4.19736e-05 2.28873e-05 7.93705e-06 1.32947e-06 1.25863e-07 6.64673e-08 1.33807e-07 1.95154e-07 1.28594e-06 7.21177e-06 1.9093e-05 2.86429e-05 3.89812e-05 5.12736e-05 6.54961e-05 8.11467e-05 9.73399e-05 0.000112945 0.000126841 0.000138178 0.000146526 0.000151863 0.00015445 0.000154682 0.000152974 0.000149717 0.000145211 0.000139685 0.000133284 0.000126022 0.000117655 0.000107385 9.32751e-05 7.72042e-05 5.944e-05 4.05335e-05 2.20002e-05 7.57398e-06 1.26333e-06 1.21269e-07 6.52675e-08 1.34889e-07 1.91375e-07 1.20909e-06 6.78679e-06 1.80233e-05 2.6685e-05 3.66926e-05 4.88353e-05 6.30537e-05 7.88334e-05 9.5225e-05 0.000110994 0.000124925 0.000136135 0.000144238 0.000149283 0.000151587 0.000151569 0.000149657 0.000146241 0.000141619 0.000136006 0.000129535 0.000122221 0.000113859 0.000103778 9.03472e-05 7.47194e-05 5.74505e-05 3.90847e-05 2.11184e-05 7.21882e-06 1.19965e-06 1.16922e-07 6.41678e-08 1.35798e-07 1.87186e-07 1.12775e-06 6.32858e-06 1.67962e-05 2.47445e-05 3.44451e-05 4.64203e-05 6.06184e-05 7.65226e-05 9.31082e-05 0.000109012 0.00012291 0.000133909 0.000141704 0.000146454 0.000148517 0.0001483 0.000146215 0.000142659 0.000137935 0.000132255 0.000125744 0.000118416 0.000110097 0.000100226 8.7432e-05 7.22472e-05 5.54687e-05 3.76365e-05 2.02336e-05 6.86341e-06 1.13608e-06 1.12508e-07 6.29953e-08 1.36539e-07 1.82877e-07 1.0463e-06 5.8545e-06 1.52876e-05 2.285e-05 3.22627e-05 4.40389e-05 5.82013e-05 7.42403e-05 9.10382e-05 0.000107069 0.000120849 0.000131304 0.000137968 0.000142658 0.000145257 0.000145008 0.000142719 0.000138963 0.000134094 0.000128325 0.000121763 0.000114413 0.000106137 9.65067e-05 8.44611e-05 6.97452e-05 5.34813e-05 3.62023e-05 1.93718e-05 6.52354e-06 1.07614e-06 1.08416e-07 6.1943e-08 1.37108e-07 1.78467e-07 9.66091e-07 5.38688e-06 1.38623e-05 2.1004e-05 3.00808e-05 4.16403e-05 5.57752e-05 7.19832e-05 8.90256e-05 0.000105129 0.00011844 0.000127214 0.000133664 0.000138181 0.000140848 0.000141627 0.000139356 0.000135351 0.000130264 0.000124377 0.000117782 0.00011046 0.000102282 9.29149e-05 8.15356e-05 6.72825e-05 5.15207e-05 3.47801e-05 1.85124e-05 6.18491e-06 1.01641e-06 1.04224e-07 6.07783e-08 1.37524e-07 1.74002e-07 8.87275e-07 4.9233e-06 1.24905e-05 1.92104e-05 2.79452e-05 3.92902e-05 5.34172e-05 6.98233e-05 8.70856e-05 0.000102992 0.000114839 0.000122992 0.0001292 0.000133519 0.000136049 0.000136906 0.000135699 0.000131688 0.000126347 0.000120265 0.000113584 0.000106265 9.81895e-05 8.91256e-05 7.85108e-05 6.48024e-05 4.95722e-05 3.33916e-05 1.76921e-05 5.86911e-06 9.6167e-07 1.00464e-07 5.97703e-08 1.37729e-07 1.69413e-07 8.09237e-07 4.46085e-06 1.11803e-05 1.74616e-05 2.58229e-05 3.69248e-05 5.10306e-05 6.76272e-05 8.50622e-05 0.000100633 0.00011072 0.000118594 0.000124552 0.000128672 0.000131069 0.000131871 0.000131148 0.000127918 0.000122513 0.000116244 0.000109485 0.000102221 9.43095e-05 8.55112e-05 7.53076e-05 6.23688e-05 4.76568e-05 3.20167e-05 1.68725e-05 5.55318e-06 9.06729e-07 9.65294e-08 5.85964e-08 1.37768e-07 1.64914e-07 7.35211e-07 4.01675e-06 9.94221e-06 1.57809e-05 2.37566e-05 3.46148e-05 4.8727e-05 6.55349e-05 8.29279e-05 9.7031e-05 0.0001065 0.000114059 0.000119738 0.000123638 0.000125888 0.000126629 0.000125926 0.000123774 0.000118464 0.000112052 0.000105202 9.79603e-05 9.01703e-05 8.16018e-05 7.18462e-05 5.99048e-05 4.57589e-05 3.06918e-05 1.61086e-05 5.26774e-06 8.58211e-07 9.31645e-08 5.76421e-08 1.37575e-07 1.6028e-07 6.62027e-07 3.57512e-06 8.76103e-06 1.41427e-05 2.16994e-05 3.22722e-05 4.63585e-05 6.33471e-05 8.06076e-05 9.29353e-05 0.000102066 0.000109302 0.000114701 0.000118388 0.000120509 0.000121212 0.00012056 0.000118591 0.000114341 0.000108015 0.000101101 9.38957e-05 8.62653e-05 7.79655e-05 6.86384e-05 5.74877e-05 4.38751e-05 2.93548e-05 1.53246e-05 4.97296e-06 8.07571e-07 8.94015e-08 5.64354e-08 1.37192e-07 1.55871e-07 5.95506e-07 3.1663e-06 7.67025e-06 1.25945e-05 1.97186e-05 2.99979e-05 4.40748e-05 6.12427e-05 7.81442e-05 8.87217e-05 9.74749e-05 0.000104354 0.000109451 0.000112912 0.000114899 0.000115571 0.000114979 0.000113144 0.000109883 0.000103698 9.67484e-05 8.95619e-05 8.20476e-05 7.39842e-05 6.51322e-05 5.50199e-05 4.20181e-05 2.80813e-05 1.46048e-05 4.71068e-06 7.64604e-07 8.70128e-08 5.5535e-08 1.36563e-07 1.51351e-07 5.3055e-07 2.7661e-06 6.63938e-06 1.1095e-05 1.77487e-05 2.76858e-05 4.17027e-05 5.88088e-05 7.40424e-05 8.42241e-05 9.25797e-05 9.9098e-05 0.000103902 0.000107163 0.000109052 0.000109735 0.000109252 0.000107603 0.000104832 9.94551e-05 9.26286e-05 8.55217e-05 7.82013e-05 7.04508e-05 6.20122e-05 5.24044e-05 4.01426e-05 2.6758e-05 1.38416e-05 4.43821e-06 7.23139e-07 8.5396e-08 5.42527e-08 1.35727e-07 1.47128e-07 4.74054e-07 2.41183e-06 5.71737e-06 9.71851e-06 1.58999e-05 2.54877e-05 3.94669e-05 5.65498e-05 6.98002e-05 7.95247e-05 8.74321e-05 9.35549e-05 9.80505e-05 0.000101109 0.000102913 0.00010363 0.000103284 0.000101845 9.93453e-05 9.48234e-05 8.81941e-05 8.11893e-05 7.40454e-05 6.65645e-05 5.84976e-05 4.94654e-05 3.83408e-05 2.55712e-05 1.32095e-05 4.22708e-06 6.92395e-07 8.4274e-08 5.34272e-08 1.34647e-07 1.42801e-07 4.19363e-07 2.07054e-06 4.85644e-06 8.40026e-06 1.40799e-05 2.32704e-05 3.71698e-05 5.41967e-05 6.51429e-05 7.43859e-05 8.18379e-05 8.75776e-05 9.17942e-05 9.46948e-05 9.64699e-05 9.72859e-05 9.71444e-05 9.59839e-05 9.3821e-05 9.03996e-05 8.40799e-05 7.72625e-05 7.03687e-05 6.32133e-05 5.5529e-05 4.69595e-05 3.65257e-05 2.43056e-05 1.24967e-05 3.97956e-06 6.53342e-07 8.15718e-08 5.20156e-08 1.33339e-07 1.38788e-07 3.73873e-07 1.78201e-06 4.11318e-06 7.22551e-06 1.24155e-05 2.12329e-05 3.49573e-05 5.00455e-05 6.03078e-05 6.89775e-05 7.59098e-05 8.12303e-05 8.5156e-05 8.79012e-05 8.96646e-05 9.06119e-05 9.07095e-05 8.98577e-05 8.80545e-05 8.52705e-05 7.94649e-05 7.28319e-05 6.61565e-05 5.92977e-05 5.20022e-05 4.40323e-05 3.47969e-05 2.32055e-05 1.19294e-05 3.79011e-06 6.23478e-07 7.96828e-08 5.12497e-08 1.31797e-07 1.34614e-07 3.29153e-07 1.50391e-06 3.4275e-06 6.11886e-06 1.07979e-05 1.91994e-05 3.27696e-05 4.53385e-05 5.49579e-05 6.30269e-05 6.94493e-05 7.4391e-05 7.80862e-05 8.07442e-05 8.25696e-05 8.37305e-05 8.41505e-05 8.36911e-05 8.23278e-05 7.99896e-05 7.54007e-05 6.91348e-05 6.27115e-05 5.61759e-05 4.92741e-05 4.17601e-05 3.31086e-05 2.2035e-05 1.12731e-05 3.56286e-06 5.86251e-07 7.63695e-08 4.96553e-08 1.29996e-07 1.30734e-07 2.9398e-07 1.28206e-06 2.85997e-06 5.17401e-06 9.38417e-06 1.7435e-05 3.07778e-05 4.05696e-05 4.94335e-05 5.68085e-05 6.26646e-05 6.72076e-05 7.06782e-05 7.32678e-05 7.51481e-05 7.65085e-05 7.72626e-05 7.71957e-05 7.6225e-05 7.42804e-05 7.05249e-05 6.45511e-05 5.83768e-05 5.21614e-05 4.56762e-05 3.87369e-05 3.10222e-05 2.0829e-05 1.06434e-05 3.34847e-06 5.51377e-07 7.3901e-08 4.88277e-08 1.2792e-07 1.26542e-07 2.57188e-07 1.05753e-06 2.32245e-06 4.25849e-06 7.94567e-06 1.54058e-05 2.64547e-05 3.53193e-05 4.33348e-05 4.99918e-05 5.53156e-05 5.95365e-05 6.28886e-05 6.55475e-05 6.76309e-05 6.92935e-05 7.04655e-05 7.0847e-05 7.03659e-05 6.89743e-05 6.66435e-05 6.13385e-05 5.5414e-05 4.94924e-05 4.33772e-05 3.68427e-05 2.9553e-05 1.9905e-05 1.01435e-05 3.17993e-06 5.23142e-07 7.07913e-08 4.70815e-08 1.25484e-07 1.22665e-07 2.3194e-07 8.99483e-07 1.91148e-06 3.52559e-06 6.7528e-06 1.37553e-05 2.24949e-05 3.03111e-05 3.73473e-05 4.31702e-05 4.78608e-05 5.16637e-05 5.48076e-05 5.74931e-05 5.98385e-05 6.18105e-05 6.32509e-05 6.39535e-05 6.38474e-05 6.28664e-05 6.09652e-05 5.6474e-05 5.09096e-05 4.53451e-05 3.96678e-05 3.36431e-05 2.69872e-05 1.83069e-05 9.26581e-06 2.87916e-06 4.74949e-07 6.71911e-08 4.58767e-08 1.22673e-07 1.18323e-07 2.03268e-07 7.25098e-07 1.49063e-06 2.73065e-06 5.28804e-06 1.12176e-05 1.78087e-05 2.44924e-05 3.06468e-05 3.58234e-05 4.00727e-05 4.36122e-05 4.66714e-05 4.94818e-05 5.21052e-05 5.44783e-05 5.64188e-05 5.76399e-05 5.80815e-05 5.7722e-05 5.64992e-05 5.38965e-05 4.86981e-05 4.33068e-05 3.7869e-05 3.21372e-05 2.58566e-05 1.79069e-05 9.11681e-06 2.83775e-06 4.65887e-07 6.51566e-08 4.42349e-08 1.1933e-07 1.14448e-07 1.92331e-07 6.5057e-07 1.25208e-06 2.17999e-06 4.07136e-06 8.61581e-06 1.33923e-05 1.87549e-05 2.3962e-05 2.8531e-05 3.24023e-05 3.57013e-05 3.86525e-05 4.14889e-05 4.42199e-05 4.67712e-05 4.89871e-05 5.06105e-05 5.14107e-05 5.1326e-05 5.04151e-05 4.86074e-05 4.39394e-05 3.89631e-05 3.40153e-05 2.88205e-05 2.31385e-05 1.56883e-05 7.82974e-06 2.39907e-06 3.97692e-07 5.97162e-08 4.21724e-08 1.15183e-07 1.09723e-07 1.79357e-07 5.78263e-07 1.06389e-06 1.70494e-06 2.83196e-06 5.25718e-06 8.12664e-06 1.14197e-05 1.5224e-05 1.91765e-05 2.30024e-05 2.65423e-05 2.98038e-05 3.297e-05 3.60626e-05 3.9026e-05 4.17461e-05 4.40294e-05 4.56342e-05 4.6306e-05 4.60313e-05 4.48973e-05 4.16201e-05 3.68748e-05 3.20334e-05 2.70437e-05 2.17588e-05 1.5572e-05 7.92022e-06 2.45133e-06 4.0292e-07 5.88436e-08 4.1098e-08 1.09779e-07 1.04745e-07 1.82594e-07 6.10809e-07 1.17454e-06 1.83772e-06 2.82171e-06 4.43029e-06 5.649e-06 6.98821e-06 8.72007e-06 1.09882e-05 1.3842e-05 1.71793e-05 2.06961e-05 2.42253e-05 2.77207e-05 3.1081e-05 3.41983e-05 3.69382e-05 3.91299e-05 4.05415e-05 4.08734e-05 4.00888e-05 3.83933e-05 3.41942e-05 2.96772e-05 2.50687e-05 2.02039e-05 1.38636e-05 6.88903e-06 2.09106e-06 3.46556e-07 5.39479e-08 3.89601e-08 1.02125e-07 9.82415e-08 1.84911e-07 6.36661e-07 1.32019e-06 2.1618e-06 3.38496e-06 4.54814e-06 5.35948e-06 6.10603e-06 6.85207e-06 7.68475e-06 8.73209e-06 1.01748e-05 1.2221e-05 1.49907e-05 1.83292e-05 2.18398e-05 2.53059e-05 2.85299e-05 3.13103e-05 3.34364e-05 3.46353e-05 3.45635e-05 3.32265e-05 2.99555e-05 2.56556e-05 2.13671e-05 1.69897e-05 1.20359e-05 6.11042e-06 1.92335e-06 3.276e-07 5.24179e-08 3.87242e-08 9.52409e-08 9.39848e-08 1.98408e-07 7.01819e-07 1.69337e-06 2.85982e-06 3.92902e-06 4.84003e-06 5.63715e-06 6.38609e-06 7.14365e-06 7.95011e-06 8.82845e-06 9.79146e-06 1.08687e-05 1.21604e-05 1.38868e-05 1.63438e-05 1.9634e-05 2.34123e-05 2.72831e-05 3.09053e-05 3.39293e-05 3.59724e-05 3.65095e-05 3.42374e-05 2.97807e-05 2.48582e-05 1.98734e-05 1.47169e-05 7.42129e-06 2.19735e-06 3.481e-07 5.43227e-08 4.01074e-08 9.15587e-08 9.62745e-08 2.71087e-07 1.03878e-06 2.45059e-06 3.94515e-06 5.12762e-06 6.03922e-06 6.85504e-06 7.71976e-06 8.74104e-06 9.9991e-06 1.15336e-05 1.33166e-05 1.48484e-05 1.67908e-05 1.90361e-05 2.05493e-05 2.16693e-05 2.23925e-05 2.27442e-05 2.27513e-05 2.24406e-05 2.18047e-05 2.07765e-05 1.93133e-05 1.7408e-05 1.5056e-05 1.22169e-05 8.82236e-06 5.00518e-06 1.76094e-06 3.15078e-07 5.12345e-08 3.75049e-08 9.37859e-08 1.07849e-07 4.11998e-07 1.56572e-06 3.21877e-06 4.46294e-06 5.29286e-06 5.99354e-06 6.72473e-06 7.57213e-06 8.61121e-06 9.93664e-06 1.16684e-05 1.39357e-05 1.68431e-05 2.04378e-05 2.46981e-05 2.95315e-05 3.47637e-05 4.00889e-05 4.51512e-05 4.94807e-05 5.25511e-05 5.38601e-05 5.29993e-05 4.97157e-05 3.78759e-05 2.62599e-05 1.83208e-05 1.23732e-05 5.67193e-06 1.32782e-06 1.97577e-07 3.975e-08 3.09897e-08 7.23639e-08 1.46407e-07 1.14063e-06 3.59251e-06 4.61081e-06 4.98898e-06 5.45728e-06 6.02028e-06 6.64498e-06 7.32774e-06 8.0733e-06 8.88546e-06 9.76257e-06 1.06923e-05 1.16456e-05 1.25712e-05 1.33956e-05 1.40276e-05 1.43551e-05 1.43981e-05 1.41282e-05 1.35253e-05 1.26032e-05 1.13968e-05 9.95489e-06 8.33382e-06 6.59814e-06 4.83529e-06 3.14762e-06 1.70305e-06 6.89246e-07 1.90335e-07 3.907e-08 1.30033e-08 1.08506e-08 3.572e-08 2.04391e-06 2.42742e-06 2.63217e-06 2.82896e-06 2.97382e-06 3.07193e-06 3.13569e-06 3.172e-06 3.18563e-06 3.18025e-06 3.15887e-06 3.12392e-06 3.07734e-06 3.02057e-06 2.95464e-06 2.88006e-06 2.79673e-06 2.703e-06 2.60012e-06 2.48647e-06 2.35993e-06 2.21802e-06 2.0579e-06 1.87653e-06 1.67118e-06 1.44047e-06 1.18634e-06 9.17147e-07 6.52671e-07 4.233e-07 2.58201e-07 1.5628e-07 9.17275e-08 1.61618e-09 4.37644e-11 4.22316e-09 7.94211e-09 1.24248e-08 1.79454e-08 2.47641e-08 3.30861e-08 4.30286e-08 5.45997e-08 6.76947e-08 8.21102e-08 9.75717e-08 1.13764e-07 1.30361e-07 1.47037e-07 1.63477e-07 1.79368e-07 1.94394e-07 2.08218e-07 2.20453e-07 2.3076e-07 2.38779e-07 2.44151e-07 2.46556e-07 2.45754e-07 2.41631e-07 2.34245e-07 2.2387e-07 2.11015e-07 1.96413e-07 1.81038e-07 1.66162e-07 1.51298e-07 1.25897e-07 3.44204e-09 9.47466e-11 9.78143e-11 2.22198e-10 1.09049e-09 4.35063e-09 1.28602e-08 3.03595e-08 6.07127e-08 1.06778e-07 1.69164e-07 2.45348e-07 3.2961e-07 4.13869e-07 4.89225e-07 5.47782e-07 5.84236e-07 5.96793e-07 5.87209e-07 5.59746e-07 5.20609e-07 4.75756e-07 4.30253e-07 3.87724e-07 3.51388e-07 3.21477e-07 2.96685e-07 2.75543e-07 2.55822e-07 2.34317e-07 2.00992e-07 1.39856e-07 6.49995e-08 2.13166e-08 1.0396e-08 1.01636e-08 2.71218e-10 3.05918e-10 9.75591e-10 5.01336e-09 1.87091e-08 5.17079e-08 1.1531e-07 2.19391e-07 3.68081e-07 5.56285e-07 7.69657e-07 9.88146e-07 1.19101e-06 1.36105e-06 1.48701e-06 1.56411e-06 1.59319e-06 1.57864e-06 1.5236e-06 1.43717e-06 1.32765e-06 1.20246e-06 1.06844e-06 9.3217e-07 7.99626e-07 6.75696e-07 5.63302e-07 4.60868e-07 3.57881e-07 2.38567e-07 1.1834e-07 4.38176e-08 1.86812e-08 1.55862e-08 1.70764e-08 9.55586e-10 1.04269e-09 2.96172e-09 1.48037e-08 5.63682e-08 1.62402e-07 3.81359e-07 7.61727e-07 1.32323e-06 2.03347e-06 2.81328e-06 3.5649e-06 4.20094e-06 4.6615e-06 4.91915e-06 4.97625e-06 4.8582e-06 4.60375e-06 4.25091e-06 3.84509e-06 3.42072e-06 3.00156e-06 2.60194e-06 2.22922e-06 1.88599e-06 1.57067e-06 1.27512e-06 9.80482e-07 6.66295e-07 3.59867e-07 1.45312e-07 4.85789e-08 2.25772e-08 2.04456e-08 2.22993e-08 2.14645e-09 2.34169e-09 7.33877e-09 3.9629e-08 1.59283e-07 4.81465e-07 1.15982e-06 2.28432e-06 3.76108e-06 5.3477e-06 6.80195e-06 7.96625e-06 8.76465e-06 9.17561e-06 9.21242e-06 8.91563e-06 8.34701e-06 7.57838e-06 6.68923e-06 5.78107e-06 4.92657e-06 4.1647e-06 3.50675e-06 2.94395e-06 2.45494e-06 2.01087e-06 1.57971e-06 1.13834e-06 6.83901e-07 3.53717e-07 1.41141e-07 4.93681e-08 2.5232e-08 2.3506e-08 2.54468e-08 2.93198e-09 3.26711e-09 1.1714e-08 6.62153e-08 2.64364e-07 7.69455e-07 1.73389e-06 3.1539e-06 4.84287e-06 6.56366e-06 8.13417e-06 9.376e-06 1.01387e-05 1.06621e-05 1.09462e-05 1.09785e-05 1.07738e-05 1.03543e-05 9.43787e-06 8.43042e-06 7.27662e-06 6.15424e-06 5.12123e-06 4.20023e-06 3.38383e-06 2.64422e-06 1.79018e-06 1.09384e-06 6.25473e-07 3.43756e-07 1.51257e-07 5.34782e-08 2.77057e-08 2.59417e-08 2.80347e-08 3.48463e-09 3.88326e-09 1.40742e-08 7.94609e-08 3.1541e-07 9.15281e-07 2.06389e-06 3.76041e-06 5.77402e-06 7.80411e-06 9.31394e-06 1.05129e-05 1.15806e-05 1.25116e-05 1.32778e-05 1.38187e-05 1.3871e-05 1.3392e-05 1.25883e-05 1.1533e-05 1.02962e-05 8.95816e-06 7.58966e-06 6.24348e-06 4.89548e-06 3.36898e-06 2.12912e-06 1.262e-06 7.16852e-07 3.95217e-07 1.80076e-07 6.1966e-08 3.0926e-08 2.8728e-08 3.10274e-08 4.0519e-09 4.61244e-09 1.83369e-08 1.06391e-07 4.24588e-07 1.22636e-06 2.71851e-06 4.83275e-06 7.24949e-06 9.63092e-06 1.12975e-05 1.2759e-05 1.40972e-05 1.5316e-05 1.63906e-05 1.70502e-05 1.70104e-05 1.66162e-05 1.58763e-05 1.485e-05 1.35762e-05 1.20959e-05 1.04555e-05 8.70554e-06 6.41138e-06 4.29072e-06 2.66441e-06 1.56703e-06 8.87604e-07 4.87471e-07 2.26439e-07 7.45937e-08 3.47677e-08 3.16371e-08 3.40911e-08 4.44543e-09 5.11061e-09 2.10338e-08 1.22428e-07 4.85264e-07 1.38877e-06 3.05018e-06 5.38494e-06 8.05239e-06 1.07046e-05 1.26763e-05 1.44141e-05 1.60725e-05 1.76767e-05 1.91686e-05 1.98916e-05 2.00825e-05 1.98993e-05 1.93539e-05 1.84645e-05 1.72426e-05 1.5699e-05 1.38502e-05 1.16356e-05 8.44852e-06 5.61676e-06 3.48732e-06 2.05807e-06 1.16878e-06 6.41093e-07 3.04347e-07 9.52991e-08 3.97814e-08 3.46758e-08 3.72184e-08 4.92755e-09 5.77955e-09 2.5421e-08 1.5024e-07 5.97012e-07 1.70362e-06 3.70359e-06 6.4448e-06 9.50854e-06 1.25156e-05 1.48243e-05 1.689e-05 1.88991e-05 2.08544e-05 2.23773e-05 2.31253e-05 2.34717e-05 2.34285e-05 2.3003e-05 2.21957e-05 2.0997e-05 1.93902e-05 1.73603e-05 1.46839e-05 1.07116e-05 7.16922e-06 4.50108e-06 2.69142e-06 1.54524e-06 8.52208e-07 4.10812e-07 1.23027e-07 4.56853e-08 3.77644e-08 4.03265e-08 5.43835e-09 6.50386e-09 3.03609e-08 1.8143e-07 7.20026e-07 2.03928e-06 4.37437e-06 7.50197e-06 1.09421e-05 1.42984e-05 1.69438e-05 1.93144e-05 2.16458e-05 2.39256e-05 2.55807e-05 2.65454e-05 2.70819e-05 2.71961e-05 2.68874e-05 2.61462e-05 2.49474e-05 2.32549e-05 2.10317e-05 1.77137e-05 1.30736e-05 8.89044e-06 5.686e-06 3.46555e-06 2.024e-06 1.13083e-06 5.60295e-07 1.62993e-07 5.34203e-08 4.08768e-08 4.33305e-08 5.94446e-09 7.25311e-09 3.58155e-08 2.16118e-07 8.56689e-07 2.40953e-06 5.1049e-06 8.63978e-06 1.2473e-05 1.61928e-05 1.92598e-05 2.19728e-05 2.46521e-05 2.72452e-05 2.88746e-05 3.00452e-05 3.07622e-05 3.10239e-05 3.08204e-05 3.01311e-05 2.89162e-05 2.71235e-05 2.4701e-05 2.07746e-05 1.55316e-05 1.07558e-05 7.02569e-06 4.37698e-06 2.60949e-06 1.48298e-06 7.4818e-07 2.11276e-07 6.07124e-08 4.39041e-08 4.62387e-08 6.51968e-09 8.14169e-09 4.27161e-08 2.60438e-07 1.0315e-06 2.87771e-06 6.00752e-06 1.0011e-05 1.42784e-05 1.83856e-05 2.18363e-05 2.48798e-05 2.78684e-05 3.06083e-05 3.24501e-05 3.38035e-05 3.46699e-05 3.50405e-05 3.48977e-05 3.42127e-05 3.29335e-05 3.09974e-05 2.83449e-05 2.37359e-05 1.79691e-05 1.26787e-05 8.46427e-06 5.39533e-06 3.28863e-06 1.90544e-06 9.794e-07 2.7233e-07 7.03052e-08 4.69572e-08 4.90436e-08 7.09164e-09 9.05788e-09 5.01637e-08 3.08287e-07 1.21827e-06 3.36755e-06 6.9298e-06 1.13916e-05 1.60892e-05 2.05915e-05 2.45049e-05 2.7897e-05 3.119e-05 3.40528e-05 3.61232e-05 3.76695e-05 3.86878e-05 3.91603e-05 3.90611e-05 3.83561e-05 3.69836e-05 3.4875e-05 3.197e-05 2.6642e-05 2.04002e-05 1.46509e-05 9.98757e-06 6.51044e-06 4.05855e-06 2.40146e-06 1.26139e-06 3.49613e-07 8.25842e-08 5.00684e-08 5.17532e-08 7.70097e-09 1.00768e-08 5.88896e-08 3.64639e-07 1.43754e-06 3.93461e-06 7.97579e-06 1.29296e-05 1.80792e-05 2.29896e-05 2.73677e-05 3.1102e-05 3.46693e-05 3.76844e-05 3.99728e-05 4.1698e-05 4.28497e-05 4.34002e-05 4.33162e-05 4.25603e-05 4.10637e-05 3.87553e-05 3.5549e-05 2.94798e-05 2.28012e-05 1.66449e-05 1.15702e-05 7.70239e-06 4.90627e-06 2.9647e-06 1.59164e-06 4.42799e-07 9.72151e-08 5.32337e-08 5.43764e-08 8.32874e-09 1.1167e-08 6.86168e-08 4.27573e-07 1.68055e-06 4.55132e-06 9.08941e-06 1.45447e-05 2.01554e-05 2.54854e-05 3.03338e-05 3.44433e-05 3.82345e-05 4.14524e-05 4.39616e-05 4.58629e-05 4.71392e-05 4.7752e-05 4.76608e-05 4.68298e-05 4.5185e-05 4.26569e-05 3.87191e-05 3.22427e-05 2.52009e-05 1.86718e-05 1.32122e-05 8.96856e-06 5.83013e-06 3.59573e-06 1.97133e-06 5.52883e-07 1.14344e-07 5.64666e-08 5.69187e-08 8.97718e-09 1.23357e-08 7.94496e-08 4.97738e-07 1.94926e-06 5.22049e-06 1.02734e-05 1.62392e-05 2.23181e-05 2.80734e-05 3.33085e-05 3.7899e-05 4.19442e-05 4.53363e-05 4.80657e-05 5.01391e-05 5.15315e-05 5.21922e-05 5.20748e-05 5.11478e-05 4.9335e-05 4.65705e-05 4.18065e-05 3.49381e-05 2.75794e-05 2.07183e-05 1.49023e-05 1.02982e-05 6.82149e-06 4.28885e-06 2.39618e-06 6.79104e-07 1.33908e-07 5.97699e-08 5.93858e-08 9.65097e-09 1.35932e-08 9.15113e-08 5.7598e-07 2.24658e-06 5.94734e-06 1.15352e-05 1.80231e-05 2.45787e-05 3.07666e-05 3.63939e-05 4.13821e-05 4.57015e-05 4.93396e-05 5.22864e-05 5.45263e-05 5.60253e-05 5.67203e-05 5.65589e-05 5.55172e-05 5.35196e-05 5.05062e-05 4.48496e-05 3.76016e-05 2.9956e-05 2.27927e-05 1.66424e-05 1.16905e-05 7.8787e-06 5.04295e-06 2.86491e-06 8.21569e-07 1.55976e-07 6.31521e-08 6.17817e-08 1.03451e-08 1.49284e-08 1.04714e-07 6.61666e-07 2.56913e-06 6.72055e-06 1.28534e-05 1.98677e-05 2.69051e-05 3.35315e-05 3.95562e-05 4.49001e-05 4.95314e-05 5.34356e-05 5.66002e-05 5.90042e-05 6.06036e-05 6.13227e-05 6.11037e-05 5.99319e-05 5.77362e-05 5.4114e-05 4.78388e-05 4.02526e-05 3.23419e-05 2.48957e-05 1.84291e-05 1.31405e-05 8.99677e-06 5.85388e-06 3.37325e-06 9.79232e-07 1.80437e-07 6.66096e-08 6.41078e-08 1.10651e-08 1.6347e-08 1.19145e-07 7.55434e-07 2.91888e-06 7.54323e-06 1.42324e-05 2.17788e-05 2.93022e-05 3.63706e-05 4.27949e-05 4.84959e-05 5.34401e-05 5.76105e-05 6.09915e-05 6.35564e-05 6.525e-05 6.59851e-05 6.56986e-05 6.43842e-05 6.19783e-05 5.74366e-05 5.07508e-05 4.29007e-05 3.47534e-05 2.70397e-05 2.02676e-05 1.46495e-05 1.01756e-05 6.72097e-06 3.91951e-06 1.15176e-06 2.07269e-07 7.01433e-08 6.63654e-08 1.18068e-08 1.78278e-08 1.3465e-07 8.56444e-07 3.29233e-06 8.40584e-06 1.56572e-05 2.37381e-05 3.17509e-05 3.92645e-05 4.60911e-05 5.21506e-05 5.74078e-05 6.18432e-05 6.54385e-05 6.81607e-05 6.99429e-05 7.06881e-05 7.03285e-05 6.88628e-05 6.60315e-05 6.06988e-05 5.36336e-05 4.554e-05 3.71738e-05 2.92192e-05 2.21545e-05 1.62143e-05 1.14123e-05 7.64192e-06 4.5005e-06 1.33827e-06 2.36367e-07 7.37481e-08 6.8555e-08 1.25743e-08 1.93484e-08 1.51132e-07 9.64487e-07 3.68894e-06 9.30688e-06 1.7126e-05 2.57436e-05 3.42471e-05 4.2206e-05 4.9433e-05 5.58472e-05 6.14116e-05 6.61052e-05 6.99068e-05 7.27765e-05 7.46346e-05 7.53823e-05 7.49522e-05 7.33343e-05 6.95961e-05 6.38361e-05 5.65026e-05 4.81954e-05 3.96227e-05 3.14404e-05 2.40918e-05 1.78346e-05 1.27059e-05 8.61577e-06 5.11431e-06 1.5383e-06 2.67684e-07 7.74217e-08 7.0676e-08 1.33632e-08 2.08366e-08 1.68183e-07 1.07802e-06 4.10462e-06 1.0239e-05 1.86304e-05 2.77872e-05 3.67827e-05 4.51859e-05 5.28091e-05 5.957e-05 6.54301e-05 7.03668e-05 7.4356e-05 7.73498e-05 7.92562e-05 7.99877e-05 7.94967e-05 7.72575e-05 7.30078e-05 6.69249e-05 5.9353e-05 5.08497e-05 4.20846e-05 3.36801e-05 2.60721e-05 1.95057e-05 1.40533e-05 9.64025e-06 5.75762e-06 1.75079e-06 3.01085e-07 8.11531e-08 7.27237e-08 1.41765e-08 2.21861e-08 1.85458e-07 1.19679e-06 4.54086e-06 1.12069e-05 2.01777e-05 2.98767e-05 3.93636e-05 4.82071e-05 5.62188e-05 6.33152e-05 6.94559e-05 7.4616e-05 7.87673e-05 8.18507e-05 8.37815e-05 8.44923e-05 8.35824e-05 8.08729e-05 7.63051e-05 6.99653e-05 6.21836e-05 5.35014e-05 4.45572e-05 3.59444e-05 2.80916e-05 2.12226e-05 1.54502e-05 1.07123e-05 6.4273e-06 1.97486e-06 3.36465e-07 8.49335e-08 7.46943e-08 1.50121e-08 2.33431e-08 2.0324e-07 1.32355e-06 5.006e-06 1.2223e-05 2.17805e-05 3.20217e-05 4.19959e-05 5.12723e-05 5.96626e-05 6.7082e-05 7.34885e-05 7.88548e-05 8.31474e-05 8.63005e-05 8.81596e-05 8.85613e-05 8.73455e-05 8.43709e-05 7.95434e-05 7.29694e-05 6.4994e-05 5.6147e-05 4.70374e-05 3.82292e-05 3.01413e-05 2.29811e-05 1.68935e-05 1.18294e-05 7.11959e-06 2.2092e-06 3.73641e-07 8.87471e-08 7.6581e-08 1.58778e-08 2.48938e-08 2.24411e-07 1.46783e-06 5.51727e-06 1.33047e-05 2.34501e-05 3.42263e-05 4.46779e-05 5.43762e-05 6.31327e-05 7.08613e-05 7.75176e-05 8.3071e-05 8.74813e-05 9.06299e-05 9.22559e-05 9.24498e-05 9.10014e-05 8.7775e-05 8.27072e-05 7.59271e-05 6.77823e-05 5.87879e-05 4.95246e-05 4.05284e-05 3.22043e-05 2.4774e-05 1.83784e-05 1.2988e-05 7.83107e-06 2.45275e-06 4.1248e-07 9.25821e-08 7.83785e-08 1.67747e-08 2.6953e-08 2.49095e-07 1.62775e-06 6.06456e-06 1.44306e-05 2.51597e-05 3.64646e-05 4.73872e-05 5.75006e-05 6.66158e-05 7.46451e-05 8.15417e-05 8.72722e-05 9.17902e-05 9.47961e-05 9.62475e-05 9.62332e-05 9.45553e-05 9.10939e-05 8.58089e-05 7.8846e-05 7.05514e-05 6.14231e-05 5.20157e-05 4.28403e-05 3.42897e-05 2.65983e-05 1.99013e-05 1.41851e-05 8.55762e-06 2.70398e-06 4.52762e-07 9.64201e-08 8.00792e-08 1.77021e-08 2.90656e-08 2.74558e-07 1.79295e-06 6.625e-06 1.55702e-05 2.68801e-05 3.87115e-05 5.01026e-05 6.06267e-05 7.0094e-05 7.84145e-05 8.55397e-05 9.14329e-05 9.60497e-05 9.88676e-05 0.000100132 9.99115e-05 9.80139e-05 9.43341e-05 8.88526e-05 8.17275e-05 7.33008e-05 6.40512e-05 5.45083e-05 4.51612e-05 3.63929e-05 2.8449e-05 2.14573e-05 1.54167e-05 9.29556e-06 2.9616e-06 4.9431e-07 1.00245e-07 8.16761e-08 1.86591e-08 3.13083e-08 3.02023e-07 1.97053e-06 7.21802e-06 1.67532e-05 2.86433e-05 4.09959e-05 5.28479e-05 6.37736e-05 7.35825e-05 8.21835e-05 8.95259e-05 9.55701e-05 0.000100234 0.000102834 0.000103914 0.000103492 0.000101386 9.75048e-05 9.1847e-05 8.4578e-05 7.60339e-05 6.66735e-05 5.70027e-05 4.74911e-05 3.85135e-05 3.03252e-05 2.30448e-05 1.66801e-05 1.00413e-05 3.22407e-06 5.36882e-07 1.04038e-07 8.31624e-08 1.96461e-08 3.36676e-08 3.3119e-07 2.15822e-06 7.83552e-06 1.79658e-05 3.04341e-05 4.33033e-05 5.56092e-05 6.69276e-05 7.70677e-05 8.59373e-05 9.34847e-05 9.96686e-05 0.000104233 0.000106683 0.000107586 0.000106972 0.000104672 0.000100611 9.4796e-05 8.73996e-05 7.87508e-05 6.92895e-05 5.94983e-05 4.98284e-05 4.0646e-05 3.22105e-05 2.46586e-05 1.79727e-05 1.07916e-05 3.49024e-06 5.80311e-07 1.07782e-07 8.45319e-08 2.06602e-08 3.61302e-08 3.6188e-07 2.3548e-06 8.47234e-06 1.91963e-05 3.22347e-05 4.56119e-05 5.83634e-05 7.0066e-05 8.05283e-05 8.96573e-05 9.73997e-05 0.000103715 0.000108128 0.000110412 0.000111142 0.000110349 0.000107876 0.000103654 9.77029e-05 9.01963e-05 8.14557e-05 7.19024e-05 6.19957e-05 5.21712e-05 4.27888e-05 3.41128e-05 2.62958e-05 1.92905e-05 1.15428e-05 3.75853e-06 6.24346e-07 1.11461e-07 8.57824e-08 2.17001e-08 3.87108e-08 3.94375e-07 2.56189e-06 9.13289e-06 2.04531e-05 3.40565e-05 4.79334e-05 6.11203e-05 7.31954e-05 8.39676e-05 9.33435e-05 0.000101269 0.000107705 0.000111899 0.000114002 0.00011457 0.00011362 0.000110995 0.000106635 0.000100568 9.29667e-05 8.41449e-05 7.45063e-05 6.44905e-05 5.45171e-05 4.49408e-05 3.60321e-05 2.79563e-05 2.06328e-05 1.22933e-05 4.02826e-06 6.68883e-07 1.15065e-07 8.69115e-08 2.27622e-08 4.13908e-08 4.28374e-07 2.77744e-06 9.80986e-06 2.17224e-05 3.58817e-05 5.02483e-05 6.38603e-05 7.62973e-05 8.73687e-05 9.69808e-05 0.00010508 0.000111626 0.000115534 0.000117451 0.000117874 0.000116787 0.000114032 0.000109555 0.00010339 9.57093e-05 8.68165e-05 7.70998e-05 6.69799e-05 5.68623e-05 4.70982e-05 3.79645e-05 2.96366e-05 2.1996e-05 1.30403e-05 4.2982e-06 7.13703e-07 1.18582e-07 8.79234e-08 2.38431e-08 4.41698e-08 4.63924e-07 3.00156e-06 1.05029e-05 2.30035e-05 3.77085e-05 5.2553e-05 6.65775e-05 7.93635e-05 9.07209e-05 0.000100557 0.000108818 0.000115468 0.000119013 0.000120758 0.000121058 0.000119853 0.000116987 0.000112413 0.000106169 9.84241e-05 8.94715e-05 7.96843e-05 6.94663e-05 5.92094e-05 4.92633e-05 3.99119e-05 3.13387e-05 2.33819e-05 1.37844e-05 4.56869e-06 7.58896e-07 1.22016e-07 8.88201e-08 2.49389e-08 4.70393e-08 5.0091e-07 3.23338e-06 1.12088e-05 2.42908e-05 3.95304e-05 5.48411e-05 6.92658e-05 8.23882e-05 9.40192e-05 0.000104066 0.000112476 0.000118948 0.000122328 0.000123941 0.000124124 0.000122815 0.000119858 0.000115208 0.000108904 0.000101109 9.21069e-05 8.22553e-05 7.19435e-05 6.15528e-05 5.14311e-05 4.18697e-05 3.30582e-05 2.47857e-05 1.4522e-05 4.83805e-06 8.0413e-07 1.25351e-07 8.96076e-08 2.60471e-08 4.99857e-08 5.39119e-07 3.4714e-06 1.19227e-05 2.55763e-05 4.13371e-05 5.71004e-05 7.1912e-05 8.5358e-05 9.72504e-05 0.000107497 0.000116047 0.000122269 0.00012548 0.000126974 0.000127062 0.000125671 0.000122646 0.000117941 0.000111593 0.000103762 9.47194e-05 8.48098e-05 7.44097e-05 6.38917e-05 5.36022e-05 4.38401e-05 3.47986e-05 2.62116e-05 1.52553e-05 5.1075e-06 8.49673e-07 1.28601e-07 9.0288e-08 2.71659e-08 5.3007e-08 5.78543e-07 3.71543e-06 1.26436e-05 2.68588e-05 4.31274e-05 5.93295e-05 7.45144e-05 8.82706e-05 0.000100412 0.000110847 0.000119526 0.000125437 0.000128469 0.000129857 0.000129874 0.000128426 0.000125353 0.000120611 0.000114235 0.00010638 9.73064e-05 8.73457e-05 7.68631e-05 6.62234e-05 5.57726e-05 4.58173e-05 3.65531e-05 2.76516e-05 1.59791e-05 5.37438e-06 8.94966e-07 1.31733e-07 9.08663e-08 2.82938e-08 5.6093e-08 6.19009e-07 3.96431e-06 1.33683e-05 2.81332e-05 4.4895e-05 6.15214e-05 7.70656e-05 9.11186e-05 0.000103496 0.000114108 0.000122908 0.000128448 0.000131296 0.000132596 0.000132564 0.000131081 0.000127981 0.000123218 0.000116828 0.00010896 9.98626e-05 8.9857e-05 7.92973e-05 6.85424e-05 5.7939e-05 4.78021e-05 3.83267e-05 2.91132e-05 1.66969e-05 5.64078e-06 9.40491e-07 1.34772e-07 9.13456e-08 2.94272e-08 5.92383e-08 6.60469e-07 4.21765e-06 1.40954e-05 2.93976e-05 4.66377e-05 6.36735e-05 7.95625e-05 9.38986e-05 0.000106499 0.000117278 0.000126189 0.000131297 0.000133964 0.000135199 0.00013514 0.000133641 0.000130529 0.00012576 0.00011937 0.0001115 0.00010239 9.23487e-05 8.172e-05 7.08571e-05 6.01074e-05 4.97949e-05 4.01131e-05 3.05868e-05 1.74049e-05 5.9045e-06 9.85711e-07 1.37678e-07 9.17353e-08 3.0561e-08 6.24257e-08 7.02666e-07 4.4738e-06 1.48205e-05 3.06454e-05 4.83474e-05 6.57767e-05 8.19953e-05 9.66004e-05 0.000109412 0.000120346 0.000129362 0.000133974 0.000136489 0.00013769 0.000137621 0.000136115 0.000133005 0.000128244 0.000121866 0.000114005 0.000104889 9.48162e-05 8.41212e-05 7.31544e-05 6.22668e-05 5.17896e-05 4.19109e-05 3.2071e-05 1.80998e-05 6.1641e-06 1.03038e-06 1.40432e-07 9.20446e-08 3.16891e-08 6.56404e-08 7.45408e-07 4.73153e-06 1.55404e-05 3.18723e-05 5.00194e-05 6.78262e-05 8.43595e-05 9.92194e-05 0.000112228 0.000123304 0.000132041 0.000136473 0.000138909 0.000140074 0.000139996 0.000138494 0.000135397 0.000130659 0.000124303 0.00011646 0.000107346 9.72483e-05 8.64936e-05 7.54293e-05 6.44117e-05 5.37838e-05 4.37323e-05 3.35941e-05 1.87966e-05 6.4257e-06 1.07536e-06 1.43042e-07 9.22799e-08 3.28081e-08 6.88606e-08 7.88325e-07 4.98859e-06 1.62494e-05 3.30702e-05 5.16445e-05 6.98126e-05 8.66459e-05 0.000101748 0.000114943 0.00012615 0.000134541 0.000138806 0.000141174 0.000142322 0.000142251 0.000140769 0.0001377 0.000132994 0.000126673 0.000118857 0.000109755 9.96446e-05 8.88464e-05 7.77078e-05 6.65887e-05 5.58265e-05 4.55508e-05 3.48801e-05 1.94571e-05 6.67766e-06 1.11906e-06 1.45379e-07 9.24471e-08 3.39184e-08 7.2082e-08 8.31341e-07 5.24454e-06 1.69467e-05 3.42384e-05 5.32217e-05 7.17343e-05 8.88526e-05 0.000104183 0.000117553 0.000128884 0.000136885 0.00014098 0.000143296 0.000144445 0.000144398 0.000142949 0.000139921 0.00013526 0.000128984 0.000121207 0.000112129 0.000102018 9.11905e-05 7.99931e-05 6.8787e-05 5.78944e-05 4.73573e-05 3.59645e-05 2.00829e-05 6.91747e-06 1.16045e-06 1.47299e-07 9.25587e-08 3.50214e-08 7.53094e-08 8.74528e-07 5.49975e-06 1.76335e-05 3.53791e-05 5.47541e-05 7.35947e-05 9.09828e-05 0.000106529 0.000120062 0.000131506 0.00013908 0.000143004 0.000145282 0.00014645 0.000146442 0.00014504 0.000142065 0.000137458 0.000131238 0.00012351 0.000114467 0.000104367 9.3521e-05 8.22754e-05 7.09895e-05 5.99659e-05 4.91515e-05 3.70131e-05 2.06802e-05 7.14386e-06 1.19856e-06 1.4859e-07 9.26156e-08 3.61137e-08 7.85317e-08 9.17727e-07 5.75323e-06 1.83076e-05 3.64897e-05 5.62391e-05 7.53918e-05 9.3035e-05 0.000108783 0.000122468 0.000134018 0.000141129 0.000144883 0.000147138 0.000148343 0.000148389 0.000147045 0.00014413 0.000139588 0.000133431 0.000125762 0.000116762 0.000106683 9.58296e-05 8.45458e-05 7.31887e-05 6.20377e-05 5.09393e-05 3.8032e-05 2.12535e-05 7.35699e-06 1.23257e-06 1.48971e-07 9.26224e-08 3.71922e-08 8.17494e-08 9.60975e-07 6.00515e-06 1.89695e-05 3.75713e-05 5.76782e-05 7.71273e-05 9.50115e-05 0.000110949 0.000124776 0.000136422 0.000143027 0.000146617 0.00014887 0.000150129 0.000150239 0.00014896 0.000146111 0.000141639 0.000135554 0.000127952 0.000119006 0.000108959 9.811e-05 8.68001e-05 7.53832e-05 6.41124e-05 5.27236e-05 3.9012e-05 2.17938e-05 7.55099e-06 1.26083e-06 1.48311e-07 9.25894e-08 3.82491e-08 8.49156e-08 1.0035e-06 6.25107e-06 1.9609e-05 3.861e-05 5.90561e-05 7.87862e-05 9.68984e-05 0.000113015 0.000126974 0.000138712 0.000144773 0.000148217 0.000150494 0.00015182 0.000152 0.000150788 0.000148009 0.000143613 0.000137607 0.00013008 0.000121198 0.000111194 0.00010036 8.90354e-05 7.75691e-05 6.6184e-05 5.44934e-05 3.99378e-05 2.22892e-05 7.72195e-06 1.28396e-06 1.47332e-07 9.25345e-08 3.92853e-08 8.80295e-08 1.04527e-06 6.49098e-06 2.02268e-05 3.96071e-05 6.03744e-05 8.03693e-05 9.8695e-05 0.000114977 0.000129057 0.00014066 0.00014636 0.000149746 0.000152054 0.000153433 0.000153673 0.000152528 0.000149825 0.00014551 0.00013959 0.000132146 0.000123335 0.000113382 0.000102575 9.12479e-05 7.97445e-05 6.82515e-05 5.62517e-05 4.08306e-05 2.27656e-05 7.88945e-06 1.30866e-06 1.47323e-07 9.24754e-08 4.03017e-08 9.10773e-08 1.08603e-06 6.72356e-06 2.08204e-05 4.05607e-05 6.16324e-05 8.18784e-05 0.000100406 0.000116844 0.000131036 0.00014228 0.000147836 0.000151194 0.00015353 0.000154961 0.000155263 0.000154189 0.000151565 0.000147336 0.000141506 0.000134151 0.00012542 0.000115529 0.000104757 9.34385e-05 8.1907e-05 7.03123e-05 5.80033e-05 4.17176e-05 2.32502e-05 8.06974e-06 1.33879e-06 1.4857e-07 9.24165e-08 4.13e-08 9.40686e-08 1.12593e-06 6.94975e-06 2.13925e-05 4.14747e-05 6.28346e-05 8.3318e-05 0.000102037 0.000118621 0.000132919 0.0001438 0.000149217 0.000152555 0.000154925 0.000156412 0.00015678 0.000155779 0.000153236 0.000149096 0.000143358 0.000136095 0.000127448 0.000117624 0.000106898 9.55992e-05 8.40506e-05 7.2362e-05 5.97456e-05 4.25998e-05 2.37409e-05 8.25827e-06 1.37178e-06 1.50246e-07 9.23526e-08 4.22793e-08 9.69955e-08 1.16482e-06 7.16881e-06 2.19421e-05 4.23484e-05 6.39811e-05 8.46889e-05 0.000103588 0.000120312 0.000134709 0.00014522 0.000150501 0.000153826 0.000156235 0.000157782 0.000158217 0.00015729 0.000154828 0.000150777 0.000145134 0.000137966 0.000129407 0.000119657 0.000108987 9.77212e-05 8.6176e-05 7.44157e-05 6.15039e-05 4.34894e-05 2.42448e-05 8.4566e-06 1.40717e-06 1.5209e-07 9.2291e-08 4.32407e-08 9.98566e-08 1.20267e-06 7.38056e-06 2.24692e-05 4.31828e-05 6.50735e-05 8.59935e-05 0.000105063 0.000121918 0.000136409 0.000146547 0.000151696 0.000155013 0.000157466 0.000159073 0.000159577 0.000158722 0.000156341 0.000152377 0.00014683 0.000139762 0.000131301 0.000121642 0.000111043 9.98239e-05 8.82917e-05 7.64732e-05 6.32797e-05 4.43925e-05 2.47632e-05 8.66347e-06 1.44438e-06 1.54042e-07 9.22391e-08 4.41893e-08 1.02669e-07 1.23969e-06 7.58643e-06 2.29776e-05 4.39837e-05 6.61192e-05 8.72398e-05 0.00010647 0.000123449 0.000138028 0.00014779 0.000152811 0.000156125 0.000158625 0.000160295 0.000160867 0.000160084 0.00015778 0.000153903 0.000148451 0.000141487 0.000133134 0.000123583 0.000113088 0.000101952 9.04432e-05 7.84905e-05 6.48279e-05 4.52653e-05 2.52716e-05 8.86973e-06 1.48195e-06 1.56027e-07 9.21984e-08 4.51263e-08 1.05428e-07 1.27583e-06 7.78608e-06 2.34672e-05 4.47519e-05 6.71199e-05 8.8431e-05 0.000107814 0.000124909 0.000139572 0.000148963 0.000153862 0.000157177 0.000159726 0.000161461 0.000162099 0.000161386 0.000159159 0.000155366 0.000150008 0.000143148 0.000134908 0.000125476 0.000115102 0.000104071 9.26004e-05 8.04671e-05 6.60324e-05 4.61092e-05 2.57699e-05 9.07434e-06 1.51958e-06 1.58033e-07 9.21717e-08 4.60548e-08 1.08155e-07 1.31136e-06 7.98107e-06 2.39417e-05 4.5493e-05 6.80829e-05 8.95752e-05 0.000109103 0.000126309 0.00014105 0.000150073 0.000154855 0.000158177 0.000160779 0.000162578 0.000163282 0.000162636 0.000160481 0.000156768 0.000151501 0.000144743 0.000136617 0.000127309 0.000117063 0.000106147 9.47199e-05 8.24053e-05 6.72102e-05 4.69359e-05 2.62603e-05 9.277e-06 1.55705e-06 1.60046e-07 9.21618e-08 4.69736e-08 1.10822e-07 1.34581e-06 8.16893e-06 2.43962e-05 4.62012e-05 6.90027e-05 9.06683e-05 0.000110334 0.000127646 0.000142463 0.00015112 0.000155793 0.000159127 0.000161786 0.000163651 0.000164419 0.000163836 0.000161749 0.000158112 0.000152931 0.000146272 0.000138258 0.000129074 0.000118959 0.000108166 9.67938e-05 8.43067e-05 6.83644e-05 4.77501e-05 2.67466e-05 9.47936e-06 1.59466e-06 1.62086e-07 9.21746e-08 4.78872e-08 1.1343e-07 1.37912e-06 8.3495e-06 2.48306e-05 4.68765e-05 6.98792e-05 9.17101e-05 0.000111509 0.000128923 0.000143813 0.000152114 0.000156685 0.00016004 0.000162759 0.000164689 0.000165519 0.000164995 0.00016297 0.000159403 0.000154303 0.000147737 0.00013983 0.000130769 0.00012079 0.000110126 9.88183e-05 8.61699e-05 6.9493e-05 4.85504e-05 2.72277e-05 9.681e-06 1.63233e-06 1.64152e-07 9.2212e-08 4.88021e-08 1.15983e-07 1.41132e-06 8.52306e-06 2.52457e-05 4.75199e-05 7.07136e-05 9.27018e-05 0.000112627 0.00013014 0.000145101 0.000153054 0.000157536 0.000160919 0.000163701 0.000165695 0.000166581 0.000166112 0.000164143 0.000160641 0.000155615 0.000149136 0.000141332 0.00013239 0.000122546 0.000112019 0.000100788 8.79908e-05 7.05936e-05 4.93341e-05 2.77012e-05 9.88065e-06 1.6698e-06 1.66228e-07 9.22715e-08 4.97256e-08 1.18534e-07 1.44327e-06 8.6941e-06 2.56514e-05 4.81442e-05 7.15191e-05 9.36559e-05 0.000113701 0.000131307 0.000146335 0.000153947 0.000158355 0.000161776 0.000164622 0.000166675 0.000167612 0.00016719 0.000165274 0.00016183 0.000156873 0.000150475 0.000142766 0.000133939 0.00012423 0.000113843 0.000102698 8.97669e-05 7.16675e-05 5.01031e-05 2.81687e-05 1.00793e-05 1.7073e-06 1.68323e-07 9.23478e-08 5.0656e-08 1.21094e-07 1.47519e-06 8.86398e-06 2.60511e-05 4.87552e-05 7.23029e-05 9.45798e-05 0.000114737 0.00013243 0.000147522 0.000154787 0.000159143 0.000162616 0.000165525 0.000167629 0.00016861 0.000168232 0.000166364 0.000162974 0.000158079 0.000151755 0.000144135 0.000135418 0.00012584 0.000115594 0.000104542 9.14891e-05 7.27087e-05 5.08522e-05 2.86265e-05 1.02748e-05 1.74441e-06 1.70414e-07 9.24372e-08 5.15894e-08 1.23647e-07 1.50682e-06 9.03137e-06 2.64425e-05 4.93509e-05 7.30641e-05 9.54734e-05 0.000115734 0.000133504 0.000148486 0.000155562 0.000159924 0.000163442 0.000166398 0.000168546 0.000169568 0.000169232 0.000167407 0.000164067 0.00015923 0.000152973 0.000145436 0.000136823 0.000127374 0.000117272 0.000106322 9.31616e-05 7.37218e-05 5.15857e-05 2.90784e-05 1.04695e-05 1.78162e-06 1.72529e-07 9.25438e-08 5.25256e-08 1.2617e-07 1.53776e-06 9.19415e-06 2.68212e-05 4.99258e-05 7.37977e-05 9.63339e-05 0.000116694 0.000134537 0.000149282 0.000156295 0.000160674 0.000164235 0.000167238 0.000169428 0.00017049 0.000170192 0.000168407 0.000165112 0.000160327 0.000154135 0.000146679 0.000138165 0.000128839 0.000118875 0.000108029 9.47768e-05 7.47099e-05 5.23069e-05 2.95265e-05 1.06644e-05 1.81906e-06 1.74669e-07 9.26659e-08 5.34669e-08 1.2865e-07 1.56774e-06 9.35113e-06 2.71848e-05 5.04765e-05 7.44999e-05 9.71572e-05 0.000117612 0.000135525 0.000150039 0.000156992 0.000161393 0.000165 0.00016805 0.000170283 0.000171382 0.000171119 0.000169371 0.000166116 0.00016138 0.00015525 0.000147875 0.000139466 0.000130263 0.000120418 0.000109635 9.62772e-05 7.56532e-05 5.29997e-05 2.99601e-05 1.08544e-05 1.85585e-06 1.76792e-07 9.28057e-08 5.44174e-08 1.31121e-07 1.59735e-06 9.50536e-06 2.75398e-05 5.10112e-05 7.51788e-05 9.79509e-05 0.000118495 0.000136474 0.00015076 0.000157659 0.000162083 0.000165738 0.000168837 0.000171112 0.000172247 0.000172017 0.000170302 0.000167083 0.00016239 0.000156317 0.00014902 0.000140716 0.000131643 0.000121919 0.000111134 9.74114e-05 7.65343e-05 5.36548e-05 3.03739e-05 1.10371e-05 1.89149e-06 1.78868e-07 9.29576e-08 5.53724e-08 1.33554e-07 1.62615e-06 9.65467e-06 2.7882e-05 5.15252e-05 7.58302e-05 9.87113e-05 0.00011934 0.000137381 0.00015144 0.000158287 0.00016274 0.000166445 0.000169593 0.00017191 0.000173081 0.000172882 0.000171197 0.000168011 0.000163357 0.000157335 0.000150109 0.000141901 0.000132946 0.00012333 0.000112534 9.84276e-05 7.73673e-05 5.4277e-05 3.0769e-05 1.12126e-05 1.92588e-06 1.80884e-07 9.31143e-08 5.63332e-08 1.35964e-07 1.65435e-06 9.80017e-06 2.82135e-05 5.20209e-05 7.64564e-05 9.94406e-05 0.000120149 0.000138249 0.00015208 0.00015888 0.000163364 0.000167122 0.000170321 0.000172681 0.000173887 0.000173719 0.000172062 0.000168904 0.000164284 0.000158307 0.000151143 0.000143021 0.000134173 0.000124654 0.000113845 9.93878e-05 7.81563e-05 5.48682e-05 3.11461e-05 1.13809e-05 1.95902e-06 1.82835e-07 9.32714e-08 5.73e-08 1.38343e-07 1.68182e-06 9.9413e-06 2.85335e-05 5.24973e-05 7.70563e-05 0.000100138 0.000120921 0.000139077 0.000152682 0.000159438 0.000163957 0.000167771 0.000171023 0.000173427 0.000174668 0.000174528 0.000172897 0.000169765 0.000165175 0.000159236 0.000152126 0.00014408 0.000135329 0.000125897 0.000115076 0.000100294 7.89021e-05 5.54291e-05 3.15056e-05 1.15423e-05 1.99093e-06 1.84723e-07 9.34296e-08 5.82742e-08 1.40699e-07 1.70874e-06 1.0079e-05 2.88438e-05 5.2957e-05 7.76325e-05 0.000100805 0.000121659 0.000139866 0.000153244 0.000159959 0.000164517 0.000168389 0.000171696 0.000174144 0.000175421 0.000175309 0.000173702 0.000170592 0.000166028 0.000160122 0.000153059 0.00014508 0.000136414 0.000127062 0.000116228 0.000101146 7.96044e-05 5.59583e-05 3.1846e-05 1.16958e-05 2.02142e-06 1.86532e-07 9.35836e-08 5.92553e-08 1.43041e-07 1.73527e-06 1.02141e-05 2.91467e-05 5.3403e-05 7.81886e-05 0.000101446 0.000122365 0.000140619 0.000153768 0.000160445 0.000165045 0.000168978 0.000172341 0.000174836 0.000176147 0.000176063 0.000174478 0.000171389 0.000166846 0.000160968 0.000153946 0.000146024 0.000137434 0.000128151 0.000117304 0.000101945 8.02631e-05 5.64551e-05 3.2166e-05 1.18405e-05 2.05027e-06 1.88243e-07 9.37265e-08 6.02427e-08 1.45353e-07 1.76111e-06 1.03452e-05 2.94392e-05 5.3832e-05 7.87217e-05 0.000102059 0.000123038 0.000141336 0.000154251 0.000160892 0.000165538 0.000169536 0.000172958 0.0001755 0.000176847 0.00017679 0.000175227 0.000172156 0.000167632 0.000161778 0.00015479 0.000146919 0.000138394 0.000129173 0.000118312 0.000102698 8.08838e-05 5.69242e-05 3.24696e-05 1.19785e-05 2.07791e-06 1.89882e-07 9.38601e-08 6.12388e-08 1.47642e-07 1.78636e-06 1.04727e-05 2.97221e-05 5.42446e-05 7.92321e-05 0.000102643 0.000123678 0.000142015 0.000154696 0.000161304 0.000165999 0.000170064 0.000173547 0.000176137 0.000177521 0.000177491 0.000175949 0.000172896 0.000168388 0.000162554 0.000155595 0.000147767 0.000139301 0.000130134 0.000119257 0.000103406 8.14681e-05 5.73667e-05 3.2757e-05 1.21099e-05 2.10433e-06 1.91446e-07 9.39824e-08 6.224e-08 1.49871e-07 1.81041e-06 1.05938e-05 2.99899e-05 5.4634e-05 7.97125e-05 0.000103193 0.000124279 0.000142653 0.000155102 0.000161681 0.000166428 0.000170564 0.00017411 0.00017675 0.000178171 0.000178169 0.000176648 0.00017361 0.000169117 0.0001633 0.000156365 0.000148574 0.000140158 0.000131037 0.000120142 0.000104071 8.20164e-05 5.77825e-05 3.3028e-05 1.22344e-05 2.12947e-06 1.92928e-07 9.40917e-08 6.32505e-08 1.5207e-07 1.83378e-06 1.07109e-05 3.02472e-05 5.5005e-05 8.01672e-05 0.00010371 0.000124843 0.000143251 0.00015547 0.000162024 0.000166827 0.000171035 0.000174647 0.000177338 0.000178797 0.000178824 0.000177322 0.0001743 0.000169819 0.000164016 0.000157102 0.000149343 0.000140969 0.000131888 0.000120972 0.000104694 8.25301e-05 5.81723e-05 3.32826e-05 1.23519e-05 2.15328e-06 1.94324e-07 9.41849e-08 6.42669e-08 1.54245e-07 1.8566e-06 1.08249e-05 3.04959e-05 5.53607e-05 8.05994e-05 0.000104198 0.000125372 0.000143809 0.000155802 0.000162335 0.000167198 0.000171483 0.000175162 0.000177907 0.000179406 0.000179461 0.00017798 0.000174972 0.000170503 0.000164711 0.000157814 0.000150081 0.000141743 0.000132693 0.000121753 0.000105277 8.30104e-05 5.85371e-05 3.35217e-05 1.24629e-05 2.17586e-06 1.95637e-07 9.42614e-08 6.52885e-08 1.5638e-07 1.8786e-06 1.09345e-05 3.07337e-05 5.56985e-05 8.10074e-05 0.000104656 0.000125867 0.000144329 0.000156086 0.000162602 0.000167531 0.000171898 0.000175649 0.00017845 0.000179991 0.000180075 0.000178615 0.000175622 0.000171163 0.000165381 0.000158497 0.000150786 0.000142479 0.000133454 0.000122486 0.00010582 8.34557e-05 5.88745e-05 3.3743e-05 1.2566e-05 2.1969e-06 1.96846e-07 9.43166e-08 6.63176e-08 1.58474e-07 1.89972e-06 1.10394e-05 3.09602e-05 5.60177e-05 8.13898e-05 0.000105083 0.000126325 0.00014481 0.000156331 0.000162833 0.000167833 0.000172286 0.000176113 0.000178972 0.000180556 0.000180671 0.000179232 0.000176253 0.000171804 0.000166031 0.000159158 0.000151464 0.000143181 0.000134174 0.000123172 0.000106324 8.38679e-05 5.91862e-05 3.39474e-05 1.26615e-05 2.21643e-06 1.97949e-07 9.43457e-08 6.73526e-08 1.60535e-07 1.92016e-06 1.11408e-05 3.11777e-05 5.63211e-05 8.17495e-05 0.00010548 0.000126749 0.000145252 0.000156536 0.000163029 0.000168107 0.000172651 0.000176558 0.000179478 0.000181106 0.000181253 0.000179835 0.000176869 0.00017243 0.000166664 0.000159799 0.000152119 0.000143854 0.000134857 0.000123817 0.00010679 8.4247e-05 5.94721e-05 3.4135e-05 1.27495e-05 2.23449e-06 1.98945e-07 9.43456e-08 6.83899e-08 1.62548e-07 1.93966e-06 1.12373e-05 3.13839e-05 5.6606e-05 8.20838e-05 0.000105847 0.000127137 0.000145654 0.000156687 0.000163175 0.000168339 0.000172984 0.000176976 0.000179961 0.000181635 0.000181814 0.000180418 0.000177467 0.000173037 0.000167278 0.000160422 0.000152752 0.000144499 0.000135506 0.00012442 0.000107215 8.45894e-05 5.97282e-05 3.43022e-05 1.2828e-05 2.25063e-06 1.99803e-07 9.43068e-08 6.9426e-08 1.64477e-07 1.95764e-06 1.13262e-05 3.15731e-05 5.68654e-05 8.23855e-05 0.000106175 0.000127482 0.00014601 0.000156783 0.000163272 0.000168532 0.000173285 0.000177369 0.000180422 0.000182144 0.000182356 0.000180984 0.000178048 0.000173629 0.000167878 0.000161029 0.000153369 0.000145125 0.000136128 0.000124989 0.000107603 8.48976e-05 5.9956e-05 3.44501e-05 1.28975e-05 2.26493e-06 2.00526e-07 9.42296e-08 7.04699e-08 1.66343e-07 1.97436e-06 1.14086e-05 3.17469e-05 5.71005e-05 8.2655e-05 0.000106464 0.000127783 0.000146319 0.000156824 0.000163319 0.000168686 0.000173557 0.000177738 0.000180861 0.000182633 0.000182879 0.000181531 0.000178613 0.000174207 0.000168466 0.000161626 0.000153974 0.000145738 0.000136733 0.000125533 0.000107961 8.51778e-05 6.01608e-05 3.45821e-05 1.29595e-05 2.27771e-06 2.01133e-07 9.41174e-08 7.15172e-08 1.68112e-07 1.98928e-06 1.14819e-05 3.19004e-05 5.73046e-05 8.28847e-05 0.000106706 0.000128033 0.000146575 0.000156811 0.000163323 0.000168808 0.000173805 0.000178087 0.000181284 0.000183106 0.000183388 0.000182066 0.000179168 0.000174776 0.000169047 0.000162218 0.000154578 0.000146348 0.00013733 0.000126062 0.000108293 8.54343e-05 6.03459e-05 3.47005e-05 1.30153e-05 2.28921e-06 2.01639e-07 9.39732e-08 7.25674e-08 1.69801e-07 2.00275e-06 1.15476e-05 3.20358e-05 5.74794e-05 8.30753e-05 0.000106902 0.000128231 0.000146775 0.00015673 0.000163275 0.000168895 0.000174028 0.000178413 0.000181683 0.000183557 0.000183877 0.000182585 0.000179709 0.000175335 0.000169622 0.000162807 0.00015518 0.000146959 0.000137928 0.000126582 0.000108602 8.56696e-05 6.05131e-05 3.48067e-05 1.30655e-05 2.29955e-06 2.02051e-07 9.37975e-08 7.36201e-08 1.71431e-07 2.01506e-06 1.16071e-05 3.21557e-05 5.76275e-05 8.32283e-05 0.000107051 0.000128375 0.000146919 0.000156576 0.000163182 0.000168956 0.000174227 0.000178713 0.000182055 0.000183983 0.000184345 0.000183085 0.000180236 0.000175883 0.000170189 0.000163393 0.000155784 0.000147575 0.00013853 0.0001271 0.000108892 8.58856e-05 6.06633e-05 3.49004e-05 1.31096e-05 2.30865e-06 2.02363e-07 9.35885e-08 7.4669e-08 1.72945e-07 2.02535e-06 1.16566e-05 3.2253e-05 5.7741e-05 8.33357e-05 0.000107144 0.000128452 0.000146729 0.000156343 0.000163079 0.000169 0.000174394 0.000178979 0.000182396 0.000184382 0.000184789 0.000183566 0.000180746 0.000176418 0.000170748 0.000163976 0.000156391 0.0001482 0.000139144 0.000127624 0.000109167 8.60862e-05 6.07998e-05 3.49841e-05 1.31489e-05 2.31672e-06 2.02588e-07 9.33477e-08 7.57216e-08 1.74385e-07 2.03422e-06 1.16986e-05 3.23325e-05 5.78253e-05 8.34037e-05 0.000107189 0.000128474 0.000146418 0.000156046 0.000162921 0.000168995 0.000174521 0.000179208 0.000182705 0.000184752 0.000185208 0.000184023 0.000181236 0.000176938 0.000171296 0.000164553 0.000157 0.000148833 0.000139771 0.000128158 0.000109432 8.62775e-05 6.09276e-05 3.50611e-05 1.31849e-05 2.32414e-06 2.02747e-07 9.30735e-08 7.67751e-08 1.75712e-07 2.04103e-06 1.17302e-05 3.23886e-05 5.78734e-05 8.34247e-05 0.000107179 0.000128435 0.000146036 0.000155682 0.000162706 0.000168941 0.000174604 0.0001794 0.00018298 0.000185092 0.0001856 0.000184457 0.000181706 0.00017744 0.000171831 0.000165123 0.000157607 0.000149472 0.000140409 0.000128701 0.000109687 8.6459e-05 6.1047e-05 3.5132e-05 1.32181e-05 2.33097e-06 2.02844e-07 9.27668e-08 7.7833e-08 1.76959e-07 2.0463e-06 1.17538e-05 3.24254e-05 5.78896e-05 8.34021e-05 0.000107115 0.000128336 0.000145582 0.000155253 0.000162433 0.000168838 0.000174646 0.000179556 0.000183223 0.000185403 0.000185965 0.000184869 0.000182156 0.000177927 0.000172354 0.000165688 0.000158217 0.000150123 0.000141066 0.000129261 0.000109935 8.66343e-05 6.11614e-05 3.51997e-05 1.32501e-05 2.33761e-06 2.02905e-07 9.24316e-08 7.88976e-08 1.78118e-07 2.04987e-06 1.17689e-05 3.24425e-05 5.78737e-05 8.33362e-05 0.000106999 0.000128176 0.000145046 0.000154743 0.00016209 0.000168676 0.000174638 0.000179668 0.000183428 0.00018568 0.0001863 0.000185251 0.000182581 0.000178391 0.00017286 0.00016624 0.000158821 0.000150775 0.000141731 0.000129827 0.000110173 8.68004e-05 6.12683e-05 3.5262e-05 1.32796e-05 2.34373e-06 2.02915e-07 9.20731e-08 7.99734e-08 1.79181e-07 2.05154e-06 1.17744e-05 3.24374e-05 5.78228e-05 8.32234e-05 0.000106826 0.000127953 0.000144429 0.000154156 0.00016168 0.000168457 0.000174581 0.000179738 0.000183596 0.000185924 0.000186604 0.000185606 0.000182981 0.000178835 0.00017335 0.000166782 0.000159422 0.000151432 0.000142407 0.000130404 0.000110403 8.69617e-05 6.13725e-05 3.53234e-05 1.33092e-05 2.34994e-06 2.02914e-07 9.16964e-08 8.1071e-08 1.80224e-07 2.05247e-06 1.17758e-05 3.24205e-05 5.77484e-05 8.30746e-05 0.000106605 0.000127672 0.000143734 0.000153493 0.000161203 0.000168183 0.000174478 0.000179769 0.000183729 0.000186135 0.000186878 0.000185933 0.000183356 0.000179259 0.000173826 0.000167317 0.00016002 0.000152089 0.000143086 0.000130985 0.000110625 8.71167e-05 6.1472e-05 3.53816e-05 1.33372e-05 2.35583e-06 2.02876e-07 9.13012e-08 8.21778e-08 1.81138e-07 2.05092e-06 1.17649e-05 3.23766e-05 5.76323e-05 8.28713e-05 0.00010632 0.000127318 0.00014294 0.000152733 0.000160642 0.000167837 0.000174315 0.000179748 0.000183816 0.000186305 0.000187113 0.000186223 0.000183698 0.000179656 0.000174286 0.000167848 0.000160622 0.000152741 0.00014374 0.000131532 0.00011083 8.72597e-05 6.15638e-05 3.54355e-05 1.33638e-05 2.36151e-06 2.02814e-07 9.08901e-08 8.33026e-08 1.81995e-07 2.04802e-06 1.17468e-05 3.23141e-05 5.74834e-05 8.26208e-05 0.000105975 0.000126894 0.000142052 0.000151882 0.000160002 0.000167426 0.000174098 0.000179682 0.000183862 0.000186437 0.000187312 0.000186479 0.000184008 0.000180024 0.000174725 0.000168371 0.000161235 0.000153413 0.000144354 0.000131857 0.000110999 8.73786e-05 6.16404e-05 3.54809e-05 1.33871e-05 2.36666e-06 2.02711e-07 9.04631e-08 8.44486e-08 1.8278e-07 2.04347e-06 1.17203e-05 3.22312e-05 5.72995e-05 8.23207e-05 0.000105567 0.000126398 0.000141062 0.000150933 0.000159278 0.000166946 0.000173824 0.000179566 0.000183864 0.000186526 0.00018747 0.000186694 0.000184278 0.000180355 0.000175128 0.000168863 0.000161822 0.000154062 0.000144931 0.000132038 0.000111133 8.74699e-05 6.16963e-05 3.55124e-05 1.34039e-05 2.37047e-06 2.02518e-07 9.00148e-08 8.56154e-08 1.83473e-07 2.03689e-06 1.16832e-05 3.21232e-05 5.70743e-05 8.19638e-05 0.00010509 0.00012582 0.000139963 0.000149879 0.000158467 0.000166395 0.000173491 0.000179397 0.000183816 0.000186568 0.000187581 0.000186863 0.000184503 0.000180641 0.000175489 0.000169315 0.000162371 0.000154675 0.000145473 0.000132183 0.000111237 8.75387e-05 6.17363e-05 3.55344e-05 1.34165e-05 2.37354e-06 2.02271e-07 8.95485e-08 8.68106e-08 1.84105e-07 2.0287e-06 1.16372e-05 3.19926e-05 5.68096e-05 8.15507e-05 0.000104541 0.000125161 0.000138744 0.000148719 0.000157572 0.00016578 0.000173104 0.000179179 0.00018372 0.00018656 0.000187642 0.000186983 0.000184678 0.000180877 0.000175799 0.000169717 0.000162873 0.000155244 0.000145973 0.000132287 0.000111309 8.7582e-05 6.17585e-05 3.55454e-05 1.34246e-05 2.37574e-06 2.01968e-07 8.90678e-08 8.80359e-08 1.84662e-07 2.01861e-06 1.15807e-05 3.18354e-05 5.64995e-05 8.10738e-05 0.000103914 0.000124413 0.000137391 0.000147453 0.000156605 0.000165109 0.000172665 0.000178908 0.00018357 0.0001865 0.000187651 0.00018705 0.0001848 0.000181058 0.000176054 0.000170063 0.000163319 0.000155759 0.000146423 0.000132345 0.000111342 8.75966e-05 6.1761e-05 3.55448e-05 1.34277e-05 2.37702e-06 2.01607e-07 8.85777e-08 8.93034e-08 1.85212e-07 2.00757e-06 1.1518e-05 3.16594e-05 5.61517e-05 8.05359e-05 0.000103198 0.000123208 0.000135881 0.000146152 0.00015562 0.000164404 0.000172175 0.000178579 0.000183361 0.000186383 0.000187607 0.000187065 0.00018487 0.000181188 0.000176255 0.000170353 0.000163709 0.000156219 0.000146818 0.000132349 0.000111332 8.75788e-05 6.17411e-05 3.55311e-05 1.34253e-05 2.37726e-06 2.01183e-07 8.80802e-08 9.06078e-08 1.85741e-07 1.99561e-06 1.14505e-05 3.14692e-05 5.57751e-05 7.99511e-05 0.000102413 0.000121614 0.000134262 0.000144794 0.00015457 0.000163624 0.000171613 0.000178185 0.000183094 0.000186213 0.00018751 0.000187027 0.000184884 0.000181258 0.000176395 0.00017058 0.000164033 0.000156611 0.000147145 0.000132289 0.000111268 8.75163e-05 6.16882e-05 3.54961e-05 1.34133e-05 2.37556e-06 2.00644e-07 8.75714e-08 9.19652e-08 1.8627e-07 1.98289e-06 1.13787e-05 3.12656e-05 5.53704e-05 7.93215e-05 0.000101567 0.000119925 0.000132541 0.000143341 0.000153437 0.000162774 0.000170989 0.000177733 0.000182772 0.000185987 0.000187357 0.000186931 0.000184839 0.000181266 0.000176467 0.000170735 0.00016428 0.000156923 0.000147394 0.00013216 0.000111144 8.74071e-05 6.16006e-05 3.54389e-05 1.33911e-05 2.37183e-06 1.99984e-07 8.70475e-08 9.33878e-08 1.86848e-07 1.97009e-06 1.13062e-05 3.10555e-05 5.49458e-05 7.86552e-05 0.000100667 0.000118149 0.000130726 0.000141802 0.000152228 0.000161859 0.000170308 0.00017723 0.0001824 0.000185711 0.000187151 0.00018678 0.000184734 0.000181209 0.000176471 0.000170815 0.000164448 0.000157149 0.000147555 0.000131957 0.000110958 8.72474e-05 6.14766e-05 3.53592e-05 1.33589e-05 2.36614e-06 1.99209e-07 8.65128e-08 9.48762e-08 1.87441e-07 1.9566e-06 1.12299e-05 3.08334e-05 5.44953e-05 7.79465e-05 9.97085e-05 0.000116276 0.000128814 0.000140175 0.000150944 0.000160878 0.000169566 0.000176669 0.000181971 0.000185377 0.000186886 0.000186566 0.000184563 0.000181083 0.000176399 0.000170815 0.000164529 0.000157285 0.000147623 0.000131668 0.000110697 8.70276e-05 6.13076e-05 3.52507e-05 1.33137e-05 2.35783e-06 1.98277e-07 8.59597e-08 9.64377e-08 1.88096e-07 1.94309e-06 1.11523e-05 3.0603e-05 5.40226e-05 7.71989e-05 9.86949e-05 0.000114307 0.000126814 0.000138478 0.000149601 0.000159842 0.00016877 0.000176049 0.000181481 0.000184979 0.000186552 0.000186278 0.000184314 0.000180873 0.00017624 0.000170721 0.000164507 0.000157309 0.000147578 0.000131283 0.000110353 8.67389e-05 6.10867e-05 3.51084e-05 1.3253e-05 2.34645e-06 1.97162e-07 8.53831e-08 9.80578e-08 1.88744e-07 1.92853e-06 1.1068e-05 3.03517e-05 5.35102e-05 7.63929e-05 9.76128e-05 0.000112228 0.000124743 0.000136736 0.000148217 0.000158756 0.000167912 0.000175362 0.000180917 0.000184503 0.000186139 0.000185908 0.000183977 0.000180571 0.000175981 0.00017052 0.000164371 0.00015721 0.000147409 0.000130795 0.000109918 8.6374e-05 6.08074e-05 3.49276e-05 1.31745e-05 2.33146e-06 1.9582e-07 8.47699e-08 9.97368e-08 1.89392e-07 1.91305e-06 1.09771e-05 3.00763e-05 5.29443e-05 7.54916e-05 9.5764e-05 0.000110023 0.000122728 0.000135039 0.000146823 0.000157618 0.00016698 0.000174592 0.00018027 0.000183945 0.00018564 0.000185449 0.000183547 0.00018017 0.000175618 0.000170206 0.000164111 0.000156978 0.000147104 0.000130193 0.000109384 8.59274e-05 6.04662e-05 3.47067e-05 1.30777e-05 2.31285e-06 1.94256e-07 8.41225e-08 1.01487e-07 1.90078e-07 1.89749e-06 1.08865e-05 2.97971e-05 5.23622e-05 7.45553e-05 9.36869e-05 0.00010778 0.000120685 0.000133287 0.000145359 0.000156406 0.000165977 0.000173755 0.000179555 0.000183315 0.000185065 0.000184908 0.000183031 0.000179676 0.000175154 0.000169783 0.000163733 0.000156618 0.000146667 0.000129477 0.000108749 8.53984e-05 6.00628e-05 3.44456e-05 1.29627e-05 2.2906e-06 1.92462e-07 8.34381e-08 1.03312e-07 1.90779e-07 1.8813e-06 1.07929e-05 2.95068e-05 5.17553e-05 7.35792e-05 9.15561e-05 0.00010548 0.00011859 0.000131489 0.00014385 0.000155147 0.000164923 0.000172858 0.000178773 0.00018261 0.000184407 0.000184277 0.000182415 0.000179076 0.000174575 0.000169235 0.000163215 0.000156104 0.000146073 0.000128633 0.000108002 8.47749e-05 5.95871e-05 3.41372e-05 1.28262e-05 2.26405e-06 1.90403e-07 8.27156e-08 1.052e-07 1.91493e-07 1.86458e-06 1.06961e-05 2.92038e-05 5.1121e-05 7.25616e-05 8.9383e-05 0.000103144 0.000116458 0.00012965 0.000142294 0.000153834 0.000163806 0.000171891 0.000177913 0.000181818 0.000183655 0.000183543 0.000181689 0.000178358 0.000173871 0.000168551 0.000162551 0.000155433 0.000145324 0.000127662 0.000107143 8.40584e-05 5.90403e-05 3.37822e-05 1.26682e-05 2.23317e-06 1.88065e-07 8.19452e-08 1.07139e-07 1.92145e-07 1.84612e-06 1.05897e-05 2.88755e-05 5.04431e-05 7.14867e-05 8.71406e-05 0.000100763 0.0001143 0.000127788 0.000140706 0.000152476 0.000162631 0.000170854 0.000176971 0.000180935 0.0001828 0.000182696 0.000180841 0.000177512 0.00017304 0.000167745 0.000161754 0.000154561 0.000144169 0.000126539 0.000106155 8.32389e-05 5.84177e-05 3.33799e-05 1.24897e-05 2.19835e-06 1.85484e-07 8.11361e-08 1.09109e-07 1.92708e-07 1.82556e-06 1.04695e-05 2.85076e-05 4.96981e-05 7.03184e-05 8.48221e-05 9.83712e-05 0.000112149 0.000125915 0.000139079 0.000151055 0.000161378 0.000169729 0.000175934 0.000179948 0.000181831 0.000181725 0.000179863 0.000176532 0.000172069 0.000166789 0.000160787 0.000153486 0.000142778 0.000125264 0.000105034 8.23072e-05 5.77084e-05 3.29199e-05 1.22847e-05 2.15822e-06 1.82559e-07 8.02654e-08 1.11114e-07 1.9322e-07 1.80363e-06 1.03385e-05 2.80963e-05 4.88482e-05 6.81583e-05 8.24276e-05 9.61039e-05 0.000110078 0.000124045 0.000137404 0.000149563 0.000160044 0.000168517 0.000174803 0.000178857 0.000180749 0.000180633 0.000178754 0.000175411 0.000170946 0.000165663 0.000159627 0.000152206 0.000141223 0.00012384 0.000103783 8.12702e-05 5.69216e-05 3.24122e-05 1.20596e-05 2.11432e-06 1.79401e-07 7.93582e-08 1.13155e-07 1.93722e-07 1.78154e-06 1.02082e-05 2.76828e-05 4.79878e-05 6.60431e-05 8.00365e-05 9.37803e-05 0.000107928 0.0001221 0.000135668 0.000148018 0.000158656 0.000167243 0.000173595 0.000177675 0.000179561 0.00017942 0.000177514 0.000174149 0.000169669 0.000164368 0.000158283 0.000150737 0.000139503 0.000122265 0.0001024 8.01235e-05 5.60509e-05 3.18494e-05 1.18096e-05 2.06551e-06 1.7592e-07 7.83898e-08 1.15216e-07 1.94065e-07 1.75662e-06 1.00632e-05 2.7232e-05 4.70647e-05 6.38496e-05 7.75795e-05 9.14108e-05 0.000105747 0.000120129 0.000133901 0.000146431 0.000157213 0.000165897 0.000172299 0.000176385 0.000178247 0.000178068 0.00017612 0.000172719 0.000168208 0.000162869 0.000156714 0.000149041 0.000137609 0.000120533 0.000100881 7.88658e-05 5.50984e-05 3.12363e-05 1.15386e-05 2.0128e-06 1.72204e-07 7.73895e-08 1.17282e-07 1.94336e-07 1.73057e-06 9.91144e-06 2.67577e-05 4.60964e-05 6.16276e-05 7.50978e-05 8.90103e-05 0.000103528 0.000118117 0.000132088 0.000144794 0.00015571 0.000164477 0.00017091 0.000174984 0.000176806 0.000176574 0.000174573 0.000171125 0.000166571 0.000161181 0.000154948 0.000147149 0.000135552 0.000118654 9.92349e-05 7.75036e-05 5.40667e-05 3.05719e-05 1.12451e-05 1.95575e-06 1.68193e-07 7.6327e-08 1.19335e-07 1.94493e-07 1.70199e-06 9.74375e-06 2.62397e-05 4.5057e-05 5.93367e-05 7.25748e-05 8.65861e-05 0.000101291 0.000116081 0.000130242 0.000143109 0.000154142 0.000162973 0.000169416 0.000173458 0.000175219 0.000174916 0.000172847 0.00016934 0.000164726 0.000159265 0.000152935 0.000145013 0.000133318 0.000116616 9.74515e-05 7.60306e-05 5.29542e-05 2.98585e-05 1.09319e-05 1.8952e-06 1.63978e-07 7.524e-08 1.21344e-07 1.94918e-07 1.67293e-06 9.55914e-06 2.56617e-05 4.39312e-05 5.69897e-05 7.00511e-05 8.41727e-05 9.90474e-05 0.000114016 0.00012835 0.000141366 0.000152505 0.000161386 0.000167823 0.000171813 0.000173495 0.000173104 0.000170953 0.000167376 0.000162697 0.000157158 0.000150726 0.00014269 0.000130932 0.000114445 9.55552e-05 7.44665e-05 5.17741e-05 2.91027e-05 1.06009e-05 1.83137e-06 1.59529e-07 7.40944e-08 1.23309e-07 1.97206e-07 1.6464e-06 9.35081e-06 2.49738e-05 4.19918e-05 5.46033e-05 6.76358e-05 8.18203e-05 9.67973e-05 0.000111904 0.000126396 0.000139557 0.000150797 0.000159716 0.000166129 0.000170046 0.000171628 0.000171131 0.000168881 0.000165215 0.000160453 0.000154822 0.000148277 0.000140133 0.000128378 0.000112124 9.35309e-05 7.28006e-05 5.05217e-05 2.83051e-05 1.02545e-05 1.76504e-06 1.54949e-07 7.29462e-08 1.25221e-07 2.02015e-07 1.61978e-06 9.12156e-06 2.42362e-05 3.9971e-05 5.22446e-05 6.52028e-05 7.94092e-05 9.44817e-05 0.000109741 0.000124407 0.000137721 0.000149056 0.000157997 0.000164362 0.000168182 0.000169642 0.000169021 0.00016666 0.000162896 0.000158042 0.000152313 0.000145661 0.000137426 0.0001257 0.000109697 9.14183e-05 7.10643e-05 4.92173e-05 2.74749e-05 9.89509e-06 1.69643e-06 1.50198e-07 7.17505e-08 1.27046e-07 2.04489e-07 1.57636e-06 8.83855e-06 2.34237e-05 3.79364e-05 4.98767e-05 6.27565e-05 7.69876e-05 9.21622e-05 0.00010758 0.000122422 0.000135881 0.000147294 0.00015623 0.000162516 0.000166205 0.000167515 0.000166748 0.000164258 0.000160382 0.000155422 0.00014958 0.000142809 0.000134496 0.000122875 0.000107142 8.92008e-05 6.92484e-05 4.78603e-05 2.6618e-05 9.52799e-06 1.62697e-06 1.45433e-07 7.05789e-08 1.28742e-07 2.04307e-07 1.52318e-06 8.52714e-06 2.25647e-05 3.59203e-05 4.75153e-05 6.02863e-05 7.45218e-05 8.97942e-05 0.000105378 0.000120405 0.000134013 0.000145494 0.000154404 0.000160583 0.000164115 0.000165251 0.000164321 0.000161691 0.000157698 0.000152632 0.000146683 0.000139804 0.000131434 0.000119954 0.000104507 8.69177e-05 6.73805e-05 4.64644e-05 2.57366e-05 9.15182e-06 1.55606e-06 1.40543e-07 6.93601e-08 1.30341e-07 2.02797e-07 1.46358e-06 8.19088e-06 2.1659e-05 3.39063e-05 4.51539e-05 5.78066e-05 7.20463e-05 8.74263e-05 0.000103189 0.000118409 0.000132159 0.000143687 0.000152538 0.000158572 0.000161912 0.000162845 0.000161729 0.000158942 0.000154818 0.000149633 0.000143562 0.000136569 0.000128159 0.000116905 0.000101764 8.45477e-05 6.54492e-05 4.50297e-05 2.48386e-05 8.77321e-06 1.48545e-06 1.35726e-07 6.81867e-08 1.31792e-07 2.00363e-07 1.39802e-06 7.82727e-06 2.07025e-05 3.1903e-05 4.27974e-05 5.53114e-05 6.9543e-05 8.50305e-05 0.000100979 0.000116395 0.00013028 0.000141834 0.000150595 0.000156453 0.000159573 0.000160285 0.000158972 0.000156025 0.000151772 0.000146475 0.0001403 0.000133218 0.000124799 0.000113794 9.89719e-05 8.21394e-05 6.34869e-05 4.35704e-05 2.39248e-05 8.38963e-06 1.41425e-06 1.30833e-07 6.69653e-08 1.33125e-07 1.97374e-07 1.32861e-06 7.44465e-06 1.97088e-05 2.99125e-05 4.04562e-05 5.28232e-05 6.70463e-05 8.26509e-05 9.87969e-05 0.000114411 0.000128413 0.000139959 0.000148587 0.000154228 0.000157098 0.000157566 0.000156043 0.000152926 0.000148534 0.000143117 0.000136826 0.000129649 0.000121242 0.000110584 9.6103e-05 7.96769e-05 6.14934e-05 4.21006e-05 2.30159e-05 8.01445e-06 1.34559e-06 1.26174e-07 6.58319e-08 1.3429e-07 1.93795e-07 1.2536e-06 7.03241e-06 1.86612e-05 2.79316e-05 3.81268e-05 5.03343e-05 6.45412e-05 8.0263e-05 9.66077e-05 0.00011241 0.000126501 0.000137994 0.000146447 0.000151845 0.000154458 0.000154688 0.000152963 0.000149683 0.000145164 0.000139642 0.000133262 0.000126026 0.000117665 0.000107351 9.3222e-05 7.72073e-05 5.9493e-05 4.06219e-05 2.20976e-05 7.63575e-06 1.27653e-06 1.21444e-07 6.46467e-08 1.35303e-07 1.89855e-07 1.17538e-06 6.59874e-06 1.75732e-05 2.59728e-05 3.58323e-05 4.78735e-05 6.206e-05 7.79026e-05 9.4447e-05 0.000110416 0.000124538 0.000135896 0.000144105 0.000149238 0.000151613 0.000151636 0.000149728 0.000146291 0.000141643 0.000136015 0.000129546 0.000122246 0.000113899 0.000103807 9.02864e-05 7.4713e-05 5.74948e-05 3.91666e-05 2.12113e-05 7.27715e-06 1.2118e-06 1.17045e-07 6.35629e-08 1.36121e-07 1.85502e-07 1.09266e-06 6.12968e-06 1.62614e-05 2.40343e-05 3.3584e-05 4.54331e-05 5.95768e-05 7.55348e-05 9.22809e-05 0.000108401 0.000122487 0.000133538 0.000141053 0.000146038 0.000148579 0.000148512 0.000146439 0.000142844 0.000138072 0.000132356 0.00012583 0.000118504 0.00011019 0.000100293 8.73701e-05 7.22386e-05 5.55115e-05 3.77187e-05 2.03274e-05 6.92096e-06 1.1477e-06 1.12599e-07 6.23984e-08 1.3677e-07 1.81129e-07 1.01178e-06 5.65821e-06 1.47789e-05 2.21544e-05 3.13943e-05 4.30237e-05 5.7117e-05 7.32136e-05 9.01964e-05 0.000106448 0.000120252 0.000130068 0.000136862 0.000141688 0.00014461 0.000145346 0.000143245 0.000139402 0.000134404 0.000128539 0.000121927 0.000114561 0.000106276 9.66033e-05 8.44081e-05 6.9747e-05 5.35366e-05 3.62981e-05 1.94767e-05 6.5853e-06 1.08825e-06 1.08549e-07 6.13718e-08 1.37238e-07 1.76604e-07 9.31316e-07 5.18873e-06 1.33682e-05 2.03214e-05 2.9215e-05 4.06108e-05 5.46581e-05 7.09127e-05 8.81292e-05 0.000104377 0.000117367 0.00012591 0.000132495 0.000137153 0.000139959 0.000141016 0.000139913 0.000136063 0.000130817 0.000124755 0.00011805 0.000110679 0.000102477 9.30524e-05 8.1493e-05 6.72954e-05 5.15889e-05 3.48895e-05 1.86282e-05 6.25099e-06 1.02911e-06 1.04407e-07 6.02342e-08 1.37536e-07 1.72098e-07 8.53611e-07 4.72955e-06 1.20232e-05 1.8551e-05 2.70876e-05 3.82464e-05 5.22619e-05 6.86958e-05 8.61062e-05 0.000102074 0.000113355 0.00012164 0.000127991 0.000132457 0.000135128 0.00013612 0.000135503 0.000132475 0.00012715 0.000120845 0.000113978 0.000106557 9.84227e-05 8.92817e-05 7.85163e-05 6.48149e-05 4.96419e-05 3.35046e-05 1.78116e-05 5.93655e-06 9.74518e-07 1.00679e-07 5.92568e-08 1.37622e-07 1.67474e-07 7.76916e-07 4.27332e-06 1.07399e-05 1.6829e-05 2.49813e-05 3.58769e-05 4.98475e-05 6.64539e-05 8.39822e-05 9.93027e-05 0.000109207 0.00011722 0.000123327 0.000127596 0.000130137 0.000131072 0.000130475 0.000128409 0.000123468 0.000117024 0.000110017 0.000102584 9.45793e-05 8.57221e-05 7.54544e-05 6.23939e-05 4.77347e-05 3.21363e-05 1.69968e-05 5.62218e-06 9.19777e-07 9.67844e-08 5.81157e-08 1.37525e-07 1.62976e-07 7.05055e-07 3.83959e-06 9.53589e-06 1.51836e-05 2.29393e-05 3.35683e-05 4.75122e-05 6.42898e-05 8.17057e-05 9.53764e-05 0.000104971 0.00011268 0.000118514 0.000122566 0.00012496 0.000125832 0.000125251 0.000123273 0.000119367 0.000113016 0.000105893 9.84163e-05 9.04937e-05 8.18544e-05 7.20267e-05 5.99321e-05 4.58367e-05 3.0811e-05 1.62325e-05 5.33606e-06 8.71058e-07 9.34342e-08 5.71922e-08 1.37195e-07 1.58374e-07 6.34678e-07 3.41277e-06 8.39354e-06 1.35904e-05 2.09217e-05 3.12451e-05 4.51357e-05 6.20755e-05 7.93698e-05 9.12832e-05 0.00010055 0.000107944 0.000113504 0.000117345 0.000119607 0.000120438 0.000119902 0.000118044 0.000114926 0.000109042 0.000101916 9.44484e-05 8.66507e-05 7.82572e-05 6.88419e-05 5.75155e-05 4.39511e-05 2.94717e-05 1.54467e-05 5.04035e-06 8.20438e-07 8.97427e-08 5.60278e-08 1.36665e-07 1.54e-07 5.71263e-07 3.02148e-06 7.3449e-06 1.20946e-05 1.89937e-05 2.90107e-05 4.28646e-05 5.98955e-05 7.6425e-05 8.71028e-05 9.60016e-05 0.000103045 0.000108305 0.000111919 0.000114043 0.000114833 0.00011435 0.000112617 0.000109694 0.000104677 9.76844e-05 9.02166e-05 8.24955e-05 7.43166e-05 6.53632e-05 5.50683e-05 4.20925e-05 2.81968e-05 1.47265e-05 4.77651e-06 7.75985e-07 8.67562e-08 5.51611e-08 1.35894e-07 1.49523e-07 5.09562e-07 2.64108e-06 6.35861e-06 1.06564e-05 1.70971e-05 2.67689e-05 4.05428e-05 5.75086e-05 7.2385e-05 8.26775e-05 9.11875e-05 9.78738e-05 0.000102841 0.000106248 0.000108264 0.000109054 0.000108665 0.000107104 0.000104417 0.000100378 9.36161e-05 8.62432e-05 7.86823e-05 7.07783e-05 6.22432e-05 5.25618e-05 4.02093e-05 2.68613e-05 1.39489e-05 4.49328e-06 7.3141e-07 8.47643e-08 5.39324e-08 1.34918e-07 1.45334e-07 4.5601e-07 2.30484e-06 5.47728e-06 9.33713e-06 1.53212e-05 2.46591e-05 3.84078e-05 5.53618e-05 6.82537e-05 7.81005e-05 8.61689e-05 9.24598e-05 9.71118e-05 0.000100306 0.000102223 0.000103029 0.00010276 0.000101394 9.89664e-05 9.54834e-05 8.91652e-05 8.19262e-05 7.45386e-05 6.69051e-05 5.87499e-05 4.96436e-05 3.83886e-05 2.565e-05 1.3295e-05 4.27232e-06 6.99565e-07 8.39134e-08 5.31392e-08 1.33696e-07 1.41012e-07 4.03673e-07 1.97834e-06 4.65176e-06 8.07018e-06 1.3564e-05 2.25074e-05 3.61645e-05 5.28488e-05 6.37419e-05 7.31179e-05 8.07362e-05 8.66419e-05 9.10062e-05 9.40283e-05 9.58976e-05 9.67825e-05 9.66978e-05 9.55911e-05 9.34823e-05 9.0365e-05 8.49717e-05 7.80398e-05 7.08825e-05 6.35497e-05 5.57683e-05 4.71225e-05 3.65566e-05 2.4369e-05 1.25718e-05 4.02145e-06 6.60704e-07 8.15293e-08 5.18074e-08 1.32257e-07 1.37013e-07 3.60552e-07 1.70503e-06 3.94494e-06 6.95223e-06 1.19769e-05 2.05547e-05 3.40302e-05 4.87886e-05 5.91232e-05 6.79333e-05 7.50274e-05 8.05004e-05 8.45542e-05 8.73974e-05 8.92281e-05 9.0218e-05 9.03477e-05 8.95275e-05 8.7759e-05 8.50089e-05 8.02845e-05 7.36182e-05 6.66913e-05 5.9648e-05 5.22507e-05 4.4199e-05 3.48051e-05 2.32437e-05 1.19859e-05 3.82515e-06 6.301e-07 7.97483e-08 5.10719e-08 1.30592e-07 1.32824e-07 3.17441e-07 1.43795e-06 3.2872e-06 5.89354e-06 1.04326e-05 1.86157e-05 3.19623e-05 4.4306e-05 5.4013e-05 6.22258e-05 6.88016e-05 7.38782e-05 7.76787e-05 8.04102e-05 8.22757e-05 8.34503e-05 8.38763e-05 8.34253e-05 8.20692e-05 7.97465e-05 7.6146e-05 6.98597e-05 6.3209e-05 5.64928e-05 4.94829e-05 4.18854e-05 3.30983e-05 2.20598e-05 1.13221e-05 3.59485e-06 5.92574e-07 7.65697e-08 4.95765e-08 1.28685e-07 1.28938e-07 2.83745e-07 1.22601e-06 2.74504e-06 4.99427e-06 9.09499e-06 1.69561e-05 3.00154e-05 3.98206e-05 4.8785e-05 5.62972e-05 6.22855e-05 6.69341e-05 7.04776e-05 7.31096e-05 7.4996e-05 7.63354e-05 7.70718e-05 7.69831e-05 7.59947e-05 7.40595e-05 7.117e-05 6.52784e-05 5.88718e-05 5.24668e-05 4.58688e-05 3.88604e-05 3.10918e-05 2.08315e-05 1.0673e-05 3.37226e-06 5.5637e-07 7.40717e-08 4.87625e-08 1.26536e-07 1.24745e-07 2.48099e-07 1.00957e-06 2.22812e-06 4.12172e-06 7.74435e-06 1.50978e-05 2.5987e-05 3.49045e-05 4.30266e-05 4.98015e-05 5.52249e-05 5.95148e-05 6.29038e-05 6.55662e-05 6.76193e-05 6.92269e-05 7.03362e-05 7.06656e-05 7.01521e-05 6.87533e-05 6.64377e-05 6.19679e-05 5.59346e-05 4.97798e-05 4.35123e-05 3.69005e-05 2.95693e-05 1.98842e-05 1.01567e-05 3.19573e-06 5.2672e-07 7.09954e-08 4.71174e-08 1.24028e-07 1.20837e-07 2.23333e-07 8.55599e-07 1.82997e-06 3.4235e-06 6.64506e-06 1.36845e-05 2.23685e-05 3.02919e-05 3.74288e-05 4.33269e-05 4.80641e-05 5.18884e-05 5.50262e-05 5.76584e-05 5.99142e-05 6.17919e-05 6.31471e-05 6.37817e-05 6.36275e-05 6.26253e-05 6.073e-05 5.71413e-05 5.14672e-05 4.56577e-05 3.98172e-05 3.37094e-05 2.70042e-05 1.82487e-05 9.25407e-06 2.8859e-06 4.77115e-07 6.73035e-08 4.58831e-08 1.21177e-07 1.16467e-07 1.94359e-07 6.79983e-07 1.40745e-06 2.6385e-06 5.24263e-06 1.13957e-05 1.80001e-05 2.48678e-05 3.11211e-05 3.63221e-05 4.05561e-05 4.40657e-05 4.70763e-05 4.97882e-05 5.22932e-05 5.45453e-05 5.63673e-05 5.74889e-05 5.7874e-05 5.7483e-05 5.6252e-05 5.41049e-05 4.9239e-05 4.36146e-05 3.79656e-05 3.21224e-05 2.57865e-05 1.77733e-05 9.04876e-06 2.81991e-06 4.63749e-07 6.51044e-08 4.43021e-08 1.17876e-07 1.12623e-07 1.82461e-07 5.98529e-07 1.1513e-06 2.06427e-06 4.02025e-06 8.80673e-06 1.38357e-05 1.95092e-05 2.484e-05 2.93747e-05 3.31409e-05 3.63288e-05 3.91621e-05 4.18621e-05 4.44529e-05 4.68636e-05 4.89367e-05 5.04076e-05 5.10925e-05 5.09676e-05 5.0042e-05 4.82419e-05 4.44703e-05 3.93506e-05 3.41759e-05 2.88493e-05 2.30946e-05 1.55266e-05 7.754e-06 2.38286e-06 3.96298e-07 5.96519e-08 4.2157e-08 1.1397e-07 1.08116e-07 1.68604e-07 5.16969e-07 9.24847e-07 1.50556e-06 2.61114e-06 5.23792e-06 8.28865e-06 1.20148e-05 1.61302e-05 2.01645e-05 2.38894e-05 2.72504e-05 3.03523e-05 3.33775e-05 3.63392e-05 3.91746e-05 4.17604e-05 4.38906e-05 4.53213e-05 4.58592e-05 4.55418e-05 4.4386e-05 4.18578e-05 3.69935e-05 3.19477e-05 2.68428e-05 2.14844e-05 1.51441e-05 7.65023e-06 2.35718e-06 3.88534e-07 5.79758e-08 4.09459e-08 1.09095e-07 1.03565e-07 1.71415e-07 5.4317e-07 9.88003e-07 1.51982e-06 2.3375e-06 3.8265e-06 5.08831e-06 6.5737e-06 8.52542e-06 1.10145e-05 1.40098e-05 1.73555e-05 2.07722e-05 2.42199e-05 2.76459e-05 3.09475e-05 3.40075e-05 3.66791e-05 3.87799e-05 4.00684e-05 4.02815e-05 3.94733e-05 3.7795e-05 3.41871e-05 2.95803e-05 2.48843e-05 1.99609e-05 1.35022e-05 6.68765e-06 2.03069e-06 3.38241e-07 5.33494e-08 3.8723e-08 1.01939e-07 9.73089e-08 1.72994e-07 5.65371e-07 1.08517e-06 1.71928e-06 2.65049e-06 3.74268e-06 4.4287e-06 5.07746e-06 5.74543e-06 6.51973e-06 7.54022e-06 9.00691e-06 1.11381e-05 1.40313e-05 1.74461e-05 2.10535e-05 2.46452e-05 2.79735e-05 3.08144e-05 3.2942e-05 3.40666e-05 3.38838e-05 3.24846e-05 2.92449e-05 2.50036e-05 2.0744e-05 1.6367e-05 1.12967e-05 5.62643e-06 1.74843e-06 2.99657e-07 5.04788e-08 3.81684e-08 9.47049e-08 9.25111e-08 1.84537e-07 6.27691e-07 1.47307e-06 2.42165e-06 3.26019e-06 3.96174e-06 4.56602e-06 5.11796e-06 5.6583e-06 6.22495e-06 6.85474e-06 7.58471e-06 8.46138e-06 9.57381e-06 1.11169e-05 1.3406e-05 1.66596e-05 2.06152e-05 2.48189e-05 2.88221e-05 3.22011e-05 3.45544e-05 3.53734e-05 3.28433e-05 2.87581e-05 2.41218e-05 1.93007e-05 1.4265e-05 7.14521e-06 2.10203e-06 3.33487e-07 5.31656e-08 3.96861e-08 9.02989e-08 9.35082e-08 2.43975e-07 8.97269e-07 2.08361e-06 3.34769e-06 4.36112e-06 5.12395e-06 5.75294e-06 6.35192e-06 7.00336e-06 7.786e-06 8.78263e-06 1.00665e-05 1.1665e-05 1.35243e-05 1.5505e-05 1.74083e-05 1.90411e-05 2.03413e-05 2.12554e-05 2.17478e-05 2.17924e-05 2.13691e-05 2.04368e-05 1.89822e-05 1.70389e-05 1.4651e-05 1.1816e-05 8.49354e-06 4.81256e-06 1.70051e-06 3.06713e-07 5.09232e-08 3.76978e-08 9.27235e-08 1.04595e-07 3.74346e-07 1.39457e-06 2.88619e-06 4.04899e-06 4.82456e-06 5.4492e-06 6.06406e-06 6.73784e-06 7.51962e-06 8.47001e-06 9.68172e-06 1.12905e-05 1.3467e-05 1.63812e-05 2.015e-05 2.47932e-05 3.02042e-05 3.60972e-05 4.2054e-05 4.74997e-05 5.17407e-05 5.40831e-05 5.39662e-05 5.10639e-05 3.75978e-05 2.6161e-05 1.83267e-05 1.23923e-05 5.78554e-06 1.34223e-06 1.98286e-07 4.01957e-08 3.14675e-08 7.20861e-08 1.40683e-07 1.0559e-06 3.36804e-06 4.38351e-06 4.74717e-06 5.19354e-06 5.74381e-06 6.36247e-06 7.03969e-06 7.77539e-06 8.56987e-06 9.42003e-06 1.0316e-05 1.12361e-05 1.21414e-05 1.29699e-05 1.36369e-05 1.40329e-05 1.41374e-05 1.3942e-05 1.34058e-05 1.25369e-05 1.13667e-05 9.94582e-06 8.33487e-06 6.60328e-06 4.84348e-06 3.15381e-06 1.70609e-06 6.90198e-07 1.90116e-07 3.90711e-08 1.3083e-08 1.09017e-08 3.48905e-08 2.00241e-06 2.39271e-06 2.60112e-06 2.79757e-06 2.94238e-06 3.04004e-06 3.10351e-06 3.14018e-06 3.15479e-06 3.15084e-06 3.13111e-06 3.09786e-06 3.0529e-06 2.99766e-06 2.9332e-06 2.86014e-06 2.77852e-06 2.68704e-06 2.58587e-06 2.47455e-06 2.3502e-06 2.21057e-06 2.05255e-06 1.87311e-06 1.66941e-06 1.44002e-06 1.18677e-06 9.178e-07 6.5315e-07 4.23374e-07 2.57888e-07 1.5594e-07 9.1388e-08 1.59609e-09 6.0123e-11 5.56714e-09 1.02715e-08 1.56663e-08 2.19729e-08 2.94377e-08 3.82772e-08 4.86321e-08 6.05416e-08 7.39364e-08 8.86499e-08 1.04441e-07 1.21024e-07 1.38091e-07 1.55328e-07 1.72424e-07 1.89067e-07 2.04938e-07 2.19703e-07 2.33005e-07 2.44439e-07 2.53645e-07 2.60253e-07 2.63906e-07 2.64299e-07 2.61209e-07 2.54549e-07 2.44417e-07 2.31153e-07 2.15378e-07 1.98035e-07 1.80414e-07 1.61988e-07 1.32035e-07 3.46655e-09 1.0531e-10 1.0589e-10 2.03324e-10 9.42214e-10 3.83366e-09 1.15739e-08 2.77659e-08 5.62402e-08 1.00062e-07 1.60424e-07 2.35797e-07 3.2172e-07 4.1132e-07 4.96483e-07 5.69349e-07 6.23771e-07 6.5636e-07 6.66845e-07 6.57767e-07 6.32849e-07 5.9792e-07 5.57483e-07 5.15233e-07 4.74345e-07 4.36772e-07 4.01782e-07 3.6832e-07 3.35791e-07 3.01059e-07 2.51774e-07 1.69455e-07 7.48395e-08 2.26718e-08 1.04081e-08 1.00617e-08 2.58758e-10 2.89028e-10 9.12821e-10 4.70876e-09 1.7597e-08 4.85354e-08 1.07744e-07 2.03856e-07 3.4028e-07 5.12373e-07 7.07474e-07 9.07941e-07 1.09551e-06 1.25507e-06 1.37685e-06 1.45708e-06 1.49717e-06 1.50141e-06 1.47476e-06 1.42495e-06 1.35871e-06 1.28076e-06 1.194e-06 1.10006e-06 1.00015e-06 8.95481e-07 7.86914e-07 6.71705e-07 5.35406e-07 3.572e-07 1.70849e-07 5.75414e-08 2.05099e-08 1.55347e-08 1.69074e-08 7.96877e-10 8.80232e-10 2.6589e-09 1.3591e-08 5.16269e-08 1.4724e-07 3.41361e-07 6.74001e-07 1.16189e-06 1.77969e-06 2.46247e-06 3.12759e-06 3.69935e-06 4.12494e-06 4.37982e-06 4.46585e-06 4.4055e-06 4.23311e-06 3.98347e-06 3.69519e-06 3.39709e-06 3.10674e-06 2.83079e-06 2.56724e-06 2.30875e-06 2.0446e-06 1.75837e-06 1.42103e-06 1.00238e-06 5.50555e-07 2.17963e-07 6.6051e-08 2.4811e-08 2.04303e-08 2.21898e-08 1.86476e-09 2.0596e-09 6.71006e-09 3.63544e-08 1.44461e-07 4.31158e-07 1.03183e-06 2.03947e-06 3.3982e-06 4.90379e-06 6.3194e-06 7.47134e-06 8.26908e-06 8.68818e-06 8.74992e-06 8.50623e-06 8.02962e-06 7.40403e-06 6.70518e-06 6.0075e-06 5.36331e-06 4.79864e-06 4.31463e-06 3.89198e-06 3.49648e-06 3.08188e-06 2.59153e-06 1.97803e-06 1.24574e-06 6.37523e-07 2.44277e-07 7.36713e-08 2.85824e-08 2.38975e-08 2.57571e-08 2.86409e-09 3.24319e-09 1.23048e-08 7.09076e-08 2.86846e-07 8.49888e-07 1.94976e-06 3.58471e-06 5.51034e-06 7.42165e-06 9.10127e-06 1.04342e-05 1.12656e-05 1.17052e-05 1.1836e-05 1.16936e-05 1.13299e-05 1.06475e-05 9.5746e-06 8.69569e-06 7.96731e-06 7.13192e-06 6.37174e-06 5.67343e-06 4.99489e-06 4.27114e-06 3.43474e-06 2.2735e-06 1.31419e-06 7.07749e-07 2.85078e-07 8.56638e-08 3.23436e-08 2.65831e-08 2.85128e-08 3.53215e-09 4.02628e-09 1.58992e-08 9.20953e-08 3.68305e-07 1.07108e-06 2.40478e-06 4.33852e-06 6.58207e-06 8.79194e-06 1.03875e-05 1.15685e-05 1.25633e-05 1.33677e-05 1.3951e-05 1.42771e-05 1.43016e-05 1.37494e-05 1.24252e-05 1.11973e-05 1.01595e-05 9.25231e-06 8.43766e-06 7.62201e-06 6.6434e-06 5.36613e-06 3.87957e-06 2.50702e-06 1.48651e-06 8.25101e-07 3.45705e-07 1.02819e-07 3.67753e-08 2.93457e-08 3.13846e-08 4.15271e-09 4.80179e-09 2.01648e-08 1.18873e-07 4.77652e-07 1.38691e-06 3.07915e-06 5.45644e-06 8.13251e-06 1.06677e-05 1.23277e-05 1.37734e-05 1.5038e-05 1.61149e-05 1.70018e-05 1.76529e-05 1.77537e-05 1.7189e-05 1.61442e-05 1.46592e-05 1.31874e-05 1.17434e-05 1.0358e-05 8.99801e-06 7.55955e-06 5.96297e-06 4.3005e-06 2.8249e-06 1.71701e-06 9.76557e-07 4.23986e-07 1.24519e-07 4.18755e-08 3.22645e-08 3.43911e-08 4.62185e-09 5.41074e-09 2.37299e-08 1.40754e-07 5.62582e-07 1.61728e-06 3.54524e-06 6.21223e-06 9.19861e-06 1.2035e-05 1.39711e-05 1.57076e-05 1.72925e-05 1.87311e-05 2.00298e-05 2.11103e-05 2.1354e-05 2.09423e-05 2.01598e-05 1.87118e-05 1.69138e-05 1.49045e-05 1.28087e-05 1.07247e-05 8.67792e-06 6.67507e-06 4.79758e-06 3.20123e-06 1.99307e-06 1.16121e-06 5.27273e-07 1.53405e-07 4.80622e-08 3.53471e-08 3.75012e-08 5.08451e-09 6.03406e-09 2.75952e-08 1.64822e-07 6.57831e-07 1.88199e-06 4.09017e-06 7.09916e-06 1.04383e-05 1.36527e-05 1.59117e-05 1.79773e-05 1.99232e-05 2.17738e-05 2.35249e-05 2.48488e-05 2.50829e-05 2.48562e-05 2.41906e-05 2.31138e-05 2.12894e-05 1.87833e-05 1.59263e-05 1.29868e-05 1.01742e-05 7.62216e-06 5.42205e-06 3.64365e-06 2.30851e-06 1.37228e-06 6.45381e-07 1.85237e-07 5.38991e-08 3.84904e-08 4.06661e-08 5.58485e-09 6.75032e-09 3.25573e-08 1.96238e-07 7.82011e-07 2.22109e-06 4.76601e-06 8.16046e-06 1.18766e-05 1.54854e-05 1.81129e-05 2.05095e-05 2.28142e-05 2.50694e-05 2.72116e-05 2.84653e-05 2.89272e-05 2.88891e-05 2.83543e-05 2.73282e-05 2.57269e-05 2.28661e-05 1.93524e-05 1.56039e-05 1.20048e-05 8.83035e-06 6.2142e-06 4.17791e-06 2.67245e-06 1.61102e-06 7.81295e-07 2.21922e-07 6.0559e-08 4.16593e-08 4.3788e-08 6.08919e-09 7.49114e-09 3.78724e-08 2.29876e-07 9.14043e-07 2.57702e-06 5.46412e-06 9.24408e-06 1.3337e-05 1.73049e-05 2.03974e-05 2.31544e-05 2.58344e-05 2.84885e-05 3.0849e-05 3.208e-05 3.27645e-05 3.29118e-05 3.25094e-05 3.15456e-05 2.99978e-05 2.70919e-05 2.3021e-05 1.85268e-05 1.41647e-05 1.03347e-05 7.22757e-06 4.85251e-06 3.11673e-06 1.89459e-06 9.44562e-07 2.66555e-07 6.87196e-08 4.48415e-08 4.6825e-08 6.63827e-09 8.33953e-09 4.44431e-08 2.71963e-07 1.07955e-06 3.01868e-06 6.31243e-06 1.05314e-05 1.50373e-05 1.93846e-05 2.29694e-05 2.60982e-05 2.9141e-05 3.20733e-05 3.43913e-05 3.58133e-05 3.66805e-05 3.69723e-05 3.66641e-05 3.57321e-05 3.41351e-05 3.13111e-05 2.67691e-05 2.16088e-05 1.65444e-05 1.20764e-05 8.44959e-06 5.68173e-06 3.66138e-06 2.23771e-06 1.14174e-06 3.20329e-07 7.80996e-08 4.80058e-08 4.97557e-08 7.21377e-09 9.26108e-09 5.19197e-08 3.20005e-07 1.26735e-06 3.5117e-06 7.2398e-06 1.19168e-05 1.68509e-05 2.15923e-05 2.56929e-05 2.92019e-05 3.25903e-05 3.56977e-05 3.80642e-05 3.96853e-05 4.07149e-05 4.11221e-05 4.08725e-05 3.99359e-05 3.82585e-05 3.54895e-05 3.05224e-05 2.4765e-05 1.90635e-05 1.39954e-05 9.85077e-06 6.66378e-06 4.31979e-06 2.65638e-06 1.3833e-06 3.86397e-07 8.90582e-08 5.11604e-08 5.25734e-08 7.8119e-09 1.02594e-08 6.0438e-08 3.74943e-07 1.48089e-06 4.06316e-06 8.25559e-06 1.34105e-05 1.87877e-05 2.39354e-05 2.85805e-05 3.2465e-05 3.61324e-05 3.94572e-05 4.18792e-05 4.36888e-05 4.4864e-05 4.53628e-05 4.51422e-05 4.41697e-05 4.23827e-05 3.95624e-05 3.42125e-05 2.79237e-05 2.16504e-05 1.60289e-05 1.13863e-05 7.77532e-06 5.08624e-06 3.15438e-06 1.67391e-06 4.66802e-07 1.01901e-07 5.43217e-08 5.52813e-08 8.43921e-09 1.1349e-08 7.01567e-08 4.37813e-07 1.72381e-06 4.67985e-06 9.368e-06 1.50211e-05 2.08551e-05 2.64181e-05 3.14976e-05 3.58731e-05 3.97983e-05 4.3202e-05 4.58451e-05 4.78341e-05 4.91398e-05 4.9709e-05 4.94911e-05 4.84548e-05 4.65325e-05 4.35086e-05 3.7808e-05 3.10526e-05 2.42714e-05 1.81439e-05 1.30285e-05 8.99861e-06 5.95422e-06 3.73365e-06 2.01819e-06 5.64041e-07 1.17063e-07 5.75179e-08 5.78863e-08 9.08611e-09 1.25157e-08 8.09726e-08 5.07888e-07 1.9924e-06 5.34887e-06 1.05506e-05 1.67111e-05 2.30093e-05 2.89941e-05 3.44587e-05 3.93142e-05 4.35235e-05 4.70678e-05 4.9932e-05 5.2096e-05 5.35225e-05 5.41467e-05 5.39111e-05 5.27893e-05 5.07119e-05 4.73332e-05 4.12815e-05 3.41296e-05 2.69015e-05 2.03145e-05 1.4754e-05 1.03153e-05 6.91217e-06 4.3895e-06 2.41496e-06 6.78822e-07 1.34735e-07 6.07671e-08 6.03962e-08 9.75847e-09 1.37715e-08 9.30234e-08 5.86053e-07 2.28952e-06 6.07496e-06 1.18091e-05 1.84872e-05 2.52568e-05 3.16686e-05 3.75196e-05 4.27218e-05 4.72366e-05 5.10441e-05 5.41273e-05 5.64612e-05 5.79995e-05 5.86654e-05 5.83959e-05 5.71708e-05 5.49228e-05 5.10445e-05 4.46448e-05 3.71461e-05 2.95335e-05 2.25316e-05 1.65531e-05 1.1717e-05 7.95441e-06 5.11977e-06 2.86401e-06 8.12093e-07 1.55153e-07 6.40902e-08 6.28187e-08 1.04526e-08 1.51085e-08 1.06261e-07 6.72011e-07 2.61339e-06 6.85147e-06 1.31313e-05 2.03339e-05 2.7581e-05 3.44256e-05 4.06678e-05 4.62204e-05 5.10437e-05 5.51156e-05 5.84162e-05 6.09155e-05 6.25573e-05 6.32538e-05 6.29365e-05 6.15924e-05 5.91597e-05 5.46451e-05 4.78951e-05 4.00925e-05 3.21567e-05 2.47824e-05 1.84133e-05 1.3193e-05 9.07283e-06 5.91927e-06 3.36146e-06 9.63335e-07 1.78322e-07 6.74939e-08 6.5159e-08 1.11723e-08 1.65272e-08 1.20708e-07 7.65931e-07 2.964e-06 7.67608e-06 1.45116e-05 2.22432e-05 2.99718e-05 3.72529e-05 4.38892e-05 4.97938e-05 5.49258e-05 5.92612e-05 6.2777e-05 6.54378e-05 6.71763e-05 6.78953e-05 6.75216e-05 6.60471e-05 6.3419e-05 5.81505e-05 5.10481e-05 4.29793e-05 3.47606e-05 2.70629e-05 2.03294e-05 1.47378e-05 1.02632e-05 6.78542e-06 3.90507e-06 1.13247e-06 2.04306e-07 7.09862e-08 6.74205e-08 1.19157e-08 1.8011e-08 1.3627e-07 8.67399e-07 3.33957e-06 8.5436e-06 1.59425e-05 2.42068e-05 3.24206e-05 4.01413e-05 4.71733e-05 5.34293e-05 5.88675e-05 6.34621e-05 6.71878e-05 7.0003e-05 7.18294e-05 7.25636e-05 7.21285e-05 7.05167e-05 6.72507e-05 6.15253e-05 5.41363e-05 4.58257e-05 3.73527e-05 2.93704e-05 2.22944e-05 1.63439e-05 1.15188e-05 7.71308e-06 4.48979e-06 1.31818e-06 2.32968e-07 7.45628e-08 6.96049e-08 1.26844e-08 1.95302e-08 1.52766e-07 9.75672e-07 3.73755e-06 9.44797e-06 1.7415e-05 2.62142e-05 3.49147e-05 4.30752e-05 5.05007e-05 5.71036e-05 6.28407e-05 6.76844e-05 7.16068e-05 7.45589e-05 7.64502e-05 7.71839e-05 7.66961e-05 7.49541e-05 7.08559e-05 6.47626e-05 5.71473e-05 4.86355e-05 3.9939e-05 3.16929e-05 2.43053e-05 1.80084e-05 1.28372e-05 8.70016e-06 5.11271e-06 1.51979e-06 2.64249e-07 7.82213e-08 7.17117e-08 1.34761e-08 2.10142e-08 1.69827e-07 1.0895e-06 4.15505e-06 1.03846e-05 1.8925e-05 2.82621e-05 3.7451e-05 4.60506e-05 5.38657e-05 6.08077e-05 6.68322e-05 7.19101e-05 7.60103e-05 7.90747e-05 8.10088e-05 8.17309e-05 8.11864e-05 7.87832e-05 7.42821e-05 6.79269e-05 6.0109e-05 5.14129e-05 4.25138e-05 3.40228e-05 2.63543e-05 1.97238e-05 1.42124e-05 9.74225e-06 5.76906e-06 1.73584e-06 2.97968e-07 8.19514e-08 7.37396e-08 1.42924e-08 2.2354e-08 1.871e-07 1.20862e-06 4.59345e-06 1.13576e-05 2.04787e-05 3.0357e-05 4.00346e-05 4.907e-05 5.72679e-05 6.45385e-05 7.0836e-05 7.61295e-05 8.03838e-05 8.35301e-05 8.54831e-05 8.61833e-05 8.52524e-05 8.23752e-05 7.75849e-05 7.10122e-05 6.30162e-05 5.41562e-05 4.50763e-05 3.63645e-05 2.84388e-05 2.14857e-05 1.56401e-05 1.08359e-05 6.45477e-06 1.96505e-06 3.33961e-07 8.57413e-08 7.56843e-08 1.51326e-08 2.35124e-08 2.0495e-07 1.33602e-06 5.06141e-06 1.23795e-05 2.20884e-05 3.25076e-05 4.26699e-05 5.21345e-05 6.07061e-05 6.82941e-05 7.48508e-05 8.0343e-05 8.473e-05 8.79431e-05 8.99084e-05 9.0326e-05 8.89774e-05 8.58266e-05 8.08097e-05 7.40434e-05 6.58842e-05 5.6875e-05 4.76306e-05 3.87129e-05 3.05324e-05 2.32849e-05 1.71144e-05 1.19765e-05 7.1648e-06 2.20569e-06 3.71989e-07 8.95745e-08 7.75416e-08 1.60025e-08 2.5096e-08 2.26285e-07 1.48102e-06 5.57504e-06 1.34656e-05 2.37627e-05 3.47157e-05 4.53529e-05 5.5236e-05 6.41698e-05 7.20625e-05 7.88645e-05 8.45401e-05 8.90419e-05 9.23059e-05 9.40271e-05 9.41523e-05 9.25787e-05 8.92037e-05 8.39744e-05 7.70277e-05 6.87198e-05 5.95748e-05 5.01788e-05 4.10674e-05 3.26415e-05 2.51174e-05 1.8631e-05 1.31605e-05 7.89493e-06 2.45631e-06 4.11854e-07 9.34354e-08 7.93056e-08 1.69037e-08 2.7159e-08 2.50965e-07 1.641e-06 6.1232e-06 1.45936e-05 2.54745e-05 3.69545e-05 4.80601e-05 5.83547e-05 6.76428e-05 7.58308e-05 8.28672e-05 8.87132e-05 9.33193e-05 9.6501e-05 9.79656e-05 9.78799e-05 9.60905e-05 9.24978e-05 8.70709e-05 7.99617e-05 7.15221e-05 6.2255e-05 5.27188e-05 4.34257e-05 3.4768e-05 2.69787e-05 2.01848e-05 1.43832e-05 8.64031e-06 2.71507e-06 4.53288e-07 9.73047e-08 8.09711e-08 1.78356e-08 2.92739e-08 2.76389e-07 1.80603e-06 6.68366e-06 1.57335e-05 2.71946e-05 3.91996e-05 5.07714e-05 6.14737e-05 7.11103e-05 7.9586e-05 8.68473e-05 9.28525e-05 9.75538e-05 0.00010052 0.000101788 0.000101501 9.95056e-05 9.57124e-05 9.01079e-05 8.2855e-05 7.42992e-05 6.49214e-05 5.52543e-05 4.57893e-05 3.69109e-05 2.88666e-05 2.17727e-05 1.56417e-05 9.39735e-06 2.98059e-06 4.9609e-07 1.01166e-07 8.25314e-08 1.87981e-08 3.15181e-08 3.03786e-07 1.98325e-06 7.276e-06 1.6915e-05 2.89544e-05 4.1478e-05 5.35075e-05 6.4608e-05 7.45828e-05 8.33353e-05 9.08106e-05 9.69641e-05 0.00010175 0.000104427 0.000105495 0.000105019 0.000102831 9.88533e-05 9.30888e-05 8.57077e-05 7.70485e-05 6.75712e-05 5.7783e-05 4.81557e-05 3.90663e-05 3.07716e-05 2.33905e-05 1.6932e-05 1.01615e-05 3.25099e-06 5.39959e-07 1.04996e-07 8.398e-08 1.97904e-08 3.38762e-08 3.32833e-07 2.17023e-06 7.8919e-06 1.81249e-05 3.07406e-05 4.37785e-05 5.62591e-05 6.77489e-05 7.80509e-05 8.70679e-05 9.47436e-05 0.000101033 0.00010572 0.000108211 0.000109103 0.000108441 0.000106072 0.000101927 9.60209e-05 8.85275e-05 7.97773e-05 7.02101e-05 6.03082e-05 5.05256e-05 4.12313e-05 3.26878e-05 2.50344e-05 1.82516e-05 1.093e-05 3.52515e-06 5.84736e-07 1.0878e-07 8.53116e-08 2.08111e-08 3.63379e-08 3.6339e-07 2.36605e-06 8.52697e-06 1.93523e-05 3.25358e-05 4.60786e-05 5.90019e-05 7.08729e-05 8.14939e-05 9.07667e-05 9.8634e-05 0.000105051 0.000109554 0.00011187 0.00011259 0.000111758 0.000109227 0.000104935 9.89064e-05 9.13165e-05 8.24866e-05 7.28374e-05 6.28281e-05 5.28957e-05 4.34035e-05 3.46199e-05 2.67011e-05 1.95962e-05 1.16984e-05 3.80123e-06 6.30117e-07 1.125e-07 8.65242e-08 2.18576e-08 3.89132e-08 3.95672e-07 2.57191e-06 9.18443e-06 2.06038e-05 3.43495e-05 4.8389e-05 6.17444e-05 7.39845e-05 8.49121e-05 9.44286e-05 0.000102476 0.000109011 0.000113263 0.00011539 0.000115951 0.00011497 0.000112297 0.000107879 0.000101747 9.40748e-05 8.51749e-05 7.54507e-05 6.53403e-05 5.52646e-05 4.55819e-05 3.65674e-05 2.83904e-05 2.0965e-05 1.24655e-05 4.07863e-06 6.76008e-07 1.16145e-07 8.76162e-08 2.2927e-08 4.159e-08 4.29485e-07 2.78641e-06 9.85912e-06 2.18694e-05 3.61688e-05 5.06951e-05 6.44722e-05 7.70707e-05 8.82935e-05 9.80421e-05 0.000106259 0.000112901 0.000116833 0.000118767 0.000119187 0.000118078 0.000115286 0.000110761 0.000104542 9.6802e-05 8.78421e-05 7.80495e-05 6.78436e-05 5.76297e-05 4.77634e-05 3.85264e-05 3.00985e-05 2.23541e-05 1.32281e-05 4.35601e-06 7.22175e-07 1.19703e-07 8.85916e-08 2.40156e-08 4.43619e-08 4.64767e-07 3.009e-06 1.05486e-05 2.31447e-05 3.79872e-05 5.29886e-05 6.7175e-05 8.01191e-05 9.16245e-05 0.000101593 0.000109968 0.000116672 0.000120243 0.000122007 0.000122308 0.000121086 0.000118191 0.000113579 0.000107291 9.94973e-05 9.04876e-05 8.06339e-05 7.0338e-05 5.9992e-05 4.99489e-05 4.04978e-05 3.18267e-05 2.37646e-05 1.39861e-05 4.63327e-06 7.68616e-07 1.23174e-07 8.94522e-08 2.51192e-08 4.72215e-08 5.01434e-07 3.23898e-06 1.12501e-05 2.44251e-05 3.97995e-05 5.52639e-05 6.98473e-05 8.31242e-05 9.48993e-05 0.000105075 0.000113596 0.000120083 0.000123489 0.000125121 0.00012531 0.00012399 0.000121012 0.000116334 0.000109995 0.00010216 9.31098e-05 8.32001e-05 7.28185e-05 6.23463e-05 5.21339e-05 4.24775e-05 3.35709e-05 2.51922e-05 1.47369e-05 4.90924e-06 8.15098e-07 1.26546e-07 9.02051e-08 2.62353e-08 5.01565e-08 5.39294e-07 3.47503e-06 1.19594e-05 2.57036e-05 4.15964e-05 5.75103e-05 7.24773e-05 8.60742e-05 9.81068e-05 0.000108479 0.000117135 0.000123346 0.000126574 0.000128086 0.000128183 0.000126789 0.00012375 0.000119024 0.00011265 0.000104787 9.57044e-05 8.5745e-05 7.52833e-05 6.46914e-05 5.43178e-05 4.4466e-05 3.53332e-05 2.66395e-05 1.54812e-05 5.1844e-06 8.61744e-07 1.29824e-07 9.08515e-08 2.73616e-08 5.31616e-08 5.78285e-07 3.71662e-06 1.26746e-05 2.69773e-05 4.33748e-05 5.97244e-05 7.50612e-05 8.89647e-05 0.000101242 0.000111798 0.00012058 0.000126455 0.000129497 0.000130905 0.000130934 0.000129488 0.000126409 0.000121653 0.000115258 0.000107378 9.82719e-05 8.82688e-05 7.77321e-05 6.70258e-05 5.64974e-05 4.64582e-05 3.71067e-05 2.80986e-05 1.62146e-05 5.45647e-06 9.08064e-07 1.32981e-07 9.1398e-08 2.84974e-08 5.62344e-08 6.18371e-07 3.96344e-06 1.33948e-05 2.82448e-05 4.51329e-05 6.19037e-05 7.75961e-05 9.17924e-05 0.000104302 0.000115031 0.000123929 0.000129407 0.000132258 0.00013358 0.000133565 0.000132089 0.000128988 0.000124217 0.000117815 0.000109928 0.000100806 9.07649e-05 8.01589e-05 6.93449e-05 5.86709e-05 4.84562e-05 3.88977e-05 2.95787e-05 1.69413e-05 5.72785e-06 9.54586e-07 1.3604e-07 9.18479e-08 2.96375e-08 5.93592e-08 6.59329e-07 4.21402e-06 1.41157e-05 2.94999e-05 4.68631e-05 6.404e-05 8.00735e-05 9.45489e-05 0.000107278 0.000118169 0.000127175 0.000132198 0.000134863 0.000136122 0.000136087 0.000134599 0.00013149 0.000126719 0.000120321 0.000112439 0.00010331 9.32394e-05 8.25706e-05 7.16553e-05 6.0842e-05 5.04576e-05 4.06966e-05 3.10649e-05 1.7655e-05 5.99507e-06 1.00053e-06 1.38949e-07 9.22098e-08 3.0778e-08 6.25295e-08 7.01089e-07 4.46784e-06 1.48358e-05 3.07403e-05 4.85626e-05 6.61295e-05 8.24885e-05 9.72282e-05 0.000110163 0.000121203 0.00013021 0.000134809 0.000137342 0.000138563 0.000138513 0.00013702 0.000133916 0.000129158 0.000122778 0.000114909 0.00010578 9.5684e-05 8.49549e-05 7.39418e-05 6.29975e-05 5.24564e-05 4.25065e-05 3.25649e-05 1.83565e-05 6.25872e-06 1.04599e-06 1.41698e-07 9.24915e-08 3.19113e-08 6.57148e-08 7.43183e-07 4.72201e-06 1.55476e-05 3.19553e-05 5.02193e-05 6.81603e-05 8.48304e-05 9.9821e-05 0.000112948 0.000124127 0.000132817 0.000137249 0.000139702 0.000140888 0.000140829 0.000139343 0.000136258 0.000131525 0.000125172 0.000117326 0.000108204 9.809e-05 8.73088e-05 7.62072e-05 6.51414e-05 5.44549e-05 4.4333e-05 3.40916e-05 1.90552e-05 6.52223e-06 1.09141e-06 1.44268e-07 9.2699e-08 3.30354e-08 6.89084e-08 7.85513e-07 4.9759e-06 1.62496e-05 3.31425e-05 5.18301e-05 7.01285e-05 8.70946e-05 0.000102323 0.000115632 0.000126938 0.000135265 0.000139523 0.000141909 0.000143081 0.000143031 0.000141566 0.000138512 0.000133816 0.000127502 0.000119688 0.000110583 0.000100462 8.96441e-05 7.84765e-05 6.73189e-05 5.65063e-05 4.61519e-05 3.52977e-05 1.9712e-05 6.77489e-06 1.13532e-06 1.46527e-07 9.28419e-08 3.41495e-08 7.20965e-08 8.27834e-07 5.22806e-06 1.69384e-05 3.42979e-05 5.33905e-05 7.20295e-05 8.92766e-05 0.000104729 0.000118209 0.000129634 0.000137557 0.000141639 0.000143973 0.000145148 0.000145124 0.000143695 0.000140683 0.000136036 0.000129771 0.000122 0.000112924 0.000102807 9.19661e-05 8.07459e-05 6.95074e-05 5.85689e-05 4.79522e-05 3.63746e-05 2.0333e-05 7.01332e-06 1.17632e-06 1.48285e-07 9.29276e-08 3.52543e-08 7.52848e-08 8.70248e-07 5.47903e-06 1.76154e-05 3.54237e-05 5.49033e-05 7.38661e-05 9.13786e-05 0.000107042 0.000120681 0.000132216 0.000139705 0.000143611 0.000145906 0.000147101 0.00014712 0.000145739 0.00014278 0.00013819 0.000131984 0.000124266 0.000115228 0.000105127 9.42729e-05 8.30098e-05 7.16963e-05 6.06299e-05 4.97376e-05 3.74159e-05 2.09258e-05 7.23783e-06 1.21369e-06 1.49313e-07 9.29567e-08 3.63483e-08 7.84773e-08 9.12847e-07 5.72931e-06 1.82823e-05 3.65229e-05 5.63726e-05 7.56428e-05 9.34057e-05 0.000109267 0.000123053 0.000134689 0.000141707 0.00014544 0.00014771 0.000148943 0.000149017 0.000147697 0.0001448 0.000140274 0.000134133 0.000126477 0.000117487 0.000107411 9.65539e-05 8.52577e-05 7.38777e-05 6.26879e-05 5.15147e-05 3.84253e-05 2.14928e-05 7.44751e-06 1.24634e-06 1.4931e-07 9.2937e-08 3.74247e-08 8.16465e-08 9.55204e-07 5.97635e-06 1.8933e-05 3.75874e-05 5.77893e-05 7.73512e-05 9.53509e-05 0.000111397 0.000125322 0.000137051 0.000143562 0.000147129 0.000149397 0.000150683 0.000150821 0.000149566 0.000146738 0.000142283 0.000136215 0.000128628 0.000119695 0.000109655 9.88057e-05 8.74878e-05 7.60527e-05 6.47475e-05 5.32847e-05 3.93891e-05 2.20204e-05 7.63487e-06 1.27276e-06 1.48368e-07 9.28796e-08 3.84802e-08 8.4779e-08 9.971e-07 6.21891e-06 1.95648e-05 3.86134e-05 5.91495e-05 7.89872e-05 9.72097e-05 0.00011343 0.000127483 0.0001393 0.000145266 0.000148693 0.000150985 0.000152334 0.000152537 0.000151348 0.000148591 0.000144215 0.000138228 0.000130719 0.000121852 0.000111857 0.000101026 8.96971e-05 7.82163e-05 6.67991e-05 5.50356e-05 4.03001e-05 2.25068e-05 7.80289e-06 1.29574e-06 1.47567e-07 9.28036e-08 3.95125e-08 8.78437e-08 1.038e-06 6.45406e-06 2.01715e-05 3.95936e-05 6.04456e-05 8.05434e-05 9.89749e-05 0.000115357 0.000129526 0.000141134 0.000146821 0.000150199 0.000152513 0.000153907 0.000154168 0.000153045 0.000150364 0.000146072 0.000140173 0.000132748 0.000123954 0.000114014 0.000103212 9.18829e-05 8.03667e-05 6.88431e-05 5.67736e-05 4.11869e-05 2.29845e-05 7.97502e-06 1.32258e-06 1.48078e-07 9.27239e-08 4.05256e-08 9.08552e-08 1.07812e-06 6.68313e-06 2.07568e-05 4.05335e-05 6.16846e-05 8.20284e-05 0.000100657 0.000117191 0.000131469 0.000142732 0.000148274 0.000151619 0.000153955 0.000155397 0.000155718 0.000154665 0.000152064 0.00014786 0.000142053 0.000134719 0.000126005 0.000116128 0.000105364 9.40456e-05 8.25032e-05 7.08799e-05 5.85058e-05 4.20712e-05 2.34728e-05 8.16023e-06 1.35435e-06 1.49556e-07 9.26381e-08 4.15193e-08 9.38018e-08 1.11724e-06 6.90504e-06 2.13187e-05 4.14313e-05 6.28651e-05 8.34413e-05 0.000102257 0.000118934 0.000133314 0.00014423 0.000149633 0.000152954 0.000155318 0.000156812 0.000157195 0.000156213 0.000153693 0.000149578 0.000143866 0.000136626 0.000127999 0.000118191 0.000107475 9.61777e-05 8.46198e-05 7.2905e-05 6.02291e-05 4.29516e-05 2.39671e-05 8.35258e-06 1.38833e-06 1.51279e-07 9.25442e-08 4.24939e-08 9.66935e-08 1.15554e-06 7.12076e-06 2.186e-05 4.2291e-05 6.39919e-05 8.47872e-05 0.000103779 0.000120591 0.000135068 0.000145638 0.000150906 0.000154208 0.000156606 0.000158153 0.0001586 0.00015769 0.00015525 0.000151224 0.000145607 0.000138465 0.000129928 0.000120196 0.000109537 9.82746e-05 8.67205e-05 7.49347e-05 6.19678e-05 4.38379e-05 2.44725e-05 8.5534e-06 1.42435e-06 1.53131e-07 9.24495e-08 4.34496e-08 9.95219e-08 1.19284e-06 7.32948e-06 2.23794e-05 4.3112e-05 6.50652e-05 8.60675e-05 0.000105225 0.000122164 0.000136732 0.000146952 0.00015209 0.000155379 0.000157813 0.000159417 0.000159929 0.000159089 0.000156728 0.00015279 0.00014727 0.00014023 0.000131794 0.000122155 0.000111569 0.000100354 8.88129e-05 7.69686e-05 6.37233e-05 4.4737e-05 2.49917e-05 8.76237e-06 1.46212e-06 1.55082e-07 9.23645e-08 4.43885e-08 1.02287e-07 1.22912e-06 7.53112e-06 2.28772e-05 4.38955e-05 6.60872e-05 8.72849e-05 0.000106599 0.000123659 0.000138313 0.000148187 0.0001532 0.00015648 0.000158954 0.000160615 0.000161191 0.000160421 0.000158138 0.000154286 0.000148862 0.000141926 0.000133601 0.000124073 0.000113593 0.000102462 9.09434e-05 7.89654e-05 6.52591e-05 4.56077e-05 2.55022e-05 8.97139e-06 1.50037e-06 1.57075e-07 9.22924e-08 4.53161e-08 1.0501e-07 1.26471e-06 7.72758e-06 2.33583e-05 4.46486e-05 6.70666e-05 8.84492e-05 0.000107911 0.000125084 0.000139819 0.000149352 0.000154247 0.000157523 0.000160039 0.000161759 0.000162398 0.000161696 0.000159487 0.00015572 0.000150391 0.00014356 0.00013535 0.000125943 0.000115586 0.00010456 9.30804e-05 8.09237e-05 6.64556e-05 4.64485e-05 2.60015e-05 9.17814e-06 1.53856e-06 1.5908e-07 9.22325e-08 4.62324e-08 1.07684e-07 1.29942e-06 7.91802e-06 2.38213e-05 4.53706e-05 6.80036e-05 8.95619e-05 0.000109164 0.000126445 0.000141257 0.000150454 0.000155238 0.000158514 0.000161075 0.000162854 0.000163555 0.000162919 0.000160782 0.000157095 0.000151857 0.000145131 0.000137036 0.000127755 0.000117527 0.000106618 9.5183e-05 8.28474e-05 6.76283e-05 4.72749e-05 2.64951e-05 9.38404e-06 1.57681e-06 1.61105e-07 9.21891e-08 4.71403e-08 1.10319e-07 1.33345e-06 8.10345e-06 2.42688e-05 4.60652e-05 6.89029e-05 9.06282e-05 0.000110364 0.000127747 0.000142633 0.000151501 0.00015618 0.000159461 0.000162071 0.000163908 0.00016467 0.000164095 0.000162026 0.000158414 0.000153264 0.000146637 0.000138656 0.000129501 0.000119408 0.000108623 9.72443e-05 8.47385e-05 6.87786e-05 4.80898e-05 2.69854e-05 9.59018e-06 1.61534e-06 1.63165e-07 9.21666e-08 4.80416e-08 1.12893e-07 1.36633e-06 8.28161e-06 2.46961e-05 4.67269e-05 6.9759e-05 9.16437e-05 0.000111507 0.000128989 0.000143945 0.000152493 0.000157073 0.000160367 0.000163028 0.000164924 0.000165744 0.000165227 0.00016322 0.000159679 0.00015461 0.000148077 0.000140205 0.000131176 0.00012122 0.000110569 9.92577e-05 8.65935e-05 6.99025e-05 4.889e-05 2.74697e-05 9.79532e-06 1.65389e-06 1.65246e-07 9.21655e-08 4.89432e-08 1.15424e-07 1.39835e-06 8.45398e-06 2.51067e-05 4.73595e-05 7.05756e-05 9.26113e-05 0.000112596 0.000130173 0.000145197 0.000153438 0.000157931 0.000161241 0.000163954 0.000165908 0.000166782 0.000166318 0.000164367 0.000160891 0.000155897 0.000149453 0.000141685 0.000132777 0.000122961 0.000112449 0.000101218 8.84093e-05 7.10004e-05 4.96758e-05 2.79485e-05 9.99957e-06 1.69251e-06 1.67352e-07 9.21862e-08 4.98487e-08 1.1794e-07 1.42995e-06 8.62315e-06 2.55064e-05 4.79717e-05 7.13623e-05 9.35405e-05 0.00011364 0.000131306 0.000146395 0.000154336 0.000158753 0.000162087 0.000164855 0.000166865 0.000167788 0.000167372 0.000165472 0.000162054 0.000157129 0.000150766 0.000143096 0.000134306 0.000124628 0.000114261 0.000103122 9.01818e-05 7.20707e-05 5.04462e-05 2.84208e-05 1.02026e-05 1.73113e-06 1.69477e-07 9.22254e-08 5.07568e-08 1.20445e-07 1.46124e-06 8.78956e-06 2.58966e-05 4.85657e-05 7.21224e-05 9.44354e-05 0.000114643 0.000132393 0.000147544 0.000155182 0.000159533 0.000162903 0.000165728 0.00016779 0.000168758 0.000168384 0.000166531 0.000163166 0.000158304 0.000152017 0.000144438 0.000135761 0.000126218 0.000115997 0.000104955 9.18969e-05 7.31046e-05 5.11932e-05 2.88806e-05 1.04013e-05 1.76913e-06 1.71584e-07 9.22801e-08 5.16666e-08 1.22936e-07 1.49213e-06 8.95292e-06 2.62767e-05 4.91411e-05 7.28555e-05 9.52958e-05 0.000115605 0.000133434 0.000148643 0.00015597 0.000160274 0.00016369 0.000166573 0.000168682 0.000169689 0.000169354 0.000167542 0.000164225 0.000159419 0.0001532 0.000145706 0.000137135 0.000127724 0.00011765 0.000106714 9.35526e-05 7.4104e-05 5.1919e-05 2.93299e-05 1.05968e-05 1.80679e-06 1.73693e-07 9.23505e-08 5.25777e-08 1.2539e-07 1.52223e-06 9.11111e-06 2.66427e-05 4.96929e-05 7.35564e-05 9.61164e-05 0.000116521 0.000134422 0.000149622 0.000156696 0.000160996 0.000164461 0.000167392 0.00016954 0.000170583 0.000170282 0.000168509 0.000165235 0.000160481 0.000154326 0.000146912 0.000138442 0.000129156 0.000119224 0.000108395 9.51455e-05 7.50722e-05 5.26269e-05 2.97711e-05 1.07897e-05 1.84412e-06 1.75805e-07 9.24427e-08 5.34957e-08 1.27819e-07 1.55169e-06 9.26511e-06 2.69968e-05 5.02242e-05 7.42292e-05 9.69019e-05 0.000117395 0.000135362 0.00015035 0.000157375 0.000161698 0.000165206 0.000168181 0.000170367 0.000171444 0.000171176 0.000169436 0.000166201 0.000161495 0.000155402 0.000148069 0.000139704 0.000130542 0.000120732 0.000109972 9.66232e-05 7.59933e-05 5.3305e-05 3.01973e-05 1.0978e-05 1.8808e-06 1.77899e-07 9.25543e-08 5.4424e-08 1.30234e-07 1.5807e-06 9.41593e-06 2.73412e-05 5.07382e-05 7.4877e-05 9.76556e-05 0.000118231 0.000136261 0.000151035 0.000158016 0.000162366 0.000165923 0.000168942 0.000171168 0.000172277 0.000172039 0.000170331 0.00016713 0.000162466 0.00015643 0.000149175 0.000140916 0.000131885 0.000122198 0.000111439 9.77332e-05 7.68522e-05 5.39468e-05 3.06059e-05 1.11606e-05 1.91669e-06 1.79967e-07 9.26795e-08 5.53612e-08 1.32653e-07 1.60957e-06 9.56528e-06 2.76797e-05 5.12395e-05 7.55048e-05 9.83824e-05 0.000119035 0.000137122 0.000151677 0.000158618 0.000163002 0.00016661 0.000169679 0.000171943 0.000173085 0.000172876 0.000171195 0.000168025 0.000163398 0.000157412 0.000150228 0.000142065 0.000133154 0.000123577 0.000112809 9.87183e-05 7.76631e-05 5.45561e-05 3.09964e-05 1.13362e-05 1.95144e-06 1.81985e-07 9.28144e-08 5.6304e-08 1.35057e-07 1.63798e-06 9.71141e-06 2.80089e-05 5.17246e-05 7.61096e-05 9.908e-05 0.000119804 0.000137943 0.000152265 0.000159166 0.000163592 0.000167259 0.00017038 0.000172686 0.000173861 0.000173679 0.000172024 0.00016888 0.000164287 0.000158344 0.000151222 0.000143146 0.000134343 0.000124864 0.000114085 9.96437e-05 7.84264e-05 5.51316e-05 3.13667e-05 1.15036e-05 1.98471e-06 1.8393e-07 9.29533e-08 5.72522e-08 1.37432e-07 1.66573e-06 9.85341e-06 2.83269e-05 5.21908e-05 7.66885e-05 9.97454e-05 0.000120535 0.000138722 0.000152804 0.000159669 0.000164141 0.00016787 0.000171047 0.000173398 0.000174606 0.000174451 0.000172819 0.0001697 0.000165134 0.00015923 0.000152162 0.000144161 0.000135455 0.000126065 0.000115275 0.000100511 7.9143e-05 5.56731e-05 3.17164e-05 1.16625e-05 2.01643e-06 1.85793e-07 9.30893e-08 5.82065e-08 1.39787e-07 1.69298e-06 9.99231e-06 2.86362e-05 5.26415e-05 7.7245e-05 0.000100382 0.000121232 0.000139463 0.000153299 0.000160129 0.000164651 0.000168448 0.000171684 0.000174081 0.000175324 0.000175195 0.000173585 0.000170487 0.000165945 0.000160072 0.00015305 0.000145116 0.000136496 0.000127185 0.000116383 0.000101322 7.98127e-05 5.61798e-05 3.20444e-05 1.1812e-05 2.04643e-06 1.87558e-07 9.32173e-08 5.91678e-08 1.42111e-07 1.71951e-06 1.01269e-05 2.89347e-05 5.30748e-05 7.77781e-05 0.00010099 0.000121895 0.000140165 0.000153741 0.000160537 0.000165114 0.000168984 0.000172285 0.000174731 0.00017601 0.000175908 0.000174319 0.00017124 0.000166719 0.000160873 0.000153891 0.000146014 0.000137469 0.000128228 0.000117415 0.00010208 8.04389e-05 5.66543e-05 3.23526e-05 1.19532e-05 2.07491e-06 1.89234e-07 9.33366e-08 6.01391e-08 1.44415e-07 1.74548e-06 1.02582e-05 2.92242e-05 5.3493e-05 7.829e-05 0.00010157 0.000122526 0.000140831 0.000154145 0.000160907 0.000165542 0.000169489 0.000172856 0.000175354 0.000176671 0.000176596 0.000175028 0.000171966 0.000167462 0.00016164 0.000154691 0.000146864 0.000138385 0.000129206 0.000118378 0.000102788 8.10242e-05 5.70986e-05 3.26422e-05 1.20865e-05 2.10194e-06 1.90827e-07 9.34485e-08 6.112e-08 1.46694e-07 1.77082e-06 1.03858e-05 2.95044e-05 5.38959e-05 7.8781e-05 0.000102125 0.000123126 0.000141461 0.000154512 0.000161242 0.000165937 0.000169962 0.0001734 0.000175951 0.000177306 0.00017726 0.000175712 0.000172667 0.000168179 0.000162375 0.000155455 0.000147671 0.000139249 0.000130123 0.000119279 0.00010345 8.15716e-05 5.75149e-05 3.29147e-05 1.22128e-05 2.12765e-06 1.92342e-07 9.35556e-08 6.21096e-08 1.4894e-07 1.79545e-06 1.05095e-05 2.97748e-05 5.42826e-05 7.92502e-05 0.000102653 0.000123695 0.000142057 0.000154843 0.000161541 0.000166297 0.000170403 0.000173912 0.000176518 0.000177915 0.000177897 0.00017637 0.00017334 0.000168866 0.000163079 0.000156183 0.000148437 0.000140065 0.000130984 0.000120119 0.000104068 8.20813e-05 5.79025e-05 3.3169e-05 1.23311e-05 2.15182e-06 1.93763e-07 9.36523e-08 6.31025e-08 1.51154e-07 1.81942e-06 1.06296e-05 3.00357e-05 5.46535e-05 7.96973e-05 0.000103153 0.000124232 0.000142618 0.000155146 0.000161813 0.000166632 0.000170819 0.000174401 0.000177064 0.000178502 0.000178514 0.000177008 0.000173992 0.00016953 0.000163757 0.000156881 0.000149166 0.000140837 0.000131794 0.000120905 0.000104642 8.25534e-05 5.82609e-05 3.34043e-05 1.24408e-05 2.17432e-06 1.95079e-07 9.37328e-08 6.40979e-08 1.53344e-07 1.84289e-06 1.07466e-05 3.02886e-05 5.50104e-05 8.01247e-05 0.000103628 0.000124739 0.000143145 0.000155408 0.000162048 0.000166931 0.000171201 0.000174857 0.000177579 0.00017906 0.000179103 0.000177618 0.000174618 0.000170167 0.000164405 0.000157546 0.000149858 0.000141565 0.000132552 0.000121636 0.000105173 8.29887e-05 5.85904e-05 3.36202e-05 1.25418e-05 2.1951e-06 1.96283e-07 9.37906e-08 6.50925e-08 1.55477e-07 1.86532e-06 1.08582e-05 3.05284e-05 5.53471e-05 8.05262e-05 0.000104073 0.000125212 0.000143635 0.000155642 0.000162255 0.000167203 0.000171559 0.00017529 0.000178072 0.000179597 0.000179671 0.000178208 0.000175222 0.000170782 0.00016503 0.000158184 0.000150518 0.000142254 0.000133265 0.000122319 0.000105665 8.339e-05 5.88929e-05 3.38183e-05 1.26347e-05 2.21428e-06 1.97378e-07 9.38234e-08 6.60871e-08 1.57545e-07 1.88657e-06 1.09636e-05 3.07542e-05 5.56623e-05 8.09001e-05 0.000104486 0.00012565 0.000144088 0.000155846 0.000162437 0.000167453 0.000171894 0.000175703 0.000178545 0.000180115 0.000180222 0.000178782 0.00017581 0.00017138 0.000165637 0.000158803 0.000151153 0.000142914 0.000133942 0.00012296 0.00010612 8.3759e-05 5.91701e-05 3.39996e-05 1.27199e-05 2.23194e-06 1.98367e-07 9.38337e-08 6.7086e-08 1.59568e-07 1.90697e-06 1.10646e-05 3.09689e-05 5.59593e-05 8.12493e-05 0.000104868 0.000126054 0.000144505 0.000156017 0.000162591 0.000167679 0.000172209 0.000176097 0.000179001 0.000180617 0.000180756 0.000179339 0.000176383 0.000171962 0.000166227 0.000159403 0.000151768 0.000143547 0.000134585 0.000123562 0.00010654 8.40973e-05 5.94233e-05 3.41651e-05 1.2798e-05 2.24816e-06 1.99254e-07 9.38176e-08 6.80867e-08 1.61549e-07 1.92657e-06 1.11615e-05 3.11735e-05 5.62393e-05 8.15751e-05 0.000105222 0.000126426 0.000144886 0.000156158 0.00016272 0.000167885 0.000172507 0.000176476 0.000179443 0.000181105 0.000181278 0.000179884 0.000176943 0.000172533 0.000166805 0.000159988 0.000152364 0.000144156 0.000135197 0.000124127 0.000106922 8.44016e-05 5.96485e-05 3.43113e-05 1.28669e-05 2.2625e-06 2.00007e-07 9.37696e-08 6.90923e-08 1.63489e-07 1.94537e-06 1.12541e-05 3.13678e-05 5.6502e-05 8.18769e-05 0.000105546 0.000126763 0.000145231 0.000156255 0.000162812 0.000168061 0.000172783 0.000176836 0.000179868 0.000181577 0.000181784 0.000180413 0.000177489 0.000173089 0.00016737 0.000160561 0.000152946 0.000144748 0.000135785 0.00012466 0.000107272 8.46768e-05 5.98501e-05 3.44413e-05 1.29282e-05 2.27523e-06 2.00643e-07 9.36911e-08 7.01004e-08 1.65367e-07 1.963e-06 1.13408e-05 3.15483e-05 5.67427e-05 8.21496e-05 0.000105836 0.000127061 0.000145534 0.00015631 0.000162871 0.000168214 0.000173041 0.000177184 0.000180282 0.00018204 0.00018228 0.000180933 0.000178026 0.000173639 0.000167928 0.000161128 0.000153523 0.000145332 0.00013636 0.000125172 0.000107594 8.49266e-05 6.0031e-05 3.45575e-05 1.29831e-05 2.28665e-06 2.01182e-07 9.35855e-08 7.11124e-08 1.67188e-07 1.97954e-06 1.14219e-05 3.1715e-05 5.69608e-05 8.23914e-05 0.000106088 0.000127317 0.000145791 0.000156311 0.000162883 0.000168333 0.000173276 0.000177513 0.00018068 0.000182486 0.00018276 0.000181439 0.00017855 0.000174176 0.000168477 0.000161688 0.000154093 0.000145908 0.000136924 0.000125666 0.000107887 8.51479e-05 6.01868e-05 3.4655e-05 1.30288e-05 2.29612e-06 2.01581e-07 9.34447e-08 7.21255e-08 1.6893e-07 1.99461e-06 1.14953e-05 3.18641e-05 5.71511e-05 8.25967e-05 0.000106296 0.000127525 0.000145998 0.000156248 0.000162843 0.000168415 0.000173484 0.00017782 0.000181058 0.000182913 0.000183223 0.000181929 0.00017906 0.000174703 0.000169017 0.000162241 0.000154658 0.000146481 0.000137482 0.000126146 0.000108159 8.53495e-05 6.03256e-05 3.47402e-05 1.30684e-05 2.30431e-06 2.0188e-07 9.32715e-08 7.31383e-08 1.70577e-07 2.00797e-06 1.156e-05 3.1993e-05 5.73098e-05 8.27608e-05 0.000106456 0.000127679 0.000146149 0.000156117 0.000162753 0.000168465 0.000173671 0.00017811 0.000181419 0.000183324 0.000183672 0.000182408 0.000179563 0.000175225 0.000169557 0.000162797 0.000155231 0.000147063 0.000138048 0.000126628 0.000108415 8.55355e-05 6.04515e-05 3.48169e-05 1.31042e-05 2.31172e-06 2.02111e-07 9.30718e-08 7.41551e-08 1.72156e-07 2.02e-06 1.16177e-05 3.2105e-05 5.74402e-05 8.28854e-05 0.000106567 0.000127777 0.000146235 0.000155902 0.00016262 0.000168493 0.000173835 0.000178374 0.000181754 0.000183713 0.000184103 0.000182871 0.000180052 0.000175738 0.000170091 0.000163352 0.000155807 0.000147655 0.000138627 0.000127116 0.000108654 8.57034e-05 6.05603e-05 3.48802e-05 1.31331e-05 2.31769e-06 2.0223e-07 9.28398e-08 7.51718e-08 1.73594e-07 2.02949e-06 1.1663e-05 3.21903e-05 5.75312e-05 8.29602e-05 0.000106618 0.000127805 0.000145915 0.0001556 0.00016246 0.000168488 0.00017396 0.000178599 0.000182056 0.000184073 0.000184508 0.000183313 0.000180524 0.000176236 0.000170614 0.000163902 0.000156385 0.000148253 0.000139216 0.000127611 0.000108881 8.58597e-05 6.06582e-05 3.49349e-05 1.31577e-05 2.32272e-06 2.02271e-07 9.25777e-08 7.61994e-08 1.74958e-07 2.03747e-06 1.17004e-05 3.2257e-05 5.75915e-05 8.29933e-05 0.000106619 0.000127776 0.000145529 0.000155233 0.000162245 0.000168437 0.000174048 0.000178794 0.000182332 0.000184411 0.000184895 0.000183739 0.000180984 0.000176725 0.000171133 0.000164453 0.000156969 0.000148866 0.000139826 0.000128123 0.000109104 8.60121e-05 6.07527e-05 3.49875e-05 1.31815e-05 2.32762e-06 2.0228e-07 9.22884e-08 7.72368e-08 1.76255e-07 2.04408e-06 1.17309e-05 3.23073e-05 5.76244e-05 8.29881e-05 0.000106572 0.000127691 0.000145064 0.000154792 0.000161967 0.000168335 0.000174094 0.000178954 0.000182578 0.000184723 0.000185258 0.000184145 0.000181426 0.000177201 0.000171643 0.000165 0.000157557 0.00014949 0.000140451 0.000128647 0.000109318 8.61559e-05 6.08397e-05 3.50343e-05 1.32024e-05 2.33191e-06 2.0223e-07 9.19744e-08 7.82831e-08 1.77459e-07 2.04882e-06 1.17521e-05 3.23367e-05 5.76248e-05 8.294e-05 0.000106474 0.000127548 0.000144515 0.000154267 0.000161617 0.000168172 0.000174088 0.00017907 0.000182786 0.000185001 0.000185593 0.000184526 0.000181847 0.000177659 0.00017214 0.00016554 0.000158146 0.000150122 0.00014109 0.000129184 0.000109526 8.6294e-05 6.09224e-05 3.50784e-05 1.32224e-05 2.33602e-06 2.02154e-07 9.16415e-08 7.93479e-08 1.78596e-07 2.05204e-06 1.17656e-05 3.23481e-05 5.75956e-05 8.28513e-05 0.000106325 0.000127347 0.000143883 0.000153661 0.000161194 0.000167947 0.000174031 0.000179141 0.000182955 0.000185245 0.000185896 0.000184877 0.000182242 0.000178096 0.000172621 0.000166071 0.000158732 0.00015076 0.000141743 0.000129733 0.000109727 8.64264e-05 6.10001e-05 3.51187e-05 1.32404e-05 2.33974e-06 2.02036e-07 9.12884e-08 8.04302e-08 1.79626e-07 2.05306e-06 1.17683e-05 3.23357e-05 5.75292e-05 8.27136e-05 0.000106118 0.00012708 0.000143168 0.000152972 0.000160698 0.000167662 0.000173922 0.000179169 0.000183085 0.000185453 0.000186165 0.000185198 0.00018261 0.000178513 0.00017309 0.000166598 0.000159318 0.000151397 0.000142393 0.000130282 0.000109923 8.65554e-05 6.10755e-05 3.51575e-05 1.32578e-05 2.34332e-06 2.01895e-07 9.09171e-08 8.15387e-08 1.80626e-07 2.05308e-06 1.17657e-05 3.23094e-05 5.74374e-05 8.2538e-05 0.000105861 0.000126754 0.000142361 0.000152194 0.000160126 0.000167313 0.000173761 0.000179153 0.000183178 0.000185627 0.000186403 0.00018549 0.000182952 0.000178908 0.000173548 0.000167128 0.00015992 0.000152044 0.000143016 0.000130775 0.000110097 8.66691e-05 6.11405e-05 3.51898e-05 1.32725e-05 2.34644e-06 2.01714e-07 9.05279e-08 8.26643e-08 1.81496e-07 2.05046e-06 1.17502e-05 3.22555e-05 5.73038e-05 8.23083e-05 0.00010554 0.000126355 0.00014145 0.000151313 0.000159462 0.000166888 0.000173538 0.000179085 0.000183225 0.000185761 0.000186604 0.000185747 0.000183261 0.000179274 0.000173983 0.000167645 0.000160525 0.000152705 0.000143604 0.00013099 0.00011024 8.67614e-05 6.11915e-05 3.5214e-05 1.32838e-05 2.34893e-06 2.01487e-07 9.01226e-08 8.38175e-08 1.823e-07 2.04618e-06 1.1726e-05 3.21809e-05 5.71355e-05 8.203e-05 0.000105158 0.000125886 0.000140439 0.000150333 0.000158715 0.000166396 0.00017326 0.00017897 0.000183229 0.000185854 0.000186766 0.000185965 0.000183534 0.000179605 0.000174384 0.000168132 0.000161104 0.000153341 0.000144165 0.000131156 0.000110356 8.68318e-05 6.12262e-05 3.52271e-05 1.32898e-05 2.35039e-06 2.01187e-07 8.96981e-08 8.50052e-08 1.83042e-07 2.04016e-06 1.16928e-05 3.20853e-05 5.69324e-05 8.1703e-05 0.000104715 0.000125344 0.000139314 0.000149244 0.000157879 0.000165833 0.000172924 0.000178804 0.000183187 0.000185902 0.000186882 0.00018614 0.000183762 0.000179893 0.000174743 0.000168578 0.000161643 0.00015394 0.00014469 0.000131286 0.000110441 8.68783e-05 6.12428e-05 3.52282e-05 1.32902e-05 2.35067e-06 2.00809e-07 8.92572e-08 8.62248e-08 1.83688e-07 2.03183e-06 1.16474e-05 3.19614e-05 5.66845e-05 8.13158e-05 0.000104199 0.00012472 0.000138064 0.000148047 0.000156961 0.000165207 0.000172535 0.000178588 0.000183096 0.000185902 0.000186953 0.000186268 0.000183945 0.000180135 0.000175057 0.00016898 0.000162141 0.000154502 0.000145181 0.000131381 0.000110499 8.69049e-05 6.12465e-05 3.52222e-05 1.32877e-05 2.35048e-06 2.00399e-07 8.88065e-08 8.74855e-08 1.84337e-07 2.02278e-06 1.15969e-05 3.18206e-05 5.6402e-05 8.08749e-05 0.000103612 0.000124015 0.000136686 0.000146758 0.000155984 0.000164535 0.000172097 0.000178321 0.000182951 0.000185847 0.000186969 0.000186343 0.000184074 0.000180322 0.000175315 0.000169325 0.000162583 0.000155008 0.000145619 0.000131429 0.000110517 8.68999e-05 6.12266e-05 3.52008e-05 1.32781e-05 2.34881e-06 1.99898e-07 8.83462e-08 8.8783e-08 1.84949e-07 2.01256e-06 1.15399e-05 3.16601e-05 5.60785e-05 8.03658e-05 0.000102922 0.000122517 0.000135149 0.00014549 0.000155023 0.000163836 0.000171607 0.000177992 0.000182745 0.000185736 0.00018693 0.000186364 0.00018415 0.000180455 0.000175517 0.000169614 0.000162966 0.000155458 0.000146004 0.000131428 0.000110496 8.6865e-05 6.11862e-05 3.5167e-05 1.32631e-05 2.34609e-06 1.99333e-07 8.78762e-08 9.01383e-08 1.8552e-07 2.00072e-06 1.14758e-05 3.14838e-05 5.57279e-05 7.98169e-05 0.000102179 0.000120935 0.000133525 0.000144121 0.000153963 0.000163053 0.000171045 0.000177599 0.000182479 0.000185566 0.000186834 0.000186326 0.000184164 0.000180524 0.000175652 0.000169831 0.000163275 0.00015583 0.000146313 0.000131365 0.000110423 8.6788e-05 6.11142e-05 3.51127e-05 1.32386e-05 2.34146e-06 1.98652e-07 8.73911e-08 9.15491e-08 1.86051e-07 1.98724e-06 1.14024e-05 3.12843e-05 5.53379e-05 7.92124e-05 0.000101366 0.000119249 0.000131795 0.000142658 0.000152822 0.000162196 0.000170416 0.000177143 0.000182153 0.000185336 0.000186677 0.000186226 0.000184114 0.000180526 0.000175716 0.000169973 0.000163504 0.000156118 0.00014654 0.000131236 0.000110294 8.66667e-05 6.101e-05 3.50379e-05 1.32047e-05 2.33491e-06 1.97852e-07 8.68881e-08 9.30182e-08 1.86563e-07 1.97266e-06 1.13235e-05 3.10703e-05 5.49197e-05 7.85643e-05 0.000100493 0.000117482 0.000129981 0.000141115 0.000151607 0.000161274 0.000169727 0.000176631 0.000181772 0.000185051 0.000186463 0.000186067 0.000184001 0.000180461 0.000175709 0.000170039 0.000163651 0.00015632 0.000146679 0.000131034 0.000110102 8.64962e-05 6.08706e-05 3.49418e-05 1.31616e-05 2.32658e-06 1.96945e-07 8.63734e-08 9.45478e-08 1.87071e-07 1.95714e-06 1.12394e-05 3.08411e-05 5.44722e-05 7.78715e-05 9.95621e-05 0.000115629 0.000128083 0.000139497 0.000150327 0.000160291 0.000168977 0.000176057 0.000181328 0.000184701 0.000186181 0.000185836 0.000183814 0.000180318 0.000175619 0.000170016 0.000163703 0.00015642 0.000146717 0.000130745 0.000109836 8.62636e-05 6.06837e-05 3.48141e-05 1.31035e-05 2.31517e-06 1.95848e-07 8.58342e-08 9.61318e-08 1.87582e-07 1.94086e-06 1.11501e-05 3.05953e-05 5.39923e-05 7.713e-05 9.85698e-05 0.000113688 0.000126119 0.000137832 0.000149004 0.000159261 0.000168174 0.000175424 0.000180819 0.000184283 0.000185828 0.000185531 0.000183548 0.000180091 0.000175441 0.000169899 0.000163652 0.00015641 0.000146642 0.000130365 0.000109491 8.59678e-05 6.04505e-05 3.46575e-05 1.30328e-05 2.30124e-06 1.94599e-07 8.52751e-08 9.77678e-08 1.8812e-07 1.92416e-06 1.10563e-05 3.03311e-05 5.34726e-05 7.63242e-05 9.73346e-05 0.000111649 0.000124138 0.000136163 0.00014766 0.000158186 0.00016731 0.00017472 0.000180234 0.000183785 0.000185392 0.00018514 0.000183192 0.000179771 0.000175163 0.000169675 0.000163488 0.00015628 0.000146448 0.000129886 0.000109059 8.56001e-05 6.01622e-05 3.44646e-05 1.29452e-05 2.28391e-06 1.93135e-07 8.468e-08 9.94498e-08 1.88634e-07 1.9064e-06 1.09559e-05 3.00443e-05 5.29039e-05 7.5431e-05 9.53398e-05 0.000109515 0.000122221 0.000134532 0.000146298 0.000157056 0.000166372 0.000173936 0.000179568 0.000183205 0.000184871 0.000184659 0.000182741 0.000179349 0.000174777 0.000169335 0.000163196 0.000156011 0.000146116 0.0001293 0.000108535 8.5157e-05 5.98177e-05 3.4236e-05 1.28417e-05 2.26344e-06 1.91477e-07 8.40552e-08 1.01197e-07 1.89205e-07 1.88895e-06 1.08575e-05 2.97571e-05 5.23262e-05 7.45181e-05 9.33513e-05 0.000107364 0.000120253 0.000132836 0.00014487 0.000155865 0.000165376 0.000173093 0.00017884 0.000182557 0.000184276 0.000184098 0.000182205 0.000178835 0.000174292 0.000168887 0.000162788 0.000155619 0.000145659 0.000128608 0.000107919 8.4639e-05 5.94175e-05 3.39719e-05 1.27224e-05 2.23985e-06 1.89616e-07 8.339e-08 1.03008e-07 1.8979e-07 1.87095e-06 1.07557e-05 2.94571e-05 5.17205e-05 7.35619e-05 9.13043e-05 0.000105162 0.000118245 0.000131107 0.000143409 0.000154633 0.000164331 0.000172192 0.000178044 0.000181832 0.000183595 0.000183442 0.000181564 0.00017821 0.000173686 0.000168309 0.000162236 0.000155071 0.000145046 0.000127794 0.000107198 8.40349e-05 5.89531e-05 3.36674e-05 1.25853e-05 2.21284e-06 1.87543e-07 8.26902e-08 1.04872e-07 1.90367e-07 1.8522e-06 1.06495e-05 2.91419e-05 5.10845e-05 7.25615e-05 8.92153e-05 0.000102925 0.000116205 0.000129343 0.000141909 0.000153356 0.000163233 0.000171231 0.000177179 0.000181029 0.000182827 0.00018269 0.000180819 0.000177471 0.000172959 0.000167599 0.000161542 0.000154372 0.000144282 0.000126859 0.000106372 8.33458e-05 5.84256e-05 3.33228e-05 1.24306e-05 2.18236e-06 1.85239e-07 8.1942e-08 1.06778e-07 1.90895e-07 1.83201e-06 1.05345e-05 2.88017e-05 5.04043e-05 7.15036e-05 8.70569e-05 0.000100647 0.000114143 0.00012756 0.00014038 0.000152038 0.00016208 0.000170202 0.000176236 0.000180137 0.000181959 0.000181828 0.000179955 0.000176604 0.000172094 0.000166739 0.000160682 0.000153491 0.000143338 0.000125787 0.000105427 8.25595e-05 5.78258e-05 3.29328e-05 1.22563e-05 2.14813e-06 1.82704e-07 8.11576e-08 1.08708e-07 1.91333e-07 1.8098e-06 1.04059e-05 2.84214e-05 4.96539e-05 7.02903e-05 8.48213e-05 9.83648e-05 0.000112092 0.00012577 0.000138817 0.000150664 0.000160858 0.000169093 0.000175203 0.000179146 0.000180983 0.000180848 0.000178964 0.000175604 0.000171093 0.000165742 0.000159678 0.000152423 0.00014208 0.000124573 0.000104361 8.16747e-05 5.71523e-05 3.24955e-05 1.20609e-05 2.10978e-06 1.79894e-07 8.03157e-08 1.10672e-07 1.91774e-07 1.78724e-06 1.02718e-05 2.80094e-05 4.88176e-05 6.82106e-05 8.25223e-05 9.61905e-05 0.00011011 0.000123981 0.000137215 0.000149233 0.000159571 0.000167913 0.00017409 0.000178064 0.000179903 0.000179753 0.000177847 0.000174469 0.000169948 0.000164591 0.000158499 0.00015115 0.000140584 0.000123207 0.000103164 8.06839e-05 5.64013e-05 3.2011e-05 1.1846e-05 2.06782e-06 1.76864e-07 7.944e-08 1.12663e-07 1.92192e-07 1.76433e-06 1.01371e-05 2.75922e-05 4.79663e-05 6.61587e-05 8.02144e-05 9.3958e-05 0.000108052 0.000122126 0.000135559 0.000147755 0.000158235 0.000166676 0.000172907 0.000176894 0.000178719 0.000178539 0.0001766 0.000173195 0.000168654 0.000163275 0.00015714 0.00014969 0.000138934 0.000121701 0.000101845 7.9592e-05 5.55732e-05 3.14762e-05 1.16087e-05 2.02149e-06 1.73538e-07 7.85011e-08 1.14672e-07 1.92517e-07 1.73978e-06 9.99301e-06 2.71474e-05 4.70641e-05 6.40425e-05 7.78503e-05 9.16843e-05 0.000105966 0.000120248 0.00013388 0.000146247 0.000156861 0.000165387 0.000171655 0.000175638 0.000177429 0.000177202 0.000175217 0.00017177 0.000167192 0.000161772 0.000155572 0.000148016 0.000137116 0.000120045 0.000100397 7.83969e-05 5.46711e-05 3.08974e-05 1.13538e-05 1.97206e-06 1.70031e-07 7.75373e-08 1.16683e-07 1.92778e-07 1.71432e-06 9.84335e-06 2.66816e-05 4.61197e-05 6.18934e-05 7.54548e-05 8.93743e-05 0.000103841 0.000118329 0.000132159 0.000144695 0.000155432 0.00016403 0.000170318 0.00017428 0.000176021 0.000175731 0.000173684 0.000170185 0.000165562 0.000160092 0.00015382 0.000146159 0.000135142 0.000118248 9.88281e-05 7.7103e-05 5.36945e-05 3.02707e-05 1.10783e-05 1.91867e-06 1.66249e-07 7.65094e-08 1.18678e-07 1.9297e-07 1.68723e-06 9.68247e-06 2.61813e-05 4.51147e-05 5.9682e-05 7.30181e-05 8.70381e-05 0.000101696 0.000116391 0.000130414 0.00014311 0.000153958 0.00016261 0.000168899 0.000172818 0.00017449 0.000174119 0.000171992 0.000168423 0.000163736 0.000158196 0.000151833 0.000144069 0.000132995 0.000116297 9.7127e-05 7.57039e-05 5.2643e-05 2.96006e-05 1.07861e-05 1.86249e-06 1.62311e-07 7.54669e-08 1.20635e-07 1.93426e-07 1.66001e-06 9.50823e-06 2.56303e-05 4.40327e-05 5.74129e-05 7.0569e-05 8.47018e-05 9.95401e-05 0.000114426 0.000128628 0.000141474 0.000152423 0.000161116 0.00016739 0.000171249 0.000172834 0.00017237 0.000170153 0.000166503 0.00016174 0.000156121 0.000149666 0.000141806 0.000130699 0.000114213 9.53114e-05 7.42106e-05 5.15196e-05 2.88835e-05 1.04736e-05 1.80249e-06 1.58102e-07 7.43568e-08 1.2255e-07 1.95642e-07 1.63578e-06 9.3156e-06 2.49883e-05 4.2354e-05 5.51023e-05 6.81995e-05 8.24154e-05 9.73826e-05 0.000112425 0.000126792 0.00013978 0.000150822 0.000159545 0.000165785 0.000169564 0.000171043 0.000170468 0.00016815 0.000164407 0.000159553 0.000153835 0.00014727 0.000139317 0.00012824 0.000111986 9.33768e-05 7.26256e-05 5.03348e-05 2.81343e-05 1.01509e-05 1.7411e-06 1.53838e-07 7.32572e-08 1.24415e-07 2.00282e-07 1.61189e-06 9.10121e-06 2.42822e-05 4.03728e-05 5.28051e-05 6.58543e-05 8.01114e-05 9.51852e-05 0.000110384 0.000124925 0.000138062 0.000149191 0.000157926 0.000164109 0.000167783 0.000169134 0.00016843 0.000165997 0.000162154 0.000157209 0.000151392 0.000144722 0.000136687 0.000125657 0.00010965 9.13483e-05 7.09634e-05 4.90906e-05 2.73461e-05 9.81185e-06 1.67671e-06 1.49351e-07 7.20973e-08 1.2619e-07 2.03012e-07 1.57332e-06 8.83984e-06 2.35118e-05 3.83999e-05 5.05052e-05 6.34843e-05 7.77768e-05 9.29648e-05 0.000108333 0.000123057 0.00013634 0.000147543 0.000156266 0.000162362 0.0001659 0.000167096 0.000166242 0.000163675 0.000159718 0.000154664 0.000148734 0.000141944 0.000133835 0.000122932 0.000107192 8.92219e-05 6.92297e-05 4.78025e-05 2.65389e-05 9.46917e-06 1.61232e-06 1.44913e-07 7.09769e-08 1.27853e-07 2.03239e-07 1.52525e-06 8.55119e-06 2.26968e-05 3.64355e-05 4.82074e-05 6.10948e-05 7.5412e-05 9.07169e-05 0.000106265 0.00012118 0.000134611 0.000145878 0.000154568 0.00016055 0.000163925 0.000164943 0.000163922 0.000161213 0.000157137 0.000151977 0.000145942 0.00013905 0.000130886 0.000120115 0.000104655 8.70298e-05 6.74419e-05 4.64717e-05 2.57028e-05 9.11468e-06 1.54585e-06 1.403e-07 6.9793e-08 1.29415e-07 2.02092e-07 1.47072e-06 8.23826e-06 2.18367e-05 3.44743e-05 4.59087e-05 5.86908e-05 7.30283e-05 8.84582e-05 0.0001042 0.000119317 0.000132892 0.000144203 0.000152828 0.000158661 0.000161839 0.000162652 0.000161444 0.000158577 0.000154369 0.000149089 0.000142933 0.000135928 0.000127723 0.000117171 0.000102015 8.4758e-05 6.55999e-05 4.51124e-05 2.48593e-05 8.76233e-06 1.48058e-06 1.35825e-07 6.86697e-08 1.30856e-07 2.00051e-07 1.41083e-06 7.90196e-06 2.09326e-05 3.25194e-05 4.36108e-05 5.6275e-05 7.06285e-05 8.61895e-05 0.000102137 0.000117463 0.000131177 0.000142512 0.000151044 0.000156694 0.000159649 0.000160237 0.000158831 0.000155805 0.00015147 0.000146082 0.000139825 0.000132731 0.000124513 0.000114173 9.9332e-05 8.24518e-05 6.37295e-05 4.37288e-05 2.3998e-05 8.40298e-06 1.41412e-06 1.31209e-07 6.7473e-08 1.32179e-07 1.974e-07 1.34658e-06 7.54477e-06 1.99878e-05 3.05724e-05 4.13202e-05 5.38555e-05 6.82249e-05 8.39287e-05 0.000100095 0.000115634 0.000129473 0.0001408 0.000149196 0.000154626 0.000157326 0.000157668 0.000156052 0.000152858 0.000148392 0.000142896 0.000136535 0.000129343 0.000121067 0.000110838 9.65484e-05 8.00752e-05 6.18181e-05 4.23308e-05 2.31402e-05 8.05076e-06 1.34976e-06 1.26798e-07 6.63618e-08 1.33353e-07 1.94158e-07 1.27674e-06 7.15912e-06 1.89902e-05 2.86277e-05 3.90333e-05 5.143e-05 6.58126e-05 8.16655e-05 9.80584e-05 0.000113805 0.000127744 0.000139025 0.000147248 0.000152432 0.000154867 0.000154963 0.000153142 0.00014979 0.000145208 0.000139624 0.000133192 0.000125941 0.000117647 0.000107542 9.37533e-05 7.76891e-05 5.98957e-05 4.09201e-05 2.22717e-05 7.69439e-06 1.2846e-06 1.2224e-07 6.51516e-08 1.34384e-07 1.90499e-07 1.20299e-06 6.75066e-06 1.79504e-05 2.66956e-05 3.67686e-05 4.90228e-05 6.34197e-05 7.94298e-05 9.60519e-05 0.000111984 0.000125967 0.000137125 0.000145114 0.000150032 0.000152216 0.000152089 0.000150072 0.000146559 0.00014185 0.000136167 0.000129649 0.000122324 0.000114002 0.000104044 9.08735e-05 7.52445e-05 5.79414e-05 3.95017e-05 2.14125e-05 7.34907e-06 1.22252e-06 1.1799e-07 6.40713e-08 1.35235e-07 1.86354e-07 1.12362e-06 6.30523e-06 1.67939e-05 2.47698e-05 3.45293e-05 4.6625e-05 6.1021e-05 7.7184e-05 9.40289e-05 0.000110111 0.00012406 0.000134993 0.000142637 0.000147355 0.000149357 0.000149072 0.000146908 0.000143258 0.000138437 0.000132671 0.000126098 0.000118743 0.000110441 0.000100649 8.80159e-05 7.28151e-05 5.599e-05 3.8073e-05 2.0538e-05 6.99706e-06 1.15949e-06 1.13603e-07 6.28998e-08 1.35918e-07 1.82076e-07 1.04369e-06 5.83935e-06 1.52926e-05 2.28872e-05 3.23637e-05 4.42685e-05 5.86467e-05 7.49782e-05 9.20788e-05 0.000108303 0.000122006 0.000131858 0.000138567 0.000143293 0.000146107 0.000146125 0.000143786 0.000139885 0.000134866 0.000128972 0.000122318 0.000114914 0.000106625 9.70304e-05 8.5077e-05 7.0336e-05 5.40192e-05 3.6651e-05 1.9684e-05 6.66005e-06 1.10011e-06 1.09589e-07 6.18962e-08 1.3642e-07 1.77652e-07 9.64441e-07 5.37766e-06 1.38757e-05 2.10493e-05 3.01898e-05 4.18805e-05 5.62435e-05 7.27674e-05 9.0129e-05 0.000106368 0.000119284 0.000127773 0.00013428 0.000138844 0.000141549 0.000142502 0.000140726 0.000136674 0.000131391 0.000125315 0.000118584 0.00011118 0.000102966 9.35862e-05 8.21849e-05 6.78914e-05 5.20655e-05 3.52281e-05 1.88205e-05 6.3184e-06 1.03976e-06 1.0537e-07 6.07393e-08 1.36776e-07 1.73183e-07 8.86605e-07 4.9199e-06 1.25098e-05 1.92631e-05 2.80645e-05 3.95473e-05 5.39179e-05 7.0659e-05 8.8233e-05 0.000104179 0.000115326 0.000123558 0.000129833 0.000134206 0.000136778 0.000137667 0.000136948 0.000133322 0.00012783 0.000121493 0.000114604 0.000107148 9.89871e-05 8.98619e-05 7.91903e-05 6.53927e-05 5.00968e-05 3.3822e-05 1.7988e-05 5.99707e-06 9.84112e-07 1.01613e-07 5.97822e-08 1.36912e-07 1.68544e-07 8.08879e-07 4.45981e-06 1.12022e-05 1.75168e-05 2.59446e-05 3.71868e-05 5.15481e-05 6.84934e-05 8.61669e-05 0.000101309 0.000111202 0.000119166 0.0001252 0.000129382 0.000131826 0.000132661 0.000131962 0.000129709 0.00012435 0.000117819 0.000110781 0.000103312 9.5268e-05 8.63791e-05 7.60762e-05 6.29463e-05 4.81582e-05 3.24217e-05 1.71483e-05 5.67161e-06 9.27423e-07 9.75958e-08 5.86207e-08 1.36883e-07 1.64018e-07 7.35557e-07 4.02003e-06 9.96953e-06 1.58437e-05 2.38888e-05 3.48927e-05 4.92686e-05 6.64211e-05 8.39828e-05 9.74025e-05 0.000106986 0.000114646 0.000120408 0.000124372 0.000126669 0.000127438 0.000126754 0.00012467 0.000120426 0.000113938 0.000106742 9.92023e-05 9.12173e-05 8.25177e-05 7.26264e-05 6.04389e-05 4.62169e-05 3.10605e-05 1.63598e-05 5.37558e-06 8.77127e-07 9.41941e-08 5.77266e-08 1.36622e-07 1.5933e-07 6.62645e-07 3.58105e-06 8.79214e-06 1.42126e-05 2.18428e-05 3.25677e-05 4.69274e-05 6.42686e-05 8.16977e-05 9.33016e-05 0.000102563 0.000109914 0.000115406 0.000119162 0.00012133 0.00012206 0.000121421 0.000119456 0.00011623 0.000110131 0.000102892 9.53378e-05 8.74558e-05 7.89759e-05 6.94599e-05 5.79769e-05 4.42801e-05 2.96733e-05 1.55393e-05 5.06509e-06 8.23892e-07 9.03379e-08 5.65413e-08 1.36169e-07 1.54869e-07 5.96529e-07 3.17597e-06 7.70654e-06 1.26764e-05 1.98854e-05 3.0338e-05 4.47092e-05 6.21126e-05 7.83919e-05 8.91186e-05 9.80136e-05 0.000105015 0.000110206 0.000113736 0.000115765 0.000116454 0.000115864 0.000114022 0.000110986 0.000105843 9.87287e-05 9.11436e-05 8.33117e-05 7.50261e-05 6.59547e-05 5.54868e-05 4.23819e-05 2.83662e-05 1.47973e-05 4.79215e-06 7.78055e-07 8.73975e-08 5.57177e-08 1.35464e-07 1.5024e-07 5.31035e-07 2.77548e-06 6.67701e-06 1.11871e-05 1.79415e-05 2.80756e-05 4.24218e-05 5.97976e-05 7.43118e-05 8.46626e-05 9.31777e-05 9.98301e-05 0.000104736 0.000108064 0.000109989 0.000110679 0.000110185 0.000108513 0.000105711 0.000101644 9.47686e-05 8.72577e-05 7.95588e-05 7.15165e-05 6.28344e-05 5.29985e-05 4.04405e-05 2.69768e-05 1.39834e-05 4.49599e-06 7.32119e-07 8.55828e-08 5.447e-08 1.34553e-07 1.45927e-07 4.74185e-07 2.42111e-06 5.75512e-06 9.82e-06 1.61236e-05 2.59547e-05 4.03333e-05 5.77311e-05 7.01388e-05 8.00571e-05 8.814e-05 9.44041e-05 9.90003e-05 0.000102119 0.000103946 0.000104652 0.000104275 0.000102795 0.000100248 9.66418e-05 9.03255e-05 8.2951e-05 7.54031e-05 6.76203e-05 5.93254e-05 5.00722e-05 3.86047e-05 2.57563e-05 1.33262e-05 4.27509e-06 7.00481e-07 8.47573e-08 5.37404e-08 1.33391e-07 1.4143e-07 4.1764e-07 2.07183e-06 4.88432e-06 8.49768e-06 1.4315e-05 2.37845e-05 3.80608e-05 5.45429e-05 6.55898e-05 7.50473e-05 8.26894e-05 8.85763e-05 9.28919e-05 9.58443e-05 9.76275e-05 9.84137e-05 9.82192e-05 9.69951e-05 9.47626e-05 9.15161e-05 8.61684e-05 7.91086e-05 7.17807e-05 6.42814e-05 5.63416e-05 4.75261e-05 3.67144e-05 2.4422e-05 1.2566e-05 4.0089e-06 6.58773e-07 8.21474e-08 5.23906e-08 1.32027e-07 1.37324e-07 3.71175e-07 1.7796e-06 4.13754e-06 7.33239e-06 1.26918e-05 2.18585e-05 3.60713e-05 5.04616e-05 6.09636e-05 6.98638e-05 7.69868e-05 8.24439e-05 8.64507e-05 8.92263e-05 9.09726e-05 9.18614e-05 9.18777e-05 9.09356e-05 8.90393e-05 8.61627e-05 8.14364e-05 7.46407e-05 6.75558e-05 6.03601e-05 5.28176e-05 4.46086e-05 3.49785e-05 2.33134e-05 1.19931e-05 3.81822e-06 6.29159e-07 8.04311e-08 5.17409e-08 1.30451e-07 1.32992e-07 3.23672e-07 1.48681e-06 3.42755e-06 6.20285e-06 1.10712e-05 1.98846e-05 3.40859e-05 4.59303e-05 5.58371e-05 6.41589e-05 7.07723e-05 7.58362e-05 7.95903e-05 8.2254e-05 8.40345e-05 8.51058e-05 8.54135e-05 8.48342e-05 8.33509e-05 8.08997e-05 7.7289e-05 7.08706e-05 6.40602e-05 5.71879e-05 5.00248e-05 4.22564e-05 3.32116e-05 2.20729e-05 1.12885e-05 3.57087e-06 5.88532e-07 7.70492e-08 5.02348e-08 1.28649e-07 1.29093e-07 2.87504e-07 1.25811e-06 2.84473e-06 5.24245e-06 9.66589e-06 1.81618e-05 3.13708e-05 4.15107e-05 5.06966e-05 5.83202e-05 6.43353e-05 6.89532e-05 7.24298e-05 7.49734e-05 7.67671e-05 7.80017e-05 7.86072e-05 7.83895e-05 7.72767e-05 7.52064e-05 7.21742e-05 6.61945e-05 5.96507e-05 5.31136e-05 4.63914e-05 3.92547e-05 3.13536e-05 2.08966e-05 1.06765e-05 3.36462e-06 5.55434e-07 7.47914e-08 4.95276e-08 1.26638e-07 1.24881e-07 2.48479e-07 1.01878e-06 2.2749e-06 4.2785e-06 8.17964e-06 1.61661e-05 2.72289e-05 3.65504e-05 4.49606e-05 5.18944e-05 5.73695e-05 6.16328e-05 6.49413e-05 6.74838e-05 6.93996e-05 7.08866e-05 7.1871e-05 7.2065e-05 7.14069e-05 6.98572e-05 6.73884e-05 6.28465e-05 5.66576e-05 5.03447e-05 4.39365e-05 3.71989e-05 2.97462e-05 1.98757e-05 1.01068e-05 3.16559e-06 5.21742e-07 7.14638e-08 4.78516e-08 1.24313e-07 1.21175e-07 2.23591e-07 8.57369e-07 1.84294e-06 3.49502e-06 6.9095e-06 1.4494e-05 2.34079e-05 3.17996e-05 3.93005e-05 4.5425e-05 5.02679e-05 5.41058e-05 5.71875e-05 5.96905e-05 6.17373e-05 6.34087e-05 6.46086e-05 6.5094e-05 6.47877e-05 6.36323e-05 6.15874e-05 5.79521e-05 5.21184e-05 4.61593e-05 4.02092e-05 3.40219e-05 2.72367e-05 1.83063e-05 9.25839e-06 2.88028e-06 4.76686e-07 6.80583e-08 4.66659e-08 1.21722e-07 1.17068e-07 1.94727e-07 6.77099e-07 1.3959e-06 2.62418e-06 5.26943e-06 1.16457e-05 1.85642e-05 2.58869e-05 3.2555e-05 3.80623e-05 4.24913e-05 4.61044e-05 4.91362e-05 5.17678e-05 5.41112e-05 5.61509e-05 5.77415e-05 5.86799e-05 5.89105e-05 5.83627e-05 5.69749e-05 5.46747e-05 4.9754e-05 4.39507e-05 3.81472e-05 3.2201e-05 2.57916e-05 1.76563e-05 8.93433e-06 2.76769e-06 4.55391e-07 6.52779e-08 4.49144e-08 1.18707e-07 1.1363e-07 1.86024e-07 6.12187e-07 1.16382e-06 2.05462e-06 3.95982e-06 8.80454e-06 1.40111e-05 2.0007e-05 2.56972e-05 3.05386e-05 3.45357e-05 3.7886e-05 4.08078e-05 4.35088e-05 4.60294e-05 4.8308e-05 5.01873e-05 5.14093e-05 5.18923e-05 5.16387e-05 5.05835e-05 4.86616e-05 4.4967e-05 3.96973e-05 3.4383e-05 2.89759e-05 2.31766e-05 1.55197e-05 7.73014e-06 2.36833e-06 3.94127e-07 6.0121e-08 4.27397e-08 1.15126e-07 1.09345e-07 1.71905e-07 5.31087e-07 9.49001e-07 1.51936e-06 2.5605e-06 4.97245e-06 8.16475e-06 1.19665e-05 1.6287e-05 2.05828e-05 2.45556e-05 2.81212e-05 3.13934e-05 3.45378e-05 3.75559e-05 4.03766e-05 4.28708e-05 4.48234e-05 4.6004e-05 4.63212e-05 4.58555e-05 4.45556e-05 4.20666e-05 3.70314e-05 3.18256e-05 2.663e-05 2.12382e-05 1.48445e-05 7.4414e-06 2.27864e-06 3.7657e-07 5.76578e-08 4.12255e-08 1.10434e-07 1.05041e-07 1.7723e-07 5.70772e-07 1.04488e-06 1.61008e-06 2.46239e-06 3.9618e-06 5.40886e-06 6.96629e-06 9.01879e-06 1.16536e-05 1.48264e-05 1.83359e-05 2.18913e-05 2.54611e-05 2.89688e-05 3.22947e-05 3.53074e-05 3.78494e-05 3.97325e-05 4.07147e-05 4.06434e-05 3.96675e-05 3.78386e-05 3.42187e-05 2.94963e-05 2.47015e-05 1.97393e-05 1.32737e-05 6.53598e-06 1.97308e-06 3.2897e-07 5.30795e-08 3.89549e-08 1.03309e-07 9.88159e-08 1.79014e-07 5.89695e-07 1.13185e-06 1.76508e-06 2.65704e-06 3.83129e-06 4.55768e-06 5.26797e-06 6.02063e-06 6.90696e-06 8.07713e-06 9.74578e-06 1.21337e-05 1.53065e-05 1.89501e-05 2.27132e-05 2.63746e-05 2.96689e-05 3.23608e-05 3.42136e-05 3.49237e-05 3.43292e-05 3.26754e-05 2.90164e-05 2.47334e-05 2.04584e-05 1.60773e-05 1.10285e-05 5.48032e-06 1.70561e-06 2.94093e-07 5.04324e-08 3.83738e-08 9.56355e-08 9.41372e-08 1.97988e-07 6.94043e-07 1.63861e-06 2.68169e-06 3.56704e-06 4.26754e-06 4.8401e-06 5.34104e-06 5.81584e-06 6.30459e-06 6.84847e-06 7.49592e-06 8.31612e-06 9.43436e-06 1.10928e-05 1.36388e-05 1.72722e-05 2.16116e-05 2.60735e-05 3.0169e-05 3.34607e-05 3.55543e-05 3.48824e-05 3.22764e-05 2.82879e-05 2.36702e-05 1.8842e-05 1.38379e-05 6.77096e-06 1.95811e-06 3.10722e-07 5.1776e-08 3.94583e-08 9.14807e-08 9.57005e-08 2.606e-07 9.74287e-07 2.27509e-06 3.66266e-06 4.7742e-06 5.60998e-06 6.29263e-06 6.92654e-06 7.58955e-06 8.35278e-06 9.2928e-06 1.04864e-05 1.19834e-05 1.37709e-05 1.57514e-05 1.77431e-05 1.95418e-05 2.10727e-05 2.22291e-05 2.29015e-05 2.29965e-05 2.24691e-05 2.13273e-05 1.96356e-05 1.74779e-05 1.49355e-05 1.20111e-05 8.63996e-06 4.90738e-06 1.73096e-06 3.10011e-07 5.13e-08 3.79709e-08 9.45826e-08 1.0859e-07 4.12574e-07 1.5621e-06 3.22323e-06 4.49664e-06 5.34486e-06 6.03451e-06 6.71799e-06 7.46891e-06 8.34062e-06 9.39906e-06 1.07431e-05 1.25141e-05 1.48859e-05 1.80284e-05 2.20559e-05 2.6982e-05 3.26858e-05 3.88429e-05 4.49921e-05 5.05087e-05 5.46465e-05 5.66833e-05 5.60781e-05 5.21071e-05 3.69379e-05 2.58315e-05 1.81461e-05 1.22322e-05 5.49269e-06 1.26022e-06 1.88185e-07 3.94749e-08 3.11572e-08 7.22762e-08 1.48441e-07 1.19559e-06 3.7604e-06 4.75649e-06 5.13882e-06 5.63891e-06 6.23992e-06 6.90021e-06 7.61116e-06 8.37357e-06 9.18795e-06 1.00508e-05 1.09512e-05 1.18663e-05 1.27552e-05 1.35549e-05 1.418e-05 1.45201e-05 1.4571e-05 1.43097e-05 1.37031e-05 1.27607e-05 1.15176e-05 1.00275e-05 8.35445e-06 6.57206e-06 4.77814e-06 3.07628e-06 1.64256e-06 6.55403e-07 1.79834e-07 3.73217e-08 1.26939e-08 1.05743e-08 3.49512e-08 2.02031e-06 2.4127e-06 2.62563e-06 2.82587e-06 2.97239e-06 3.0723e-06 3.13851e-06 3.17776e-06 3.19448e-06 3.19208e-06 3.17332e-06 3.14045e-06 3.09532e-06 3.03937e-06 2.97366e-06 2.89876e-06 2.8146e-06 2.71961e-06 2.61464e-06 2.4986e-06 2.36892e-06 2.22324e-06 2.0587e-06 1.87245e-06 1.6621e-06 1.4268e-06 1.16934e-06 8.98955e-07 6.36466e-07 4.11707e-07 2.5172e-07 1.52946e-07 8.99455e-08 1.58853e-09 5.4805e-11 5.18721e-09 9.71222e-09 1.51088e-08 2.16452e-08 2.95707e-08 3.90838e-08 5.03085e-08 6.32834e-08 7.79594e-08 9.42044e-08 1.11813e-07 1.30519e-07 1.50012e-07 1.69946e-07 1.8995e-07 2.09639e-07 2.2861e-07 2.46449e-07 2.62732e-07 2.77028e-07 2.88895e-07 2.97887e-07 3.03585e-07 3.05589e-07 3.03536e-07 2.97134e-07 2.86221e-07 2.70857e-07 2.51449e-07 2.28936e-07 2.04932e-07 1.79473e-07 1.41696e-07 3.45944e-09 1.39439e-10 1.43394e-10 3.34476e-10 1.63146e-09 6.26037e-09 1.77843e-08 4.07678e-08 8.04025e-08 1.42061e-07 2.30651e-07 3.49756e-07 5.00649e-07 6.81302e-07 8.85519e-07 1.10243e-06 1.31672e-06 1.50999e-06 1.6634e-06 1.76136e-06 1.79501e-06 1.76423e-06 1.67509e-06 1.54331e-06 1.38457e-06 1.21455e-06 1.04627e-06 8.88871e-07 7.46598e-07 6.15826e-07 4.76272e-07 2.96124e-07 1.16559e-07 2.8997e-08 1.04659e-08 9.70991e-09 3.18179e-10 3.49151e-10 1.07776e-09 5.32609e-09 1.8767e-08 4.87544e-08 1.02592e-07 1.86083e-07 3.0216e-07 4.49837e-07 6.24171e-07 8.175e-07 1.02143e-06 1.22876e-06 1.43465e-06 1.63705e-06 1.83584e-06 2.02997e-06 2.21752e-06 2.3942e-06 2.55107e-06 2.67354e-06 2.7443e-06 2.74555e-06 2.66351e-06 2.49326e-06 2.24084e-06 1.9147e-06 1.50039e-06 9.66645e-07 4.28439e-07 1.20768e-07 2.7964e-08 1.53067e-08 1.61629e-08 6.60129e-10 7.13324e-10 2.01009e-09 9.74477e-09 3.53686e-08 9.64686e-08 2.14853e-07 4.12001e-07 7.01123e-07 1.0794e-06 1.52612e-06 2.00829e-06 2.49031e-06 2.94273e-06 3.34761e-06 3.70009e-06 4.00688e-06 4.28087e-06 4.53005e-06 4.7651e-06 4.98357e-06 5.16999e-06 5.29762e-06 5.33294e-06 5.24086e-06 4.988e-06 4.53769e-06 3.83189e-06 2.74658e-06 1.49095e-06 5.99199e-07 1.53543e-07 3.4569e-08 1.99512e-08 2.1101e-08 1.30435e-09 1.41805e-09 4.18793e-09 2.12585e-08 8.04229e-08 2.28742e-07 5.28081e-07 1.03374e-06 1.75852e-06 2.65222e-06 3.61921e-06 4.55674e-06 5.38462e-06 6.05616e-06 6.55738e-06 6.90018e-06 7.11509e-06 7.24075e-06 7.30741e-06 7.35784e-06 7.41434e-06 7.47922e-06 7.53403e-06 7.54181e-06 7.44865e-06 7.17755e-06 6.60826e-06 5.56598e-06 3.82622e-06 2.00872e-06 7.95904e-07 2.02168e-07 4.3792e-08 2.41218e-08 2.52482e-08 2.29002e-09 2.53469e-09 8.48331e-09 4.61508e-08 1.81577e-07 5.3314e-07 1.24947e-06 2.41769e-06 3.96663e-06 5.69378e-06 7.38114e-06 8.87182e-06 1.00806e-05 1.09771e-05 1.15677e-05 1.18838e-05 1.19733e-05 1.18923e-05 1.16904e-05 1.14284e-05 1.11487e-05 1.08735e-05 1.06022e-05 1.03081e-05 9.9319e-06 9.36424e-06 8.42035e-06 6.87669e-06 4.50277e-06 2.40247e-06 9.5201e-07 2.46635e-07 5.26419e-08 2.76381e-08 2.86135e-08 3.22505e-09 3.6758e-09 1.42739e-08 8.19956e-08 3.27542e-07 9.58284e-07 2.1821e-06 4.01365e-06 6.21767e-06 8.48396e-06 1.05815e-05 1.23838e-05 1.38384e-05 1.49355e-05 1.56882e-05 1.61246e-05 1.62833e-05 1.62073e-05 1.59354e-05 1.49141e-05 1.38893e-05 1.31939e-05 1.2758e-05 1.25103e-05 1.22825e-05 1.16326e-05 1.01659e-05 7.67276e-06 4.84198e-06 2.6898e-06 1.08935e-06 2.87187e-07 6.07253e-08 3.06856e-08 3.15111e-08 3.96568e-09 4.61843e-09 1.96375e-08 1.15376e-07 4.60352e-07 1.33028e-06 2.95829e-06 5.28631e-06 7.97914e-06 1.06769e-05 1.31396e-05 1.51311e-05 1.67517e-05 1.82184e-05 1.92517e-05 1.9845e-05 2.01164e-05 2.0101e-05 1.98294e-05 1.8387e-05 1.69159e-05 1.57664e-05 1.48628e-05 1.41197e-05 1.33749e-05 1.23055e-05 1.04974e-05 7.88701e-06 5.13812e-06 2.97272e-06 1.24371e-06 3.32165e-07 6.92736e-08 3.36694e-08 3.43455e-08 4.6015e-09 5.47801e-09 2.52048e-08 1.50947e-07 6.0397e-07 1.73512e-06 3.79573e-06 6.63418e-06 9.80701e-06 1.29074e-05 1.55093e-05 1.74827e-05 1.92828e-05 2.10174e-05 2.26537e-05 2.34112e-05 2.37581e-05 2.37693e-05 2.34755e-05 2.20147e-05 2.01815e-05 1.85651e-05 1.71416e-05 1.58433e-05 1.45239e-05 1.29224e-05 1.07697e-05 8.09905e-06 5.41519e-06 3.24499e-06 1.40793e-06 3.79756e-07 7.81319e-08 3.67121e-08 3.72357e-08 5.14397e-09 6.25065e-09 3.0632e-08 1.85521e-07 7.40816e-07 2.1094e-06 4.54533e-06 7.81811e-06 1.14149e-05 1.49042e-05 1.76542e-05 1.98575e-05 2.18845e-05 2.38605e-05 2.58102e-05 2.70564e-05 2.75169e-05 2.75736e-05 2.72543e-05 2.57814e-05 2.36456e-05 2.15718e-05 1.95785e-05 1.76511e-05 1.57058e-05 1.35712e-05 1.10963e-05 8.35333e-06 5.70566e-06 3.52448e-06 1.59475e-06 4.33958e-07 8.79074e-08 3.98686e-08 4.0196e-08 5.63566e-09 6.98008e-09 3.60346e-08 2.20082e-07 8.77666e-07 2.48278e-06 5.28865e-06 8.98673e-06 1.30018e-05 1.68838e-05 1.99726e-05 2.24889e-05 2.48177e-05 2.70755e-05 2.91283e-05 3.06833e-05 3.13652e-05 3.14983e-05 3.11789e-05 2.96908e-05 2.73693e-05 2.4854e-05 2.22563e-05 1.96354e-05 1.70093e-05 1.43204e-05 1.15134e-05 8.66459e-06 6.01589e-06 3.81162e-06 1.79999e-06 4.94086e-07 9.85455e-08 4.31351e-08 4.32142e-08 6.1535e-09 7.7821e-09 4.23115e-08 2.60479e-07 1.03772e-06 2.91613e-06 6.13762e-06 1.02997e-05 1.47617e-05 1.90578e-05 2.25684e-05 2.54409e-05 2.81062e-05 3.05823e-05 3.2638e-05 3.43287e-05 3.54427e-05 3.56576e-05 3.52289e-05 3.36201e-05 3.12981e-05 2.83814e-05 2.51801e-05 2.18444e-05 1.85082e-05 1.52387e-05 1.20655e-05 9.05834e-06 6.36076e-06 4.11263e-06 2.02393e-06 5.60505e-07 1.10101e-07 4.64707e-08 4.62339e-08 6.67818e-09 8.6164e-09 4.90419e-08 3.03817e-07 1.2083e-06 3.37096e-06 7.01227e-06 1.16365e-05 1.65484e-05 2.12721e-05 2.53002e-05 2.85747e-05 3.16063e-05 3.42581e-05 3.65494e-05 3.84355e-05 3.97531e-05 4.00703e-05 3.96028e-05 3.79606e-05 3.54526e-05 3.21889e-05 2.83818e-05 2.43277e-05 2.02702e-05 1.63934e-05 1.28039e-05 9.57018e-06 6.7629e-06 4.43813e-06 2.26695e-06 6.33293e-07 1.22558e-07 4.98319e-08 4.92069e-08 7.24245e-09 9.54426e-09 5.68339e-08 3.54134e-07 1.40547e-06 3.88881e-06 7.98653e-06 1.3097e-05 1.84725e-05 2.36315e-05 2.82046e-05 3.1871e-05 3.5191e-05 3.8154e-05 4.0743e-05 4.28621e-05 4.42651e-05 4.46996e-05 4.43754e-05 4.27058e-05 3.99718e-05 3.62964e-05 3.18973e-05 2.71273e-05 2.23448e-05 1.78355e-05 1.37751e-05 1.02398e-05 7.25284e-06 4.80665e-06 2.5346e-06 7.13876e-07 1.36081e-07 5.31933e-08 5.20986e-08 7.83188e-09 1.05438e-08 6.55242e-08 4.10328e-07 1.62416e-06 4.45326e-06 9.0265e-06 1.4633e-05 2.04797e-05 2.6082e-05 3.11975e-05 3.53133e-05 3.8924e-05 4.21951e-05 4.50808e-05 4.74335e-05 4.88959e-05 4.94541e-05 4.92357e-05 4.76951e-05 4.47618e-05 4.0669e-05 3.56943e-05 3.02293e-05 2.4731e-05 1.95751e-05 1.49982e-05 1.10927e-05 7.85643e-06 5.23718e-06 2.83419e-06 8.04102e-07 1.50881e-07 5.65452e-08 5.48906e-08 8.45483e-09 1.16342e-08 7.53313e-08 4.73822e-07 1.86946e-06 5.0749e-06 1.01473e-05 1.62613e-05 2.25833e-05 2.86275e-05 3.41567e-05 3.88333e-05 4.2793e-05 4.63547e-05 4.95038e-05 5.20632e-05 5.35935e-05 5.42673e-05 5.40861e-05 5.27112e-05 4.96352e-05 4.51761e-05 3.96675e-05 3.3565e-05 2.73836e-05 2.15874e-05 1.64679e-05 1.21404e-05 8.59386e-06 5.74929e-06 3.17644e-06 9.07204e-07 1.67395e-07 5.98985e-08 5.75734e-08 9.10403e-09 1.28072e-08 8.6238e-08 5.4451e-07 2.14036e-06 5.74863e-06 1.13376e-05 1.79669e-05 2.47683e-05 3.12571e-05 3.72015e-05 4.24616e-05 4.67672e-05 5.0593e-05 5.39635e-05 5.66737e-05 5.83253e-05 5.91001e-05 5.89421e-05 5.76243e-05 5.44147e-05 4.96478e-05 4.36822e-05 3.70154e-05 3.02188e-05 2.38148e-05 1.81518e-05 1.33726e-05 9.47083e-06 6.35505e-06 3.56981e-06 1.02615e-06 1.86055e-07 6.32713e-08 6.0145e-08 9.78252e-09 1.40692e-08 9.83386e-08 6.23008e-07 2.43863e-06 6.47623e-06 1.25979e-05 1.97492e-05 2.70328e-05 3.39662e-05 4.03217e-05 4.59947e-05 5.08113e-05 5.48915e-05 5.84359e-05 6.12681e-05 6.30737e-05 6.39321e-05 6.37801e-05 6.23701e-05 5.9007e-05 5.39763e-05 4.76306e-05 4.04867e-05 3.31566e-05 2.61963e-05 2.00092e-05 1.47697e-05 1.04849e-05 7.06174e-06 4.02183e-06 1.16425e-06 2.07398e-07 6.6692e-08 6.26067e-08 1.04859e-08 1.54135e-08 1.11635e-07 7.09377e-07 2.76384e-06 7.25426e-06 1.39208e-05 2.15982e-05 2.93649e-05 3.67411e-05 4.35029e-05 4.95477e-05 5.48283e-05 5.9233e-05 6.2921e-05 6.58785e-05 6.78218e-05 6.87469e-05 6.85849e-05 6.69233e-05 6.33721e-05 5.81068e-05 5.14462e-05 4.39065e-05 3.6118e-05 2.86708e-05 2.19946e-05 1.63031e-05 1.16232e-05 7.86808e-06 4.53446e-06 1.32341e-06 2.31811e-07 7.01834e-08 6.49606e-08 1.12154e-08 1.68339e-08 1.26107e-07 8.03554e-07 3.11522e-06 8.07889e-06 1.5299e-05 2.35043e-05 3.17535e-05 3.95696e-05 4.67315e-05 5.31374e-05 5.87395e-05 6.35128e-05 6.74068e-05 7.04499e-05 7.25376e-05 7.3513e-05 7.32495e-05 7.12719e-05 6.7516e-05 6.20347e-05 5.51081e-05 4.72418e-05 3.90696e-05 3.1201e-05 2.40749e-05 1.79482e-05 1.28719e-05 8.76936e-06 5.10703e-06 1.50481e-06 2.59602e-07 7.37668e-08 6.72106e-08 1.19681e-08 1.83055e-08 1.41624e-07 9.05029e-07 3.49087e-06 8.945e-06 1.67252e-05 2.54599e-05 3.41912e-05 4.24439e-05 4.99987e-05 5.67543e-05 6.26617e-05 6.76937e-05 7.18258e-05 7.49829e-05 7.70959e-05 7.80615e-05 7.75471e-05 7.53954e-05 7.1459e-05 6.57733e-05 5.86129e-05 5.04734e-05 4.19795e-05 3.37421e-05 2.62185e-05 1.96816e-05 1.42157e-05 9.75794e-06 5.73503e-06 1.70821e-06 2.90878e-07 7.74518e-08 6.93585e-08 1.27456e-08 1.9784e-08 1.57955e-07 1.01307e-06 3.88904e-06 9.8493e-06 1.8196e-05 2.74626e-05 3.66761e-05 4.53623e-05 5.33032e-05 6.0397e-05 6.65937e-05 7.18638e-05 7.61778e-05 7.94627e-05 8.15111e-05 8.23371e-05 8.16658e-05 7.93395e-05 7.52162e-05 6.93352e-05 6.19687e-05 5.35996e-05 4.48364e-05 3.6282e-05 2.8405e-05 2.14837e-05 1.564e-05 1.08245e-05 6.41226e-06 1.93254e-06 3.25615e-07 8.12417e-08 7.14066e-08 1.35459e-08 2.1177e-08 1.74727e-07 1.1269e-06 4.30901e-06 1.07919e-05 1.97135e-05 2.95164e-05 3.92132e-05 4.83304e-05 5.66505e-05 6.40716e-05 7.05427e-05 7.60325e-05 8.05068e-05 8.38715e-05 8.58326e-05 8.64952e-05 8.56389e-05 8.31183e-05 7.8804e-05 7.27379e-05 6.51886e-05 5.66255e-05 4.76368e-05 3.8811e-05 3.06207e-05 2.33413e-05 1.71335e-05 1.19611e-05 7.13172e-06 2.17602e-06 3.63654e-07 8.51308e-08 7.33558e-08 1.43705e-08 2.23828e-08 1.91833e-07 1.24764e-06 4.75577e-06 1.17818e-05 2.12884e-05 3.16305e-05 4.18093e-05 5.13522e-05 6.00427e-05 6.77785e-05 7.45074e-05 8.01958e-05 8.48029e-05 8.82037e-05 9.00577e-05 9.05428e-05 8.94866e-05 8.676e-05 8.22506e-05 7.60078e-05 6.82946e-05 5.95651e-05 5.03843e-05 4.13209e-05 3.28413e-05 2.52389e-05 1.8684e-05 1.31581e-05 7.88508e-06 2.43612e-06 4.04703e-07 8.9105e-08 7.52054e-08 1.52199e-08 2.36662e-08 2.10943e-07 1.38202e-06 5.24366e-06 1.28358e-05 2.29336e-05 3.38125e-05 4.44667e-05 5.44266e-05 6.34774e-05 7.15165e-05 7.84908e-05 8.43644e-05 8.90896e-05 9.2461e-05 9.41825e-05 9.44813e-05 9.32205e-05 9.02866e-05 8.55844e-05 7.91729e-05 7.13106e-05 6.24348e-05 5.30869e-05 4.38133e-05 3.50722e-05 2.71698e-05 2.02833e-05 1.44083e-05 8.66497e-06 2.71028e-06 4.48429e-07 9.3146e-08 7.6954e-08 1.61013e-08 2.56168e-08 2.34536e-07 1.5362e-06 5.77884e-06 1.39525e-05 2.46396e-05 3.60474e-05 4.7168e-05 5.75354e-05 6.69358e-05 7.52664e-05 8.24724e-05 8.85155e-05 9.33475e-05 9.66328e-05 9.82002e-05 9.83077e-05 9.68437e-05 9.37066e-05 8.88175e-05 8.22463e-05 7.42481e-05 6.52427e-05 5.57475e-05 4.62864e-05 3.73071e-05 2.91256e-05 2.19226e-05 1.57034e-05 9.4633e-06 2.99536e-06 4.94381e-07 9.7228e-08 7.85984e-08 1.7011e-08 2.76783e-08 2.59244e-07 1.69686e-06 6.32999e-06 1.50863e-05 2.63587e-05 3.82926e-05 4.98771e-05 6.06485e-05 7.03936e-05 7.90089e-05 8.64384e-05 9.26408e-05 9.75701e-05 0.000100711 0.000102104 0.00010202 0.000100358 9.70269e-05 9.19618e-05 8.52427e-05 7.71215e-05 6.80007e-05 5.8374e-05 4.87434e-05 3.95456e-05 3.11033e-05 2.35973e-05 1.70381e-05 1.02741e-05 3.28884e-06 5.42173e-07 1.01327e-07 8.01352e-08 1.79509e-08 2.98427e-08 2.85483e-07 1.86702e-06 6.90532e-06 1.62491e-05 2.81027e-05 4.05568e-05 5.25989e-05 6.37672e-05 7.38489e-05 8.27401e-05 9.03839e-05 9.67363e-05 0.000101753 0.000104676 0.00010588 0.000105609 0.000103761 0.000100248 9.502e-05 8.81653e-05 7.99335e-05 7.07109e-05 6.09672e-05 5.11828e-05 4.17821e-05 3.30897e-05 2.52999e-05 1.8406e-05 1.10908e-05 3.58774e-06 5.9132e-07 1.05412e-07 8.15596e-08 1.89201e-08 3.21311e-08 3.13574e-07 2.04842e-06 7.50964e-06 1.74501e-05 2.98845e-05 4.28533e-05 5.53443e-05 6.68986e-05 7.73045e-05 8.6458e-05 9.43016e-05 0.000100792 0.000105881 0.000108513 0.00010953 0.000109085 0.00010706 0.000103379 9.80017e-05 9.10254e-05 8.26954e-05 7.33821e-05 6.3532e-05 5.36055e-05 4.4015e-05 3.50864e-05 2.70262e-05 1.98022e-05 1.19083e-05 3.88981e-06 6.4145e-07 1.09458e-07 8.28681e-08 1.99202e-08 3.45293e-08 3.43224e-07 2.23888e-06 8.1342e-06 1.8671e-05 3.16791e-05 4.51553e-05 5.80879e-05 7.00205e-05 8.07421e-05 9.01487e-05 9.81821e-05 0.0001048 0.000109741 0.000112211 0.00011306 0.000112445 0.000110256 0.000106422 0.000100913 9.38291e-05 8.54119e-05 7.6017e-05 6.60699e-05 5.60111e-05 4.62425e-05 3.70911e-05 2.8772e-05 2.1222e-05 1.27219e-05 4.1927e-06 6.92148e-07 1.13438e-07 8.40583e-08 2.09479e-08 3.70447e-08 3.74654e-07 2.43981e-06 8.78257e-06 1.99171e-05 3.3492e-05 4.7466e-05 6.08291e-05 7.31283e-05 8.41538e-05 9.38019e-05 0.000102014 0.000108749 0.000113477 0.000115768 0.000116455 0.000115685 0.000113351 0.000109382 0.000103757 9.65795e-05 8.80853e-05 7.86169e-05 6.85803e-05 5.8398e-05 4.84618e-05 3.91e-05 3.05335e-05 2.26611e-05 1.35277e-05 4.49438e-06 7.43031e-07 1.17328e-07 8.51294e-08 2.20055e-08 3.9685e-08 4.07944e-07 2.65163e-06 9.45573e-06 2.11904e-05 3.53258e-05 4.9788e-05 6.35705e-05 7.62238e-05 8.75401e-05 9.74166e-05 0.000105795 0.000112636 0.000117072 0.000119168 0.000119707 0.000118804 0.000116344 0.000112261 0.000106537 9.92794e-05 9.07187e-05 8.11849e-05 7.10659e-05 6.07671e-05 5.06726e-05 4.11118e-05 3.23089e-05 2.41175e-05 1.43237e-05 4.79391e-06 7.93935e-07 1.21114e-07 8.60807e-08 2.309e-08 4.24186e-08 4.42529e-07 2.87045e-06 1.01409e-05 2.24693e-05 3.71542e-05 5.20934e-05 6.62842e-05 7.92806e-05 9.08769e-05 0.000100971 0.000109507 0.000116444 0.000120515 0.000122409 0.000122817 0.000121804 0.000119242 0.000115062 0.000109256 0.000101931 9.33132e-05 8.37208e-05 7.35252e-05 6.31166e-05 5.28718e-05 4.31222e-05 3.40929e-05 2.5585e-05 1.51051e-05 5.08868e-06 8.4431e-07 1.24762e-07 8.69163e-08 2.4197e-08 4.52496e-08 4.7856e-07 3.09707e-06 1.08397e-05 2.37552e-05 3.89785e-05 5.43824e-05 6.89685e-05 8.22949e-05 9.4158e-05 0.000104458 0.000113139 0.000120165 0.000123784 0.000125487 0.000125795 0.000124695 0.000122046 0.000117787 0.000111913 0.000104534 9.58694e-05 8.62248e-05 7.59579e-05 6.54462e-05 5.50604e-05 4.51337e-05 3.58896e-05 2.70684e-05 1.58753e-05 5.38041e-06 8.94514e-07 1.28286e-07 8.76386e-08 2.53222e-08 4.81607e-08 5.15769e-07 3.32968e-06 1.15462e-05 2.50391e-05 4.07871e-05 5.66428e-05 7.16118e-05 8.52556e-05 9.73729e-05 0.000107865 0.000116678 0.000123475 0.000126865 0.000128446 0.000128659 0.000127478 0.000124757 0.000120436 0.000114511 0.000107091 9.8389e-05 8.86986e-05 7.83655e-05 6.77559e-05 5.72354e-05 4.71395e-05 3.76889e-05 2.85556e-05 1.66269e-05 5.66512e-06 9.43642e-07 1.31629e-07 8.82547e-08 2.64632e-08 5.11422e-08 5.54008e-07 3.56728e-06 1.22574e-05 2.63155e-05 4.25733e-05 5.8866e-05 7.42039e-05 8.81522e-05 0.000100512 0.000111186 0.000120122 0.000126572 0.000129775 0.000131248 0.000131389 0.000130149 0.000127377 0.000123012 0.000117052 0.000109602 0.000100869 9.11378e-05 8.07426e-05 7.00409e-05 5.93947e-05 4.91425e-05 3.94986e-05 3.00572e-05 1.73655e-05 5.94574e-06 9.92326e-07 1.34811e-07 8.87668e-08 2.76173e-08 5.41881e-08 5.93209e-07 3.80931e-06 1.29715e-05 2.75822e-05 4.43344e-05 6.10492e-05 7.67416e-05 9.09809e-05 0.00010357 0.000114415 0.000123464 0.000129504 0.000132512 0.000133895 0.000133988 0.000132712 0.00012991 0.000125518 0.000119536 0.000112068 0.000103314 9.35503e-05 8.30996e-05 7.23115e-05 6.15448e-05 5.11422e-05 4.13107e-05 3.15612e-05 1.80862e-05 6.21948e-06 1.03982e-06 1.37761e-07 8.91835e-08 2.87827e-08 5.7287e-08 6.33185e-07 4.05459e-06 1.36851e-05 2.88342e-05 4.60647e-05 6.31859e-05 7.92183e-05 9.37349e-05 0.000106542 0.000117546 0.0001267 0.000132275 0.000135087 0.000136402 0.000136471 0.000135182 0.000132367 0.000127963 0.000121972 0.000114495 0.000105727 9.59327e-05 8.54282e-05 7.45568e-05 6.3677e-05 5.31343e-05 4.31252e-05 3.30679e-05 1.87868e-05 6.48485e-06 1.08574e-06 1.40411e-07 8.95075e-08 2.99548e-08 6.04324e-08 6.73885e-07 4.30275e-06 1.43974e-05 3.00707e-05 4.77631e-05 6.5275e-05 8.16323e-05 9.64122e-05 0.000109424 0.000120577 0.000129826 0.000134867 0.000137494 0.00013877 0.000138841 0.000137555 0.000134741 0.000130336 0.000124345 0.000116868 0.000108092 9.82739e-05 8.77208e-05 7.67712e-05 6.57851e-05 5.51156e-05 4.49526e-05 3.46034e-05 1.94803e-05 6.74709e-06 1.13063e-06 1.42668e-07 8.97437e-08 3.11269e-08 6.35974e-08 7.1489e-07 4.55121e-06 1.51014e-05 3.12812e-05 4.94171e-05 6.73025e-05 8.3969e-05 9.89975e-05 0.0001122 0.00012349 0.000132681 0.000137255 0.000139765 0.000141031 0.00014111 0.000139831 0.000137024 0.00013263 0.000126651 0.000119184 0.00011041 0.000100579 8.99914e-05 7.89863e-05 6.79242e-05 5.71458e-05 4.67639e-05 3.58101e-05 2.01214e-05 6.99149e-06 1.17201e-06 1.44247e-07 8.99005e-08 3.2293e-08 6.67652e-08 7.55978e-07 4.79859e-06 1.57938e-05 3.24611e-05 5.10217e-05 6.92638e-05 8.62242e-05 0.000101488 0.000114869 0.000126283 0.000135071 0.000139468 0.000141917 0.000143175 0.000143266 0.000142006 0.000139221 0.000134851 0.000128896 0.000121451 0.000112689 0.000102856 9.22477e-05 8.12014e-05 7.00761e-05 5.9191e-05 4.85584e-05 3.68655e-05 2.07233e-05 7.21722e-06 1.20841e-06 1.44791e-07 8.99882e-08 3.34494e-08 6.99156e-08 7.96822e-07 5.04293e-06 1.64697e-05 3.36037e-05 5.25693e-05 7.11507e-05 8.83901e-05 0.000103876 0.000117425 0.000128955 0.000137304 0.000141521 0.000143921 0.000145188 0.000145309 0.000144084 0.000141334 0.000136999 0.000131081 0.000123668 0.00011493 0.000105105 9.44866e-05 8.34091e-05 7.22274e-05 6.12344e-05 5.03348e-05 3.78713e-05 2.1281e-05 7.41746e-06 1.23765e-06 1.44165e-07 9.00164e-08 3.45948e-08 7.30448e-08 8.37374e-07 5.28398e-06 1.71289e-05 3.47092e-05 5.40602e-05 7.29637e-05 9.0467e-05 0.000106162 0.000119869 0.000131506 0.000139386 0.000143425 0.00014579 0.00014708 0.000147245 0.000146068 0.000143366 0.000139079 0.000133207 0.000125836 0.000117131 0.000107323 9.67028e-05 8.56016e-05 7.43689e-05 6.32672e-05 5.20848e-05 3.88125e-05 2.1785e-05 7.5903e-06 1.26118e-06 1.43306e-07 8.99994e-08 3.57286e-08 7.61514e-08 8.77626e-07 5.52171e-06 1.77716e-05 3.57787e-05 5.54963e-05 7.47049e-05 9.24572e-05 0.000108349 0.000122202 0.000133939 0.000141324 0.000145187 0.000147533 0.000148861 0.00014908 0.000147961 0.000145318 0.000141089 0.000135272 0.000127953 0.00011929 0.000109508 9.88935e-05 8.7775e-05 7.64954e-05 6.52842e-05 5.38081e-05 3.97097e-05 2.22625e-05 7.75735e-06 1.28632e-06 1.43557e-07 8.99542e-08 3.68478e-08 7.92336e-08 9.17587e-07 5.75619e-06 1.83984e-05 3.68136e-05 5.68799e-05 7.63775e-05 9.43646e-05 0.000110441 0.000124431 0.00013626 0.000143128 0.000146823 0.000149166 0.000150549 0.000150832 0.000149775 0.000147196 0.00014303 0.000137278 0.000130019 0.000121405 0.000111658 0.000101055 8.99245e-05 7.86015e-05 6.72807e-05 5.55061e-05 4.05861e-05 2.27372e-05 7.93181e-06 1.31561e-06 1.44854e-07 8.98873e-08 3.79481e-08 8.22767e-08 9.57036e-07 5.98613e-06 1.90066e-05 3.78105e-05 5.82074e-05 7.79783e-05 9.61869e-05 0.000112436 0.000126555 0.00013847 0.000144793 0.000148337 0.000150698 0.000152148 0.000152501 0.000151509 0.000148995 0.000144899 0.000139219 0.000132027 0.000123471 0.000113765 0.000103182 9.20482e-05 8.06901e-05 6.92664e-05 5.71951e-05 4.14563e-05 2.32175e-05 8.11437e-06 1.34753e-06 1.46462e-07 8.97986e-08 3.90257e-08 8.52559e-08 9.95573e-07 6.20934e-06 1.95913e-05 3.87632e-05 5.94719e-05 7.95e-05 9.79163e-05 0.000114327 0.000128565 0.00014051 0.000146316 0.000149767 0.000152168 0.00015368 0.000154095 0.000153165 0.000150717 0.000146695 0.000141093 0.000133978 0.000125489 0.000115832 0.000105278 9.4149e-05 8.27639e-05 7.12445e-05 5.88791e-05 4.2322e-05 2.37014e-05 8.30153e-06 1.38062e-06 1.48137e-07 8.9692e-08 4.00814e-08 8.81692e-08 1.03315e-06 6.42566e-06 2.01528e-05 3.96732e-05 6.06765e-05 8.09473e-05 9.95587e-05 0.00011612 0.000130465 0.000142056 0.000147725 0.000151152 0.000153579 0.000155139 0.000155611 0.000154745 0.000152368 0.000148422 0.000142901 0.000135866 0.000127449 0.00011785 0.000107334 9.62209e-05 8.48204e-05 7.32139e-05 6.05557e-05 4.31739e-05 2.41793e-05 8.4878e-06 1.41378e-06 1.49805e-07 8.95672e-08 4.11145e-08 9.10077e-08 1.06963e-06 6.63433e-06 2.06899e-05 4.0539e-05 6.18199e-05 8.23197e-05 0.000101116 0.000117819 0.000132266 0.000143504 0.00014904 0.000152448 0.000154907 0.000156518 0.000157049 0.000156247 0.000153941 0.000150073 0.000144634 0.000137683 0.000129346 0.000119812 0.000109345 9.82604e-05 8.68637e-05 7.51923e-05 6.22526e-05 4.40268e-05 2.46623e-05 8.67864e-06 1.44804e-06 1.51525e-07 8.94329e-08 4.21245e-08 9.37746e-08 1.10506e-06 6.83577e-06 2.12039e-05 4.13632e-05 6.29055e-05 8.36208e-05 0.00010259 0.000119428 0.000133972 0.000144857 0.000150266 0.000153662 0.000156157 0.000157821 0.00015841 0.000157672 0.000155437 0.000151647 0.000146294 0.000139433 0.000131186 0.000121737 0.000111338 0.000100298 8.89077e-05 7.71669e-05 6.39446e-05 4.48786e-05 2.51478e-05 8.87222e-06 1.48302e-06 1.53281e-07 8.92991e-08 4.31089e-08 9.64579e-08 1.13925e-06 7.02901e-06 2.16932e-05 4.21444e-05 6.39325e-05 8.48507e-05 0.000103984 0.000120949 0.000135584 0.000146121 0.000151408 0.000154798 0.000157332 0.000159051 0.000159701 0.000159027 0.000156863 0.000153152 0.000147886 0.00014112 0.000132973 0.000123628 0.00011333 0.000102373 9.10044e-05 7.91024e-05 6.5295e-05 4.56883e-05 2.56165e-05 9.0621e-06 1.51774e-06 1.55032e-07 8.91734e-08 4.40695e-08 9.90557e-08 1.17214e-06 7.21386e-06 2.2158e-05 4.28836e-05 6.4903e-05 8.60125e-05 0.000105301 0.000122387 0.000137109 0.000147303 0.000152477 0.000155865 0.000158442 0.000160218 0.000160929 0.000160321 0.000158228 0.000154595 0.000149417 0.000142748 0.000134708 0.000125476 0.000115294 0.000104438 9.30996e-05 8.10073e-05 6.643e-05 4.64748e-05 2.60758e-05 9.24986e-06 1.55231e-06 1.56792e-07 8.90655e-08 4.50105e-08 1.01573e-07 1.20376e-06 7.39068e-06 2.25998e-05 4.35838e-05 6.58211e-05 8.71112e-05 0.000106546 0.000123746 0.000138551 0.000148416 0.000153482 0.000156873 0.000159496 0.00016133 0.000162103 0.000161559 0.000159536 0.00015598 0.000150889 0.000144318 0.000136387 0.000127274 0.000117216 0.000106471 9.51718e-05 8.28891e-05 6.75455e-05 4.72501e-05 2.65313e-05 9.4374e-06 1.58701e-06 1.58578e-07 8.89798e-08 4.59372e-08 1.04028e-07 1.23441e-06 7.56112e-06 2.30228e-05 4.42516e-05 6.66947e-05 8.81552e-05 0.000107729 0.000125036 0.00013992 0.000149465 0.000154432 0.000157829 0.000160498 0.000162392 0.000163226 0.000162745 0.000160788 0.000157307 0.000152299 0.000145825 0.000138002 0.00012901 0.000119083 0.000108458 9.72084e-05 8.47435e-05 6.86396e-05 4.80137e-05 2.69822e-05 9.62416e-06 1.6217e-06 1.60383e-07 8.89155e-08 4.68522e-08 1.06443e-07 1.26442e-06 7.72719e-06 2.34319e-05 4.48942e-05 6.75327e-05 8.91547e-05 0.000108859 0.000126268 0.000141226 0.000150459 0.000155331 0.000158738 0.000161456 0.000163409 0.000164302 0.00016388 0.000161988 0.000158577 0.000153649 0.000147266 0.000139549 0.000130679 0.000120887 0.000110393 9.92057e-05 8.65706e-05 6.97139e-05 4.8768e-05 2.74311e-05 9.81168e-06 1.65674e-06 1.62231e-07 8.8876e-08 4.77555e-08 1.08813e-07 1.29373e-06 7.88847e-06 2.38266e-05 4.55116e-05 6.83362e-05 9.01117e-05 0.00010994 0.000127446 0.000142473 0.000151398 0.000156181 0.000159602 0.000162371 0.000164382 0.000165333 0.000164968 0.000163135 0.00015979 0.000154937 0.000148642 0.000141028 0.000132279 0.000122625 0.000112268 0.000101157 8.83645e-05 7.07642e-05 4.95095e-05 2.78755e-05 9.99884e-06 1.69193e-06 1.64112e-07 8.88627e-08 4.86481e-08 1.11134e-07 1.32218e-06 8.04424e-06 2.42053e-05 4.61016e-05 6.91027e-05 9.1024e-05 0.000110971 0.000128568 0.000143663 0.000152285 0.000156985 0.000160425 0.000163247 0.000165315 0.00016632 0.000166008 0.000164229 0.000160945 0.000156163 0.00014995 0.000142435 0.000133804 0.000124288 0.000114075 0.00010305 9.01121e-05 7.17849e-05 5.02337e-05 2.83119e-05 1.01838e-05 1.72689e-06 1.66006e-07 8.8877e-08 4.9534e-08 1.13408e-07 1.34982e-06 8.19472e-06 2.45686e-05 4.6665e-05 6.9833e-05 9.18925e-05 0.000111951 0.000129637 0.000144796 0.000153126 0.000157751 0.000161214 0.000164089 0.000166212 0.000167268 0.000167003 0.000165274 0.000162046 0.000157329 0.000151194 0.000143771 0.000135255 0.000125877 0.000115812 0.000104883 9.18152e-05 7.2781e-05 5.09461e-05 2.87455e-05 1.03696e-05 1.76231e-06 1.67959e-07 8.89254e-08 5.04173e-08 1.15654e-07 1.37695e-06 8.34154e-06 2.49202e-05 4.7207e-05 7.05327e-05 9.27224e-05 0.000112887 0.000130656 0.000145876 0.000153922 0.00015848 0.000161972 0.000164902 0.000167077 0.000168178 0.000167955 0.000166271 0.000163094 0.000158439 0.000152378 0.000145047 0.000136642 0.000127397 0.000117478 0.000106651 9.34696e-05 7.37549e-05 5.1649e-05 2.91779e-05 1.05567e-05 1.79819e-06 1.69968e-07 8.9007e-08 5.13007e-08 1.17892e-07 1.40386e-06 8.48637e-06 2.5264e-05 4.77328e-05 7.12077e-05 9.35199e-05 0.000113784 0.000131631 0.000146908 0.000154669 0.000159172 0.000162701 0.000165686 0.000167909 0.000169049 0.000168863 0.000167219 0.000164089 0.000159491 0.000153503 0.000146266 0.000137979 0.000128868 0.000119076 0.000108317 9.50156e-05 7.46857e-05 5.23248e-05 2.95962e-05 1.07389e-05 1.83339e-06 1.71965e-07 8.91121e-08 5.21842e-08 1.20114e-07 1.43041e-06 8.62841e-06 2.55984e-05 4.82409e-05 7.18564e-05 9.42835e-05 0.000114641 0.000132561 0.000147893 0.000155365 0.000159831 0.000163407 0.000166446 0.000168713 0.000169887 0.000169733 0.000168125 0.000165037 0.00016049 0.000154571 0.000147425 0.000139259 0.000130294 0.000120635 0.000109869 9.61824e-05 7.55546e-05 5.29658e-05 2.99988e-05 1.09168e-05 1.86811e-06 1.7396e-07 8.92372e-08 5.30719e-08 1.22339e-07 1.45688e-06 8.76919e-06 2.59269e-05 4.8736e-05 7.24843e-05 9.50179e-05 0.00011546 0.000133446 0.000148769 0.000156007 0.000160475 0.000164101 0.000167185 0.000169487 0.000170691 0.000170568 0.000168992 0.00016594 0.000161441 0.000155583 0.000148522 0.000140469 0.000131642 0.000122105 0.000111321 9.71883e-05 7.63747e-05 5.35747e-05 3.03838e-05 1.10882e-05 1.90184e-06 1.75923e-07 8.93816e-08 5.3965e-08 1.24552e-07 1.483e-06 8.90739e-06 2.62472e-05 4.92155e-05 7.30892e-05 9.57227e-05 0.000116244 0.000134289 0.000149405 0.000156604 0.000161101 0.00016477 0.000167895 0.00017023 0.000171464 0.000171367 0.000169818 0.000166799 0.00016234 0.000156537 0.000149551 0.0001416 0.000132899 0.000123473 0.000112672 9.81326e-05 7.7146e-05 5.41489e-05 3.07477e-05 1.12506e-05 1.93395e-06 1.77817e-07 8.95426e-08 5.48647e-08 1.26771e-07 1.50908e-06 9.04465e-06 2.65625e-05 4.96838e-05 7.36758e-05 9.64021e-05 0.000116995 0.000135094 0.000149997 0.00015716 0.000161691 0.000165409 0.000168577 0.000170947 0.000172208 0.000172135 0.00017061 0.000167618 0.000163193 0.000157436 0.000150516 0.000142655 0.000134066 0.000124742 0.000113925 9.90153e-05 7.78681e-05 5.46876e-05 3.10899e-05 1.14037e-05 1.96432e-06 1.7963e-07 8.97164e-08 5.57697e-08 1.28987e-07 1.53497e-06 9.18015e-06 2.68715e-05 5.01397e-05 7.42436e-05 9.70563e-05 0.000117716 0.000135864 0.000150536 0.000157664 0.000162236 0.00016601 0.000169225 0.000171631 0.000172919 0.000172868 0.000171365 0.000168397 0.000164 0.000158283 0.000151419 0.000143638 0.000135149 0.000125916 0.000115084 9.98378e-05 7.8542e-05 5.51915e-05 3.14111e-05 1.15478e-05 1.99302e-06 1.81361e-07 8.98985e-08 5.66759e-08 1.31173e-07 1.56025e-06 9.31185e-06 2.71701e-05 5.0578e-05 7.47872e-05 9.76804e-05 0.000118402 0.000136594 0.000151031 0.000158126 0.000162743 0.000166576 0.000169842 0.000172286 0.000173602 0.000173573 0.000172089 0.00016914 0.000164767 0.000159083 0.000152268 0.000144556 0.000136155 0.000127003 0.000116157 0.000100605 7.91713e-05 5.56637e-05 3.17135e-05 1.16843e-05 2.02031e-06 1.83023e-07 9.00866e-08 5.75839e-08 1.33344e-07 1.58517e-06 9.4411e-06 2.74613e-05 5.10029e-05 7.53113e-05 9.82792e-05 0.000119056 0.000137288 0.000151481 0.000158543 0.000163209 0.000167106 0.000170426 0.000172911 0.000174255 0.000174248 0.000172781 0.000169849 0.000165496 0.000159839 0.000153064 0.000145412 0.000137087 0.000128006 0.000117146 0.000101316 7.97554e-05 5.61025e-05 3.19952e-05 1.18118e-05 2.04591e-06 1.84596e-07 9.02747e-08 5.84919e-08 1.3546e-07 1.60909e-06 9.56478e-06 2.7739e-05 5.14072e-05 7.58092e-05 9.88469e-05 0.000119676 0.000137944 0.000151885 0.000158913 0.000163632 0.000167597 0.000170975 0.000173503 0.000174878 0.000174893 0.000173443 0.000170525 0.000166189 0.000160554 0.000153813 0.000146211 0.000137952 0.000128931 0.000118056 0.000101977 8.02982e-05 5.65109e-05 3.22583e-05 1.19313e-05 2.06999e-06 1.86085e-07 9.04608e-08 5.94052e-08 1.37563e-07 1.63269e-06 9.68636e-06 2.80101e-05 5.17995e-05 7.62894e-05 9.93917e-05 0.000120267 0.000138568 0.000152267 0.000159262 0.000164032 0.000168064 0.000171503 0.000174075 0.000175482 0.000175519 0.000174085 0.000171179 0.000166856 0.000161239 0.000154526 0.000146965 0.000138762 0.000129791 0.000118898 0.000102592 8.08031e-05 5.68917e-05 3.25046e-05 1.20438e-05 2.09275e-06 1.87503e-07 9.06451e-08 6.03241e-08 1.39675e-07 1.65638e-06 9.80797e-06 2.82795e-05 5.21865e-05 7.67599e-05 9.99217e-05 0.000120839 0.000139167 0.000152621 0.000159583 0.000164404 0.000168505 0.000172004 0.000174622 0.000176062 0.000176121 0.000174702 0.000171809 0.000167496 0.000161893 0.000155202 0.000147676 0.000139519 0.000130589 0.000119676 0.000103159 8.12687e-05 5.72427e-05 3.27321e-05 1.2148e-05 2.11393e-06 1.88831e-07 9.08243e-08 6.12424e-08 1.41756e-07 1.67953e-06 9.92653e-06 2.85409e-05 5.25608e-05 7.72135e-05 0.000100431 0.000121387 0.000139739 0.00015295 0.000159878 0.000164749 0.000168918 0.000172477 0.000175142 0.000176615 0.000176697 0.000175294 0.000172411 0.000168108 0.000162516 0.000155843 0.000148344 0.000140226 0.000131329 0.000120392 0.000103682 8.16961e-05 5.75642e-05 3.29402e-05 1.22435e-05 2.13339e-06 1.90056e-07 9.09936e-08 6.21591e-08 1.43818e-07 1.70236e-06 1.0043e-05 2.87958e-05 5.29231e-05 7.76503e-05 0.00010092 0.000121911 0.000140285 0.000153266 0.000160161 0.000165079 0.000169313 0.000172932 0.000175643 0.00017715 0.000177256 0.000175868 0.000172996 0.0001687 0.000163117 0.000156457 0.000148981 0.000140893 0.000132021 0.000121056 0.000104165 8.20898e-05 5.786e-05 3.3132e-05 1.23318e-05 2.15144e-06 1.91195e-07 9.11533e-08 6.30733e-08 1.45873e-07 1.72509e-06 1.01585e-05 2.90465e-05 5.32764e-05 7.80731e-05 0.00010139 0.000122412 0.000140804 0.000153562 0.000160425 0.00016539 0.000169688 0.000173365 0.000176122 0.000177663 0.000177792 0.00017642 0.000173557 0.000169268 0.000163691 0.000157041 0.000149582 0.000141518 0.000132664 0.000121669 0.000104607 8.24472e-05 5.8127e-05 3.33045e-05 1.24111e-05 2.16772e-06 1.92224e-07 9.12956e-08 6.39791e-08 1.4788e-07 1.74705e-06 1.02696e-05 2.92864e-05 5.36127e-05 7.84739e-05 0.000101834 0.000122885 0.000141294 0.000153835 0.00016067 0.000165682 0.000170045 0.000173779 0.000176582 0.000178156 0.000178308 0.000176951 0.000174097 0.000169813 0.000164241 0.000157598 0.000150152 0.000142105 0.000133261 0.000122231 0.000105009 8.27699e-05 5.83663e-05 3.3458e-05 1.24816e-05 2.18221e-06 1.93136e-07 9.14147e-08 6.48817e-08 1.49837e-07 1.76817e-06 1.03762e-05 2.95149e-05 5.39308e-05 7.88511e-05 0.00010225 0.000123327 0.000141751 0.000154082 0.000160894 0.000165956 0.000170383 0.000174176 0.000177024 0.000178632 0.000178807 0.000177466 0.000174622 0.000170343 0.000164774 0.000158136 0.000150698 0.000142663 0.000133822 0.000122753 0.000105376 8.30625e-05 5.85819e-05 3.35959e-05 1.2545e-05 2.19529e-06 1.93953e-07 9.15139e-08 6.57882e-08 1.51777e-07 1.78895e-06 1.04807e-05 2.97366e-05 5.42358e-05 7.92089e-05 0.000102643 0.000123741 0.000142178 0.00015431 0.000161104 0.000166218 0.000170711 0.000174562 0.000177456 0.000179097 0.000179296 0.00017797 0.000175135 0.00017086 0.000165294 0.000158659 0.000151227 0.000143199 0.000134356 0.000123241 0.000105711 8.33271e-05 5.87754e-05 3.37195e-05 1.26019e-05 2.20704e-06 1.94679e-07 9.15948e-08 6.66948e-08 1.53698e-07 1.80937e-06 1.05831e-05 2.9952e-05 5.45288e-05 7.95487e-05 0.000103011 0.000124128 0.000142575 0.000154511 0.000161294 0.000166465 0.000171027 0.000174939 0.00017788 0.000179555 0.000179778 0.000178468 0.000175641 0.000171371 0.000165806 0.000159173 0.000151744 0.000143718 0.000134865 0.000123699 0.000106013 8.35612e-05 5.89439e-05 3.38255e-05 1.26503e-05 2.21705e-06 1.95288e-07 9.16537e-08 6.76031e-08 1.55602e-07 1.82942e-06 1.06833e-05 3.01611e-05 5.48102e-05 7.98716e-05 0.000103358 0.000124489 0.000142942 0.00015467 0.000161445 0.000166682 0.00017132 0.000175297 0.000178287 0.000179997 0.000180245 0.000178951 0.000176134 0.000171868 0.000166306 0.000159674 0.000152247 0.000144221 0.000135354 0.000124129 0.000106286 8.37689e-05 5.90901e-05 3.39156e-05 1.26911e-05 2.22545e-06 1.95784e-07 9.16848e-08 6.85137e-08 1.57485e-07 1.84906e-06 1.07811e-05 3.03638e-05 5.50799e-05 8.01773e-05 0.000103683 0.000124823 0.000143281 0.000154794 0.000161566 0.000166875 0.000171596 0.000175641 0.000178682 0.00018043 0.000180702 0.000179425 0.000176618 0.000172358 0.000166798 0.000160168 0.000152741 0.000144713 0.000135827 0.000124538 0.000106535 8.39542e-05 5.92177e-05 3.39929e-05 1.27256e-05 2.23254e-06 1.96185e-07 9.16882e-08 6.94268e-08 1.59326e-07 1.8679e-06 1.08748e-05 3.05564e-05 5.53333e-05 8.04611e-05 0.000103981 0.000125127 0.000143586 0.000154875 0.000161649 0.000167038 0.000171849 0.000175968 0.000179065 0.000180851 0.00018115 0.00017989 0.000177093 0.00017284 0.000167284 0.000160657 0.000153233 0.000145201 0.000136294 0.000124935 0.000106761 8.41185e-05 5.93275e-05 3.40574e-05 1.2754e-05 2.23835e-06 1.9649e-07 9.16624e-08 7.03419e-08 1.61114e-07 1.88573e-06 1.09631e-05 3.07364e-05 5.5567e-05 8.07189e-05 0.000104248 0.000125396 0.000143854 0.000154909 0.000161688 0.000167168 0.000172077 0.000176278 0.000179435 0.000181261 0.000181587 0.000180346 0.000177561 0.000173315 0.000167765 0.000161142 0.000153721 0.000145687 0.000136757 0.000125322 0.000106967 8.42623e-05 5.94191e-05 3.41084e-05 1.27756e-05 2.24273e-06 1.96688e-07 9.16055e-08 7.12594e-08 1.62844e-07 1.90248e-06 1.10458e-05 3.09031e-05 5.57794e-05 8.09486e-05 0.000104482 0.000125628 0.000144081 0.000154894 0.000161684 0.000167264 0.000172281 0.000176571 0.00017979 0.000181659 0.000182015 0.000180793 0.000178022 0.000173785 0.000168243 0.000161627 0.000154212 0.000146176 0.000137222 0.000125705 0.000107155 8.43896e-05 5.94964e-05 3.41488e-05 1.27919e-05 2.246e-06 1.968e-07 9.152e-08 7.21811e-08 1.64523e-07 1.91821e-06 1.1123e-05 3.10564e-05 5.59704e-05 8.11499e-05 0.000104681 0.000125821 0.000144267 0.000154826 0.000161634 0.000167325 0.000172461 0.000176845 0.000180131 0.000182045 0.000182431 0.000181231 0.000178476 0.000174252 0.00016872 0.000162115 0.000154708 0.000146675 0.000137698 0.000126093 0.000107331 8.45048e-05 5.95631e-05 3.41818e-05 1.28047e-05 2.24852e-06 1.96847e-07 9.14113e-08 7.31052e-08 1.66128e-07 1.93257e-06 1.11929e-05 3.1193e-05 5.61356e-05 8.13178e-05 0.000104841 0.00012597 0.000144408 0.000154701 0.000161538 0.000167355 0.000172618 0.0001771 0.000180454 0.000182415 0.000182834 0.000181657 0.00017892 0.000174712 0.000169194 0.000162603 0.000155211 0.000147184 0.000138186 0.000126488 0.000107494 8.46058e-05 5.96166e-05 3.42046e-05 1.28124e-05 2.24998e-06 1.96813e-07 9.12775e-08 7.40373e-08 1.67698e-07 1.94612e-06 1.12582e-05 3.13172e-05 5.6279e-05 8.14549e-05 0.000104963 0.000126077 0.000144503 0.000154512 0.000161396 0.000167356 0.000172754 0.000177334 0.000180756 0.000182764 0.000183218 0.000182068 0.000179352 0.000175162 0.000169662 0.00016309 0.000155718 0.000147703 0.000138688 0.000126893 0.00010765 8.46987e-05 5.96618e-05 3.42204e-05 1.28163e-05 2.25061e-06 1.96708e-07 9.11157e-08 7.49748e-08 1.69191e-07 1.95815e-06 1.13158e-05 3.14233e-05 5.63933e-05 8.15526e-05 0.000105036 0.000126125 0.000144377 0.000154244 0.000161239 0.000167349 0.00017287 0.000177543 0.000181033 0.000183092 0.000183584 0.000182464 0.000179772 0.000175603 0.000170125 0.000163576 0.000156229 0.000148233 0.000139205 0.000127311 0.000107802 8.47888e-05 5.97046e-05 3.42345e-05 1.28194e-05 2.25107e-06 1.96576e-07 9.09327e-08 7.5923e-08 1.70649e-07 1.96936e-06 1.13688e-05 3.15175e-05 5.64864e-05 8.16199e-05 0.00010507 0.000126127 0.000144037 0.000153917 0.000161048 0.000167306 0.000172954 0.000177725 0.000181288 0.0001834 0.000183933 0.000182846 0.000180181 0.000176037 0.000170585 0.000164065 0.000156749 0.000148778 0.000139743 0.000127749 0.000107956 8.48804e-05 5.97492e-05 3.42504e-05 1.28237e-05 2.25185e-06 1.96445e-07 9.07319e-08 7.68866e-08 1.72086e-07 1.97985e-06 1.14178e-05 3.16011e-05 5.65603e-05 8.16592e-05 0.000105068 0.000126085 0.000143622 0.000153514 0.000160793 0.000167213 0.000172997 0.000177871 0.00018151 0.00018368 0.000184256 0.000183203 0.00018057 0.000176456 0.000171036 0.000164551 0.00015727 0.000149325 0.000140283 0.000128189 0.000108104 8.49665e-05 5.97885e-05 3.42615e-05 1.28253e-05 2.25198e-06 1.96259e-07 9.05116e-08 7.78631e-08 1.73432e-07 1.98842e-06 1.1457e-05 3.16629e-05 5.66012e-05 8.1656e-05 0.000105016 0.000125987 0.000143133 0.000153039 0.000160476 0.000167069 0.000172997 0.000177982 0.000181703 0.000183933 0.000184556 0.000183542 0.000180942 0.000176865 0.000171486 0.000165046 0.000157806 0.000149884 0.000140822 0.000128621 0.000108247 8.50501e-05 5.98263e-05 3.4272e-05 1.28269e-05 2.25216e-06 1.96061e-07 9.02746e-08 7.88678e-08 1.74775e-07 1.99645e-06 1.1493e-05 3.17152e-05 5.6623e-05 8.16231e-05 0.000104924 0.000125842 0.000142565 0.000152487 0.000160093 0.000166872 0.000172955 0.000178057 0.000181865 0.000184159 0.000184831 0.000183856 0.000181293 0.000177254 0.000171922 0.000165538 0.000158353 0.000150458 0.000141339 0.000128955 0.000108372 8.51205e-05 5.98551e-05 3.42766e-05 1.28257e-05 2.25181e-06 1.95821e-07 9.00196e-08 7.98978e-08 1.76047e-07 2.00275e-06 1.15205e-05 3.17485e-05 5.66147e-05 8.15499e-05 0.000104784 0.00012564 0.000141911 0.000151849 0.000159637 0.000166613 0.000172862 0.000178091 0.000181992 0.000184355 0.000185078 0.000184145 0.000181619 0.000177621 0.000172338 0.000166015 0.000158894 0.000151034 0.000141841 0.000129123 0.000108485 8.5185e-05 5.98815e-05 3.42805e-05 1.28245e-05 2.25148e-06 1.95572e-07 8.97516e-08 8.09628e-08 1.77322e-07 2.0085e-06 1.15448e-05 3.17725e-05 5.65874e-05 8.14464e-05 0.000104602 0.000125388 0.000141176 0.000151131 0.000159111 0.000166299 0.000172726 0.00017809 0.00018209 0.000184524 0.000185301 0.000184411 0.000181924 0.000177968 0.000172735 0.000166475 0.000159421 0.0001516 0.000142335 0.000129277 0.00010859 8.52456e-05 5.9907e-05 3.42851e-05 1.28242e-05 2.25143e-06 1.95334e-07 8.94753e-08 8.20602e-08 1.78533e-07 2.01256e-06 1.1561e-05 3.17778e-05 5.65295e-05 8.13007e-05 0.000104367 0.000125074 0.000140342 0.000150312 0.000158498 0.000165914 0.000172532 0.00017804 0.000182145 0.000184654 0.000185486 0.000184639 0.000182191 0.000178276 0.000173094 0.000166896 0.000159911 0.000152131 0.000142797 0.000129408 0.000108676 8.52925e-05 5.99227e-05 3.42831e-05 1.28206e-05 2.25071e-06 1.95045e-07 8.91821e-08 8.31896e-08 1.79677e-07 2.01487e-06 1.15682e-05 3.17625e-05 5.64374e-05 8.11076e-05 0.000104074 0.000124691 0.00013941 0.000149398 0.000157804 0.000165465 0.000172288 0.00017795 0.000182166 0.000184754 0.000185643 0.000184839 0.000182429 0.000178554 0.000173422 0.000167287 0.000160371 0.000152633 0.000143235 0.000129516 0.000108747 8.533e-05 5.99345e-05 3.42807e-05 1.28178e-05 2.25023e-06 1.94762e-07 8.88781e-08 8.43581e-08 1.80752e-07 2.01528e-06 1.15659e-05 3.17253e-05 5.6309e-05 8.08639e-05 0.000103717 0.000124236 0.000138361 0.000148371 0.000157018 0.000164942 0.000171985 0.000177811 0.000182141 0.000184811 0.000185757 0.000184998 0.000182626 0.000178791 0.000173707 0.000167634 0.000160787 0.000153095 0.000143634 0.000129589 0.000108789 8.5346e-05 5.99314e-05 3.42693e-05 1.28111e-05 2.24904e-06 1.94429e-07 8.85606e-08 8.55645e-08 1.81687e-07 2.01258e-06 1.1548e-05 3.16537e-05 5.61284e-05 8.05523e-05 0.00010328 0.00012369 0.000137178 0.000147228 0.000156143 0.000164354 0.000171629 0.000177623 0.000182071 0.000184823 0.000185828 0.000185113 0.000182778 0.000178982 0.000173944 0.000167931 0.00016115 0.000153503 0.000143983 0.000129623 0.000108799 8.53388e-05 5.9913e-05 3.42496e-05 1.28012e-05 2.24727e-06 1.94057e-07 8.82325e-08 8.68281e-08 1.82614e-07 2.00857e-06 1.15221e-05 3.15614e-05 5.59105e-05 8.01858e-05 0.000102772 0.000123064 0.000135853 0.000145975 0.000155197 0.000163712 0.000171223 0.000177386 0.000181953 0.000184787 0.000185853 0.000185184 0.000182887 0.000179129 0.000174137 0.000168181 0.000161466 0.000153861 0.000144284 0.000129612 0.000108774 8.53046e-05 5.98761e-05 3.42191e-05 1.27869e-05 2.24467e-06 1.93629e-07 8.78903e-08 8.81355e-08 1.83493e-07 2.00291e-06 1.14863e-05 3.14422e-05 5.56444e-05 7.97449e-05 0.000102156 0.000121675 0.000134343 0.000144718 0.000154252 0.000163037 0.000170757 0.000177078 0.000181761 0.000184683 0.000185813 0.000185193 0.000182936 0.000179215 0.000174268 0.000168368 0.000161715 0.000154152 0.000144519 0.00012955 0.000108706 8.5238e-05 5.9817e-05 3.41759e-05 1.27675e-05 2.24115e-06 1.9314e-07 8.75331e-08 8.94986e-08 1.84367e-07 1.99653e-06 1.14479e-05 3.13154e-05 5.53597e-05 7.92714e-05 0.000101492 0.000120142 0.000132756 0.000143382 0.000153224 0.000162283 0.000170222 0.000176709 0.000181516 0.000184527 0.000185723 0.00018515 0.000182932 0.000179249 0.000174344 0.000168496 0.000161904 0.000154379 0.000144691 0.000129433 0.000108593 8.51356e-05 5.97325e-05 3.41173e-05 1.27415e-05 2.23636e-06 1.92564e-07 8.71531e-08 9.09366e-08 1.85289e-07 1.98978e-06 1.14071e-05 3.11796e-05 5.50534e-05 7.87603e-05 0.000100773 0.000118505 0.000131059 0.000141949 0.000152116 0.000161461 0.000169627 0.000176283 0.000181214 0.000184316 0.000185576 0.000185051 0.00018287 0.000179221 0.000174355 0.000168558 0.00016202 0.000154531 0.000144787 0.000129253 0.000108427 8.49925e-05 5.96197e-05 3.40422e-05 1.27089e-05 2.23033e-06 1.91907e-07 8.67542e-08 9.24431e-08 1.86209e-07 1.98199e-06 1.13611e-05 3.10306e-05 5.47218e-05 7.82096e-05 9.99999e-05 0.000116781 0.000129269 0.000140428 0.000150926 0.000160566 0.000168964 0.000175793 0.00018085 0.000184042 0.000185366 0.000184886 0.000182741 0.000179124 0.000174296 0.000168545 0.000162059 0.000154601 0.000144802 0.000129004 0.000108203 8.48035e-05 5.94738e-05 3.39467e-05 1.26675e-05 2.22263e-06 1.91136e-07 8.63257e-08 9.40277e-08 1.87159e-07 1.97354e-06 1.13114e-05 3.08697e-05 5.43655e-05 7.76193e-05 9.91727e-05 0.000114967 0.000127393 0.000138834 0.000149673 0.000159611 0.00016824 0.000175241 0.000180422 0.000183702 0.000185088 0.000184652 0.000182539 0.000178952 0.000174159 0.00016845 0.000162011 0.00015458 0.000144724 0.000128672 0.000107907 8.45564e-05 5.92851e-05 3.38247e-05 1.26146e-05 2.21272e-06 1.90219e-07 8.58666e-08 9.56767e-08 1.88087e-07 1.96365e-06 1.12533e-05 3.06862e-05 5.39694e-05 7.69731e-05 9.82801e-05 0.000113053 0.000125448 0.000137191 0.000148372 0.000158598 0.000167448 0.000174613 0.000179913 0.000183278 0.000184723 0.000184328 0.000182245 0.000178686 0.000173925 0.000168256 0.000161859 0.00015445 0.000144539 0.000128252 0.000107535 8.42462e-05 5.90487e-05 3.36717e-05 1.25478e-05 2.20006e-06 1.89114e-07 8.53616e-08 9.73829e-08 1.88966e-07 1.95198e-06 1.11842e-05 3.04715e-05 5.35146e-05 7.62334e-05 9.67858e-05 0.000111022 0.000123535 0.000135576 0.000147055 0.000157531 0.000166579 0.000173897 0.000179312 0.00018276 0.000184264 0.000183908 0.000181854 0.00017832 0.000173586 0.00016795 0.000161589 0.000154195 0.000144228 0.00012773 0.000107075 8.38637e-05 5.8758e-05 3.3484e-05 1.24656e-05 2.18439e-06 1.87812e-07 8.48134e-08 9.91495e-08 1.89842e-07 1.93949e-06 1.11107e-05 3.02412e-05 5.3026e-05 7.54345e-05 9.48635e-05 0.000108932 0.000121637 0.000133951 0.000145689 0.000156389 0.000165623 0.000173088 0.000178615 0.000182144 0.000183705 0.000183387 0.00018136 0.000177849 0.00017314 0.000167536 0.000161206 0.000153824 0.000143803 0.000127109 0.000106528 8.341e-05 5.84138e-05 3.32619e-05 1.2368e-05 2.1657e-06 1.86296e-07 8.42102e-08 1.00981e-07 1.9071e-07 1.92613e-06 1.10331e-05 2.99991e-05 5.25146e-05 7.46022e-05 9.29264e-05 0.000106817 0.000119696 0.00013227 0.000144263 0.000155182 0.000164594 0.000172199 0.000177831 0.000181435 0.000183045 0.000182759 0.000180754 0.000177261 0.000172573 0.000166992 0.000160685 0.000153306 0.000143232 0.000126372 0.00010588 8.28732e-05 5.8007e-05 3.29998e-05 1.22529e-05 2.14362e-06 1.84559e-07 8.35601e-08 1.02867e-07 1.91534e-07 1.91134e-06 1.0948e-05 2.97364e-05 5.19675e-05 7.37217e-05 9.09462e-05 0.000104669 0.000117727 0.000130561 0.000142802 0.000153929 0.000163506 0.000171238 0.000176963 0.000180631 0.000182282 0.000182021 0.000180032 0.000176552 0.00017188 0.000166318 0.000160027 0.000152647 0.000142524 0.000125522 0.000105135 8.22564e-05 5.75394e-05 3.2698e-05 1.21198e-05 2.11794e-06 1.82565e-07 8.28429e-08 1.04793e-07 1.92277e-07 1.89466e-06 1.08524e-05 2.94467e-05 5.13757e-05 7.27847e-05 8.89187e-05 0.000102494 0.000115739 0.000128829 0.000141303 0.000152623 0.000162351 0.000170195 0.000175999 0.00017972 0.000181402 0.000181158 0.000179177 0.000175706 0.000171042 0.000165491 0.000159206 0.000151814 0.000141643 0.000124544 0.000104279 8.15502e-05 5.70064e-05 3.23561e-05 1.19698e-05 2.08906e-06 1.8036e-07 8.20786e-08 1.06741e-07 1.92896e-07 1.87552e-06 1.0742e-05 2.9118e-05 5.07219e-05 7.17764e-05 8.68292e-05 0.000100303 0.000113755 0.000127092 0.000139779 0.000151267 0.000161127 0.00016907 0.000174941 0.000178702 0.000180405 0.000180168 0.000178189 0.000174719 0.000170059 0.000164513 0.000158227 0.000150819 0.000140605 0.000123439 0.000103312 8.07523e-05 5.64032e-05 3.19681e-05 1.17989e-05 2.05604e-06 1.77857e-07 8.12372e-08 1.087e-07 1.9344e-07 1.85481e-06 1.06194e-05 2.87469e-05 4.99815e-05 7.02143e-05 8.46769e-05 9.8192e-05 0.000111836 0.000125367 0.000138221 0.000149849 0.000159822 0.000167849 0.000173777 0.000177569 0.000179282 0.000179044 0.000177059 0.000173582 0.000168918 0.000163366 0.000157065 0.000149626 0.000139373 0.000122194 0.000102225 7.98571e-05 5.57294e-05 3.15374e-05 1.16105e-05 2.01975e-06 1.75142e-07 8.03524e-08 1.10666e-07 1.93914e-07 1.83313e-06 1.04905e-05 2.83523e-05 4.91885e-05 6.82724e-05 8.251e-05 9.61129e-05 0.000109916 0.00012361 0.000136616 0.000148376 0.000158452 0.000166553 0.000172524 0.000176333 0.000178045 0.000177793 0.000175793 0.000172305 0.000167631 0.000162066 0.000155744 0.000148272 0.000137987 0.000120821 0.000101027 7.88711e-05 5.49864e-05 3.10615e-05 1.14018e-05 1.97945e-06 1.72133e-07 7.93895e-08 1.12636e-07 1.9432e-07 1.81055e-06 1.03566e-05 2.79409e-05 4.83645e-05 6.6319e-05 8.03279e-05 9.40117e-05 0.000107975 0.000121838 0.000134994 0.000146877 0.000157043 0.000165197 0.00017119 0.000174996 0.000176688 0.000176409 0.000174382 0.00017087 0.000166177 0.00016059 0.000154235 0.000146708 0.000136342 0.000119301 9.97062e-05 7.77872e-05 5.41739e-05 3.05448e-05 1.1177e-05 1.93625e-06 1.68943e-07 7.83945e-08 1.14584e-07 1.94598e-07 1.78636e-06 1.02132e-05 2.75018e-05 4.74939e-05 6.43325e-05 7.81194e-05 9.18878e-05 0.000106015 0.000120047 0.000133352 0.00014535 0.000155591 0.000163781 0.000169775 0.000173557 0.000175212 0.000174893 0.000172828 0.000169285 0.000164568 0.000158959 0.000152568 0.000144977 0.000134521 0.000117653 9.8275e-05 7.66135e-05 5.32934e-05 2.9984e-05 1.09328e-05 1.88926e-06 1.65467e-07 7.73191e-08 1.16498e-07 1.94744e-07 1.76076e-06 1.00618e-05 2.70383e-05 4.658e-05 6.2314e-05 7.58894e-05 8.97484e-05 0.000104044 0.000118247 0.000131698 0.000143802 0.000154103 0.000162309 0.000168281 0.000172016 0.000173612 0.000173235 0.00017112 0.000167536 0.000162781 0.000157129 0.000150681 0.000143022 0.000132533 0.000115857 9.67176e-05 7.53397e-05 5.23419e-05 2.93821e-05 1.0673e-05 1.83958e-06 1.61836e-07 7.62221e-08 1.18356e-07 1.94749e-07 1.73352e-06 9.90013e-06 2.65448e-05 4.56166e-05 6.02538e-05 7.364e-05 8.76054e-05 0.000102077 0.000116451 0.000130039 0.000142235 0.000152579 0.000160779 0.000166708 0.000170374 0.000171893 0.000171443 0.000169268 0.000165637 0.000160841 0.000155146 0.000148642 0.000140919 0.000130412 0.000113944 9.50606e-05 7.39844e-05 5.13284e-05 2.87394e-05 1.03952e-05 1.78642e-06 1.57931e-07 7.50416e-08 1.20144e-07 1.94722e-07 1.70549e-06 9.72765e-06 2.60126e-05 4.45962e-05 5.81496e-05 7.13938e-05 8.54862e-05 0.000100132 0.000114664 0.000128375 0.000140648 0.000151014 0.000159186 0.000165047 0.000168622 0.000170042 0.000169501 0.000167253 0.000163565 0.000158718 0.000152962 0.000146385 0.000138599 0.000128129 0.000111887 9.32829e-05 7.25359e-05 5.02521e-05 2.80637e-05 1.01067e-05 1.73175e-06 1.53961e-07 7.38672e-08 1.21843e-07 1.95105e-07 1.6783e-06 9.54064e-06 2.54057e-05 4.30085e-05 5.60109e-05 6.92358e-05 8.34345e-05 9.82114e-05 0.000112874 0.000126696 0.000139035 0.000149412 0.000157537 0.000163308 0.000166769 0.000168073 0.000167428 0.000165096 0.000161346 0.00015645 0.000150642 0.000144002 0.000136162 0.000125731 0.000109729 9.14177e-05 7.10138e-05 4.91169e-05 2.73474e-05 9.80014e-06 1.67355e-06 1.49712e-07 7.26084e-08 1.23474e-07 1.97634e-07 1.65767e-06 9.35809e-06 2.47717e-05 4.11658e-05 5.38876e-05 6.71051e-05 8.13839e-05 9.62866e-05 0.000111091 0.000125032 0.000137436 0.000147805 0.000155856 0.000161505 0.000164823 0.000165985 0.000165218 0.000162789 0.000158964 0.000154003 0.000148127 0.000141407 0.000133515 0.000123187 0.000107444 8.94501e-05 6.94166e-05 4.79359e-05 2.66115e-05 9.48984e-06 1.61531e-06 1.45516e-07 7.13944e-08 1.24997e-07 2.01564e-07 1.63192e-06 9.13898e-06 2.40689e-05 3.93066e-05 5.17497e-05 6.49563e-05 7.93262e-05 9.43738e-05 0.000109336 0.000123403 0.000135864 0.000146205 0.000154151 0.000159646 0.000162791 0.000163789 0.000162885 0.000160352 0.000156452 0.000151433 0.000145503 0.000138728 0.000130799 0.000120542 0.000105087 8.74201e-05 6.77662e-05 4.67106e-05 2.58435e-05 9.16512e-06 1.5543e-06 1.41078e-07 7.00937e-08 1.26385e-07 2.03413e-07 1.59444e-06 8.88575e-06 2.33206e-05 3.74628e-05 4.96247e-05 6.28082e-05 7.72695e-05 9.24756e-05 0.000107614 0.000121817 0.000134328 0.000144618 0.000152426 0.000157729 0.000160667 0.000161474 0.000160411 0.000157761 0.000153775 0.000148687 0.000142687 0.000135834 0.000127844 0.000117644 0.000102604 8.52913e-05 6.60458e-05 4.54452e-05 2.50615e-05 8.83992e-06 1.49399e-06 1.36771e-07 6.88741e-08 1.27635e-07 2.03142e-07 1.54743e-06 8.60222e-06 2.25215e-05 3.56052e-05 4.74823e-05 6.06389e-05 7.52035e-05 9.05918e-05 0.00010593 0.00012028 0.000132833 0.000143046 0.000150682 0.000155758 0.000158461 0.000159056 0.000157826 0.000155055 0.000150988 0.000145845 0.000139798 0.000132898 0.00012488 0.000114755 0.000100086 8.31307e-05 6.42943e-05 4.41488e-05 2.42534e-05 8.50254e-06 1.43133e-06 1.32233e-07 6.75551e-08 1.28751e-07 2.01614e-07 1.49508e-06 8.29948e-06 2.16883e-05 3.37573e-05 4.5349e-05 5.8475e-05 7.31537e-05 8.87471e-05 0.000104307 0.000118809 0.000131388 0.00014149 0.000148909 0.000153716 0.000156148 0.000156506 0.000155089 0.000152185 0.000148027 0.000142816 0.000136705 0.000129734 0.000121665 0.000111625 9.74557e-05 8.08847e-05 6.24878e-05 4.28287e-05 2.3446e-05 8.17261e-06 1.3711e-06 1.27978e-07 6.63747e-08 1.29722e-07 1.99109e-07 1.43531e-06 7.96443e-06 2.07966e-05 3.18903e-05 4.3195e-05 5.62887e-05 7.10953e-05 8.69193e-05 0.000102723 0.000117384 0.000129972 0.00013993 0.000147095 0.000151603 0.000153744 0.000153854 0.00015225 0.000149218 0.000144981 0.000139723 0.00013358 0.000126585 0.000118518 0.000108587 9.48284e-05 7.86377e-05 6.06709e-05 4.14874e-05 2.26152e-05 7.83124e-06 1.30865e-06 1.23483e-07 6.50775e-08 1.30558e-07 1.96e-07 1.37132e-06 7.60916e-06 1.98677e-05 3.00283e-05 4.10525e-05 5.41192e-05 6.90718e-05 8.51515e-05 0.000101214 0.000116022 0.000128581 0.000138342 0.000145204 0.000149376 0.000151204 0.000151054 0.000149251 0.000146082 0.000141754 0.000136433 0.000130235 0.000123182 0.000115088 0.000105283 9.20993e-05 7.63207e-05 5.88173e-05 4.01412e-05 2.17995e-05 7.50376e-06 1.24995e-06 1.19403e-07 6.39789e-08 1.31244e-07 1.92192e-07 1.29938e-06 7.21315e-06 1.8866e-05 2.81433e-05 3.8898e-05 5.19392e-05 6.70485e-05 8.34015e-05 9.97294e-05 0.000114664 0.000127148 0.000136663 0.000143196 0.000147035 0.000148567 0.000148172 0.000146185 0.000142892 0.000138493 0.000133139 0.000126932 0.000119888 0.000111836 0.000102181 8.94297e-05 7.40513e-05 5.69926e-05 3.88014e-05 2.09757e-05 7.17039e-06 1.18978e-06 1.15071e-07 6.27166e-08 1.31791e-07 1.88027e-07 1.22375e-06 6.78762e-06 1.76669e-05 2.62715e-05 3.67914e-05 4.98032e-05 6.50737e-05 8.17125e-05 9.82974e-05 0.000113302 0.000125614 0.000134796 0.000140971 0.000144503 0.000145786 0.00014518 0.000143011 0.000139574 0.000135073 0.000129653 0.000123398 0.000116319 0.000108273 9.87865e-05 8.66596e-05 7.17207e-05 5.51481e-05 3.748e-05 2.01892e-05 6.86128e-06 1.13508e-06 1.1129e-07 6.17073e-08 1.3219e-07 1.83481e-07 1.14351e-06 6.32677e-06 1.61744e-05 2.44031e-05 3.46995e-05 4.76519e-05 6.30778e-05 8.00216e-05 9.6868e-05 0.000111878 0.000123802 0.000132031 0.000137862 0.000141803 0.000143047 0.00014226 0.000139901 0.000136313 0.000131716 0.000126253 0.000120003 0.000112966 0.000105008 9.57063e-05 8.39913e-05 6.94684e-05 5.335e-05 3.61704e-05 1.93931e-05 6.54443e-06 1.0784e-06 1.07154e-07 6.04552e-08 1.32466e-07 1.78969e-07 1.06616e-06 5.87942e-06 1.47625e-05 2.25854e-05 3.26223e-05 4.55155e-05 6.11449e-05 7.84664e-05 9.55784e-05 0.000110286 0.000120542 0.000128056 0.000133675 0.000137496 0.000139635 0.000139484 0.000136947 0.000133038 0.0001282 0.000122602 0.000116288 0.000109232 0.000101316 9.22282e-05 8.1195e-05 6.71416e-05 5.15323e-05 3.48887e-05 1.86462e-05 6.25879e-06 1.02883e-06 1.03746e-07 5.95383e-08 1.32598e-07 1.74029e-07 9.83516e-07 5.40491e-06 1.33633e-05 2.07637e-05 3.05199e-05 4.33491e-05 5.92068e-05 7.69161e-05 9.40729e-05 0.000107407 0.000116597 0.000123856 0.000129255 0.000132909 0.000134949 0.0001355 0.000134061 0.000130086 0.000124951 0.000119152 0.000112781 0.000105777 9.79926e-05 8.91312e-05 7.85018e-05 6.48806e-05 4.97342e-05 3.3583e-05 1.78568e-05 5.94938e-06 9.74216e-07 9.97202e-08 5.82677e-08 1.32605e-07 1.69231e-07 9.04959e-07 4.94661e-06 1.20365e-05 1.9004e-05 2.84613e-05 4.12298e-05 5.73457e-05 7.54379e-05 9.24366e-05 0.000103623 0.000112517 0.00011949 0.000124637 0.000128096 0.000130012 0.00013052 0.000129668 0.000126837 0.000121625 0.000115519 0.000108937 0.000101864 9.4138e-05 8.54989e-05 7.54113e-05 6.25247e-05 4.79211e-05 3.23261e-05 1.71398e-05 5.68274e-06 9.29036e-07 9.66519e-08 5.74396e-08 1.32449e-07 1.64039e-07 8.21718e-07 4.46457e-06 1.07274e-05 1.72385e-05 2.63616e-05 3.9053e-05 5.54261e-05 7.36709e-05 8.91117e-05 9.96224e-05 0.00010821 0.000114892 0.000119792 0.000123069 0.00012488 0.00012537 0.000124584 0.000122537 0.000118419 0.000112286 0.000105525 9.84097e-05 9.07979e-05 8.23872e-05 7.2622e-05 6.02198e-05 4.60908e-05 3.09982e-05 1.63405e-05 5.37421e-06 8.75282e-07 9.2634e-08 5.61106e-08 1.3216e-07 1.59118e-07 7.44715e-07 4.01025e-06 9.50216e-06 1.55532e-05 2.43275e-05 3.69449e-05 5.36065e-05 7.19571e-05 8.53316e-05 9.55094e-05 0.000103751 0.000110109 0.000114735 0.000117808 0.000119499 0.00011996 0.000119229 0.000117307 0.00011423 0.000108631 0.000101734 9.44683e-05 8.68444e-05 7.85795e-05 6.92196e-05 5.78162e-05 4.42719e-05 2.97625e-05 1.5653e-05 5.12625e-06 8.34304e-07 8.99076e-08 5.53911e-08 1.31718e-07 1.53862e-07 6.63677e-07 3.53651e-06 8.29775e-06 1.38638e-05 2.22385e-05 3.47264e-05 5.1589e-05 6.95987e-05 8.12498e-05 9.10891e-05 9.89885e-05 0.000105036 0.000109412 0.000112315 0.000113925 0.000114402 0.000113774 0.000112024 0.000109179 0.000105085 9.8422e-05 9.11349e-05 8.35708e-05 7.54932e-05 6.64234e-05 5.54244e-05 4.23621e-05 2.83719e-05 1.48195e-05 4.81034e-06 7.80035e-07 8.57805e-08 5.39823e-08 1.31175e-07 1.48946e-07 5.8945e-07 3.09634e-06 7.18445e-06 1.2271e-05 2.02432e-05 3.26188e-05 4.95605e-05 6.58076e-05 7.70914e-05 8.653e-05 9.40334e-05 9.97309e-05 0.000103834 0.000106555 0.000108083 0.00010858 0.00010806 0.000106484 0.000103871 0.000100209 9.42861e-05 8.70511e-05 7.9497e-05 7.15769e-05 6.29507e-05 5.30328e-05 4.05847e-05 2.71905e-05 1.41766e-05 4.58279e-06 7.43299e-07 8.38013e-08 5.34367e-08 1.30504e-07 1.43674e-07 5.10064e-07 2.63175e-06 6.08484e-06 1.06629e-05 1.81668e-05 3.03707e-05 4.74144e-05 6.158e-05 7.24728e-05 8.15047e-05 8.86258e-05 9.40065e-05 9.78845e-05 0.000100485 0.000102 0.000102589 0.000102247 0.00010091 9.85865e-05 9.5255e-05 9.049e-05 8.35836e-05 7.62153e-05 6.85384e-05 6.02109e-05 5.05709e-05 3.85964e-05 2.57279e-05 1.33045e-05 4.26669e-06 6.948e-07 8.17489e-08 5.1937e-08 1.29757e-07 1.38975e-07 4.41159e-07 2.21851e-06 5.09547e-06 9.17353e-06 1.62083e-05 2.82846e-05 4.54162e-05 5.72803e-05 6.77093e-05 7.6253e-05 8.29224e-05 8.79393e-05 9.15681e-05 9.40428e-05 9.55554e-05 9.62577e-05 9.61189e-05 9.50421e-05 9.30228e-05 9.00333e-05 8.56619e-05 7.89477e-05 7.17926e-05 6.44176e-05 5.65628e-05 4.77803e-05 3.68952e-05 2.46541e-05 1.2761e-05 4.09346e-06 6.71272e-07 8.14778e-08 5.16157e-08 1.28951e-07 1.34087e-07 3.6906e-07 1.78924e-06 4.12349e-06 7.66381e-06 1.4122e-05 2.58061e-05 4.11027e-05 5.24618e-05 6.23686e-05 7.03988e-05 7.66237e-05 8.13122e-05 8.47481e-05 8.71616e-05 8.87456e-05 8.96454e-05 8.97926e-05 8.90572e-05 8.74182e-05 8.4827e-05 8.12157e-05 7.50599e-05 6.82326e-05 6.12225e-05 5.37754e-05 4.53952e-05 3.4893e-05 2.31812e-05 1.18929e-05 3.78461e-06 6.21979e-07 7.79882e-08 4.98938e-08 1.28062e-07 1.30075e-07 3.13761e-07 1.44368e-06 3.29566e-06 6.31859e-06 1.22198e-05 2.36734e-05 3.69184e-05 4.76819e-05 5.69517e-05 6.43562e-05 7.00474e-05 7.43448e-05 7.75461e-05 7.9869e-05 8.1508e-05 8.26015e-05 8.30306e-05 8.26306e-05 8.13619e-05 7.91399e-05 7.59132e-05 6.97738e-05 6.31691e-05 5.65159e-05 4.95732e-05 4.19924e-05 3.30768e-05 2.20683e-05 1.1337e-05 3.6014e-06 5.93775e-07 7.65877e-08 4.95149e-08 1.27006e-07 1.25914e-07 2.5816e-07 1.09283e-06 2.47369e-06 4.88618e-06 9.95359e-06 2.07282e-05 3.18772e-05 4.20184e-05 5.07106e-05 5.75907e-05 6.28638e-05 6.68844e-05 6.9957e-05 7.22857e-05 7.40364e-05 7.53649e-05 7.61504e-05 7.61662e-05 7.53193e-05 7.35391e-05 7.08116e-05 6.60843e-05 5.97961e-05 5.33336e-05 4.66879e-05 3.95128e-05 3.11251e-05 2.06515e-05 1.05088e-05 3.30674e-06 5.44633e-07 7.20036e-08 4.72451e-08 1.25511e-07 1.22765e-07 2.28802e-07 8.80245e-07 1.86841e-06 3.66373e-06 7.72628e-06 1.73784e-05 2.67231e-05 3.61246e-05 4.41939e-05 5.05566e-05 5.54449e-05 5.9222e-05 6.21802e-05 6.45019e-05 6.63237e-05 6.78128e-05 6.88333e-05 6.9095e-05 6.85234e-05 6.7071e-05 6.47123e-05 6.07306e-05 5.45763e-05 4.82828e-05 4.20268e-05 3.5554e-05 2.84539e-05 1.90424e-05 9.65311e-06 3.01451e-06 4.97931e-07 6.87166e-08 4.61452e-08 1.23477e-07 1.19065e-07 1.99775e-07 6.82958e-07 1.32967e-06 2.42044e-06 4.94651e-06 1.15681e-05 1.93668e-05 2.76764e-05 3.52751e-05 4.15335e-05 4.65219e-05 5.05192e-05 5.37742e-05 5.64535e-05 5.86541e-05 6.04786e-05 6.18553e-05 6.25323e-05 6.24381e-05 6.15211e-05 5.97447e-05 5.70561e-05 5.23463e-05 4.61074e-05 3.98049e-05 3.34507e-05 2.66597e-05 1.79354e-05 9.04627e-06 2.80616e-06 4.61777e-07 6.42439e-08 4.33795e-08 1.20341e-07 1.15715e-07 1.99952e-07 6.77881e-07 1.20979e-06 1.87943e-06 3.17248e-06 6.51607e-06 1.18717e-05 1.79201e-05 2.43824e-05 3.03811e-05 3.55992e-05 4.00428e-05 4.3856e-05 4.71922e-05 5.00649e-05 5.24257e-05 5.41657e-05 5.51491e-05 5.53262e-05 5.46588e-05 5.31304e-05 5.07212e-05 4.70818e-05 4.12083e-05 3.52659e-05 2.94006e-05 2.33127e-05 1.55186e-05 7.68637e-06 2.34588e-06 3.89443e-07 5.85472e-08 4.12982e-08 1.15651e-07 1.09971e-07 1.818e-07 6.04007e-07 1.12828e-06 1.67984e-06 2.35201e-06 3.40131e-06 5.23575e-06 7.1844e-06 1.03894e-05 1.48155e-05 1.99683e-05 2.51819e-05 3.02049e-05 3.4964e-05 3.93205e-05 4.3129e-05 4.62468e-05 4.84519e-05 4.95875e-05 4.97236e-05 4.89248e-05 4.71875e-05 4.44656e-05 3.97543e-05 3.37884e-05 2.78305e-05 2.18716e-05 1.49758e-05 7.50067e-06 2.3116e-06 3.83054e-07 5.63891e-08 3.94677e-08 1.08858e-07 1.03893e-07 1.84337e-07 6.36249e-07 1.29785e-06 2.10274e-06 3.23375e-06 4.7244e-06 5.55953e-06 6.06898e-06 6.70855e-06 7.88495e-06 1.0054e-05 1.3505e-05 1.79839e-05 2.29643e-05 2.80691e-05 3.29083e-05 3.71617e-05 4.05802e-05 4.29322e-05 4.39669e-05 4.36928e-05 4.23661e-05 4.00142e-05 3.66154e-05 3.12317e-05 2.55416e-05 1.98757e-05 1.29629e-05 6.25379e-06 1.85789e-06 3.08013e-07 5.09106e-08 3.81206e-08 1.01222e-07 9.7338e-08 1.77305e-07 5.97705e-07 1.33545e-06 2.2081e-06 3.43471e-06 4.40436e-06 5.15036e-06 5.78463e-06 6.36005e-06 6.96117e-06 7.7187e-06 8.82852e-06 1.05701e-05 1.32539e-05 1.70375e-05 2.16128e-05 2.63098e-05 3.06526e-05 3.42616e-05 3.67847e-05 3.78999e-05 3.75811e-05 3.60366e-05 3.33418e-05 2.94577e-05 2.42249e-05 1.87407e-05 1.26727e-05 6.49145e-06 2.06886e-06 3.51312e-07 5.41509e-08 3.93253e-08 9.53732e-08 9.49425e-08 2.05192e-07 7.37488e-07 1.81466e-06 3.12497e-06 4.31698e-06 5.26711e-06 6.01682e-06 6.65739e-06 7.2868e-06 7.99876e-06 8.88483e-06 1.00227e-05 1.14715e-05 1.33078e-05 1.5684e-05 1.87755e-05 2.26399e-05 2.70307e-05 3.08901e-05 3.44026e-05 3.72946e-05 3.89085e-05 3.85529e-05 3.59987e-05 3.16785e-05 2.63296e-05 2.04426e-05 1.34863e-05 6.3516e-06 1.82123e-06 2.94497e-07 5.14508e-08 3.99194e-08 9.42652e-08 9.88807e-08 2.71631e-07 1.03224e-06 2.44337e-06 3.93488e-06 5.1032e-06 6.00436e-06 6.8204e-06 7.6976e-06 8.75363e-06 1.00998e-05 1.18287e-05 1.39634e-05 1.59838e-05 1.84897e-05 2.11566e-05 2.32836e-05 2.37335e-05 2.52737e-05 2.63359e-05 2.62964e-05 2.58286e-05 2.49529e-05 2.36832e-05 2.20295e-05 1.99897e-05 1.75031e-05 1.44006e-05 1.04655e-05 5.84099e-06 1.94476e-06 3.27854e-07 5.29231e-08 3.87516e-08 9.6855e-08 1.11491e-07 4.42695e-07 1.71605e-06 3.49498e-06 4.76024e-06 5.58646e-06 6.30957e-06 7.10612e-06 8.07741e-06 9.32408e-06 1.09787e-05 1.32059e-05 1.6163e-05 1.99355e-05 2.44793e-05 2.96085e-05 3.50402e-05 4.04417e-05 4.53955e-05 4.94927e-05 5.23939e-05 5.37477e-05 5.32598e-05 5.07112e-05 4.33553e-05 3.23595e-05 2.36781e-05 1.67727e-05 9.96749e-06 3.62533e-06 8.69572e-07 1.44755e-07 3.47443e-08 2.79505e-08 6.92311e-08 1.47091e-07 1.27103e-06 3.83595e-06 4.62607e-06 4.98471e-06 5.47741e-06 6.04194e-06 6.64711e-06 7.29329e-06 7.98663e-06 8.73295e-06 9.53452e-06 1.03847e-05 1.12605e-05 1.21159e-05 1.28807e-05 1.34668e-05 1.3771e-05 1.37833e-05 1.34779e-05 1.28326e-05 1.18581e-05 1.05898e-05 9.08307e-06 7.4077e-06 5.66043e-06 3.95759e-06 2.43641e-06 1.24553e-06 4.87785e-07 1.39302e-07 3.05999e-08 1.08765e-08 9.0887e-09 3.29574e-08 1.8829e-06 2.26946e-06 2.50143e-06 2.71314e-06 2.86714e-06 2.97338e-06 3.04503e-06 3.08885e-06 3.10947e-06 3.11045e-06 3.09466e-06 3.06444e-06 3.02159e-06 2.9674e-06 2.90262e-06 2.82739e-06 2.74111e-06 2.64143e-06 2.52967e-06 2.40427e-06 2.26275e-06 2.10325e-06 1.92385e-06 1.72347e-06 1.50228e-06 1.2631e-06 1.01281e-06 7.64319e-07 5.36695e-07 3.51459e-07 2.21317e-07 1.37689e-07 8.26182e-08 1.56409e-09 1.23916e-10 1.05183e-08 1.94861e-08 3.06506e-08 4.47012e-08 6.19327e-08 8.22634e-08 1.05337e-07 1.3062e-07 1.57472e-07 1.8519e-07 2.13037e-07 2.40273e-07 2.66184e-07 2.90112e-07 3.11481e-07 3.29826e-07 3.44808e-07 3.56242e-07 3.64001e-07 3.68152e-07 3.68894e-07 3.66517e-07 3.61363e-07 3.53784e-07 3.44112e-07 3.32683e-07 3.19903e-07 3.06368e-07 2.92888e-07 2.80086e-07 2.66616e-07 2.4382e-07 1.89957e-07 4.10727e-09 2.35284e-10 5.31971e-10 5.14928e-09 2.73512e-08 8.80276e-08 2.09415e-07 4.11223e-07 7.08995e-07 1.11214e-06 1.62053e-06 2.22003e-06 2.87882e-06 3.54696e-06 4.16162e-06 4.65801e-06 4.98308e-06 5.10696e-06 5.02783e-06 4.76997e-06 4.36934e-06 3.87513e-06 3.33724e-06 2.79807e-06 2.29023e-06 1.83585e-06 1.44713e-06 1.12721e-06 8.70832e-07 6.63477e-07 4.77723e-07 2.84258e-07 1.13571e-07 3.00324e-08 1.10011e-08 1.00697e-08 5.38797e-10 1.43476e-09 1.40033e-08 6.92538e-08 2.0633e-07 4.51338e-07 8.08406e-07 1.26484e-06 1.8008e-06 2.39631e-06 3.03435e-06 3.70123e-06 4.38575e-06 5.07764e-06 5.76558e-06 6.43482e-06 7.06458e-06 7.62517e-06 8.07812e-06 8.3775e-06 8.47367e-06 8.32339e-06 7.9023e-06 7.21822e-06 6.3189e-06 5.28616e-06 4.21157e-06 3.1595e-06 2.14549e-06 1.19514e-06 4.74936e-07 1.25597e-07 2.77538e-08 1.50955e-08 1.59827e-08 7.97057e-10 1.88847e-09 1.65014e-08 7.6997e-08 2.19214e-07 4.64526e-07 8.21757e-07 1.29411e-06 1.88121e-06 2.57626e-06 3.36412e-06 4.22301e-06 5.12925e-06 6.0614e-06 7.00216e-06 7.93831e-06 8.85804e-06 9.74188e-06 1.05516e-05 1.1259e-05 1.18144e-05 1.21592e-05 1.22321e-05 1.19751e-05 1.13423e-05 1.03051e-05 8.84511e-06 6.94193e-06 4.34821e-06 2.25619e-06 8.27843e-07 1.92807e-07 3.74687e-08 1.94982e-08 2.05193e-08 1.12336e-09 2.2476e-09 1.71049e-08 7.73985e-08 2.2057e-07 4.79206e-07 8.82753e-07 1.45555e-06 2.20622e-06 3.1169e-06 4.14485e-06 5.23549e-06 6.33672e-06 7.40883e-06 8.42892e-06 9.39152e-06 1.03041e-05 1.11691e-05 1.19642e-05 1.27057e-05 1.33748e-05 1.3933e-05 1.43254e-05 1.44833e-05 1.4323e-05 1.37308e-05 1.25298e-05 1.04672e-05 6.79331e-06 3.62253e-06 1.4465e-06 3.42977e-07 5.98181e-08 2.46059e-08 2.50353e-08 1.72419e-09 3.03551e-09 1.92573e-08 8.74253e-08 2.63677e-07 6.20446e-07 1.24123e-06 2.19227e-06 3.47872e-06 5.02709e-06 6.7138e-06 8.41114e-06 1.00183e-05 1.14707e-05 1.27374e-05 1.38145e-05 1.47164e-05 1.54566e-05 1.60298e-05 1.6484e-05 1.68365e-05 1.69791e-05 1.7073e-05 1.72247e-05 1.69946e-05 1.64031e-05 1.52024e-05 1.2928e-05 8.72721e-06 4.89498e-06 2.08259e-06 5.20182e-07 8.83399e-08 3.00473e-08 2.93618e-08 2.58212e-09 4.03344e-09 2.33707e-08 1.14009e-07 3.77889e-07 9.68437e-07 2.05641e-06 3.7261e-06 5.88425e-06 8.30345e-06 1.07448e-05 1.30342e-05 1.50721e-05 1.68147e-05 1.82542e-05 1.94041e-05 2.02881e-05 2.09219e-05 2.13039e-05 2.14881e-05 2.11233e-05 2.02819e-05 1.95814e-05 1.90336e-05 1.85727e-05 1.79302e-05 1.65056e-05 1.36455e-05 9.6031e-06 5.71468e-06 2.55129e-06 6.64814e-07 1.13813e-07 3.49588e-08 3.30944e-08 3.54294e-09 5.25775e-09 3.05491e-08 1.60716e-07 5.69041e-07 1.52113e-06 3.26376e-06 5.80387e-06 8.85624e-06 1.20489e-05 1.51004e-05 1.78516e-05 2.02319e-05 2.22223e-05 2.38324e-05 2.50856e-05 2.60065e-05 2.66031e-05 2.68698e-05 2.68607e-05 2.54122e-05 2.38487e-05 2.24282e-05 2.1116e-05 1.98633e-05 1.84686e-05 1.65098e-05 1.35664e-05 9.81681e-06 6.15478e-06 2.88518e-06 7.75834e-07 1.3466e-07 3.91011e-08 3.62023e-08 4.40008e-09 6.44841e-09 3.9e-08 2.16185e-07 7.91807e-07 2.14284e-06 4.54729e-06 7.87671e-06 1.16738e-05 1.54883e-05 1.90347e-05 2.2173e-05 2.48536e-05 2.70763e-05 2.88627e-05 3.02424e-05 3.12378e-05 3.18457e-05 3.20557e-05 3.14334e-05 2.98388e-05 2.78266e-05 2.57803e-05 2.37292e-05 2.1661e-05 1.94484e-05 1.68302e-05 1.35983e-05 9.94148e-06 6.45118e-06 3.15723e-06 8.67873e-07 1.52129e-07 4.27448e-08 3.90211e-08 5.17565e-09 7.64211e-09 4.86566e-08 2.78826e-07 1.03916e-06 2.81758e-06 5.8941e-06 9.98023e-06 1.44662e-05 1.88475e-05 2.28387e-05 2.63131e-05 2.883e-05 3.10296e-05 3.29497e-05 3.47097e-05 3.62088e-05 3.68325e-05 3.68191e-05 3.58057e-05 3.41911e-05 3.20444e-05 2.94839e-05 2.67298e-05 2.38539e-05 2.08283e-05 1.75377e-05 1.39282e-05 1.02022e-05 6.76196e-06 3.43482e-06 9.59331e-07 1.68716e-07 4.62156e-08 4.17823e-08 5.85134e-09 8.78051e-09 5.87152e-08 3.43577e-07 1.29152e-06 3.48986e-06 7.19184e-06 1.19484e-05 1.70319e-05 2.1904e-05 2.62759e-05 2.93874e-05 3.18771e-05 3.40327e-05 3.60214e-05 3.78789e-05 3.95865e-05 4.09207e-05 4.07888e-05 4.00019e-05 3.85108e-05 3.62476e-05 3.33045e-05 2.99032e-05 2.62434e-05 2.24285e-05 1.84863e-05 1.44752e-05 1.05949e-05 7.118e-06 3.73069e-06 1.0549e-06 1.8524e-07 4.96434e-08 4.45605e-08 6.47477e-09 9.89721e-09 6.90036e-08 4.08925e-07 1.54243e-06 4.14503e-06 8.42914e-06 1.38e-05 1.94377e-05 2.47781e-05 2.9382e-05 3.23525e-05 3.48503e-05 3.71192e-05 3.92184e-05 4.11674e-05 4.29511e-05 4.43788e-05 4.45461e-05 4.40266e-05 4.26881e-05 4.03796e-05 3.71324e-05 3.31625e-05 2.87701e-05 2.42034e-05 1.96344e-05 1.5211e-05 1.11218e-05 7.54371e-06 4.06542e-06 1.1625e-06 2.03107e-07 5.31428e-08 4.73766e-08 7.07399e-09 1.10054e-08 7.94804e-08 4.75338e-07 1.79687e-06 4.80292e-06 9.65334e-06 1.56127e-05 2.17826e-05 2.75774e-05 3.22478e-05 3.53264e-05 3.79354e-05 4.03172e-05 4.25149e-05 4.45402e-05 4.63788e-05 4.78701e-05 4.82581e-05 4.79323e-05 4.67055e-05 4.43639e-05 4.08688e-05 3.64177e-05 3.13702e-05 2.61094e-05 2.09437e-05 1.61012e-05 1.17634e-05 8.036e-06 4.43316e-06 1.2813e-06 2.2241e-07 5.67243e-08 5.02121e-08 7.68042e-09 1.21316e-08 9.03123e-08 5.44006e-07 2.05869e-06 5.47028e-06 1.08732e-05 1.73972e-05 2.40788e-05 3.03179e-05 3.5126e-05 3.83292e-05 4.10738e-05 4.35813e-05 4.58849e-05 4.79872e-05 4.98701e-05 5.13947e-05 5.19244e-05 5.17102e-05 5.05304e-05 4.81345e-05 4.44312e-05 3.95855e-05 3.39869e-05 2.81159e-05 2.23974e-05 1.71353e-05 1.2516e-05 8.59819e-06 4.83682e-06 1.41274e-06 2.43508e-07 6.03885e-08 5.30291e-08 8.29937e-09 1.32573e-08 1.01351e-07 6.1453e-07 2.32778e-06 6.14937e-06 1.2098e-05 1.91739e-05 2.63576e-05 3.30372e-05 3.80531e-05 4.14033e-05 4.429e-05 4.69287e-05 4.93424e-05 5.1522e-05 5.34425e-05 5.49804e-05 5.55905e-05 5.5414e-05 5.42101e-05 5.17145e-05 4.78084e-05 4.26307e-05 3.65792e-05 3.01898e-05 2.39733e-05 1.83003e-05 1.33754e-05 9.23186e-06 5.2741e-06 1.5561e-06 2.66368e-07 6.4111e-08 5.57932e-08 8.95227e-09 1.43925e-08 1.1288e-07 6.89364e-07 2.61398e-06 6.86296e-06 1.33632e-05 2.09852e-05 2.86614e-05 3.57729e-05 4.10259e-05 4.4537e-05 4.75641e-05 5.03309e-05 5.2852e-05 5.5105e-05 5.70546e-05 5.85858e-05 5.92286e-05 5.9038e-05 5.77569e-05 5.51228e-05 5.1011e-05 4.5547e-05 3.91254e-05 3.23057e-05 2.56508e-05 1.95848e-05 1.43392e-05 9.9404e-06 5.74735e-06 1.7122e-06 2.9115e-07 6.78778e-08 5.84762e-08 9.6308e-09 1.5489e-08 1.24702e-07 7.67887e-07 2.91547e-06 7.60597e-06 1.46607e-05 2.28229e-05 3.09835e-05 3.85198e-05 4.40527e-05 4.77258e-05 5.08882e-05 5.37783e-05 5.64015e-05 5.87209e-05 6.06903e-05 6.21974e-05 6.28278e-05 6.25779e-05 6.11813e-05 5.83829e-05 5.4064e-05 4.83474e-05 4.16198e-05 3.44448e-05 2.7409e-05 2.09744e-05 1.54023e-05 1.07252e-05 6.25755e-06 1.88151e-06 3.1795e-07 7.16803e-08 6.10626e-08 1.03451e-08 1.65532e-08 1.37153e-07 8.52667e-07 3.24136e-06 8.39676e-06 1.60157e-05 2.47148e-05 3.33501e-05 4.12993e-05 4.71264e-05 5.09564e-05 5.42458e-05 5.72503e-05 5.99654e-05 6.23395e-05 6.43159e-05 6.57814e-05 6.63622e-05 6.60189e-05 6.4477e-05 6.14962e-05 5.69749e-05 5.10372e-05 4.40581e-05 3.65919e-05 2.92285e-05 2.24541e-05 1.65583e-05 1.15869e-05 6.80677e-06 2.06512e-06 3.46974e-07 7.55213e-08 6.35436e-08 1.10878e-08 1.77054e-08 1.50985e-07 9.46557e-07 3.59729e-06 9.24024e-06 1.74295e-05 2.66592e-05 3.57586e-05 4.41089e-05 5.02427e-05 5.42252e-05 5.76334e-05 6.07429e-05 6.35383e-05 6.59531e-05 6.79237e-05 6.93304e-05 6.98264e-05 6.93524e-05 6.76434e-05 6.44698e-05 5.97501e-05 5.36154e-05 4.64293e-05 3.87255e-05 3.1085e-05 2.40035e-05 1.77951e-05 1.25212e-05 7.39383e-06 2.26331e-06 3.78328e-07 7.94045e-08 6.59168e-08 1.18651e-08 1.91907e-08 1.67226e-07 1.0523e-06 3.98685e-06 1.0137e-05 1.88983e-05 2.86499e-05 3.82019e-05 4.69415e-05 5.3386e-05 5.75178e-05 6.10382e-05 6.42446e-05 6.71109e-05 6.95578e-05 7.15115e-05 7.28445e-05 7.3231e-05 7.25991e-05 7.07014e-05 6.73257e-05 6.24111e-05 5.60977e-05 4.87368e-05 4.08379e-05 3.29635e-05 2.56071e-05 1.9102e-05 1.35234e-05 8.01716e-06 2.47625e-06 4.12119e-07 8.33366e-08 6.81828e-08 1.26699e-08 2.08204e-08 1.84832e-07 1.16594e-06 4.40031e-06 1.10707e-05 2.04038e-05 3.06715e-05 4.06691e-05 4.97904e-05 5.65585e-05 6.08358e-05 6.44607e-05 6.77544e-05 7.06813e-05 7.31524e-05 7.50788e-05 7.63235e-05 7.65777e-05 7.57627e-05 7.36552e-05 7.00693e-05 6.49628e-05 5.84851e-05 5.09754e-05 4.29166e-05 3.48458e-05 2.72466e-05 2.04648e-05 1.45851e-05 8.67205e-06 2.70306e-06 4.48308e-07 8.73185e-08 7.03434e-08 1.35041e-08 2.25299e-08 2.03577e-07 1.28723e-06 4.83758e-06 1.20404e-05 2.19444e-05 3.27217e-05 4.31569e-05 5.26518e-05 5.97469e-05 6.41669e-05 6.78915e-05 7.12672e-05 7.42496e-05 7.67391e-05 7.86299e-05 7.97745e-05 7.98799e-05 7.88662e-05 7.65357e-05 7.27325e-05 6.74342e-05 6.07996e-05 5.31571e-05 4.49622e-05 3.67233e-05 2.891e-05 2.18722e-05 1.56982e-05 9.35333e-06 2.94245e-06 4.86787e-07 9.13477e-08 7.2401e-08 1.43643e-08 2.43334e-08 2.23723e-07 1.41763e-06 5.30241e-06 1.30517e-05 2.35268e-05 3.48075e-05 4.56723e-05 5.55313e-05 6.29504e-05 6.75071e-05 7.13242e-05 7.47742e-05 7.78089e-05 8.03123e-05 8.21593e-05 8.31941e-05 8.3138e-05 8.19143e-05 7.93504e-05 7.5323e-05 6.98338e-05 6.30483e-05 5.52847e-05 4.69719e-05 3.85884e-05 3.05861e-05 2.33129e-05 1.68536e-05 1.00544e-05 3.19235e-06 5.27296e-07 9.5413e-08 7.4357e-08 1.52519e-08 2.62229e-08 2.45117e-07 1.5561e-06 5.79036e-06 1.40942e-05 2.51366e-05 3.69138e-05 4.82013e-05 5.84184e-05 6.61577e-05 7.08498e-05 7.47577e-05 7.82791e-05 8.13618e-05 8.38732e-05 8.56695e-05 8.65868e-05 8.63603e-05 8.49195e-05 8.21177e-05 7.78646e-05 7.21852e-05 6.52508e-05 5.73711e-05 4.89508e-05 4.04391e-05 3.22679e-05 2.4778e-05 1.80432e-05 1.07691e-05 3.45055e-06 5.69547e-07 9.94997e-08 7.62123e-08 1.61655e-08 2.82023e-08 2.67851e-07 1.70315e-06 6.30225e-06 1.51679e-05 2.67731e-05 3.90387e-05 5.07404e-05 6.13068e-05 6.93606e-05 7.41837e-05 7.81785e-05 8.17682e-05 8.48951e-05 8.74097e-05 8.91497e-05 8.99445e-05 8.95429e-05 8.78828e-05 8.48431e-05 8.03636e-05 7.44939e-05 6.74133e-05 5.94218e-05 5.09016e-05 4.22741e-05 3.39509e-05 2.62608e-05 1.92598e-05 1.14915e-05 3.71466e-06 6.13164e-07 1.03586e-07 7.79665e-08 1.71065e-08 3.02708e-08 2.919e-07 1.85859e-06 6.83667e-06 1.62694e-05 2.84323e-05 4.11787e-05 5.32866e-05 6.41942e-05 7.25524e-05 7.75026e-05 8.15808e-05 8.52377e-05 8.84066e-05 9.09193e-05 9.25977e-05 9.32659e-05 9.26862e-05 9.08069e-05 8.75318e-05 8.28292e-05 7.67717e-05 6.95465e-05 6.14445e-05 5.28281e-05 4.4093e-05 3.56296e-05 2.77557e-05 2.04978e-05 1.22169e-05 3.98266e-06 6.57828e-07 1.07652e-07 7.9617e-08 1.8075e-08 3.24299e-08 3.17288e-07 2.02245e-06 7.39273e-06 1.7396e-05 3.011e-05 4.33288e-05 5.58352e-05 6.70771e-05 7.57282e-05 8.08021e-05 8.49611e-05 8.86817e-05 9.18883e-05 9.43942e-05 9.60069e-05 9.65463e-05 9.57884e-05 9.36931e-05 9.01882e-05 8.52685e-05 7.90275e-05 7.16595e-05 6.3447e-05 5.47351e-05 4.58969e-05 3.73029e-05 2.92581e-05 2.17515e-05 1.29402e-05 4.2522e-06 7.03138e-07 1.11671e-07 8.11615e-08 1.90721e-08 3.46787e-08 3.44e-07 2.19459e-06 7.96916e-06 1.85443e-05 3.18017e-05 4.54836e-05 5.83795e-05 6.99472e-05 7.88786e-05 8.40729e-05 8.83104e-05 9.20917e-05 9.53322e-05 9.78272e-05 9.93708e-05 9.97807e-05 9.88466e-05 9.65409e-05 9.2814e-05 8.76846e-05 8.12644e-05 7.37546e-05 6.54319e-05 5.6625e-05 4.76869e-05 3.89703e-05 3.07656e-05 2.30174e-05 1.36582e-05 4.52157e-06 7.48778e-07 1.15621e-07 8.25964e-08 2.00969e-08 3.70169e-08 3.7204e-07 2.37488e-06 8.56473e-06 1.97116e-05 3.35039e-05 4.76393e-05 6.09155e-05 7.28004e-05 8.19967e-05 8.73074e-05 9.16213e-05 9.54604e-05 9.87304e-05 0.00010121 0.000102682 0.000102963 0.000101857 9.93478e-05 9.54082e-05 9.00779e-05 8.34842e-05 7.58351e-05 6.74016e-05 5.84986e-05 4.94622e-05 4.06292e-05 3.22747e-05 2.42914e-05 1.43673e-05 4.78898e-06 7.94415e-07 1.19478e-07 8.39187e-08 2.11491e-08 3.94346e-08 4.01233e-07 2.56216e-06 9.17526e-06 2.08901e-05 3.52068e-05 4.97851e-05 6.34323e-05 7.5626e-05 8.50717e-05 9.04958e-05 9.48853e-05 9.87802e-05 0.000102076 0.000104537 0.000105936 0.00010609 0.000104817 0.000102114 9.79732e-05 9.24523e-05 8.56925e-05 7.79073e-05 6.93628e-05 6.03614e-05 5.12261e-05 4.22806e-05 3.37841e-05 2.55712e-05 1.50654e-05 5.05322e-06 8.39808e-07 1.23222e-07 8.51262e-08 2.22273e-08 4.1923e-08 4.31414e-07 2.75518e-06 9.79629e-06 2.20724e-05 3.69019e-05 5.19126e-05 6.59219e-05 7.84165e-05 8.80937e-05 9.36279e-05 9.80915e-05 0.00010204 0.000105359 0.000107798 0.000109125 0.000109156 0.000107724 0.000104838 0.000100508 9.48082e-05 8.78907e-05 7.99724e-05 7.13161e-05 6.22147e-05 5.29802e-05 4.39253e-05 3.52936e-05 2.68551e-05 1.57509e-05 5.31329e-06 8.84724e-07 1.26832e-07 8.62184e-08 2.33286e-08 4.44774e-08 4.62541e-07 2.95335e-06 1.04247e-05 2.32523e-05 3.85815e-05 5.40131e-05 6.83748e-05 8.11621e-05 9.10567e-05 9.66977e-05 0.000101234 0.000105234 0.000108573 0.00011099 0.000112244 0.000112158 0.000110575 0.000107518 0.000103012 9.71452e-05 9.00783e-05 8.20308e-05 7.32626e-05 6.40595e-05 5.4725e-05 4.55635e-05 3.68028e-05 2.81424e-05 1.64234e-05 5.56884e-06 9.29068e-07 1.30297e-07 8.71973e-08 2.44477e-08 4.71073e-08 4.94872e-07 3.15831e-06 1.10648e-05 2.44358e-05 4.02513e-05 5.60913e-05 7.07941e-05 8.38642e-05 9.396e-05 9.97041e-05 0.00010431 0.00010836 0.000111716 0.000114108 0.000115292 0.000115093 0.000113369 0.000110154 0.000105485 9.94642e-05 9.22573e-05 8.40853e-05 7.52059e-05 6.58998e-05 5.64641e-05 4.71976e-05 3.83129e-05 2.9433e-05 1.70827e-05 5.81956e-06 9.72724e-07 1.33598e-07 8.80651e-08 2.55853e-08 4.98075e-08 5.28271e-07 3.36907e-06 1.17137e-05 2.56194e-05 4.19073e-05 5.81423e-05 7.31747e-05 8.65176e-05 9.67942e-05 0.000102638 0.000107313 0.00011141 0.000114781 0.000117147 0.000118263 0.000117959 0.000116105 0.000112744 0.000107927 0.000101764 9.44262e-05 8.61349e-05 7.71457e-05 6.77355e-05 5.81974e-05 4.88273e-05 3.98227e-05 3.07248e-05 1.77278e-05 6.06481e-06 1.01549e-06 1.36714e-07 8.88285e-08 2.67375e-08 5.25697e-08 5.62635e-07 3.58484e-06 1.23682e-05 2.67966e-05 4.3542e-05 6.0158e-05 7.55079e-05 8.91134e-05 9.95466e-05 0.000105488 0.000110233 0.000114376 0.000117762 0.000120102 0.000121156 0.000120754 0.00011878 0.000115287 0.000110336 0.000104043 9.65845e-05 8.818e-05 7.90833e-05 6.95688e-05 5.9928e-05 5.04569e-05 4.13386e-05 3.20258e-05 1.83634e-05 6.30685e-06 1.05776e-06 1.39638e-07 8.94902e-08 2.79022e-08 5.5397e-08 5.98082e-07 3.80544e-06 1.30258e-05 2.79636e-05 4.51509e-05 6.21343e-05 7.77899e-05 9.16476e-05 0.000102207 0.000108238 0.000113059 0.000117252 0.000120653 0.000122972 0.000123967 0.000123476 0.000121395 0.000117784 0.000112714 0.000106305 9.87364e-05 9.02256e-05 8.10243e-05 7.14053e-05 6.16605e-05 5.20856e-05 4.28498e-05 3.3317e-05 1.898e-05 6.54045e-06 1.09836e-06 1.42274e-07 9.00573e-08 2.9074e-08 5.82616e-08 6.34114e-07 4.02805e-06 1.36814e-05 2.91153e-05 4.67303e-05 6.40691e-05 8.00204e-05 9.41223e-05 0.000104829 0.00011094 0.000115809 0.000120035 0.000123449 0.00012575 0.000126695 0.000126126 0.00012395 0.000120235 0.000115058 0.000108546 0.000100876 9.22634e-05 8.29572e-05 7.32308e-05 6.33809e-05 5.37097e-05 4.43736e-05 3.4632e-05 1.95917e-05 6.77197e-06 1.13822e-06 1.44594e-07 9.05333e-08 3.02528e-08 6.11954e-08 6.70939e-07 4.25448e-06 1.43392e-05 3.02574e-05 4.82858e-05 6.59658e-05 8.21998e-05 9.6534e-05 0.000107356 0.000113552 0.00011848 0.000122736 0.000126151 0.000128431 0.000129332 0.000128695 0.000126437 0.000122631 0.000117361 0.000110757 0.000102995 9.42892e-05 8.48863e-05 7.50621e-05 6.51177e-05 5.53542e-05 4.58982e-05 3.58805e-05 2.01825e-05 6.99563e-06 1.17623e-06 1.46424e-07 9.09218e-08 3.143e-08 6.4151e-08 7.0824e-07 4.48236e-06 1.49922e-05 3.13792e-05 4.98054e-05 6.78135e-05 8.4319e-05 9.8876e-05 0.000109796 0.00011607 0.000121058 0.000125348 0.000128765 0.00013102 0.000131877 0.000131182 0.000128854 0.000124972 0.000119623 0.00011294 0.000105098 9.6309e-05 8.682e-05 7.69102e-05 6.68853e-05 5.70363e-05 4.74104e-05 3.6822e-05 2.07326e-05 7.20375e-06 1.21067e-06 1.47536e-07 9.12312e-08 3.26021e-08 6.71232e-08 7.45932e-07 4.7113e-06 1.56397e-05 3.24804e-05 5.12888e-05 6.9611e-05 8.63757e-05 0.000101145 0.000112143 0.00011849 0.000123533 0.000127857 0.000131284 0.000133522 0.000134336 0.000133587 0.000131202 0.000127258 0.000121845 0.000115096 0.000107186 9.83253e-05 8.87593e-05 7.87707e-05 6.8668e-05 5.87274e-05 4.89114e-05 3.77322e-05 2.12529e-05 7.39556e-06 1.24048e-06 1.4775e-07 9.14702e-08 3.37639e-08 7.00985e-08 7.8381e-07 4.93992e-06 1.62782e-05 3.3556e-05 5.27304e-05 7.1353e-05 8.83651e-05 0.000103337 0.000114394 0.000120808 0.000125904 0.000130261 0.000133698 0.000135926 0.000136711 0.000135916 0.00013348 0.000129487 0.000124024 0.000117223 0.000109258 0.000100335 9.06999e-05 8.06373e-05 7.04579e-05 6.0421e-05 5.04006e-05 3.86052e-05 2.174e-05 7.56862e-06 1.26528e-06 1.47262e-07 9.16504e-08 3.49147e-08 7.30763e-08 8.21833e-07 5.16784e-06 1.69066e-05 3.46047e-05 5.41291e-05 7.3038e-05 9.02855e-05 0.000105449 0.000116548 0.000123023 0.00012817 0.000132558 0.000136008 0.00013823 0.000138994 0.000138166 0.000135693 0.000131661 0.00012616 0.000119321 0.000111312 0.000102336 9.26379e-05 8.25052e-05 7.22495e-05 6.21119e-05 5.18734e-05 3.94345e-05 2.21923e-05 7.72562e-06 1.28731e-06 1.46878e-07 9.17829e-08 3.60523e-08 7.60464e-08 8.59846e-07 5.39416e-06 1.7523e-05 3.56245e-05 5.54827e-05 7.46642e-05 9.21355e-05 0.000107481 0.000118605 0.000125136 0.000130331 0.00013475 0.000138214 0.000140435 0.000141185 0.000140335 0.000137838 0.00013378 0.000128254 0.000121388 0.000113345 0.000104325 9.4571e-05 8.43712e-05 7.40386e-05 6.37954e-05 5.33281e-05 4.02354e-05 2.26293e-05 7.88152e-06 1.31141e-06 1.47422e-07 9.1881e-08 3.71752e-08 7.90061e-08 8.9782e-07 5.61874e-06 1.81273e-05 3.66157e-05 5.67922e-05 7.62327e-05 9.39161e-05 0.000109434 0.000120568 0.00012715 0.000132391 0.00013684 0.000140319 0.000142542 0.000143286 0.000142425 0.000139914 0.000135843 0.000130305 0.000123423 0.000115358 0.000106303 9.64979e-05 8.62342e-05 7.5825e-05 6.54732e-05 5.47719e-05 4.10284e-05 2.30708e-05 8.04693e-06 1.33955e-06 1.48816e-07 9.19494e-08 3.82795e-08 8.19438e-08 9.35602e-07 5.84067e-06 1.87177e-05 3.75763e-05 5.80559e-05 7.77425e-05 9.56272e-05 0.000111308 0.000122438 0.000129065 0.00013435 0.000138829 0.000142324 0.000144555 0.000145299 0.000144435 0.000141923 0.000137851 0.00013231 0.000125425 0.000117347 0.000108265 9.84156e-05 8.80917e-05 7.76072e-05 6.71459e-05 5.62079e-05 4.18172e-05 2.35173e-05 8.21913e-06 1.36986e-06 1.5047e-07 9.19877e-08 3.93639e-08 8.48572e-08 9.73155e-07 6.05973e-06 1.92938e-05 3.85066e-05 5.92746e-05 7.91948e-05 9.727e-05 0.000113106 0.000124218 0.000130885 0.000136209 0.000140717 0.000144231 0.000146472 0.000147222 0.000146364 0.000143861 0.0001398 0.000134269 0.000127388 0.000119306 0.000110206 0.000100322 8.99447e-05 7.93903e-05 6.88231e-05 5.76479e-05 4.2607e-05 2.39699e-05 8.39702e-06 1.40162e-06 1.52198e-07 9.20006e-08 4.04263e-08 8.77241e-08 1.0101e-06 6.27381e-06 1.98511e-05 3.94008e-05 6.04426e-05 8.05846e-05 9.8841e-05 0.000114823 0.000125912 0.000132611 0.000137973 0.000142509 0.000146043 0.000148298 0.00014906 0.000148214 0.000145728 0.000141687 0.000136177 0.000129312 0.000121237 0.000112129 0.000102217 9.17943e-05 8.11754e-05 7.0505e-05 5.90913e-05 4.33929e-05 2.44232e-05 8.57714e-06 1.43399e-06 1.53939e-07 9.19891e-08 4.14694e-08 9.05541e-08 1.04658e-06 6.4837e-06 2.03918e-05 4.02622e-05 6.15635e-05 8.19154e-05 0.000100343 0.000116464 0.00012752 0.000134249 0.000139645 0.000144209 0.000147764 0.000150035 0.000150812 0.000149983 0.000147521 0.000143509 0.00013803 0.000131191 0.000123132 0.000114025 0.000104096 9.36375e-05 8.29634e-05 7.21956e-05 6.05417e-05 4.41721e-05 2.48739e-05 8.75763e-06 1.46663e-06 1.55677e-07 9.19555e-08 4.24916e-08 9.33333e-08 1.08236e-06 6.6882e-06 2.09135e-05 4.10885e-05 6.26353e-05 8.31859e-05 0.000101776 0.000118028 0.000129047 0.000135801 0.000141228 0.000145819 0.000149395 0.000151684 0.000152479 0.000151674 0.000149242 0.000145266 0.000139825 0.000133023 0.000124992 0.000115896 0.000105961 9.54786e-05 8.47603e-05 7.39041e-05 6.20097e-05 4.49518e-05 2.53276e-05 8.94147e-06 1.50016e-06 1.57449e-07 9.19081e-08 4.34932e-08 9.60716e-08 1.1176e-06 6.88824e-06 2.14187e-05 4.18829e-05 6.36618e-05 8.43998e-05 0.000103143 0.000119519 0.000130493 0.00013727 0.000142727 0.000147344 0.000150942 0.000153251 0.000154068 0.000153289 0.000150892 0.000146958 0.000141563 0.000134806 0.000126811 0.00011774 0.000107811 9.73152e-05 8.65624e-05 7.56234e-05 6.34854e-05 4.57243e-05 2.57779e-05 9.12489e-06 1.53374e-06 1.59212e-07 9.18501e-08 4.4471e-08 9.87458e-08 1.15192e-06 7.08174e-06 2.19031e-05 4.26407e-05 6.46384e-05 8.55535e-05 0.000104441 0.000120935 0.000131856 0.000138652 0.000144139 0.000148782 0.000152403 0.000154733 0.000155574 0.000154825 0.000152468 0.000148581 0.000143238 0.000136533 0.000128584 0.000119545 0.000109633 9.91386e-05 8.83649e-05 7.73521e-05 6.49697e-05 4.64894e-05 2.62252e-05 9.30879e-06 1.56771e-06 1.60996e-07 9.17897e-08 4.54273e-08 1.01354e-07 1.18523e-06 7.26824e-06 2.23661e-05 4.33611e-05 6.55648e-05 8.66466e-05 0.000105671 0.000122277 0.000133136 0.000139949 0.000145464 0.000150132 0.000153776 0.00015613 0.000156997 0.000156282 0.000153967 0.000150132 0.000144846 0.000138201 0.000130307 0.000121314 0.000111433 0.000100951 9.01713e-05 7.91006e-05 6.64808e-05 4.72605e-05 2.668e-05 9.49807e-06 1.60292e-06 1.6285e-07 9.17362e-08 4.63678e-08 1.03902e-07 1.21756e-06 7.44822e-06 2.28093e-05 4.40473e-05 6.64448e-05 8.76836e-05 0.000106837 0.000123547 0.000134338 0.000141164 0.000146706 0.0001514 0.000155067 0.000157444 0.000158339 0.00015766 0.000155391 0.000151611 0.000146388 0.00013981 0.000131986 0.000123058 0.00011323 0.000102779 9.19911e-05 8.08459e-05 6.7978e-05 4.80292e-05 2.71359e-05 9.68934e-06 1.63873e-06 1.64745e-07 9.16947e-08 4.72973e-08 1.06407e-07 1.24919e-06 7.62314e-06 2.32365e-05 4.47048e-05 6.7285e-05 8.86712e-05 0.000107946 0.000124754 0.00013547 0.000142307 0.000147874 0.000152593 0.000156283 0.000158685 0.000159609 0.000158967 0.000156747 0.000153025 0.000147869 0.000141365 0.000133618 0.00012477 0.000115022 0.000104636 9.38593e-05 8.25609e-05 6.91502e-05 4.8761e-05 2.75775e-05 9.87767e-06 1.67441e-06 1.66647e-07 9.16657e-08 4.82184e-08 1.0889e-07 1.28043e-06 7.79492e-06 2.36525e-05 4.5341e-05 6.80939e-05 8.96186e-05 0.000109006 0.000125906 0.000136538 0.000143382 0.000148973 0.000153716 0.000157429 0.000159856 0.000160811 0.000160208 0.000158037 0.000154376 0.00014929 0.000142864 0.000135202 0.000126444 0.000116786 0.000106479 9.57218e-05 8.42496e-05 7.01517e-05 4.94706e-05 2.80087e-05 1.00631e-05 1.7098e-06 1.68548e-07 9.16511e-08 4.91299e-08 1.11332e-07 1.31097e-06 7.96184e-06 2.40537e-05 4.59516e-05 6.88682e-05 9.05237e-05 0.000110018 0.000127004 0.000137541 0.000144388 0.000150002 0.000154769 0.000158506 0.000160958 0.000161943 0.00016138 0.000159261 0.000155661 0.000150646 0.000144301 0.000136727 0.000128065 0.000118508 0.00010829 9.7558e-05 8.59133e-05 7.11304e-05 5.01655e-05 2.8433e-05 1.02469e-05 1.74507e-06 1.70459e-07 9.16536e-08 5.00352e-08 1.13731e-07 1.34071e-06 8.12346e-06 2.44395e-05 4.65358e-05 6.96069e-05 9.13859e-05 0.00011098 0.000128047 0.000138484 0.000145332 0.000150967 0.000155758 0.000159517 0.000161994 0.00016301 0.000162486 0.000160417 0.000156878 0.000151935 0.00014567 0.000138186 0.000129624 0.000120174 0.000110053 9.93572e-05 8.7547e-05 7.20834e-05 5.08441e-05 2.8849e-05 1.0428e-05 1.78002e-06 1.72369e-07 9.1674e-08 5.09368e-08 1.16068e-07 1.36928e-06 8.2779e-06 2.48061e-05 4.70889e-05 7.03052e-05 9.22005e-05 0.00011189 0.000129034 0.000139371 0.000146218 0.000151875 0.000156688 0.00016047 0.000162971 0.000164016 0.000163531 0.000161512 0.000158033 0.000153161 0.000146975 0.00013958 0.000131119 0.000121779 0.000111764 0.000101115 8.91485e-05 7.30113e-05 5.15076e-05 2.9258e-05 1.06075e-05 1.81488e-06 1.74294e-07 9.17156e-08 5.18421e-08 1.18377e-07 1.39722e-06 8.42814e-06 2.516e-05 4.76196e-05 7.09722e-05 9.29763e-05 0.000112755 0.000129971 0.000140207 0.000147052 0.000152728 0.000157564 0.000161367 0.000163891 0.000164966 0.000164517 0.000162546 0.000159125 0.00015432 0.000148211 0.000140904 0.000132543 0.000123317 0.000113412 0.000102819 9.07075e-05 7.39096e-05 5.21523e-05 2.96572e-05 1.07836e-05 1.84929e-06 1.76215e-07 9.17818e-08 5.27504e-08 1.20647e-07 1.42436e-06 8.57345e-06 2.55001e-05 4.81269e-05 7.16074e-05 9.37134e-05 0.000113575 0.000130859 0.000140996 0.000147838 0.000153534 0.000158391 0.000162215 0.000164761 0.000165862 0.000165449 0.000163524 0.000160158 0.000155417 0.000149381 0.000142159 0.000133896 0.000124782 0.000114991 0.000104459 9.22143e-05 7.47769e-05 5.27781e-05 3.0047e-05 1.09569e-05 1.88334e-06 1.7814e-07 9.18737e-08 5.36637e-08 1.22912e-07 1.45128e-06 8.7168e-06 2.58329e-05 4.86195e-05 7.22204e-05 9.4421e-05 0.00011436 0.000131706 0.000141739 0.000148578 0.000154292 0.00015917 0.000163014 0.000165581 0.000166708 0.000166329 0.000164447 0.000161134 0.000156454 0.000150487 0.000143343 0.000135174 0.000126169 0.00011649 0.000106024 9.36562e-05 7.56052e-05 5.33775e-05 3.04215e-05 1.11238e-05 1.91629e-06 1.80026e-07 9.19874e-08 5.45785e-08 1.25141e-07 1.47747e-06 8.85562e-06 2.61531e-05 4.90912e-05 7.28053e-05 9.50946e-05 0.000115105 0.00013251 0.000142439 0.000149271 0.000155004 0.000159903 0.000163767 0.000166354 0.000167505 0.000167158 0.000165318 0.000162055 0.000157431 0.000151528 0.000144459 0.000136377 0.000127475 0.000117905 0.000107505 9.50249e-05 7.6392e-05 5.39489e-05 3.07799e-05 1.12844e-05 1.94814e-06 1.81876e-07 9.21237e-08 5.54956e-08 1.27349e-07 1.50317e-06 8.99105e-06 2.64631e-05 4.95447e-05 7.33648e-05 9.57366e-05 0.000115814 0.000133274 0.0001431 0.000149927 0.000155679 0.000160598 0.000164479 0.000167085 0.00016826 0.000167944 0.000166143 0.000162927 0.000158357 0.000152514 0.000145512 0.000137512 0.000128707 0.00011924 0.000108905 9.63239e-05 7.71422e-05 5.44971e-05 3.11266e-05 1.14409e-05 1.97932e-06 1.83696e-07 9.22713e-08 5.64148e-08 1.29532e-07 1.52834e-06 9.12295e-06 2.67628e-05 4.99805e-05 7.38998e-05 9.63483e-05 0.000116488 0.000133998 0.000143725 0.000150546 0.000156317 0.000161255 0.000165154 0.000167777 0.000168974 0.000168689 0.000166926 0.000163755 0.000159233 0.000153444 0.000146505 0.000138579 0.000129861 0.000120489 0.000110215 9.75418e-05 7.78498e-05 5.50166e-05 3.14566e-05 1.15908e-05 2.00931e-06 1.85457e-07 9.24273e-08 5.73337e-08 1.31674e-07 1.55269e-06 9.2498e-06 2.70491e-05 5.03949e-05 7.44069e-05 9.6927e-05 0.000117125 0.000134683 0.000144316 0.000151135 0.000156924 0.000161881 0.000165794 0.000168434 0.000169654 0.000169398 0.000167671 0.000164541 0.000160065 0.000154324 0.00014744 0.000139579 0.00013094 0.000121654 0.000111437 9.86806e-05 7.85157e-05 5.55074e-05 3.17701e-05 1.17339e-05 2.0381e-06 1.87162e-07 9.2589e-08 5.82569e-08 1.33807e-07 1.57671e-06 9.37424e-06 2.73279e-05 5.07954e-05 7.48941e-05 9.74799e-05 0.000117731 0.000135334 0.000144873 0.000151694 0.000157503 0.000162474 0.0001664 0.000169056 0.000170298 0.000170071 0.000168379 0.000165287 0.000160853 0.000155159 0.000148325 0.000140523 0.000131952 0.000122737 0.000112568 9.97357e-05 7.91405e-05 5.59693e-05 3.20658e-05 1.18692e-05 2.06544e-06 1.88789e-07 9.27517e-08 5.91818e-08 1.35907e-07 1.60003e-06 9.4945e-06 2.75958e-05 5.11785e-05 7.53582e-05 9.80046e-05 0.000118304 0.00013595 0.000145399 0.000152233 0.000158057 0.000163038 0.000166975 0.000169648 0.000170913 0.000170714 0.000169056 0.000166 0.000161605 0.000155954 0.000149171 0.000141428 0.00013292 0.000123757 0.000113598 0.000100676 7.97169e-05 5.63971e-05 3.2341e-05 1.1996e-05 2.09118e-06 1.90333e-07 9.29164e-08 6.01112e-08 1.38014e-07 1.62336e-06 9.61418e-06 2.78603e-05 5.15537e-05 7.58094e-05 9.85114e-05 0.000118854 0.000136438 0.000145905 0.000152757 0.00015859 0.000163579 0.000167527 0.000170217 0.000171506 0.000171336 0.00016971 0.00016669 0.000162331 0.000156719 0.000149983 0.000142296 0.000133849 0.000124732 0.000114536 0.00010136 8.02405e-05 5.67897e-05 3.25958e-05 1.21142e-05 2.1153e-06 1.9179e-07 9.30823e-08 6.10405e-08 1.40113e-07 1.64649e-06 9.73247e-06 2.81201e-05 5.19199e-05 7.62474e-05 9.90009e-05 0.000119382 0.000136897 0.000146382 0.000153252 0.000159093 0.00016409 0.000168052 0.000170761 0.000172074 0.000171934 0.00017034 0.000167352 0.000163027 0.000157452 0.000150756 0.000143116 0.00013472 0.000125635 0.000115394 0.000101952 8.07218e-05 5.71507e-05 3.28303e-05 1.22231e-05 2.1376e-06 1.93143e-07 9.32434e-08 6.19679e-08 1.42187e-07 1.66916e-06 9.84794e-06 2.83722e-05 5.22736e-05 7.66686e-05 9.94699e-05 0.000119887 0.000137329 0.000146828 0.000153714 0.000159565 0.000164572 0.000168548 0.000171277 0.000172617 0.000172507 0.000170945 0.000167989 0.000163695 0.000158152 0.000151491 0.000143891 0.000135533 0.000126468 0.000116177 0.000102499 8.11653e-05 5.7483e-05 3.30461e-05 1.23234e-05 2.15815e-06 1.94392e-07 9.33927e-08 6.28942e-08 1.4423e-07 1.69127e-06 9.96014e-06 2.86154e-05 5.26124e-05 7.70702e-05 9.99157e-05 0.000120366 0.000137739 0.000147251 0.000154151 0.000160013 0.000165031 0.000169023 0.000171775 0.000173142 0.000173063 0.000171533 0.000168608 0.000164343 0.000158828 0.000152197 0.000144627 0.000136299 0.000127245 0.000116902 0.000103004 8.15739e-05 5.77888e-05 3.32449e-05 1.24161e-05 2.1772e-06 1.95546e-07 9.35289e-08 6.3819e-08 1.46239e-07 1.71275e-06 1.00687e-05 2.88487e-05 5.29345e-05 7.74492e-05 0.000100334 0.000120814 0.000138114 0.000147638 0.000154555 0.000160429 0.000165461 0.000169473 0.00017225 0.000173646 0.000173598 0.0001721 0.000169204 0.000164967 0.000159476 0.00015287 0.000145324 0.000137016 0.000127966 0.000117569 0.000103467 8.19469e-05 5.80661e-05 3.34243e-05 1.24997e-05 2.19443e-06 1.96584e-07 9.36465e-08 6.47409e-08 1.4819e-07 1.73324e-06 1.01717e-05 2.90683e-05 5.32347e-05 7.77997e-05 0.00010072 0.000121226 0.000138447 0.000147985 0.000154922 0.000160813 0.000165864 0.000169899 0.000172704 0.000174132 0.000174116 0.00017265 0.000169783 0.00016557 0.000160102 0.000153515 0.000145987 0.000137691 0.000128635 0.000118184 0.000103896 8.22904e-05 5.83206e-05 3.35886e-05 1.25762e-05 2.21021e-06 1.97527e-07 9.37444e-08 6.56646e-08 1.50099e-07 1.75291e-06 1.02701e-05 2.92759e-05 5.35147e-05 7.81227e-05 0.000101072 0.000121601 0.000138738 0.00014829 0.000155252 0.000161166 0.000166241 0.000170304 0.00017314 0.000174602 0.000174621 0.000173187 0.000170348 0.000166159 0.00016071 0.000154139 0.000146622 0.000138332 0.000129265 0.000118757 0.000104294 8.26084e-05 5.85562e-05 3.3741e-05 1.26476e-05 2.22498e-06 1.98399e-07 9.38265e-08 6.65956e-08 1.51996e-07 1.77227e-06 1.03664e-05 2.94765e-05 5.37804e-05 7.84236e-05 0.000101395 0.000121941 0.000138984 0.000148552 0.000155544 0.000161487 0.000166593 0.000170688 0.000173561 0.00017506 0.000175115 0.000173713 0.000170902 0.000166735 0.000161302 0.000154743 0.000147232 0.00013894 0.000129854 0.000119288 0.00010466 8.28997e-05 5.87711e-05 3.38797e-05 1.27127e-05 2.23846e-06 1.99183e-07 9.389e-08 6.75317e-08 1.53869e-07 1.79109e-06 1.04596e-05 2.96685e-05 5.40304e-05 7.87016e-05 0.000101688 0.000122246 0.000139176 0.00014876 0.00015579 0.000161771 0.000166915 0.000171051 0.000173964 0.000175504 0.000175597 0.000174229 0.000171446 0.0001673 0.000161882 0.000155331 0.000147821 0.000139518 0.000130407 0.000119777 0.000104995 8.31633e-05 5.89642e-05 3.40039e-05 1.27709e-05 2.25052e-06 1.99868e-07 9.3934e-08 6.84757e-08 1.55739e-07 1.80968e-06 1.05511e-05 2.98545e-05 5.42682e-05 7.89599e-05 0.000101955 0.000122517 0.000139314 0.000148912 0.000155987 0.000162015 0.000167206 0.000171389 0.000174349 0.000175933 0.000176068 0.000174736 0.000171981 0.000167856 0.000162452 0.000155906 0.000148392 0.000140074 0.000130929 0.000120231 0.000105298 8.34004e-05 5.91364e-05 3.41139e-05 1.28224e-05 2.2612e-06 2.00457e-07 9.39559e-08 6.94248e-08 1.57607e-07 1.82809e-06 1.06411e-05 3.00358e-05 5.44958e-05 7.92013e-05 0.000102197 0.000122758 0.000139402 0.000149011 0.000156136 0.00016222 0.000167467 0.000171704 0.000174717 0.00017635 0.000176529 0.000175234 0.000172508 0.000168404 0.000163013 0.000156471 0.000148949 0.00014061 0.000131426 0.000120655 0.000105572 8.36102e-05 5.92857e-05 3.42078e-05 1.28661e-05 2.27022e-06 2.0093e-07 9.39504e-08 7.03772e-08 1.59442e-07 1.84573e-06 1.0727e-05 3.02071e-05 5.47073e-05 7.94206e-05 0.000102412 0.000122965 0.000139428 0.000149043 0.000156224 0.000162375 0.000167687 0.000171987 0.000175059 0.000176747 0.000176973 0.000175718 0.000173023 0.000168941 0.000163563 0.000157023 0.000149491 0.000141127 0.000131898 0.000121051 0.000105819 8.37957e-05 5.94148e-05 3.42872e-05 1.29027e-05 2.27774e-06 2.01294e-07 9.39143e-08 7.13336e-08 1.6124e-07 1.86254e-06 1.08082e-05 3.03672e-05 5.49009e-05 7.96156e-05 0.000102596 0.000123135 0.000139401 0.000149017 0.00015626 0.000162485 0.000167872 0.000172244 0.000175382 0.000177129 0.000177407 0.000176195 0.000173533 0.000169475 0.00016411 0.000157571 0.000150028 0.000141635 0.000132357 0.000121429 0.000106046 8.39629e-05 5.95288e-05 3.43562e-05 1.29343e-05 2.28422e-06 2.01574e-07 9.38499e-08 7.22912e-08 1.62985e-07 1.87827e-06 1.08836e-05 3.05141e-05 5.50742e-05 7.97835e-05 0.000102747 0.000123268 0.000139317 0.000148933 0.000156242 0.000162551 0.000168023 0.000172475 0.000175686 0.000177498 0.000177832 0.000176665 0.000174039 0.000170006 0.000164655 0.000158118 0.000150562 0.000142139 0.000132809 0.000121795 0.000106253 8.41112e-05 5.9627e-05 3.44142e-05 1.29607e-05 2.28965e-06 2.01772e-07 9.37583e-08 7.32507e-08 1.64683e-07 1.893e-06 1.09537e-05 3.06489e-05 5.52284e-05 7.9926e-05 0.000102866 0.000123363 0.00013917 0.000148779 0.000156163 0.000162566 0.000168134 0.000172675 0.000175968 0.00017785 0.000178244 0.000177126 0.000174538 0.000170532 0.000165197 0.000158663 0.000151093 0.000142639 0.000133254 0.000122151 0.000106442 8.42413e-05 5.97088e-05 3.44596e-05 1.29806e-05 2.29368e-06 2.01864e-07 9.3637e-08 7.42117e-08 1.66317e-07 1.9065e-06 1.10175e-05 3.07696e-05 5.53615e-05 8.0041e-05 0.000102952 0.000123419 0.000138964 0.000148564 0.000156027 0.000162536 0.00016821 0.00017285 0.00017623 0.000178189 0.000178647 0.000177583 0.000175035 0.000171058 0.000165741 0.00015921 0.000151629 0.000143143 0.000133703 0.000122506 0.000106618 8.43602e-05 5.97813e-05 3.44988e-05 1.29979e-05 2.29717e-06 2.01905e-07 9.34949e-08 7.51813e-08 1.67931e-07 1.91939e-06 1.10779e-05 3.08818e-05 5.54796e-05 8.01343e-05 0.00010301 0.000123441 0.000138697 0.000148284 0.000155834 0.000162459 0.00016825 0.000172999 0.000176474 0.000178515 0.000179042 0.000178033 0.000175529 0.000171584 0.000166286 0.000159762 0.00015217 0.000143656 0.000134162 0.000122866 0.000106783 8.44664e-05 5.98415e-05 3.45282e-05 1.301e-05 2.29954e-06 2.01859e-07 9.33289e-08 7.61565e-08 1.6947e-07 1.93079e-06 1.1131e-05 3.09782e-05 5.55742e-05 8.01973e-05 0.000103031 0.000123421 0.00013836 0.00014793 0.000155578 0.000162332 0.000168252 0.000173118 0.000176696 0.000178823 0.000179422 0.000178472 0.000176015 0.000172104 0.000166827 0.000160311 0.000152712 0.000144172 0.000134625 0.00012323 0.00010694 8.45638e-05 5.98931e-05 3.45506e-05 1.30183e-05 2.30109e-06 2.01749e-07 9.3142e-08 7.71464e-08 1.70996e-07 1.94168e-06 1.11812e-05 3.10667e-05 5.56536e-05 8.02371e-05 0.000103022 0.000123363 0.000137958 0.000147509 0.000155265 0.000162162 0.000168223 0.000173216 0.000176902 0.000179121 0.000179796 0.000178907 0.000176497 0.000172622 0.000167369 0.000160863 0.00015326 0.000144696 0.000135101 0.000123606 0.000107093 8.46569e-05 5.99401e-05 3.45689e-05 1.30245e-05 2.30217e-06 2.01594e-07 9.29337e-08 7.81525e-08 1.72502e-07 1.95187e-06 1.12279e-05 3.11466e-05 5.57174e-05 8.02533e-05 0.00010298 0.000123266 0.000137474 0.000147005 0.000154883 0.00016194 0.000168157 0.000173286 0.000177087 0.000179401 0.000180154 0.000179328 0.000176968 0.00017313 0.000167902 0.000161408 0.000153802 0.00014522 0.00013558 0.000123986 0.000107239 8.47428e-05 5.99798e-05 3.45809e-05 1.30271e-05 2.30247e-06 2.01378e-07 9.27055e-08 7.9172e-08 1.73946e-07 1.96066e-06 1.12673e-05 3.121e-05 5.57553e-05 8.02343e-05 0.000102896 0.000123119 0.000136903 0.000146414 0.000154431 0.000161666 0.000168053 0.000173328 0.000177251 0.000179664 0.000180498 0.000179738 0.000177429 0.000173629 0.000168427 0.000161947 0.000154343 0.000145746 0.000136067 0.000124375 0.000107381 8.48257e-05 6.00171e-05 3.4591e-05 1.30288e-05 2.3026e-06 2.01138e-07 9.24598e-08 8.02161e-08 1.75425e-07 1.96947e-06 1.13061e-05 3.12691e-05 5.57808e-05 8.01927e-05 0.000102778 0.000122927 0.000136236 0.000145731 0.000153908 0.000161343 0.000167914 0.000173344 0.000177392 0.000179908 0.000180824 0.00018013 0.000177874 0.000174113 0.000168938 0.000162473 0.000154871 0.000146263 0.000136549 0.000124762 0.000107512 8.48978e-05 6.00448e-05 3.45933e-05 1.30263e-05 2.30185e-06 2.00834e-07 9.21953e-08 8.12694e-08 1.76783e-07 1.9758e-06 1.13321e-05 3.13008e-05 5.57662e-05 8.01002e-05 0.000102599 0.000122669 0.000135446 0.000144938 0.000153306 0.000160963 0.000167731 0.000173322 0.000177499 0.000180119 0.000181122 0.000180497 0.000178295 0.000174575 0.000169428 0.000162978 0.000155381 0.000146765 0.000137021 0.000125144 0.000107629 8.4959e-05 6.00635e-05 3.4589e-05 1.30205e-05 2.30041e-06 2.00477e-07 9.19123e-08 8.23504e-08 1.78163e-07 1.98187e-06 1.13558e-05 3.13235e-05 5.57308e-05 7.99725e-05 0.000102372 0.000122353 0.000134532 0.000144059 0.000152654 0.000160549 0.000167516 0.000173267 0.000177576 0.000180304 0.000181395 0.000180843 0.000178696 0.000175016 0.000169896 0.000163463 0.000155871 0.00014725 0.000137481 0.000125518 0.000107733 8.50103e-05 6.0075e-05 3.458e-05 1.30125e-05 2.29857e-06 2.00093e-07 9.16176e-08 8.34593e-08 1.79515e-07 1.98685e-06 1.13739e-05 3.13318e-05 5.56678e-05 7.97983e-05 0.000102071 0.000121372 0.00013347 0.000143165 0.000151983 0.000160091 0.000167248 0.000173162 0.000177608 0.000180451 0.000181636 0.000181157 0.000179067 0.000175428 0.000170335 0.000163917 0.000156332 0.000147709 0.000137921 0.000125876 0.000107817 8.50451e-05 6.0074e-05 3.45624e-05 1.30003e-05 2.29587e-06 1.99651e-07 9.13107e-08 8.46036e-08 1.80855e-07 1.99093e-06 1.13876e-05 3.13301e-05 5.5587e-05 7.95965e-05 0.00010173 0.000120294 0.000132304 0.000142169 0.000151224 0.000159566 0.000166928 0.000173016 0.000177606 0.000180566 0.000181846 0.000181443 0.000179409 0.000175811 0.000170743 0.000164339 0.00015676 0.000148137 0.000138333 0.000126213 0.000107879 8.50635e-05 6.00612e-05 3.45372e-05 1.29847e-05 2.29254e-06 1.99172e-07 9.09935e-08 8.5793e-08 1.82203e-07 1.99439e-06 1.13984e-05 3.13202e-05 5.54886e-05 7.93646e-05 0.000101345 0.000119105 0.000131019 0.00014107 0.000150384 0.000158976 0.000166556 0.000172825 0.000177563 0.000180644 0.000182021 0.000181693 0.000179715 0.000176154 0.00017111 0.000164719 0.000157144 0.000148522 0.000138707 0.000126516 0.000107909 8.50559e-05 6.00286e-05 3.44985e-05 1.29626e-05 2.28787e-06 1.9861e-07 9.06621e-08 8.70264e-08 1.83529e-07 1.99689e-06 1.14053e-05 3.13002e-05 5.53699e-05 7.90993e-05 0.000100912 0.000117813 0.000129623 0.000139873 0.000149463 0.000158322 0.000166131 0.000172589 0.00017748 0.000180685 0.000182159 0.000181906 0.000179982 0.000176458 0.000171435 0.000165053 0.000157482 0.000148861 0.000139037 0.000126781 0.000107906 8.50231e-05 5.99786e-05 3.44497e-05 1.29363e-05 2.28248e-06 1.98009e-07 9.03223e-08 8.83156e-08 1.84849e-07 1.99886e-06 1.14103e-05 3.12748e-05 5.52353e-05 7.88033e-05 0.000100432 0.000116408 0.000128112 0.000138577 0.000148465 0.000157605 0.000165652 0.000172303 0.00017735 0.000180678 0.00018225 0.000182071 0.000180199 0.000176708 0.000171704 0.000165329 0.000157761 0.000149141 0.00013931 0.000126992 0.000107854 8.49489e-05 5.98964e-05 3.43788e-05 1.28994e-05 2.27494e-06 1.97279e-07 8.99663e-08 8.96602e-08 1.86118e-07 1.99896e-06 1.1406e-05 3.12275e-05 5.50641e-05 7.84549e-05 9.98848e-05 0.000114875 0.000126482 0.00013719 0.000147394 0.000156825 0.000165113 0.000171958 0.00017716 0.000180612 0.000182282 0.000182175 0.000180355 0.000176896 0.000171908 0.000165539 0.00015797 0.000149351 0.000139515 0.000127141 0.000107752 8.48353e-05 5.97854e-05 3.42901e-05 1.28548e-05 2.26593e-06 1.96465e-07 8.95959e-08 9.10693e-08 1.87376e-07 1.99771e-06 1.13941e-05 3.11596e-05 5.48545e-05 7.805e-05 9.92689e-05 0.000113202 0.000124747 0.000135733 0.000146265 0.000155983 0.000164505 0.000171538 0.000176894 0.000180471 0.000182239 0.000182206 0.000180437 0.000177009 0.000172036 0.000165671 0.000158102 0.000149482 0.000139641 0.000127215 0.000107585 8.46662e-05 5.96308e-05 3.41717e-05 1.27961e-05 2.25408e-06 1.95477e-07 8.92e-08 9.2532e-08 1.88508e-07 1.99333e-06 1.13656e-05 3.1051e-05 5.45738e-05 7.75347e-05 9.79587e-05 0.000111358 0.000123011 0.000134276 0.000145092 0.00015506 0.000163796 0.000171013 0.000176524 0.000180229 0.000182099 0.000182142 0.000180425 0.000177029 0.000172071 0.00016571 0.000158139 0.00014952 0.000139678 0.000127208 0.000107356 8.44475e-05 5.94397e-05 3.40302e-05 1.27272e-05 2.2403e-06 1.94374e-07 8.87824e-08 9.40667e-08 1.89653e-07 1.98828e-06 1.13344e-05 3.09329e-05 5.4268e-05 7.69687e-05 9.62414e-05 0.000109435 0.000121243 0.000132759 0.000143834 0.000154044 0.000162995 0.000170398 0.000176065 0.000179899 0.000181871 0.00018199 0.000180325 0.000176962 0.000172022 0.000165666 0.000158094 0.000149471 0.000139624 0.000127114 0.000107057 8.41709e-05 5.92038e-05 3.3859e-05 1.26445e-05 2.22372e-06 1.93096e-07 8.83383e-08 9.56678e-08 1.90691e-07 1.9805e-06 1.12909e-05 3.07891e-05 5.39221e-05 7.63476e-05 9.44404e-05 0.000107422 0.000119384 0.000131156 0.000142494 0.000152942 0.000162103 0.000169686 0.000175506 0.000179465 0.000181536 0.000181729 0.000180116 0.000176787 0.000171868 0.000165525 0.000157959 0.00014933 0.000139447 0.000126849 0.000106677 8.38298e-05 5.8921e-05 3.36583e-05 1.2549e-05 2.20469e-06 1.9167e-07 8.78678e-08 9.73308e-08 1.91658e-07 1.97062e-06 1.1237e-05 3.06204e-05 5.35344e-05 7.56689e-05 9.25686e-05 0.000105337 0.000117452 0.000129475 0.000141068 0.000151747 0.00016111 0.000168868 0.000174836 0.000178917 0.000181084 0.000181348 0.000179786 0.000176491 0.000171593 0.000165266 0.00015771 0.000149079 0.000139145 0.000126341 0.000106208 8.34168e-05 5.85837e-05 3.3422e-05 1.24371e-05 2.1824e-06 1.9004e-07 8.7364e-08 9.90538e-08 1.92486e-07 1.95745e-06 1.11675e-05 3.0418e-05 5.30949e-05 7.49226e-05 9.06137e-05 0.000103181 0.000115457 0.00012773 0.000139568 0.000150466 0.000160019 0.000167941 0.00017405 0.000178247 0.000180506 0.000180838 0.000179324 0.000176062 0.000171186 0.000164873 0.000157328 0.000148695 0.000138717 0.000125739 0.000105657 8.2937e-05 5.81966e-05 3.3154e-05 1.23113e-05 2.15745e-06 1.88242e-07 8.68255e-08 1.00824e-07 1.93161e-07 1.94077e-06 1.1079e-05 3.01727e-05 5.25914e-05 7.41001e-05 8.85766e-05 0.000100973 0.000113423 0.000125934 0.000137996 0.00014909 0.000158815 0.00016689 0.00017313 0.000177438 0.000179784 0.000180183 0.000178716 0.000175485 0.00017063 0.000164332 0.000156796 0.000148164 0.000138153 0.000125034 0.000105018 8.23847e-05 5.77547e-05 3.28505e-05 1.21696e-05 2.12936e-06 1.86241e-07 8.62491e-08 1.02642e-07 1.93703e-07 1.92079e-06 1.09709e-05 2.98771e-05 5.20041e-05 7.30206e-05 8.64544e-05 9.87689e-05 0.000111395 0.00012411 0.000136356 0.000147615 0.000157493 0.000165708 0.000172073 0.000176486 0.000178916 0.000179378 0.000177955 0.000174755 0.00016992 0.000163636 0.000156113 0.000147486 0.000137454 0.000124231 0.000104297 8.17665e-05 5.72646e-05 3.25172e-05 1.20151e-05 2.09888e-06 1.84082e-07 8.56348e-08 1.04503e-07 1.94156e-07 1.89841e-06 1.0847e-05 2.95331e-05 5.13162e-05 7.10794e-05 8.42754e-05 9.66628e-05 0.000109412 0.000122254 0.000134631 0.000146027 0.000156042 0.000164386 0.000170867 0.000175378 0.000177887 0.000178408 0.000177028 0.000173857 0.000169044 0.000162776 0.000155267 0.000146651 0.000136612 0.000123323 0.000103484 8.10738e-05 5.67183e-05 3.21478e-05 1.18448e-05 2.06528e-06 1.81719e-07 8.4981e-08 1.06416e-07 1.94569e-07 1.87477e-06 1.07174e-05 2.91752e-05 5.0606e-05 6.91724e-05 8.2098e-05 9.45084e-05 0.000107356 0.000120319 0.000132824 0.000144351 0.000154491 0.00016295 0.000169532 0.000174127 0.000176703 0.000177275 0.000175933 0.000172789 0.000167995 0.000161744 0.000154252 0.000145654 0.000135627 0.000122319 0.000102593 8.03197e-05 5.61281e-05 3.17515e-05 1.16633e-05 2.02964e-06 1.79216e-07 8.42856e-08 1.08363e-07 1.94838e-07 1.84807e-06 1.05709e-05 2.87779e-05 4.98376e-05 6.72188e-05 7.98858e-05 9.2324e-05 0.000105265 0.000118336 0.000130954 0.000142592 0.00015284 0.000161397 0.000168063 0.000172728 0.000175359 0.000175972 0.000174661 0.000171542 0.000166767 0.000160534 0.000153061 0.000144487 0.000134489 0.000121207 0.000101611 7.9493e-05 5.54845e-05 3.1322e-05 1.14675e-05 1.99131e-06 1.76531e-07 8.35478e-08 1.10338e-07 1.95032e-07 1.81975e-06 1.04146e-05 2.83536e-05 4.90264e-05 6.52569e-05 7.76643e-05 9.01134e-05 0.000103131 0.000116295 0.000129012 0.000140748 0.000151087 0.000159724 0.000166456 0.000171174 0.000173846 0.00017449 0.000173203 0.000170103 0.000165347 0.000159133 0.000151685 0.000143144 0.000133195 0.000119996 0.000100549 7.86035e-05 5.4796e-05 3.0865e-05 1.12606e-05 1.95096e-06 1.737e-07 8.276e-08 1.12328e-07 1.95101e-07 1.78915e-06 1.02455e-05 2.78973e-05 4.81654e-05 6.32718e-05 7.5427e-05 8.78817e-05 0.000100966 0.00011421 0.000127011 0.00013883 0.000149241 0.000157938 0.000164717 0.000169469 0.000172167 0.00017283 0.000171561 0.000168478 0.000163738 0.000157545 0.000150124 0.000141623 0.000131742 0.000118672 9.93917e-05 7.76392e-05 5.40531e-05 3.0375e-05 1.10401e-05 1.90811e-06 1.70699e-07 8.19297e-08 1.14322e-07 1.95087e-07 1.75717e-06 1.00675e-05 2.74149e-05 4.7262e-05 6.12745e-05 7.3186e-05 8.56394e-05 9.87758e-05 0.000112083 0.00012495 0.000136829 0.000147291 0.000156024 0.000162829 0.000167596 0.000170304 0.000170977 0.000169718 0.000166649 0.000161928 0.00015576 0.000148373 0.000139924 0.000130133 0.000117251 9.81557e-05 7.66142e-05 5.32676e-05 2.98595e-05 1.08097e-05 1.86357e-06 1.67566e-07 8.10456e-08 1.16293e-07 1.94951e-07 1.72335e-06 9.87736e-06 2.68997e-05 4.63091e-05 5.9259e-05 7.09497e-05 8.34037e-05 9.65783e-05 0.000109927 0.000122834 0.000134749 0.000145236 0.000153983 0.000160789 0.000165554 0.000168257 0.000168929 0.000167675 0.000164619 0.000159918 0.000153778 0.000146431 0.000138042 0.00012836 0.000115714 9.68231e-05 7.55124e-05 5.24262e-05 2.93101e-05 1.05656e-05 1.81656e-06 1.64267e-07 8.01217e-08 1.18227e-07 1.94832e-07 1.68948e-06 9.67917e-06 2.63508e-05 4.53084e-05 5.72337e-05 6.8748e-05 8.12045e-05 9.43923e-05 0.000107748 0.000120661 0.000132581 0.000143066 0.000151801 0.000158586 0.000163328 0.000166013 0.000166675 0.000165425 0.000162383 0.000157709 0.000151607 0.000144311 0.000135997 0.000126447 0.000114089 9.54213e-05 7.43596e-05 5.15507e-05 2.87418e-05 1.03152e-05 1.76864e-06 1.6088e-07 7.91447e-08 1.20099e-07 1.95057e-07 1.65745e-06 9.47249e-06 2.57363e-05 4.36586e-05 5.52126e-05 6.66675e-05 7.90861e-05 9.22262e-05 0.000105541 0.000118427 0.000130325 0.000140783 0.00014948 0.000156221 0.00016092 0.000163572 0.000164216 0.000162966 0.000159941 0.000155298 0.00014924 0.000142004 0.000133774 0.000124374 0.000112354 9.39266e-05 7.31328e-05 5.06217e-05 2.81416e-05 1.00522e-05 1.71852e-06 1.5735e-07 7.81383e-08 1.21918e-07 1.97118e-07 1.63329e-06 9.28074e-06 2.5121e-05 4.19397e-05 5.32464e-05 6.46295e-05 7.69838e-05 9.0058e-05 0.000103318 0.000116159 0.000128011 0.000138412 0.000147042 0.000153713 0.000158347 0.00016095 0.000161567 0.000160315 0.000157311 0.000152709 0.000146709 0.000139547 0.000131419 0.000122192 0.000110551 9.23837e-05 7.18743e-05 4.96747e-05 2.75339e-05 9.78842e-06 1.66863e-06 1.538e-07 7.70861e-08 1.23673e-07 2.01568e-07 1.61104e-06 9.07641e-06 2.44714e-05 4.02469e-05 5.13221e-05 6.26359e-05 7.49267e-05 8.79291e-05 0.000101117 0.000113887 0.00012566 0.00013597 0.000144499 0.000151069 0.000155614 0.000158149 0.000158728 0.000157471 0.000154491 0.000149937 0.000144003 0.000136924 0.000128906 0.000119867 0.000108635 9.07567e-05 7.05491e-05 4.86802e-05 2.68987e-05 9.51457e-06 1.61709e-06 1.50156e-07 7.60256e-08 1.25305e-07 2.04608e-07 1.57924e-06 8.84438e-06 2.37888e-05 3.86074e-05 4.94599e-05 6.06995e-05 7.29233e-05 8.58473e-05 9.89481e-05 0.000111621 0.000123282 0.000133463 0.000141853 0.000148291 0.000152726 0.000155182 0.000155714 0.000154451 0.000151501 0.000147005 0.000141158 0.000134192 0.000126317 0.000117462 0.000106488 8.90994e-05 6.9211e-05 4.7683e-05 2.62661e-05 9.24428e-06 1.56659e-06 1.46543e-07 7.49238e-08 1.26818e-07 2.05543e-07 1.5419e-06 8.60463e-06 2.31009e-05 3.70136e-05 4.76521e-05 5.88226e-05 7.09888e-05 8.38394e-05 9.68432e-05 0.000109391 0.0001209 0.000130906 0.000139115 0.000145384 0.000149683 0.000152045 0.000152528 0.000151256 0.000148339 0.000143916 0.000138171 0.000131331 0.0001236 0.000114913 0.000104192 8.73607e-05 6.7811e-05 4.66446e-05 2.56121e-05 8.96745e-06 1.51522e-06 1.42898e-07 7.38379e-08 1.28197e-07 2.05266e-07 1.50141e-06 8.35748e-06 2.24021e-05 3.54633e-05 4.59006e-05 5.70116e-05 6.91362e-05 8.19262e-05 9.48291e-05 0.000107226 0.000118539 0.000128321 0.000136302 0.000142366 0.000146503 0.000148757 0.000149191 0.000147923 0.00014505 0.00014071 0.000135085 0.000128391 0.000120821 0.000112319 0.000101872 8.56203e-05 6.64183e-05 4.56169e-05 2.4968e-05 8.69731e-06 1.46551e-06 1.39316e-07 7.27075e-08 1.29448e-07 2.04285e-07 1.45965e-06 8.10872e-06 2.17018e-05 3.39562e-05 4.42016e-05 5.52665e-05 6.73748e-05 8.01297e-05 9.29381e-05 0.000105161 0.00011623 0.000125731 0.00013343 0.000139248 0.000143194 0.000145324 0.0001457 0.000144441 0.000141629 0.000137383 0.000131877 0.000125327 0.000117915 0.000109589 9.94181e-05 8.38022e-05 6.49653e-05 4.45487e-05 2.43033e-05 8.42105e-06 1.41503e-06 1.35731e-07 7.16197e-08 1.30562e-07 2.02803e-07 1.41648e-06 7.85574e-06 2.09948e-05 3.24871e-05 4.25522e-05 5.35879e-05 6.57127e-05 7.84689e-05 9.11995e-05 0.00010323 0.000114004 0.000123159 0.00013052 0.000136049 0.000139779 0.000141772 0.000142088 0.000140842 0.000138105 0.000133979 0.000128622 0.000122232 0.000114997 0.000106877 9.70059e-05 8.202e-05 6.35501e-05 4.35125e-05 2.36601e-05 8.15536e-06 1.36673e-06 1.32215e-07 7.04764e-08 1.31548e-07 2.00983e-07 1.37266e-06 7.60118e-06 2.02853e-05 3.10525e-05 4.0948e-05 5.19746e-05 6.41564e-05 7.69639e-05 8.96494e-05 0.000101477 0.000111906 0.000120644 0.000127599 0.000132789 0.000136273 0.000138115 0.000138366 0.000137133 0.000134472 0.000130474 0.000125276 0.000119058 0.00011198 0.000104031 9.44515e-05 8.01607e-05 6.20755e-05 4.2438e-05 2.29993e-05 7.88551e-06 1.31814e-06 1.28756e-07 6.94132e-08 1.32393e-07 1.98791e-07 1.32685e-06 7.33819e-06 1.9561e-05 2.96417e-05 3.93781e-05 5.04167e-05 6.26998e-05 7.56171e-05 8.83025e-05 9.99293e-05 0.000109963 0.000118207 0.000124683 0.000129483 0.000132693 0.000134373 0.000134561 0.000133348 0.000130776 0.000126918 0.0001219 0.000115885 0.000109028 0.000101308 9.20278e-05 7.83735e-05 6.06664e-05 4.14126e-05 2.23673e-05 7.62812e-06 1.27191e-06 1.25354e-07 6.82628e-08 1.33117e-07 1.96338e-07 1.28e-06 7.07101e-06 1.88296e-05 2.82547e-05 3.78431e-05 4.89179e-05 6.13524e-05 7.44481e-05 8.71927e-05 9.86342e-05 0.000108231 0.000115903 0.000121817 0.000126163 0.000129062 0.000130563 0.000130683 0.000129491 0.000127009 0.00012329 0.000118443 0.000112619 0.000105959 9.84538e-05 8.94851e-05 7.65055e-05 5.91976e-05 4.03542e-05 2.17247e-05 7.36976e-06 1.22582e-06 1.22129e-07 6.72373e-08 1.33711e-07 1.93501e-07 1.22979e-06 6.78807e-06 1.80703e-05 2.68745e-05 3.63264e-05 4.7461e-05 6.00963e-05 7.34409e-05 8.6311e-05 9.75955e-05 0.000106728 0.000113756 0.000119026 0.000122856 0.000125404 0.000126709 0.000126758 0.000125596 0.000123216 0.000119655 0.000115006 0.000109404 0.000102983 9.57352e-05 8.7101e-05 7.47238e-05 5.77976e-05 3.93397e-05 2.11036e-05 7.11977e-06 1.18152e-06 1.18859e-07 6.60741e-08 1.34201e-07 1.90428e-07 1.17789e-06 6.49643e-06 1.72967e-05 2.55079e-05 3.48399e-05 4.60642e-05 5.89541e-05 7.26214e-05 8.56885e-05 9.68536e-05 0.000105505 0.000111826 0.000116369 0.000119606 0.000121752 0.000122832 0.000122796 0.000121656 0.000119374 0.000115961 0.000111491 0.000106084 9.98611e-05 9.28258e-05 8.45024e-05 7.28398e-05 5.63237e-05 3.82848e-05 2.04721e-05 6.87287e-06 1.13893e-06 1.15884e-07 6.51189e-08 1.34575e-07 1.86962e-07 1.12115e-06 6.17724e-06 1.64733e-05 2.41318e-05 3.33645e-05 4.47e-05 5.78861e-05 7.19415e-05 8.52787e-05 9.63777e-05 0.00010456 0.000110136 0.000113884 0.000116456 0.000118143 0.000118964 0.000118827 0.000117709 0.000115537 0.000112295 0.000108035 0.000102862 9.6885e-05 9.01121e-05 8.21213e-05 7.10515e-05 5.49161e-05 3.72607e-05 1.98444e-05 6.62422e-06 1.09569e-06 1.12688e-07 6.39645e-08 1.34865e-07 1.83409e-07 1.06363e-06 5.84101e-06 1.53329e-05 2.27743e-05 3.19503e-05 4.34023e-05 5.69157e-05 7.14209e-05 8.51001e-05 9.61921e-05 0.000103932 0.000108751 0.000111655 0.000113494 0.000114654 0.000115161 0.000114884 0.000113759 0.000111674 0.000108577 0.000104496 9.95152e-05 9.37323e-05 8.71658e-05 7.94819e-05 6.91396e-05 5.34278e-05 3.62028e-05 1.92178e-05 6.38384e-06 1.0551e-06 1.09908e-07 6.30804e-08 1.35072e-07 1.79727e-07 1.00532e-06 5.50064e-06 1.42221e-05 2.1421e-05 3.05081e-05 4.20759e-05 5.59545e-05 7.09731e-05 8.50635e-05 9.6214e-05 0.000103574 0.00010768 0.000109739 0.000110793 0.000111354 0.000111484 0.000111025 0.000109876 0.000107879 0.000104947 0.000101077 9.63344e-05 9.08013e-05 8.44986e-05 7.71344e-05 6.73195e-05 5.19865e-05 3.51472e-05 1.85685e-05 6.12836e-06 1.01099e-06 1.06612e-07 6.18579e-08 1.35246e-07 1.76092e-07 9.48182e-07 5.16365e-06 1.31385e-05 2.00816e-05 2.90754e-05 4.07814e-05 5.50725e-05 7.06465e-05 8.51616e-05 9.63898e-05 0.000103447 0.000106951 0.000108228 0.000108472 0.000108344 0.000107993 0.000107268 0.000106034 0.000104077 0.000101264 9.75593e-05 9.30003e-05 8.76545e-05 8.15498e-05 7.44806e-05 6.53756e-05 5.04828e-05 3.40901e-05 1.79529e-05 5.89776e-06 9.72864e-07 1.04024e-07 6.10165e-08 1.35366e-07 1.72317e-07 8.89132e-07 4.81416e-06 1.20703e-05 1.87245e-05 2.75875e-05 3.94155e-05 5.41254e-05 7.02421e-05 8.51215e-05 9.64096e-05 0.000103322 0.000106498 0.000107195 0.000106669 0.000105767 0.000104807 0.000103713 0.000102337 0.000100407 9.77261e-05 9.42167e-05 8.9887e-05 8.47868e-05 7.89415e-05 7.2169e-05 6.34492e-05 4.8965e-05 3.29664e-05 1.72589e-05 5.62729e-06 9.2656e-07 1.0051e-07 5.96652e-08 1.35465e-07 1.68763e-07 8.33492e-07 4.4765e-06 1.10428e-05 1.73857e-05 2.60957e-05 3.8062e-05 5.32518e-05 6.98994e-05 8.46946e-05 9.40777e-05 0.000101401 0.000106398 0.000107011 0.000105661 0.000103778 0.000101985 0.000100333 9.86867e-05 9.66977e-05 9.40871e-05 9.07191e-05 8.65681e-05 8.16638e-05 7.60228e-05 6.94773e-05 6.10963e-05 4.74307e-05 3.19104e-05 1.66593e-05 5.40965e-06 8.91564e-07 9.81519e-08 5.88544e-08 1.35472e-07 1.65083e-07 7.75231e-07 4.12468e-06 1.00348e-05 1.60209e-05 2.45178e-05 3.65925e-05 5.22673e-05 6.91283e-05 8.16152e-05 9.07043e-05 9.78953e-05 0.000103323 0.0001072 0.000105755 0.000102723 9.97947e-05 9.73385e-05 9.52723e-05 9.31659e-05 9.06239e-05 8.74208e-05 8.34826e-05 7.88138e-05 7.34191e-05 6.71294e-05 5.90329e-05 4.57636e-05 3.06605e-05 1.58875e-05 5.11436e-06 8.4184e-07 9.43157e-08 5.73088e-08 1.35429e-07 1.61837e-07 7.25143e-07 3.81205e-06 9.1146e-06 1.47367e-05 2.29874e-05 3.51611e-05 5.12642e-05 6.75118e-05 7.82677e-05 8.71791e-05 9.41913e-05 9.94687e-05 0.000103249 0.000105767 0.000102651 9.84293e-05 9.48106e-05 9.20317e-05 8.9615e-05 8.70255e-05 8.39145e-05 8.01333e-05 7.56469e-05 7.04393e-05 6.43551e-05 5.66078e-05 4.42687e-05 2.96641e-05 1.53431e-05 4.92461e-06 8.12291e-07 9.23232e-08 5.65765e-08 1.35339e-07 1.58531e-07 6.73771e-07 3.49487e-06 8.22214e-06 1.3452e-05 2.13952e-05 3.35769e-05 4.98805e-05 6.39862e-05 7.45568e-05 8.32867e-05 9.013e-05 9.52752e-05 9.89826e-05 0.000101501 0.000102757 9.818e-05 9.32422e-05 8.94422e-05 8.65028e-05 8.37667e-05 8.07166e-05 7.70867e-05 7.27868e-05 6.77819e-05 6.19155e-05 5.44234e-05 4.24464e-05 2.82834e-05 1.44965e-05 4.60984e-06 7.60489e-07 8.83376e-08 5.48496e-08 1.35264e-07 1.55852e-07 6.3246e-07 3.23161e-06 7.43539e-06 1.22821e-05 1.99089e-05 3.2121e-05 4.87115e-05 6.03668e-05 7.06948e-05 7.9193e-05 8.58286e-05 9.08168e-05 9.44383e-05 9.69541e-05 9.85767e-05 9.7677e-05 9.22101e-05 8.72542e-05 8.35198e-05 8.04179e-05 7.72866e-05 7.37239e-05 6.95535e-05 6.47014e-05 5.90278e-05 5.19326e-05 4.11084e-05 2.74511e-05 1.40719e-05 4.46805e-06 7.39211e-07 8.732e-08 5.43182e-08 1.35125e-07 1.52933e-07 5.86349e-07 2.95054e-06 6.66589e-06 1.11008e-05 1.83092e-05 3.02253e-05 4.50591e-05 5.63063e-05 6.63113e-05 7.45421e-05 8.09718e-05 8.58322e-05 8.94159e-05 9.19945e-05 9.37798e-05 9.48812e-05 9.14872e-05 8.58705e-05 8.13131e-05 7.77439e-05 7.4439e-05 7.087e-05 6.67815e-05 6.20652e-05 5.657e-05 4.97096e-05 3.92436e-05 2.60358e-05 1.32208e-05 4.16708e-06 6.93044e-07 8.45247e-08 5.24299e-08 1.34936e-07 1.5061e-07 5.50383e-07 2.72788e-06 6.01263e-06 1.00659e-05 1.68529e-05 2.84959e-05 4.16125e-05 5.22977e-05 6.18308e-05 6.96665e-05 7.57874e-05 8.04414e-05 8.3928e-05 8.65293e-05 8.84614e-05 8.97948e-05 8.9479e-05 8.37732e-05 7.86456e-05 7.46848e-05 7.1192e-05 6.75673e-05 6.34984e-05 5.88499e-05 5.34976e-05 4.70482e-05 3.79463e-05 2.529e-05 1.28745e-05 4.05897e-06 6.7731e-07 8.40373e-08 5.19629e-08 1.34542e-07 1.47509e-07 5.02058e-07 2.44974e-06 5.33228e-06 8.95038e-06 1.51016e-05 2.60419e-05 3.77204e-05 4.77282e-05 5.67463e-05 6.41929e-05 7.00288e-05 7.45002e-05 7.79102e-05 8.05562e-05 8.26674e-05 8.42767e-05 8.51965e-05 8.1982e-05 7.67001e-05 7.2419e-05 6.88253e-05 6.52078e-05 6.11694e-05 5.65699e-05 5.13003e-05 4.49816e-05 3.60941e-05 2.39139e-05 1.20781e-05 3.78485e-06 6.31711e-07 7.97181e-08 4.96753e-08 1.33657e-07 1.44774e-07 4.68046e-07 2.24756e-06 4.79532e-06 8.01482e-06 1.34604e-05 2.33933e-05 3.42251e-05 4.34328e-05 5.18517e-05 5.8858e-05 6.4356e-05 6.85632e-05 7.1779e-05 7.42997e-05 7.6401e-05 7.81274e-05 7.92435e-05 7.81636e-05 7.27007e-05 6.8182e-05 6.46689e-05 6.12938e-05 5.7489e-05 5.30535e-05 4.7915e-05 4.18605e-05 3.38867e-05 2.24421e-05 1.12785e-05 3.50495e-06 5.84347e-07 7.64095e-08 4.84736e-08 1.31862e-07 1.40296e-07 4.17255e-07 1.95934e-06 4.2252e-06 7.00992e-06 1.14898e-05 1.95424e-05 2.99182e-05 3.81241e-05 4.60031e-05 5.2846e-05 5.83602e-05 6.2616e-05 6.58564e-05 6.83698e-05 7.04853e-05 7.23146e-05 7.36363e-05 7.42245e-05 7.12833e-05 6.60839e-05 6.20311e-05 5.86559e-05 5.51204e-05 5.09778e-05 4.60441e-05 4.00711e-05 3.20108e-05 2.10935e-05 1.05387e-05 3.25746e-06 5.41281e-07 7.13641e-08 4.5639e-08 1.28436e-07 1.35811e-07 3.95124e-07 1.81692e-06 3.92846e-06 6.43454e-06 1.01292e-05 1.62421e-05 2.63057e-05 3.31416e-05 4.01523e-05 4.67518e-05 5.2434e-05 5.6979e-05 6.04349e-05 6.30177e-05 6.50674e-05 6.67612e-05 6.79511e-05 6.84498e-05 6.68717e-05 6.12442e-05 5.67753e-05 5.3278e-05 4.98602e-05 4.59543e-05 4.12726e-05 3.55454e-05 2.78653e-05 1.79375e-05 8.66126e-06 2.60028e-06 4.35144e-07 6.36674e-08 4.31753e-08 1.22969e-07 1.28699e-07 3.53948e-07 1.56662e-06 3.6136e-06 5.89725e-06 8.8921e-06 1.28866e-05 1.87991e-05 2.70663e-05 3.26016e-05 3.85267e-05 4.44443e-05 4.98308e-05 5.43041e-05 5.7754e-05 6.0366e-05 6.2393e-05 6.38089e-05 6.45011e-05 6.43882e-05 6.10995e-05 5.61703e-05 5.20026e-05 4.82375e-05 4.43037e-05 3.98046e-05 3.43994e-05 2.73853e-05 1.78409e-05 8.76406e-06 2.67099e-06 4.47688e-07 6.30188e-08 4.14237e-08 1.15959e-07 1.23124e-07 3.59543e-07 1.57283e-06 3.90186e-06 6.37936e-06 9.2898e-06 1.23285e-05 1.57041e-05 2.02592e-05 2.69463e-05 3.26229e-05 3.76846e-05 4.29232e-05 4.78442e-05 5.19892e-05 5.52144e-05 5.7651e-05 5.92632e-05 5.99513e-05 5.93213e-05 5.52762e-05 5.14278e-05 4.79417e-05 4.42992e-05 4.01607e-05 3.53978e-05 2.98385e-05 2.27636e-05 1.405e-05 6.4164e-06 1.8583e-06 3.21433e-07 5.47777e-08 3.92697e-08 1.09105e-07 1.17489e-07 3.5032e-07 1.49233e-06 4.06542e-06 7.16135e-06 1.00872e-05 1.23469e-05 1.41547e-05 1.60743e-05 1.87453e-05 2.29912e-05 2.96045e-05 3.64275e-05 4.10523e-05 4.55388e-05 4.94555e-05 5.25659e-05 5.48016e-05 5.60478e-05 5.62847e-05 5.35552e-05 5.01436e-05 4.71592e-05 4.43064e-05 4.09874e-05 3.67678e-05 3.14811e-05 2.48298e-05 1.63514e-05 8.14402e-06 2.51764e-06 4.30354e-07 6.21055e-08 4.06379e-08 1.04884e-07 1.17673e-07 4.00804e-07 1.72695e-06 4.56044e-06 8.13916e-06 1.15421e-05 1.46561e-05 1.72317e-05 1.7916e-05 1.90444e-05 2.12502e-05 2.50796e-05 3.08925e-05 3.88506e-05 4.33069e-05 4.68535e-05 4.98108e-05 5.21023e-05 5.35994e-05 5.39662e-05 5.13422e-05 4.84613e-05 4.55238e-05 4.24108e-05 3.89503e-05 3.48344e-05 2.95296e-05 2.1499e-05 1.28897e-05 5.72355e-06 1.66079e-06 3.00399e-07 5.38675e-08 3.80179e-08 1.03907e-07 1.23267e-07 5.11472e-07 2.25241e-06 5.4332e-06 8.48758e-06 1.10038e-05 1.36088e-05 1.66451e-05 1.94891e-05 2.0106e-05 2.14214e-05 2.37141e-05 2.68095e-05 3.13437e-05 3.77115e-05 4.30303e-05 4.41253e-05 4.44462e-05 4.41279e-05 4.33156e-05 4.21158e-05 4.05896e-05 3.87436e-05 3.65212e-05 3.37826e-05 3.03253e-05 2.59239e-05 2.0381e-05 1.37144e-05 6.827e-06 2.06473e-06 3.56421e-07 5.47985e-08 3.52771e-08 1.01284e-07 1.31802e-07 7.13665e-07 3.006e-06 5.92265e-06 7.80077e-06 9.29601e-06 1.10948e-05 1.34964e-05 1.65883e-05 2.02958e-05 2.4433e-05 2.87923e-05 3.31745e-05 3.74021e-05 4.13e-05 4.46823e-05 4.74267e-05 4.94865e-05 5.07661e-05 5.12653e-05 5.09597e-05 4.98072e-05 4.76943e-05 4.44063e-05 3.80614e-05 3.11902e-05 2.47637e-05 1.61099e-05 8.17751e-06 3.06474e-06 8.1782e-07 1.53393e-07 3.14319e-08 2.2089e-08 6.57876e-08 1.55534e-07 1.53705e-06 4.59842e-06 5.56089e-06 6.08641e-06 6.7428e-06 7.48839e-06 8.34083e-06 9.33261e-06 1.04763e-05 1.17563e-05 1.313e-05 1.45336e-05 1.58867e-05 1.70986e-05 1.80743e-05 1.87203e-05 1.89383e-05 1.87645e-05 1.81921e-05 1.71904e-05 1.57731e-05 1.39731e-05 1.18558e-05 9.52181e-06 7.13185e-06 4.87628e-06 2.94806e-06 1.51644e-06 6.36952e-07 2.07768e-07 4.91892e-08 1.13294e-08 7.5985e-09 3.12617e-08 1.72708e-06 2.09438e-06 2.36721e-06 2.63986e-06 2.85795e-06 3.02467e-06 3.15085e-06 3.24367e-06 3.30943e-06 3.35336e-06 3.3792e-06 3.38921e-06 3.38438e-06 3.3647e-06 3.32949e-06 3.27754e-06 3.20696e-06 3.11311e-06 3.00096e-06 2.8654e-06 2.70448e-06 2.51548e-06 2.29702e-06 2.04926e-06 1.77518e-06 1.48199e-06 1.18175e-06 8.91733e-07 6.32879e-07 4.23124e-07 2.69025e-07 1.64215e-07 9.45677e-08 1.77048e-09 8.27194e-10 1.53161e-07 2.90638e-07 4.26574e-07 5.54433e-07 6.69754e-07 7.69633e-07 8.52303e-07 9.16804e-07 9.62753e-07 9.90212e-07 9.99609e-07 9.91711e-07 9.6765e-07 9.28979e-07 8.77405e-07 8.14925e-07 7.44754e-07 6.70393e-07 5.95708e-07 5.24636e-07 4.60677e-07 4.06305e-07 3.62538e-07 3.28911e-07 3.03896e-07 2.85538e-07 2.71927e-07 2.61348e-07 2.52082e-07 2.41753e-07 2.26122e-07 1.98363e-07 1.57013e-07 5.10042e-09 3.02795e-09 2.02614e-06 4.8101e-06 6.88508e-06 8.49111e-06 9.8266e-06 1.09024e-05 1.1733e-05 1.23349e-05 1.27245e-05 1.29177e-05 1.29296e-05 1.2774e-05 1.24644e-05 1.20138e-05 1.14348e-05 1.07406e-05 9.94766e-06 9.07409e-06 8.14104e-06 7.17394e-06 6.20292e-06 5.26219e-06 4.38721e-06 3.60915e-06 2.94768e-06 2.4063e-06 1.97449e-06 1.63658e-06 1.38147e-06 7.97385e-07 5.19967e-07 5.69652e-07 1.02425e-06 2.01686e-08 6.2758e-09 2.57539e-06 6.78547e-06 1.19078e-05 1.42341e-05 1.61139e-05 1.76052e-05 1.87566e-05 1.96086e-05 2.01948e-05 2.05418e-05 2.06707e-05 2.05981e-05 2.0337e-05 1.98978e-05 1.92896e-05 1.85206e-05 1.75995e-05 1.65351e-05 1.53371e-05 1.40188e-05 1.25962e-05 1.10915e-05 9.53382e-06 7.96278e-06 6.43159e-06 5.00368e-06 3.74779e-06 2.73392e-06 1.4292e-06 7.62134e-07 6.19475e-07 9.83864e-07 1.25719e-06 3.10838e-08 8.14384e-09 2.55418e-06 6.39729e-06 1.1797e-05 1.73156e-05 1.95223e-05 2.12481e-05 2.26133e-05 2.36699e-05 2.44583e-05 2.50097e-05 2.48507e-05 2.41931e-05 2.34127e-05 2.25475e-05 2.16215e-05 2.06621e-05 1.96994e-05 1.87704e-05 1.79294e-05 1.72635e-05 1.68985e-05 1.68597e-05 1.62494e-05 1.4525e-05 1.26625e-05 1.06813e-05 8.63522e-06 5.43472e-06 2.71455e-06 1.30893e-06 9.01233e-07 1.43535e-06 1.23517e-06 4.02242e-08 9.98081e-09 2.38456e-06 5.69483e-06 1.04265e-05 1.60444e-05 2.10574e-05 2.45268e-05 2.60686e-05 2.71878e-05 2.8014e-05 2.80496e-05 2.76546e-05 2.70119e-05 2.61766e-05 2.51955e-05 2.41078e-05 2.29446e-05 2.17324e-05 2.04987e-05 1.92803e-05 1.81303e-05 1.71236e-05 1.63449e-05 1.58418e-05 1.55346e-05 1.50746e-05 1.38251e-05 1.13429e-05 7.92879e-06 4.59921e-06 2.45611e-06 1.63524e-06 2.33145e-06 1.29553e-06 5.04217e-08 1.26479e-08 2.27893e-06 5.36392e-06 9.92904e-06 1.58029e-05 2.15146e-05 2.57046e-05 2.83263e-05 2.97843e-05 3.03997e-05 3.03929e-05 2.99197e-05 2.91011e-05 2.8037e-05 2.68069e-05 2.54695e-05 2.40656e-05 2.26213e-05 2.11546e-05 1.96829e-05 1.82351e-05 1.6864e-05 1.56462e-05 1.46607e-05 1.39437e-05 1.33959e-05 1.26654e-05 1.11899e-05 8.67971e-06 5.74661e-06 3.52738e-06 2.59149e-06 3.66594e-06 1.41918e-06 6.09775e-08 1.57765e-08 2.22839e-06 5.24729e-06 9.89127e-06 1.62228e-05 2.26962e-05 2.75261e-05 3.05122e-05 3.20997e-05 3.26444e-05 3.24057e-05 3.15988e-05 3.04076e-05 2.89819e-05 2.74345e-05 2.58408e-05 2.42432e-05 2.26581e-05 2.10859e-05 1.95213e-05 1.79663e-05 1.64439e-05 1.50131e-05 1.37591e-05 1.27446e-05 1.19472e-05 1.11808e-05 1.00641e-05 8.26534e-06 6.03799e-06 4.21238e-06 3.5254e-06 5.13072e-06 1.55553e-06 7.06953e-08 1.95614e-08 2.22553e-06 5.28585e-06 1.01825e-05 1.71299e-05 2.43435e-05 2.96186e-05 3.2716e-05 3.41628e-05 3.43855e-05 3.37166e-05 3.24426e-05 3.0807e-05 2.90024e-05 2.71647e-05 2.53744e-05 2.36657e-05 2.2039e-05 2.04744e-05 1.89446e-05 1.74257e-05 1.59129e-05 1.44403e-05 1.30817e-05 1.19057e-05 1.09178e-05 1.0012e-05 8.95447e-06 7.53153e-06 5.8813e-06 4.56541e-06 4.33488e-06 6.39193e-06 1.67492e-06 7.90653e-08 2.34777e-08 2.24423e-06 5.37505e-06 1.05388e-05 1.80614e-05 2.58793e-05 3.1412e-05 3.44458e-05 3.56074e-05 3.54029e-05 3.42423e-05 3.24843e-05 3.04308e-05 2.83093e-05 2.62656e-05 2.43716e-05 2.26433e-05 2.10604e-05 1.95834e-05 1.81643e-05 1.6758e-05 1.53392e-05 1.39224e-05 1.25646e-05 1.13222e-05 1.02078e-05 9.1652e-06 8.0715e-06 6.83588e-06 5.58433e-06 4.72464e-06 5.00571e-06 7.25871e-06 1.76903e-06 8.61509e-08 2.74958e-08 2.27304e-06 5.47705e-06 1.08851e-05 1.89113e-05 2.72064e-05 3.28664e-05 3.57408e-05 3.65564e-05 3.58972e-05 3.42517e-05 3.20512e-05 2.9649e-05 2.7292e-05 2.51195e-05 2.31845e-05 2.14823e-05 1.99743e-05 1.86052e-05 1.73141e-05 1.60436e-05 1.47547e-05 1.34458e-05 1.21538e-05 1.09113e-05 9.72423e-06 8.5732e-06 7.42353e-06 6.28408e-06 5.29584e-06 4.79325e-06 5.54891e-06 7.73239e-06 1.83884e-06 9.23453e-08 3.14128e-08 2.30401e-06 5.57367e-06 1.11902e-05 1.9638e-05 2.82967e-05 3.39917e-05 3.66536e-05 3.71068e-05 3.60124e-05 3.39355e-05 3.13737e-05 2.8713e-05 2.6202e-05 2.39625e-05 2.20239e-05 2.03616e-05 1.89248e-05 1.76492e-05 1.64682e-05 1.53214e-05 1.41635e-05 1.29824e-05 1.17937e-05 1.05963e-05 9.38158e-06 8.15811e-06 6.96295e-06 5.88074e-06 5.07015e-06 4.83629e-06 5.99674e-06 7.91327e-06 1.88792e-06 9.80341e-08 3.52512e-08 2.33435e-06 5.65782e-06 1.14421e-05 2.02266e-05 2.91485e-05 3.48175e-05 3.72537e-05 3.73702e-05 3.58986e-05 3.34735e-05 3.06424e-05 2.7808e-05 2.52085e-05 2.29419e-05 2.10147e-05 1.93859e-05 1.79965e-05 1.67821e-05 1.56786e-05 1.46268e-05 1.35818e-05 1.25268e-05 1.14554e-05 1.03294e-05 9.12228e-06 7.86215e-06 6.64138e-06 5.6002e-06 4.91321e-06 4.87998e-06 6.37103e-06 7.91663e-06 1.92182e-06 1.03515e-07 3.90005e-08 2.36243e-06 5.73144e-06 1.16591e-05 2.07276e-05 2.98452e-05 3.54484e-05 3.7655e-05 3.74607e-05 3.56644e-05 3.29627e-05 2.99377e-05 2.69943e-05 2.43503e-05 2.20779e-05 2.01633e-05 1.85561e-05 1.71953e-05 1.60175e-05 1.49628e-05 1.3977e-05 1.30204e-05 1.20781e-05 1.11222e-05 1.00796e-05 8.90584e-06 7.64113e-06 6.41749e-06 5.41395e-06 4.81894e-06 4.94013e-06 6.70113e-06 7.81765e-06 1.9445e-06 1.08943e-07 4.2712e-08 2.38898e-06 5.79759e-06 1.18492e-05 2.11556e-05 3.04108e-05 3.5921e-05 3.79072e-05 3.74413e-05 3.53821e-05 3.24756e-05 2.93238e-05 2.63219e-05 2.36632e-05 2.13958e-05 1.94911e-05 1.78923e-05 1.65379e-05 1.53687e-05 1.43316e-05 1.33801e-05 1.2484e-05 1.16339e-05 1.0781e-05 9.82435e-06 8.70314e-06 7.46208e-06 6.25782e-06 5.29473e-06 4.7737e-06 5.0187e-06 7.00254e-06 7.67062e-06 1.95999e-06 1.14386e-07 4.641e-08 2.41372e-06 5.85852e-06 1.20251e-05 2.15444e-05 3.08977e-05 3.62932e-05 3.80645e-05 3.73556e-05 3.50801e-05 3.20226e-05 2.8793e-05 2.57686e-05 2.31159e-05 2.08618e-05 1.8966e-05 1.73682e-05 1.60085e-05 1.48311e-05 1.37904e-05 1.28495e-05 1.19892e-05 1.12078e-05 1.04389e-05 9.56148e-06 8.50195e-06 7.30494e-06 6.13903e-06 5.22245e-06 4.76685e-06 5.11762e-06 7.29193e-06 7.5037e-06 1.97096e-06 1.19859e-07 5.01428e-08 2.43799e-06 5.91877e-06 1.21975e-05 2.19121e-05 3.13292e-05 3.65946e-05 3.81619e-05 3.72415e-05 3.47942e-05 3.16321e-05 2.83624e-05 2.53395e-05 2.27043e-05 2.04655e-05 1.85744e-05 1.69688e-05 1.55912e-05 1.43908e-05 1.33285e-05 1.23767e-05 1.15297e-05 1.07948e-05 1.0092e-05 9.28644e-06 8.29413e-06 7.15631e-06 6.04406e-06 5.18098e-06 4.78793e-06 5.23485e-06 7.57769e-06 7.33539e-06 1.97956e-06 1.25338e-07 5.39122e-08 2.46161e-06 5.97823e-06 1.2368e-05 2.22675e-05 3.1725e-05 3.68492e-05 3.82203e-05 3.71118e-05 3.45257e-05 3.12931e-05 2.80111e-05 2.50083e-05 2.24011e-05 2.01827e-05 1.82974e-05 1.6682e-05 1.52807e-05 1.40478e-05 1.29508e-05 1.19718e-05 1.11167e-05 1.04039e-05 9.74559e-06 9.00004e-06 8.07581e-06 7.00765e-06 5.96138e-06 5.15915e-06 4.82943e-06 5.36875e-06 7.8657e-06 7.17518e-06 1.98723e-06 1.30799e-07 5.77462e-08 2.48532e-06 6.03961e-06 1.25438e-05 2.26224e-05 3.20986e-05 3.70725e-05 3.82574e-05 3.6984e-05 3.42886e-05 3.10124e-05 2.77371e-05 2.4765e-05 2.21906e-05 1.99939e-05 1.81139e-05 1.64862e-05 1.5057e-05 1.37854e-05 1.26447e-05 1.16262e-05 1.07481e-05 1.00387e-05 9.40664e-06 8.70855e-06 7.84969e-06 6.85624e-06 5.88409e-06 5.14896e-06 4.88523e-06 5.51695e-06 8.15814e-06 7.0284e-06 1.99491e-06 1.36213e-07 6.16354e-08 2.50908e-06 6.10227e-06 1.2723e-05 2.29761e-05 3.24561e-05 3.7276e-05 3.82848e-05 3.6866e-05 3.40843e-05 3.07849e-05 2.75304e-05 2.45976e-05 2.2061e-05 1.98895e-05 1.80167e-05 1.63768e-05 1.49178e-05 1.36023e-05 1.24101e-05 1.13406e-05 1.04235e-05 9.69927e-06 9.07712e-06 8.41534e-06 7.61734e-06 6.70081e-06 5.80816e-06 5.14521e-06 4.95093e-06 5.67724e-06 8.45497e-06 6.89733e-06 2.00315e-06 1.41562e-07 6.5585e-08 2.53291e-06 6.16681e-06 1.29083e-05 2.33342e-05 3.2804e-05 3.74673e-05 3.83102e-05 3.67636e-05 3.39144e-05 3.06061e-05 2.73809e-05 2.44918e-05 2.19957e-05 1.98517e-05 1.79886e-05 1.63388e-05 1.48511e-05 1.34906e-05 1.22426e-05 1.11143e-05 1.01462e-05 9.39135e-06 8.76373e-06 8.12621e-06 7.38264e-06 6.54218e-06 5.73159e-06 5.14448e-06 5.02323e-06 5.8475e-06 8.75503e-06 6.78286e-06 2.01229e-06 1.4683e-07 6.95914e-08 2.55694e-06 6.23319e-06 1.30992e-05 2.36973e-05 3.31479e-05 3.76558e-05 3.83439e-05 3.66849e-05 3.37829e-05 3.0476e-05 2.72859e-05 2.44434e-05 2.19901e-05 1.98761e-05 1.80253e-05 1.6368e-05 1.48522e-05 1.34451e-05 1.21369e-05 1.09426e-05 9.91289e-06 9.114e-06 8.46794e-06 7.84405e-06 7.14819e-06 6.38129e-06 5.65341e-06 5.14452e-06 5.09955e-06 6.02548e-06 9.05578e-06 6.68394e-06 2.02233e-06 1.52003e-07 7.3644e-08 2.58074e-06 6.30065e-06 1.32956e-05 2.40668e-05 3.34908e-05 3.78452e-05 3.83883e-05 3.66291e-05 3.36845e-05 3.03852e-05 2.72332e-05 2.44391e-05 2.20307e-05 1.99502e-05 1.81161e-05 1.64558e-05 1.49156e-05 1.3463e-05 1.20926e-05 1.08271e-05 9.72651e-06 8.87153e-06 8.19508e-06 7.57437e-06 6.91836e-06 6.22038e-06 5.57376e-06 5.14417e-06 5.17833e-06 6.20988e-06 9.3557e-06 6.60024e-06 2.03337e-06 1.5707e-07 7.77473e-08 2.60449e-06 6.36954e-06 1.34986e-05 2.44469e-05 3.38412e-05 3.80458e-05 3.84523e-05 3.66019e-05 3.36213e-05 3.03333e-05 2.72207e-05 2.44757e-05 2.21138e-05 2.00692e-05 1.82557e-05 1.65964e-05 1.50348e-05 1.3538e-05 1.21041e-05 1.07627e-05 9.58417e-06 8.66314e-06 7.94643e-06 7.31991e-06 6.69617e-06 6.06161e-06 5.49327e-06 5.14259e-06 5.25778e-06 6.39823e-06 9.65121e-06 6.52933e-06 2.04517e-06 1.62018e-07 8.18851e-08 2.62761e-06 6.43842e-06 1.37058e-05 2.48363e-05 3.4202e-05 3.82622e-05 3.85363e-05 3.6598e-05 3.35842e-05 3.03094e-05 2.72376e-05 2.45436e-05 2.22307e-05 2.0226e-05 1.84379e-05 1.67851e-05 1.5207e-05 1.36689e-05 1.21713e-05 1.07509e-05 9.488e-06 8.49163e-06 7.7254e-06 7.08427e-06 6.48485e-06 5.90726e-06 5.41315e-06 5.14015e-06 5.33777e-06 6.59027e-06 9.94173e-06 6.4706e-06 2.0577e-06 1.66832e-07 8.60656e-08 2.65036e-06 6.50772e-06 1.39172e-05 2.52324e-05 3.45638e-05 3.8481e-05 3.86364e-05 3.66148e-05 3.35705e-05 3.03111e-05 2.72816e-05 2.46394e-05 2.2377e-05 2.04148e-05 1.86563e-05 1.70149e-05 1.54252e-05 1.38494e-05 1.22894e-05 1.07878e-05 9.43563e-06 8.35651e-06 7.53314e-06 6.86973e-06 6.28698e-06 5.75943e-06 5.33449e-06 5.13679e-06 5.4172e-06 6.78385e-06 1.0224e-05 6.42151e-06 2.07072e-06 1.71498e-07 9.02724e-08 2.67245e-06 6.57652e-06 1.41299e-05 2.56259e-05 3.49024e-05 3.8677e-05 3.87211e-05 3.66381e-05 3.35717e-05 3.03312e-05 2.73461e-05 2.47575e-05 2.25479e-05 2.06317e-05 1.89074e-05 1.72829e-05 1.56871e-05 1.40779e-05 1.24571e-05 1.08733e-05 9.42774e-06 8.25917e-06 7.37159e-06 6.67857e-06 6.10482e-06 5.61999e-06 5.25855e-06 5.13319e-06 5.49643e-06 6.9795e-06 1.04988e-05 6.38146e-06 2.08405e-06 1.76e-07 9.45141e-08 2.69419e-06 6.64559e-06 1.4344e-05 2.60134e-05 3.5228e-05 3.8862e-05 3.88007e-05 3.66638e-05 3.35835e-05 3.03665e-05 2.74277e-05 2.48937e-05 2.27384e-05 2.08709e-05 1.91848e-05 1.75825e-05 1.59864e-05 1.43488e-05 1.26701e-05 1.10041e-05 9.46249e-06 8.19928e-06 7.24173e-06 6.51265e-06 5.94061e-06 5.49106e-06 5.18698e-06 5.13029e-06 5.57532e-06 7.17514e-06 1.07622e-05 6.34857e-06 2.09774e-06 1.80323e-07 9.87777e-08 2.71545e-06 6.71527e-06 1.45619e-05 2.63935e-05 3.5535e-05 3.90289e-05 3.88671e-05 3.66842e-05 3.36053e-05 3.04149e-05 2.75223e-05 2.5044e-05 2.29453e-05 2.11297e-05 1.94862e-05 1.79113e-05 1.63205e-05 1.46597e-05 1.29267e-05 1.1179e-05 9.53932e-06 8.17697e-06 7.14442e-06 6.37334e-06 5.79591e-06 5.37406e-06 5.12071e-06 5.12832e-06 5.65376e-06 7.37229e-06 1.10216e-05 6.32143e-06 2.11104e-06 1.84446e-07 1.03059e-07 2.73598e-06 6.78483e-06 1.47839e-05 2.67661e-05 3.58263e-05 3.91806e-05 3.89223e-05 3.66979e-05 3.36263e-05 3.04663e-05 2.76231e-05 2.52033e-05 2.31638e-05 2.14031e-05 1.9806e-05 1.82636e-05 1.6684e-05 1.50056e-05 1.32224e-05 1.13949e-05 9.65635e-06 8.19186e-06 7.08029e-06 6.26193e-06 5.67245e-06 5.27089e-06 5.06162e-06 5.12912e-06 5.73372e-06 7.57312e-06 1.12789e-05 6.3068e-06 2.12517e-06 1.88373e-07 1.07344e-07 2.75564e-06 6.85252e-06 1.50021e-05 2.71285e-05 3.60989e-05 3.93143e-05 3.89636e-05 3.67029e-05 3.36436e-05 3.05193e-05 2.77293e-05 2.53705e-05 2.33923e-05 2.16892e-05 2.01422e-05 1.8637e-05 1.70741e-05 1.53837e-05 1.35547e-05 1.16498e-05 9.81232e-06 8.24365e-06 7.04982e-06 6.17943e-06 5.57151e-06 5.18287e-06 5.01076e-06 5.1331e-06 5.8147e-06 7.77632e-06 1.15303e-05 6.30042e-06 2.13999e-06 1.92096e-07 1.11634e-07 2.77492e-06 6.92022e-06 1.52213e-05 2.74846e-05 3.63566e-05 3.94328e-05 3.89917e-05 3.66976e-05 3.36543e-05 3.05708e-05 2.78366e-05 2.55402e-05 2.36253e-05 2.19828e-05 2.04898e-05 1.90265e-05 1.74859e-05 1.57892e-05 1.39194e-05 1.194e-05 1.00047e-05 8.33104e-06 7.05257e-06 6.12629e-06 5.49421e-06 5.1115e-06 4.96978e-06 5.14216e-06 5.89984e-06 7.98789e-06 1.17781e-05 6.30138e-06 2.15536e-06 1.95611e-07 1.15916e-07 2.79355e-06 6.98692e-06 1.54389e-05 2.78314e-05 3.65964e-05 3.95331e-05 3.90035e-05 3.66782e-05 3.36543e-05 3.06211e-05 2.79438e-05 2.57101e-05 2.38607e-05 2.22821e-05 2.08471e-05 1.94303e-05 1.79169e-05 1.62193e-05 1.43134e-05 1.22631e-05 1.02314e-05 8.45277e-06 7.08799e-06 6.10245e-06 5.441e-06 5.05774e-06 4.94e-06 5.15773e-06 5.98998e-06 8.20596e-06 1.20228e-05 6.30905e-06 2.17122e-06 1.98917e-07 1.20193e-07 2.81199e-06 7.05383e-06 1.5657e-05 2.81714e-05 3.68214e-05 3.96173e-05 3.89993e-05 3.66437e-05 3.36396e-05 3.06573e-05 2.80399e-05 2.58733e-05 2.40938e-05 2.25832e-05 2.12101e-05 1.98439e-05 1.83627e-05 1.66694e-05 1.47325e-05 1.26152e-05 1.04898e-05 8.60722e-06 7.15534e-06 6.10786e-06 5.41241e-06 5.02256e-06 4.92263e-06 5.18094e-06 6.08562e-06 8.42959e-06 1.22642e-05 6.32258e-06 2.18747e-06 2.02018e-07 1.24453e-07 2.83019e-06 7.12055e-06 1.58739e-05 2.85011e-05 3.70285e-05 3.9683e-05 3.89775e-05 3.6593e-05 3.36109e-05 3.06822e-05 2.81279e-05 2.60313e-05 2.43246e-05 2.28849e-05 2.1577e-05 2.02654e-05 1.88207e-05 1.71364e-05 1.51733e-05 1.2993e-05 1.07767e-05 8.79207e-06 7.25299e-06 6.14161e-06 5.40825e-06 5.00649e-06 4.91873e-06 5.21301e-06 6.18763e-06 8.65889e-06 1.25023e-05 6.34138e-06 2.20405e-06 2.04921e-07 1.28674e-07 2.84834e-06 7.18744e-06 1.60892e-05 2.8821e-05 3.72195e-05 3.97302e-05 3.89358e-05 3.65224e-05 3.35643e-05 3.06914e-05 2.82029e-05 2.61795e-05 2.45488e-05 2.31834e-05 2.19443e-05 2.0691e-05 1.92869e-05 1.76162e-05 1.56315e-05 1.33926e-05 1.1089e-05 9.00513e-06 7.37952e-06 6.20281e-06 5.42816e-06 5.00966e-06 4.92882e-06 5.25467e-06 6.29668e-06 8.89393e-06 1.27377e-05 6.36495e-06 2.22091e-06 2.07633e-07 1.32841e-07 2.86612e-06 7.25413e-06 1.63016e-05 2.91316e-05 3.73935e-05 3.97586e-05 3.88753e-05 3.6433e-05 3.34963e-05 3.06787e-05 2.826e-05 2.63153e-05 2.47648e-05 2.34766e-05 2.23091e-05 2.11173e-05 1.97574e-05 1.81043e-05 1.61023e-05 1.38092e-05 1.14225e-05 9.24289e-06 7.53236e-06 6.2898e-06 5.4714e-06 5.03215e-06 4.95354e-06 5.30661e-06 6.41302e-06 9.13482e-06 1.29702e-05 6.39269e-06 2.23796e-06 2.10162e-07 1.36973e-07 2.88376e-06 7.32271e-06 1.65149e-05 2.94339e-05 3.75513e-05 3.97697e-05 3.87978e-05 3.63282e-05 3.34162e-05 3.06555e-05 2.83052e-05 2.6436e-05 2.49667e-05 2.37601e-05 2.26681e-05 2.15412e-05 2.0229e-05 1.85973e-05 1.65822e-05 1.42391e-05 1.17735e-05 9.50227e-06 7.70896e-06 6.40062e-06 5.53663e-06 5.07327e-06 4.99281e-06 5.36957e-06 6.53881e-06 9.38201e-06 1.32008e-05 6.42432e-06 2.2552e-06 2.12519e-07 1.41042e-07 2.90051e-06 7.38889e-06 1.6724e-05 2.97231e-05 3.76903e-05 3.97609e-05 3.8699e-05 3.62002e-05 3.3312e-05 3.06097e-05 2.83332e-05 2.65454e-05 2.51586e-05 2.40332e-05 2.30195e-05 2.19611e-05 2.06998e-05 1.90928e-05 1.70681e-05 1.46791e-05 1.21389e-05 9.78037e-06 7.90698e-06 6.53355e-06 5.62278e-06 5.13264e-06 5.04697e-06 5.44466e-06 6.67569e-06 9.63641e-06 1.34304e-05 6.45968e-06 2.27258e-06 2.14719e-07 1.45036e-07 2.91669e-06 7.45404e-06 1.69304e-05 3.00008e-05 3.78121e-05 3.97343e-05 3.85825e-05 3.60556e-05 3.31915e-05 3.05474e-05 2.83441e-05 2.66385e-05 2.53373e-05 2.42956e-05 2.33602e-05 2.23729e-05 2.11662e-05 1.95872e-05 1.75566e-05 1.51257e-05 1.25155e-05 1.00743e-05 8.12392e-06 6.68655e-06 5.72842e-06 5.20954e-06 5.11593e-06 5.53195e-06 6.82294e-06 9.89815e-06 1.36589e-05 6.49845e-06 2.2901e-06 2.16775e-07 1.48955e-07 2.93215e-06 7.51737e-06 1.71323e-05 3.02648e-05 3.79156e-05 3.96884e-05 3.84456e-05 3.58893e-05 3.30496e-05 3.04647e-05 2.83374e-05 2.67164e-05 2.55024e-05 2.45465e-05 2.36917e-05 2.27748e-05 2.16251e-05 2.0078e-05 1.8045e-05 1.55764e-05 1.29008e-05 1.03818e-05 8.35776e-06 6.85788e-06 5.85216e-06 5.30304e-06 5.19927e-06 5.63134e-06 6.98053e-06 1.01677e-05 1.38873e-05 6.54065e-06 2.30778e-06 2.18701e-07 1.52782e-07 2.94696e-06 7.57897e-06 1.73296e-05 3.05153e-05 3.80017e-05 3.96247e-05 3.82903e-05 3.57045e-05 3.28887e-05 3.03629e-05 2.8312e-05 2.67763e-05 2.56508e-05 2.47822e-05 2.40102e-05 2.31664e-05 2.20732e-05 2.05606e-05 1.85299e-05 1.6028e-05 1.32922e-05 1.07005e-05 8.60662e-06 7.0459e-06 5.99265e-06 5.41218e-06 5.29639e-06 5.74253e-06 7.14828e-06 1.04449e-05 1.41156e-05 6.58597e-06 2.32559e-06 2.20514e-07 1.56501e-07 2.96086e-06 7.63801e-06 1.75206e-05 3.07508e-05 3.80696e-05 3.95424e-05 3.81156e-05 3.54999e-05 3.27083e-05 3.02423e-05 2.82691e-05 2.682e-05 2.57836e-05 2.5003e-05 2.43143e-05 2.35451e-05 2.25107e-05 2.10327e-05 1.90072e-05 1.64773e-05 1.36869e-05 1.10287e-05 8.86888e-06 7.24921e-06 6.1487e-06 5.53603e-06 5.40671e-06 5.86521e-06 7.32605e-06 1.07295e-05 1.43445e-05 6.63446e-06 2.34361e-06 2.22224e-07 1.60109e-07 2.97402e-06 7.69495e-06 1.7706e-05 3.09722e-05 3.81205e-05 3.94424e-05 3.79223e-05 3.52764e-05 3.2509e-05 3.01029e-05 2.82083e-05 2.68463e-05 2.58997e-05 2.52075e-05 2.46028e-05 2.39087e-05 2.29344e-05 2.14935e-05 1.94751e-05 1.69218e-05 1.40831e-05 1.13646e-05 9.14327e-06 7.46673e-06 6.31937e-06 5.67379e-06 5.52962e-06 5.99899e-06 7.51362e-06 1.10215e-05 1.45743e-05 6.68593e-06 2.36182e-06 2.23849e-07 1.636e-07 2.98634e-06 7.74934e-06 1.78846e-05 3.11783e-05 3.81539e-05 3.93246e-05 3.77106e-05 3.50342e-05 3.22914e-05 2.99459e-05 2.81308e-05 2.68568e-05 2.6e-05 2.5396e-05 2.48749e-05 2.42558e-05 2.3342e-05 2.19395e-05 1.99311e-05 1.73589e-05 1.44784e-05 1.17067e-05 9.42843e-06 7.69735e-06 6.50378e-06 5.82487e-06 5.66474e-06 6.14365e-06 7.7108e-06 1.13204e-05 1.48055e-05 6.74048e-06 2.38027e-06 2.25403e-07 1.66967e-07 2.99786e-06 7.80122e-06 1.80565e-05 3.137e-05 3.8171e-05 3.91897e-05 3.74807e-05 3.47737e-05 3.20559e-05 2.97716e-05 2.80371e-05 2.68515e-05 2.60848e-05 2.55688e-05 2.51306e-05 2.45859e-05 2.37322e-05 2.23689e-05 2.0373e-05 1.77864e-05 1.48719e-05 1.20545e-05 9.72383e-06 7.94041e-06 6.70125e-06 5.98858e-06 5.81155e-06 6.29894e-06 7.91763e-06 1.16263e-05 1.50388e-05 6.79804e-06 2.39899e-06 2.269e-07 1.70212e-07 3.00856e-06 7.85054e-06 1.82216e-05 3.15474e-05 3.81719e-05 3.90377e-05 3.72329e-05 3.44952e-05 3.1803e-05 2.95807e-05 2.79277e-05 2.68312e-05 2.61544e-05 2.57258e-05 2.53698e-05 2.48983e-05 2.4104e-05 2.27801e-05 2.0799e-05 1.8202e-05 1.52582e-05 1.24039e-05 1.00272e-05 8.19478e-06 6.91123e-06 6.16474e-06 5.97002e-06 6.46485e-06 8.13398e-06 1.1939e-05 1.52743e-05 6.85856e-06 2.41799e-06 2.28353e-07 1.73333e-07 3.01849e-06 7.89741e-06 1.83801e-05 3.17111e-05 3.81571e-05 3.88691e-05 3.69675e-05 3.41994e-05 3.15334e-05 2.93739e-05 2.78032e-05 2.67961e-05 2.62091e-05 2.58673e-05 2.55924e-05 2.51927e-05 2.44562e-05 2.31711e-05 2.12066e-05 1.86046e-05 1.56399e-05 1.27563e-05 1.03384e-05 8.45968e-06 7.13286e-06 6.35266e-06 6.13979e-06 6.64138e-06 8.36021e-06 1.22589e-05 1.55129e-05 6.92211e-06 2.43734e-06 2.29772e-07 1.76334e-07 3.02762e-06 7.94165e-06 1.85318e-05 3.18609e-05 3.81264e-05 3.86833e-05 3.66842e-05 3.38859e-05 3.12473e-05 2.91514e-05 2.76639e-05 2.67465e-05 2.6249e-05 2.59933e-05 2.57981e-05 2.54684e-05 2.47879e-05 2.35407e-05 2.15938e-05 1.89912e-05 1.60132e-05 1.31091e-05 1.06563e-05 8.73472e-06 7.36603e-06 6.55225e-06 6.32072e-06 6.82841e-06 8.59616e-06 1.25857e-05 1.57546e-05 6.9885e-06 2.45702e-06 2.31166e-07 1.79214e-07 3.03601e-06 7.98352e-06 1.86773e-05 3.19976e-05 3.80802e-05 3.84806e-05 3.63833e-05 3.35558e-05 3.09458e-05 2.89148e-05 2.75115e-05 2.66841e-05 2.62758e-05 2.61051e-05 2.59881e-05 2.57264e-05 2.50997e-05 2.38888e-05 2.19602e-05 1.93608e-05 1.63766e-05 1.34606e-05 1.09788e-05 9.01833e-06 7.60989e-06 6.76328e-06 6.51306e-06 7.0265e-06 8.84263e-06 1.29202e-05 1.60003e-05 7.05802e-06 2.47713e-06 2.32554e-07 1.81976e-07 3.04359e-06 8.02272e-06 1.88159e-05 3.21207e-05 3.80182e-05 3.82601e-05 3.60639e-05 3.32081e-05 3.06284e-05 2.86636e-05 2.73455e-05 2.66085e-05 2.6289e-05 2.62025e-05 2.6162e-05 2.5966e-05 2.53904e-05 2.42137e-05 2.23032e-05 1.97106e-05 1.67272e-05 1.38084e-05 1.13047e-05 9.31004e-06 7.86403e-06 6.98537e-06 6.71654e-06 7.23561e-06 9.0999e-06 1.32629e-05 1.62498e-05 7.13046e-06 2.49766e-06 2.33947e-07 1.84623e-07 3.05046e-06 8.05965e-06 1.89486e-05 3.22315e-05 3.79406e-05 3.80222e-05 3.57268e-05 3.28444e-05 3.02971e-05 2.83999e-05 2.71679e-05 2.65213e-05 2.629e-05 2.62864e-05 2.63208e-05 2.61879e-05 2.56605e-05 2.45154e-05 2.26225e-05 2.00394e-05 1.70634e-05 1.41504e-05 1.16318e-05 9.60733e-06 8.12691e-06 7.21783e-06 6.93105e-06 7.4561e-06 9.3687e-06 1.36145e-05 1.65037e-05 7.20596e-06 2.5187e-06 2.35356e-07 1.87166e-07 3.05661e-06 8.09432e-06 1.90758e-05 3.23301e-05 3.78476e-05 3.77666e-05 3.5372e-05 3.24649e-05 2.99524e-05 2.81242e-05 2.69792e-05 2.6423e-05 2.62793e-05 2.63573e-05 2.64644e-05 2.63919e-05 2.59094e-05 2.4793e-05 2.29164e-05 2.0345e-05 1.73825e-05 1.4484e-05 1.19581e-05 9.90969e-06 8.39833e-06 7.46064e-06 7.1568e-06 7.68843e-06 9.64977e-06 1.39759e-05 1.67626e-05 7.2845e-06 2.54027e-06 2.36794e-07 1.89618e-07 3.06221e-06 8.12728e-06 1.91985e-05 3.2417e-05 3.77385e-05 3.74932e-05 3.5e-05 3.20711e-05 2.95959e-05 2.78385e-05 2.67812e-05 2.63153e-05 2.62584e-05 2.64167e-05 2.65944e-05 2.65793e-05 2.61381e-05 2.50468e-05 2.31848e-05 2.06264e-05 1.76827e-05 1.48064e-05 1.22807e-05 1.02147e-05 8.67666e-06 7.71305e-06 7.39368e-06 7.93302e-06 9.94405e-06 1.4348e-05 1.70262e-05 7.36609e-06 2.56242e-06 2.3827e-07 1.91985e-07 3.06721e-06 8.15842e-06 1.93166e-05 3.24922e-05 3.76139e-05 3.72022e-05 3.46116e-05 3.16641e-05 2.92293e-05 2.75445e-05 2.65756e-05 2.62e-05 2.6229e-05 2.6466e-05 2.67121e-05 2.67514e-05 2.63478e-05 2.52783e-05 2.34287e-05 2.08842e-05 1.79636e-05 1.51164e-05 1.25981e-05 1.05205e-05 8.96047e-06 7.97369e-06 7.64052e-06 8.18906e-06 1.02511e-05 1.47306e-05 1.72932e-05 7.45018e-06 2.5851e-06 2.39789e-07 1.94271e-07 3.07167e-06 8.18801e-06 1.94308e-05 3.25561e-05 3.74731e-05 3.68931e-05 3.42065e-05 3.12443e-05 2.88534e-05 2.72433e-05 2.63637e-05 2.60781e-05 2.61922e-05 2.65063e-05 2.68185e-05 2.6909e-05 2.65391e-05 2.54875e-05 2.36481e-05 2.11179e-05 1.82242e-05 1.54119e-05 1.29075e-05 1.08246e-05 9.24789e-06 8.24208e-06 7.89807e-06 8.45891e-06 1.05728e-05 1.51254e-05 1.75642e-05 7.537e-06 2.6084e-06 2.41357e-07 1.96481e-07 3.07559e-06 8.21607e-06 1.9541e-05 3.26088e-05 3.73168e-05 3.65668e-05 3.37865e-05 3.08138e-05 2.84706e-05 2.69369e-05 2.61473e-05 2.59515e-05 2.61495e-05 2.65391e-05 2.69149e-05 2.70534e-05 2.67135e-05 2.56761e-05 2.38446e-05 2.13294e-05 1.84663e-05 1.56929e-05 1.32077e-05 1.11254e-05 9.53715e-06 8.51648e-06 8.16513e-06 8.74185e-06 1.09098e-05 1.55328e-05 1.78381e-05 7.62577e-06 2.6322e-06 2.42971e-07 1.98621e-07 3.07905e-06 8.24288e-06 1.96478e-05 3.26502e-05 3.7144e-05 3.62227e-05 3.33517e-05 3.03737e-05 2.80818e-05 2.66266e-05 2.59276e-05 2.58211e-05 2.61019e-05 2.65651e-05 2.7002e-05 2.71853e-05 2.68717e-05 2.58453e-05 2.402e-05 2.15208e-05 1.86922e-05 1.59598e-05 1.34977e-05 1.14212e-05 9.82684e-06 8.79626e-06 8.44201e-06 9.0382e-06 1.12632e-05 1.59542e-05 1.81155e-05 7.71676e-06 2.6566e-06 2.44635e-07 2.00708e-07 3.08211e-06 8.26874e-06 1.97522e-05 3.26805e-05 3.69548e-05 3.58615e-05 3.29038e-05 2.99257e-05 2.76893e-05 2.63144e-05 2.57063e-05 2.56883e-05 2.60504e-05 2.65851e-05 2.70804e-05 2.73051e-05 2.70142e-05 2.59959e-05 2.41762e-05 2.16953e-05 1.89061e-05 1.62146e-05 1.37776e-05 1.17109e-05 1.01154e-05 9.07981e-06 8.72721e-06 9.34745e-06 1.16333e-05 1.63897e-05 1.83951e-05 7.80924e-06 2.68145e-06 2.46347e-07 2.02738e-07 3.08474e-06 8.29353e-06 1.98536e-05 3.26992e-05 3.67489e-05 3.54833e-05 3.24432e-05 2.9471e-05 2.72943e-05 2.6002e-05 2.54856e-05 2.55555e-05 2.59973e-05 2.66012e-05 2.71517e-05 2.74141e-05 2.71422e-05 2.61292e-05 2.43145e-05 2.18546e-05 1.91093e-05 1.64583e-05 1.40476e-05 1.19941e-05 1.04021e-05 9.3664e-06 9.02042e-06 9.66977e-06 1.20203e-05 1.684e-05 1.86764e-05 7.90308e-06 2.70677e-06 2.48113e-07 2.04721e-07 3.08703e-06 8.31762e-06 1.99532e-05 3.27072e-05 3.65263e-05 3.50874e-05 3.19693e-05 2.90094e-05 2.68972e-05 2.56901e-05 2.52663e-05 2.54239e-05 2.5944e-05 2.66147e-05 2.72173e-05 2.75136e-05 2.72567e-05 2.62461e-05 2.44356e-05 2.19987e-05 1.93009e-05 1.66904e-05 1.43072e-05 1.22695e-05 1.06851e-05 9.65426e-06 9.32023e-06 1.00045e-05 1.24248e-05 1.73041e-05 1.89578e-05 7.99776e-06 2.7325e-06 2.49929e-07 2.06638e-07 3.08882e-06 8.34026e-06 2.00487e-05 3.2703e-05 3.62867e-05 3.46739e-05 3.14826e-05 2.85415e-05 2.6499e-05 2.53801e-05 2.50502e-05 2.52952e-05 2.58923e-05 2.66272e-05 2.72785e-05 2.76045e-05 2.73582e-05 2.63468e-05 2.45395e-05 2.2127e-05 1.94793e-05 1.69106e-05 1.45563e-05 1.25371e-05 1.09639e-05 9.94257e-06 9.62586e-06 1.03512e-05 1.28465e-05 1.7782e-05 1.9238e-05 8.09282e-06 2.75859e-06 2.51789e-07 2.08504e-07 3.09027e-06 8.3622e-06 2.01426e-05 3.26883e-05 3.60294e-05 3.42412e-05 3.09818e-05 2.80666e-05 2.60994e-05 2.50725e-05 2.48385e-05 2.51714e-05 2.58445e-05 2.66416e-05 2.73382e-05 2.76897e-05 2.74498e-05 2.64341e-05 2.46287e-05 2.22412e-05 1.96451e-05 1.71189e-05 1.47951e-05 1.27967e-05 1.12382e-05 1.02305e-05 9.93616e-06 1.07086e-05 1.3284e-05 1.82721e-05 1.95164e-05 8.18794e-06 2.78496e-06 2.53683e-07 2.10318e-07 3.09129e-06 8.383e-06 2.02334e-05 3.26616e-05 3.57537e-05 3.37891e-05 3.04669e-05 2.75845e-05 2.56984e-05 2.47679e-05 2.46317e-05 2.50528e-05 2.58012e-05 2.66588e-05 2.73978e-05 2.7771e-05 2.75334e-05 2.65101e-05 2.4705e-05 2.2343e-05 1.97989e-05 1.73158e-05 1.50237e-05 1.30485e-05 1.15077e-05 1.05176e-05 1.02506e-05 1.10761e-05 1.37367e-05 1.87731e-05 1.97912e-05 8.28228e-06 2.81163e-06 2.55618e-07 2.12092e-07 3.09207e-06 8.40345e-06 2.03235e-05 3.26239e-05 3.54587e-05 3.33169e-05 2.99377e-05 2.70953e-05 2.52961e-05 2.44686e-05 2.44313e-05 2.49404e-05 2.5764e-05 2.66811e-05 2.74603e-05 2.78515e-05 2.7612e-05 2.6578e-05 2.47718e-05 2.24356e-05 1.99428e-05 1.75024e-05 1.52429e-05 1.32925e-05 1.17721e-05 1.08033e-05 1.05685e-05 1.1453e-05 1.42034e-05 1.9283e-05 2.00613e-05 8.37559e-06 2.83852e-06 2.57586e-07 2.13843e-07 3.09262e-06 8.42376e-06 2.04135e-05 3.2575e-05 3.51436e-05 3.2824e-05 2.93943e-05 2.65985e-05 2.48903e-05 2.4169e-05 2.42325e-05 2.48314e-05 2.57315e-05 2.67084e-05 2.75263e-05 2.79327e-05 2.76879e-05 2.66405e-05 2.48328e-05 2.25232e-05 2.00797e-05 1.76809e-05 1.54538e-05 1.35295e-05 1.20318e-05 1.10876e-05 1.08893e-05 1.18384e-05 1.46828e-05 1.97999e-05 2.03259e-05 8.46746e-06 2.8655e-06 2.59584e-07 2.1557e-07 3.09299e-06 8.44391e-06 2.05026e-05 3.25134e-05 3.48077e-05 3.23111e-05 2.88382e-05 2.6096e-05 2.44825e-05 2.38693e-05 2.40352e-05 2.47257e-05 2.57038e-05 2.67411e-05 2.75968e-05 2.80159e-05 2.77628e-05 2.67002e-05 2.48913e-05 2.26103e-05 2.02125e-05 1.78529e-05 1.5658e-05 1.37607e-05 1.22878e-05 1.13712e-05 1.12138e-05 1.22327e-05 1.51745e-05 2.03222e-05 2.05847e-05 8.55772e-06 2.89245e-06 2.6161e-07 2.17283e-07 3.09327e-06 8.46435e-06 2.05919e-05 3.24392e-05 3.44509e-05 3.1779e-05 2.82709e-05 2.55888e-05 2.40734e-05 2.35698e-05 2.38393e-05 2.46224e-05 2.56796e-05 2.67781e-05 2.76714e-05 2.81017e-05 2.78382e-05 2.67593e-05 2.49507e-05 2.27011e-05 2.03444e-05 1.80208e-05 1.58568e-05 1.39868e-05 1.25398e-05 1.16531e-05 1.15401e-05 1.2634e-05 1.56763e-05 2.0847e-05 2.0836e-05 8.64598e-06 2.91929e-06 2.63658e-07 2.18963e-07 3.09333e-06 8.48444e-06 2.06795e-05 3.23511e-05 3.4074e-05 3.123e-05 2.76953e-05 2.50792e-05 2.36636e-05 2.32694e-05 2.36419e-05 2.45177e-05 2.56551e-05 2.68157e-05 2.77469e-05 2.81875e-05 2.79124e-05 2.68172e-05 2.50107e-05 2.27946e-05 2.04756e-05 1.81851e-05 1.6051e-05 1.42088e-05 1.27896e-05 1.19354e-05 1.18704e-05 1.30435e-05 1.61879e-05 2.13731e-05 2.108e-05 8.73206e-06 2.94592e-06 2.65727e-07 2.20599e-07 3.09305e-06 8.50375e-06 2.07641e-05 3.22486e-05 3.3678e-05 3.06665e-05 2.71142e-05 2.45699e-05 2.32557e-05 2.29702e-05 2.34443e-05 2.4412e-05 2.56293e-05 2.68524e-05 2.78217e-05 2.82723e-05 2.7985e-05 2.68735e-05 2.50704e-05 2.28891e-05 2.06052e-05 1.83457e-05 1.62407e-05 1.44267e-05 1.30363e-05 1.22165e-05 1.22025e-05 1.34598e-05 1.67081e-05 2.18989e-05 2.13161e-05 8.81576e-06 2.97228e-06 2.67801e-07 2.22182e-07 3.09239e-06 8.52199e-06 2.08448e-05 3.21311e-05 3.32641e-05 3.00916e-05 2.65312e-05 2.40637e-05 2.28512e-05 2.26724e-05 2.32455e-05 2.43031e-05 2.55992e-05 2.68848e-05 2.78927e-05 2.83537e-05 2.80547e-05 2.69277e-05 2.51294e-05 2.29829e-05 2.0732e-05 1.8502e-05 1.64255e-05 1.46402e-05 1.32803e-05 1.24981e-05 1.254e-05 1.38832e-05 1.7236e-05 2.24231e-05 2.15433e-05 8.89647e-06 2.99819e-06 2.69869e-07 2.2371e-07 3.09124e-06 8.53886e-06 2.09212e-05 3.19991e-05 3.28335e-05 2.95072e-05 2.59486e-05 2.3563e-05 2.24527e-05 2.23785e-05 2.30476e-05 2.41921e-05 2.5565e-05 2.69121e-05 2.79584e-05 2.84306e-05 2.81211e-05 2.69806e-05 2.51889e-05 2.30765e-05 2.08565e-05 1.86542e-05 1.66056e-05 1.48498e-05 1.35226e-05 1.27817e-05 1.28843e-05 1.4315e-05 1.77715e-05 2.29449e-05 2.17628e-05 8.97461e-06 3.02369e-06 2.71934e-07 2.2517e-07 3.08947e-06 8.55373e-06 2.09917e-05 3.18511e-05 3.23855e-05 2.89135e-05 2.53668e-05 2.30684e-05 2.20612e-05 2.20898e-05 2.28519e-05 2.40798e-05 2.55267e-05 2.69334e-05 2.80178e-05 2.8502e-05 2.81842e-05 2.70333e-05 2.52511e-05 2.31716e-05 2.09798e-05 1.88034e-05 1.67819e-05 1.50561e-05 1.37634e-05 1.30671e-05 1.32344e-05 1.47554e-05 1.83143e-05 2.34634e-05 2.19745e-05 9.05035e-06 3.04882e-06 2.73995e-07 2.26566e-07 3.08704e-06 8.5665e-06 2.10564e-05 3.16877e-05 3.192e-05 2.83101e-05 2.47855e-05 2.25804e-05 2.16783e-05 2.18086e-05 2.26608e-05 2.39687e-05 2.5486e-05 2.69496e-05 2.80705e-05 2.85672e-05 2.82436e-05 2.70868e-05 2.53185e-05 2.32694e-05 2.1103e-05 1.89504e-05 1.69552e-05 1.52598e-05 1.40033e-05 1.33545e-05 1.35902e-05 1.52042e-05 1.8864e-05 2.39778e-05 2.21784e-05 9.1235e-06 3.07347e-06 2.76052e-07 2.279e-07 3.08399e-06 8.57721e-06 2.11152e-05 3.15082e-05 3.14356e-05 2.76956e-05 2.42037e-05 2.20986e-05 2.13053e-05 2.1537e-05 2.2477e-05 2.38617e-05 2.54459e-05 2.69631e-05 2.81184e-05 2.86274e-05 2.83008e-05 2.71436e-05 2.53948e-05 2.33727e-05 2.12278e-05 1.90964e-05 1.71262e-05 1.54611e-05 1.42422e-05 1.36434e-05 1.39509e-05 1.56606e-05 1.94192e-05 2.4487e-05 2.23751e-05 9.19436e-06 3.0977e-06 2.78094e-07 2.29168e-07 3.08023e-06 8.58563e-06 2.11681e-05 3.13112e-05 3.09293e-05 2.70672e-05 2.36185e-05 2.16206e-05 2.09435e-05 2.1276e-05 2.23017e-05 2.37609e-05 2.54091e-05 2.69764e-05 2.81632e-05 2.86835e-05 2.83563e-05 2.72044e-05 2.54808e-05 2.3483e-05 2.13561e-05 1.92432e-05 1.72966e-05 1.56615e-05 1.44811e-05 1.39344e-05 1.43169e-05 1.61246e-05 1.99793e-05 2.49905e-05 2.25649e-05 9.26304e-06 3.12152e-06 2.80123e-07 2.30392e-07 3.07583e-06 8.59187e-06 2.1215e-05 3.1096e-05 3.03994e-05 2.64234e-05 2.30284e-05 2.11436e-05 2.05857e-05 2.10214e-05 2.21347e-05 2.36688e-05 2.53794e-05 2.69937e-05 2.82082e-05 2.87377e-05 2.84107e-05 2.72681e-05 2.55742e-05 2.3599e-05 2.14877e-05 1.93915e-05 1.7467e-05 1.58614e-05 1.47199e-05 1.4227e-05 1.46871e-05 1.65948e-05 2.05421e-05 2.54861e-05 2.27471e-05 9.32936e-06 3.14487e-06 2.82127e-07 2.31582e-07 3.071e-06 8.59664e-06 2.12574e-05 3.08611e-05 2.98438e-05 2.57632e-05 2.24332e-05 2.06681e-05 2.02333e-05 2.07753e-05 2.19785e-05 2.35888e-05 2.53611e-05 2.70198e-05 2.82586e-05 2.87944e-05 2.84673e-05 2.73363e-05 2.56739e-05 2.37201e-05 2.16229e-05 1.95419e-05 1.76386e-05 1.60621e-05 1.49598e-05 1.45222e-05 1.50622e-05 1.70711e-05 2.11073e-05 2.59742e-05 2.29224e-05 9.39328e-06 3.16771e-06 2.84102e-07 2.32759e-07 3.06572e-06 8.60005e-06 2.12961e-05 3.06057e-05 2.92604e-05 2.50848e-05 2.18306e-05 2.01912e-05 1.98835e-05 2.05354e-05 2.18321e-05 2.35213e-05 2.53562e-05 2.70578e-05 2.83179e-05 2.88571e-05 2.85291e-05 2.7411e-05 2.57801e-05 2.38463e-05 2.17621e-05 1.96953e-05 1.78123e-05 1.62642e-05 1.52014e-05 1.48202e-05 1.5442e-05 1.75531e-05 2.16738e-05 2.64539e-05 2.30913e-05 9.45517e-06 3.19007e-06 2.86038e-07 2.33933e-07 3.06009e-06 8.60213e-06 2.13301e-05 3.03274e-05 2.86477e-05 2.43884e-05 2.12208e-05 1.97124e-05 1.9535e-05 2.03003e-05 2.16948e-05 2.34667e-05 2.53664e-05 2.71107e-05 2.83898e-05 2.89299e-05 2.85999e-05 2.74954e-05 2.58936e-05 2.39774e-05 2.1905e-05 1.9852e-05 1.7989e-05 1.64693e-05 1.54462e-05 1.51222e-05 1.58272e-05 1.80408e-05 2.2241e-05 2.69252e-05 2.32542e-05 9.51506e-06 3.21199e-06 2.87945e-07 2.35118e-07 3.05427e-06 8.6035e-06 2.13604e-05 3.00251e-05 2.80055e-05 2.36752e-05 2.06046e-05 1.92317e-05 1.91871e-05 2.00692e-05 2.15658e-05 2.34249e-05 2.53927e-05 2.71808e-05 2.84778e-05 2.9017e-05 2.86848e-05 2.75948e-05 2.60165e-05 2.41137e-05 2.2051e-05 2.00112e-05 1.81683e-05 1.66773e-05 1.56942e-05 1.54286e-05 1.62186e-05 1.85345e-05 2.28084e-05 2.73878e-05 2.34107e-05 9.57279e-06 3.2334e-06 2.89805e-07 2.3631e-07 3.04817e-06 8.60374e-06 2.13855e-05 2.96968e-05 2.7334e-05 2.29468e-05 1.99829e-05 1.87483e-05 1.88375e-05 1.98387e-05 2.14415e-05 2.33928e-05 2.5433e-05 2.72673e-05 2.85826e-05 2.91209e-05 2.87876e-05 2.77135e-05 2.6152e-05 2.42572e-05 2.22013e-05 2.01737e-05 1.83504e-05 1.6888e-05 1.59459e-05 1.57402e-05 1.66154e-05 1.90333e-05 2.33754e-05 2.7842e-05 2.35618e-05 9.62861e-06 3.25435e-06 2.9162e-07 2.37499e-07 3.0418e-06 8.60247e-06 2.14036e-05 2.93415e-05 2.66354e-05 2.22071e-05 1.93586e-05 1.82639e-05 1.84864e-05 1.96072e-05 2.1319e-05 2.33669e-05 2.54841e-05 2.73676e-05 2.87024e-05 2.92403e-05 2.89072e-05 2.78496e-05 2.62985e-05 2.44063e-05 2.23546e-05 2.03383e-05 1.85352e-05 1.71031e-05 1.62046e-05 1.60621e-05 1.70206e-05 1.95392e-05 2.39431e-05 2.82877e-05 2.37066e-05 9.68212e-06 3.27471e-06 2.93368e-07 2.38696e-07 3.03522e-06 8.59991e-06 2.14148e-05 2.89588e-05 2.59127e-05 2.14602e-05 1.87345e-05 1.77798e-05 1.81333e-05 1.93727e-05 2.11952e-05 2.33436e-05 2.55426e-05 2.74794e-05 2.88362e-05 2.93753e-05 2.90438e-05 2.80024e-05 2.64563e-05 2.45622e-05 2.25121e-05 2.05059e-05 1.87231e-05 1.73222e-05 1.64693e-05 1.63918e-05 1.74335e-05 2.0051e-05 2.45098e-05 2.87253e-05 2.38466e-05 9.73411e-06 3.29469e-06 2.95064e-07 2.39894e-07 3.02833e-06 8.59537e-06 2.14168e-05 2.85484e-05 2.51692e-05 2.07099e-05 1.81135e-05 1.72994e-05 1.77793e-05 1.91341e-05 2.10674e-05 2.33195e-05 2.56046e-05 2.7599e-05 2.89811e-05 2.95237e-05 2.91955e-05 2.81684e-05 2.66229e-05 2.47234e-05 2.26729e-05 2.06766e-05 1.89147e-05 1.75463e-05 1.67408e-05 1.67301e-05 1.78556e-05 2.05698e-05 2.50761e-05 2.91541e-05 2.39802e-05 9.78363e-06 3.31401e-06 2.96688e-07 2.41102e-07 3.02119e-06 8.58903e-06 2.14097e-05 2.81102e-05 2.44077e-05 1.99587e-05 1.74963e-05 1.68231e-05 1.74234e-05 1.88896e-05 2.09333e-05 2.32913e-05 2.56667e-05 2.77233e-05 2.91351e-05 2.9685e-05 2.93628e-05 2.83471e-05 2.67975e-05 2.48894e-05 2.28369e-05 2.08497e-05 1.91088e-05 1.7774e-05 1.70175e-05 1.70755e-05 1.82857e-05 2.10951e-05 2.56415e-05 2.9575e-05 2.41101e-05 9.83231e-06 3.33308e-06 2.98269e-07 2.42318e-07 3.01374e-06 8.58046e-06 2.13927e-05 2.76453e-05 2.3632e-05 1.92101e-05 1.68833e-05 1.63457e-05 1.70623e-05 1.86379e-05 2.07919e-05 2.32579e-05 2.57271e-05 2.78502e-05 2.92963e-05 2.98589e-05 2.95468e-05 2.85379e-05 2.69794e-05 2.506e-05 2.30043e-05 2.10261e-05 1.93068e-05 1.80066e-05 1.73006e-05 1.74287e-05 1.87242e-05 2.16264e-05 2.6205e-05 2.99864e-05 2.42341e-05 9.87889e-06 3.35157e-06 2.99781e-07 2.43554e-07 3.00601e-06 8.56979e-06 2.1366e-05 2.71534e-05 2.28434e-05 1.84655e-05 1.62773e-05 1.58719e-05 1.67004e-05 1.8382e-05 2.06448e-05 2.32191e-05 2.57844e-05 2.79778e-05 2.94634e-05 3.00451e-05 2.97484e-05 2.8741e-05 2.71683e-05 2.52343e-05 2.31741e-05 2.12045e-05 1.9507e-05 1.82423e-05 1.75881e-05 1.77883e-05 1.91704e-05 2.21636e-05 2.67669e-05 3.03903e-05 2.43557e-05 9.92523e-06 3.36995e-06 3.01257e-07 2.4483e-07 2.99814e-06 8.55742e-06 2.13302e-05 2.66344e-05 2.20433e-05 1.77251e-05 1.56763e-05 1.5399e-05 1.63357e-05 1.81212e-05 2.04922e-05 2.31757e-05 2.58387e-05 2.8105e-05 2.96345e-05 3.02411e-05 2.99645e-05 2.89544e-05 2.73637e-05 2.54136e-05 2.33485e-05 2.13878e-05 1.97126e-05 1.84839e-05 1.78825e-05 1.81555e-05 1.96239e-05 2.27047e-05 2.7324e-05 3.07834e-05 2.44716e-05 9.96971e-06 3.38779e-06 3.0266e-07 2.46153e-07 2.99025e-06 8.54357e-06 2.12851e-05 2.60887e-05 2.1235e-05 1.69916e-05 1.50822e-05 1.49283e-05 1.59691e-05 1.78563e-05 2.03348e-05 2.31276e-05 2.58895e-05 2.82306e-05 2.98067e-05 3.04423e-05 3.01878e-05 2.91718e-05 2.75605e-05 2.55931e-05 2.35231e-05 2.15717e-05 1.99195e-05 1.87279e-05 1.81809e-05 1.85287e-05 2.00846e-05 2.32508e-05 2.78789e-05 3.11694e-05 2.45847e-05 1.00137e-05 3.40547e-06 3.04018e-07 2.47559e-07 2.98262e-06 8.52932e-06 2.12319e-05 2.5516e-05 2.04205e-05 1.62653e-05 1.44939e-05 1.44581e-05 1.55993e-05 1.75867e-05 2.01729e-05 2.30762e-05 2.59381e-05 2.83555e-05 2.99809e-05 3.06489e-05 3.04165e-05 2.93923e-05 2.77596e-05 2.57754e-05 2.37014e-05 2.17603e-05 2.01319e-05 1.89781e-05 1.84859e-05 1.89085e-05 2.05504e-05 2.37976e-05 2.84259e-05 3.15437e-05 2.46922e-05 1.00558e-05 3.42259e-06 3.05286e-07 2.49051e-07 2.9754e-06 8.51446e-06 2.11684e-05 2.4919e-05 1.96066e-05 1.55506e-05 1.39128e-05 1.39878e-05 1.52243e-05 1.73095e-05 2.00031e-05 2.30176e-05 2.59808e-05 2.84762e-05 3.01535e-05 3.08571e-05 3.06436e-05 2.96082e-05 2.79533e-05 2.59534e-05 2.38773e-05 2.1948e-05 2.03448e-05 1.92302e-05 1.87945e-05 1.92945e-05 2.10237e-05 2.43493e-05 2.89708e-05 3.19118e-05 2.47969e-05 1.00972e-05 3.43959e-06 3.06492e-07 2.50659e-07 2.96907e-06 8.50031e-06 2.10965e-05 2.43011e-05 1.87992e-05 1.48509e-05 1.33403e-05 1.35172e-05 1.4843e-05 1.70233e-05 1.98238e-05 2.29504e-05 2.60165e-05 2.85923e-05 3.03255e-05 3.10687e-05 3.08696e-05 2.98196e-05 2.81429e-05 2.61294e-05 2.40534e-05 2.2138e-05 2.05614e-05 1.94876e-05 1.91102e-05 1.96855e-05 2.15004e-05 2.48995e-05 2.95057e-05 3.22669e-05 2.48948e-05 1.01364e-05 3.4559e-06 3.0758e-07 2.5235e-07 2.96304e-06 8.48564e-06 2.10129e-05 2.36686e-05 1.80068e-05 1.41708e-05 1.2778e-05 1.30458e-05 1.44522e-05 1.67226e-05 1.96283e-05 2.28679e-05 2.60388e-05 2.86978e-05 3.0491e-05 3.12772e-05 3.10868e-05 3.00191e-05 2.83209e-05 2.62965e-05 2.42239e-05 2.23254e-05 2.07789e-05 1.97498e-05 1.94344e-05 2.00841e-05 2.19845e-05 2.54542e-05 3.00385e-05 3.26164e-05 2.49901e-05 1.01752e-05 3.47214e-06 3.08592e-07 2.54122e-07 2.95763e-06 8.47122e-06 2.09183e-05 2.30277e-05 1.72361e-05 1.35142e-05 1.22288e-05 1.25743e-05 1.40507e-05 1.64037e-05 1.94112e-05 2.27634e-05 2.60406e-05 2.87855e-05 3.06422e-05 3.14739e-05 3.12892e-05 3.02031e-05 2.84863e-05 2.64552e-05 2.43902e-05 2.25124e-05 2.09989e-05 2.0017e-05 1.97648e-05 2.04879e-05 2.24712e-05 2.60058e-05 3.05598e-05 3.29518e-05 2.50777e-05 1.02114e-05 3.48764e-06 3.09468e-07 2.55977e-07 2.95264e-06 8.45618e-06 2.08113e-05 2.23853e-05 1.64922e-05 1.28829e-05 1.16947e-05 1.21029e-05 1.36363e-05 1.6063e-05 1.91674e-05 2.26307e-05 2.60156e-05 2.8849e-05 3.07725e-05 3.16499e-05 3.1469e-05 3.03654e-05 2.86335e-05 2.66006e-05 2.45482e-05 2.26955e-05 2.12189e-05 2.02876e-05 2.01012e-05 2.0899e-05 2.2965e-05 2.65606e-05 3.10775e-05 3.32812e-05 2.51632e-05 1.02476e-05 3.50315e-06 3.10264e-07 2.57904e-07 2.94826e-06 8.44167e-06 2.06944e-05 2.17482e-05 1.57793e-05 1.22783e-05 1.11742e-05 1.16313e-05 1.32097e-05 1.56998e-05 1.88938e-05 2.2465e-05 2.59574e-05 2.88815e-05 3.08748e-05 3.17966e-05 3.16187e-05 3.05009e-05 2.87601e-05 2.67321e-05 2.46984e-05 2.28756e-05 2.14397e-05 2.05617e-05 2.04424e-05 2.1315e-05 2.34612e-05 2.71118e-05 3.15834e-05 3.35961e-05 2.52403e-05 1.0281e-05 3.51781e-06 3.10905e-07 2.59897e-07 2.94443e-06 8.42739e-06 2.05701e-05 2.11193e-05 1.50979e-05 1.16997e-05 1.0667e-05 1.11606e-05 1.27723e-05 1.53153e-05 1.85907e-05 2.22654e-05 2.58649e-05 2.88826e-05 3.09496e-05 3.19116e-05 3.17348e-05 3.06056e-05 2.88615e-05 2.68449e-05 2.48358e-05 2.30484e-05 2.16578e-05 2.08369e-05 2.0788e-05 2.17371e-05 2.39632e-05 2.76648e-05 3.20847e-05 3.39049e-05 2.53153e-05 1.03145e-05 3.53253e-06 3.11457e-07 2.61948e-07 2.94118e-06 8.4136e-06 2.04378e-05 2.05005e-05 1.44498e-05 1.11486e-05 1.01751e-05 1.06937e-05 1.23267e-05 1.491e-05 1.82557e-05 2.20261e-05 2.573e-05 2.88434e-05 3.09881e-05 3.19866e-05 3.1811e-05 3.06756e-05 2.89361e-05 2.69391e-05 2.49619e-05 2.32156e-05 2.18746e-05 2.11138e-05 2.11371e-05 2.2163e-05 2.44669e-05 2.82133e-05 3.2574e-05 3.41997e-05 2.53821e-05 1.03451e-05 3.54635e-06 3.11832e-07 2.64126e-07 2.93901e-06 8.40292e-06 2.03029e-05 1.98918e-05 1.38292e-05 1.0621e-05 9.69662e-06 1.02309e-05 1.18754e-05 1.44879e-05 1.78926e-05 2.17499e-05 2.55534e-05 2.87622e-05 3.0986e-05 3.20174e-05 3.1843e-05 3.07061e-05 2.89785e-05 2.70088e-05 2.50705e-05 2.33715e-05 2.20855e-05 2.13895e-05 2.14886e-05 2.25936e-05 2.49749e-05 2.87621e-05 3.30577e-05 3.44882e-05 2.54471e-05 1.03758e-05 3.56023e-06 3.12102e-07 2.66411e-07 2.93768e-06 8.39439e-06 2.0165e-05 1.92983e-05 1.32398e-05 1.01186e-05 9.23325e-06 9.77355e-06 1.14185e-05 1.40475e-05 1.74981e-05 2.14307e-05 2.53264e-05 2.86281e-05 3.09308e-05 3.19949e-05 3.18262e-05 3.06962e-05 2.899e-05 2.70566e-05 2.5165e-05 2.35194e-05 2.2293e-05 2.16652e-05 2.18424e-05 2.30271e-05 2.54839e-05 2.93058e-05 3.35294e-05 3.4763e-05 2.55033e-05 1.04034e-05 3.57314e-06 3.12167e-07 2.68842e-07 2.93758e-06 8.39021e-06 2.00277e-05 1.87172e-05 1.26767e-05 9.63809e-06 8.78545e-06 9.32338e-06 1.09597e-05 1.35946e-05 1.70787e-05 2.10742e-05 2.50517e-05 2.84394e-05 3.08159e-05 3.19114e-05 3.17529e-05 3.06381e-05 2.8963e-05 2.7075e-05 2.5238e-05 2.36526e-05 2.24916e-05 2.1937e-05 2.21961e-05 2.34631e-05 2.59952e-05 2.98479e-05 3.39945e-05 3.50314e-05 2.55581e-05 1.04312e-05 3.58612e-06 3.12105e-07 2.71402e-07 2.93856e-06 8.38994e-06 1.98912e-05 1.8152e-05 1.2141e-05 9.17858e-06 8.34952e-06 8.87792e-06 1.04979e-05 1.31289e-05 1.66347e-05 2.06808e-05 2.47294e-05 2.81959e-05 3.06384e-05 3.17644e-05 3.16227e-05 3.05336e-05 2.89005e-05 2.70677e-05 2.52934e-05 2.37747e-05 2.26842e-05 2.22062e-05 2.25496e-05 2.38995e-05 2.65052e-05 3.03829e-05 3.44462e-05 3.52849e-05 2.56029e-05 1.04556e-05 3.59804e-06 3.11807e-07 2.74117e-07 2.94091e-06 8.39521e-06 1.97578e-05 1.76007e-05 1.16304e-05 8.73998e-06 7.92825e-06 8.44086e-06 1.00362e-05 1.26534e-05 1.61693e-05 2.02532e-05 2.43614e-05 2.78978e-05 3.0395e-05 3.15482e-05 3.14287e-05 3.03752e-05 2.87949e-05 2.70272e-05 2.5324e-05 2.38791e-05 2.2865e-05 2.2469e-05 2.29004e-05 2.43361e-05 2.7015e-05 3.0914e-05 3.48903e-05 3.55321e-05 2.56466e-05 1.04802e-05 3.60998e-06 3.11363e-07 2.7699e-07 2.9446e-06 8.40633e-06 1.9628e-05 1.70642e-05 1.11438e-05 8.31982e-06 7.51821e-06 8.00808e-06 9.57199e-06 1.21672e-05 1.56831e-05 1.97937e-05 2.39508e-05 2.75482e-05 3.00888e-05 3.12667e-05 3.11755e-05 3.0168e-05 2.86514e-05 2.6958e-05 2.53338e-05 2.39695e-05 2.30385e-05 2.27299e-05 2.32488e-05 2.47708e-05 2.75213e-05 3.14364e-05 3.53206e-05 3.57645e-05 2.56793e-05 1.05008e-05 3.62078e-06 3.10649e-07 2.80028e-07 2.94979e-06 8.42432e-06 1.9503e-05 1.65435e-05 1.06819e-05 7.91957e-06 7.12185e-06 7.58239e-06 9.10709e-06 1.16699e-05 1.51736e-05 1.92976e-05 2.34908e-05 2.71381e-05 2.97115e-05 3.09125e-05 3.08558e-05 2.99045e-05 2.84623e-05 2.68536e-05 2.53174e-05 2.40417e-05 2.32007e-05 2.29845e-05 2.35933e-05 2.5203e-05 2.80245e-05 3.19528e-05 3.57427e-05 3.59907e-05 2.57107e-05 1.05214e-05 3.63152e-06 3.09769e-07 2.83243e-07 2.95652e-06 8.45001e-06 1.93838e-05 1.60388e-05 1.02435e-05 7.5377e-06 6.7376e-06 7.16184e-06 8.63901e-06 1.11599e-05 1.46401e-05 1.87648e-05 2.29811e-05 2.66671e-05 2.92665e-05 3.04919e-05 3.04775e-05 2.95926e-05 2.8235e-05 2.67196e-05 2.52789e-05 2.40983e-05 2.33526e-05 2.32327e-05 2.39338e-05 2.56318e-05 2.85224e-05 3.2459e-05 3.61503e-05 3.62018e-05 2.57312e-05 1.0538e-05 3.64105e-06 3.08601e-07 2.86619e-07 2.96479e-06 8.48364e-06 1.92709e-05 1.55547e-05 9.83227e-06 7.1778e-06 6.36805e-06 6.74798e-06 8.16846e-06 1.06362e-05 1.40786e-05 1.81873e-05 2.24098e-05 2.61201e-05 2.87387e-05 2.99916e-05 3.0029e-05 2.92221e-05 2.79604e-05 2.65485e-05 2.52121e-05 2.41338e-05 2.34895e-05 2.34706e-05 2.42673e-05 2.60555e-05 2.90147e-05 3.29575e-05 3.65494e-05 3.64068e-05 2.57493e-05 1.05541e-05 3.65042e-06 3.07239e-07 2.90161e-07 2.97464e-06 8.526e-06 1.91644e-05 1.50908e-05 9.44739e-06 6.83908e-06 6.01266e-06 6.34025e-06 7.69475e-06 1.00984e-05 1.34899e-05 1.75673e-05 2.17801e-05 2.55014e-05 2.81348e-05 2.94201e-05 2.95194e-05 2.88018e-05 2.76461e-05 2.63462e-05 2.51211e-05 2.41512e-05 2.36131e-05 2.36988e-05 2.45938e-05 2.64728e-05 2.94986e-05 3.34431e-05 3.69323e-05 3.65956e-05 2.57556e-05 1.05657e-05 3.65841e-06 3.05566e-07 2.93835e-07 2.98591e-06 8.57661e-06 1.90641e-05 1.46523e-05 9.09306e-06 6.52538e-06 5.67454e-06 5.94027e-06 7.21739e-06 9.5435e-06 1.28683e-05 1.68964e-05 2.1081e-05 2.47979e-05 2.74413e-05 2.87646e-05 2.89371e-05 2.83213e-05 2.7283e-05 2.6105e-05 2.49996e-05 2.41449e-05 2.37186e-05 2.39134e-05 2.49102e-05 2.68822e-05 2.9975e-05 3.39203e-05 3.73074e-05 3.67793e-05 2.57603e-05 1.05772e-05 3.66632e-06 3.03685e-07 2.97629e-07 2.99849e-06 8.6358e-06 1.897e-05 1.42398e-05 8.76943e-06 6.23774e-06 5.35531e-06 5.54938e-06 6.73684e-06 8.97115e-06 1.22134e-05 1.61754e-05 2.03159e-05 2.40162e-05 2.66682e-05 2.80368e-05 2.82935e-05 2.77904e-05 2.68789e-05 2.58306e-05 2.48515e-05 2.41177e-05 2.38079e-05 2.41154e-05 2.52166e-05 2.72823e-05 3.04397e-05 3.43816e-05 3.76639e-05 3.69446e-05 2.57519e-05 1.05836e-05 3.67265e-06 3.01486e-07 3.01514e-07 3.01218e-06 8.70315e-06 1.88815e-05 1.38572e-05 8.48025e-06 5.98043e-06 5.0594e-06 5.17104e-06 6.25433e-06 8.37925e-06 1.15191e-05 1.53943e-05 1.94719e-05 2.31417e-05 2.58011e-05 2.72239e-05 2.75778e-05 2.72001e-05 2.64263e-05 2.55166e-05 2.4671e-05 2.4064e-05 2.38754e-05 2.42997e-05 2.55088e-05 2.76709e-05 3.08943e-05 3.48336e-05 3.80137e-05 3.71071e-05 2.57439e-05 1.05907e-05 3.67907e-06 2.99082e-07 3.05476e-07 3.02686e-06 8.77892e-06 1.87984e-05 1.35031e-05 8.22495e-06 5.75514e-06 4.79039e-06 4.80957e-06 5.77367e-06 7.77064e-06 1.07875e-05 1.45555e-05 1.85528e-05 2.21827e-05 2.48507e-05 2.63368e-05 2.67992e-05 2.65576e-05 2.59306e-05 2.51672e-05 2.44616e-05 2.39869e-05 2.39243e-05 2.44687e-05 2.57882e-05 2.80469e-05 3.13338e-05 3.52663e-05 3.83413e-05 3.72474e-05 2.57203e-05 1.05918e-05 3.68361e-06 2.96359e-07 3.09472e-07 3.04219e-06 8.86165e-06 1.87188e-05 1.31806e-05 8.00651e-06 5.56616e-06 4.55401e-06 4.47096e-06 5.29934e-06 7.14665e-06 1.00158e-05 1.36519e-05 1.75482e-05 2.11257e-05 2.38049e-05 2.53653e-05 2.59499e-05 2.58565e-05 2.53861e-05 2.47764e-05 2.42167e-05 2.38793e-05 2.39464e-05 2.46145e-05 2.60479e-05 2.84064e-05 3.17594e-05 3.56883e-05 3.86636e-05 3.73886e-05 2.57011e-05 1.05949e-05 3.68858e-06 2.93455e-07 3.13483e-07 3.05805e-06 8.95173e-06 1.86418e-05 1.28863e-05 7.8233e-06 5.41516e-06 4.35517e-06 4.16213e-06 4.83864e-06 6.51422e-06 9.21121e-06 1.2692e-05 1.64687e-05 1.99836e-05 2.26761e-05 2.43204e-05 2.5038e-05 2.51027e-05 2.47969e-05 2.4348e-05 2.39405e-05 2.37457e-05 2.39471e-05 2.47421e-05 2.62918e-05 2.87502e-05 3.21668e-05 3.60876e-05 3.89599e-05 3.75029e-05 2.56628e-05 1.05909e-05 3.69129e-06 2.9023e-07 3.17457e-07 3.07396e-06 9.04689e-06 1.85664e-05 1.26231e-05 7.67793e-06 5.30662e-06 4.20138e-06 3.89294e-06 4.40108e-06 5.87931e-06 8.37399e-06 1.16705e-05 1.5305e-05 1.87455e-05 2.14547e-05 2.31952e-05 2.4059e-05 2.42926e-05 2.41596e-05 2.38771e-05 2.36257e-05 2.35765e-05 2.39147e-05 2.4839e-05 2.65078e-05 2.90693e-05 3.2553e-05 3.64716e-05 3.92504e-05 3.76223e-05 2.56352e-05 1.0591e-05 3.69491e-06 2.86876e-07 3.21362e-07 3.0898e-06 9.14729e-06 1.849e-05 1.23858e-05 7.56649e-06 5.2403e-06 4.09773e-06 3.67425e-06 4.0016e-06 5.25879e-06 7.52165e-06 1.06047e-05 1.40744e-05 1.74273e-05 2.01532e-05 2.19979e-05 2.30185e-05 2.34294e-05 2.34767e-05 2.33675e-05 2.32784e-05 2.33797e-05 2.38584e-05 2.49147e-05 2.67044e-05 2.9369e-05 3.29174e-05 3.68294e-05 3.95103e-05 3.77087e-05 2.55831e-05 1.05821e-05 3.69577e-06 2.83204e-07 3.25147e-07 3.10519e-06 9.25069e-06 1.8411e-05 1.21772e-05 7.49102e-06 5.21997e-06 4.05228e-06 3.51942e-06 3.6566e-06 4.66783e-06 6.66471e-06 9.49916e-06 1.27754e-05 1.60234e-05 1.87655e-05 2.07235e-05 2.19129e-05 2.2512e-05 2.27439e-05 2.2811e-05 2.28864e-05 2.31404e-05 2.37614e-05 2.49513e-05 2.68644e-05 2.9635e-05 3.32526e-05 3.71664e-05 3.97638e-05 3.78063e-05 2.55519e-05 1.05814e-05 3.69843e-06 2.79498e-07 3.28784e-07 3.11994e-06 9.35717e-06 1.83259e-05 1.19884e-05 7.44431e-06 5.24194e-06 4.06775e-06 3.44091e-06 3.3885e-06 4.13558e-06 5.83574e-06 8.38691e-06 1.14387e-05 1.45591e-05 1.73084e-05 1.93812e-05 2.07461e-05 2.15429e-05 2.19708e-05 2.22188e-05 2.24625e-05 2.2872e-05 2.3637e-05 2.4961e-05 2.69981e-05 2.98749e-05 3.35602e-05 3.74722e-05 3.99814e-05 3.78638e-05 2.5489e-05 1.05686e-05 3.69758e-06 2.75469e-07 3.32197e-07 3.13361e-06 9.46341e-06 1.82342e-05 1.18235e-05 7.42837e-06 5.3083e-06 4.14985e-06 3.45238e-06 3.22036e-06 3.69009e-06 5.06175e-06 7.28973e-06 1.00786e-05 1.30406e-05 1.5781e-05 1.79661e-05 1.95101e-05 2.05088e-05 2.11374e-05 2.15734e-05 2.19869e-05 2.25537e-05 2.3465e-05 2.49253e-05 2.70887e-05 3.00744e-05 3.38324e-05 3.7753e-05 4.01922e-05 3.79382e-05 2.54569e-05 1.05678e-05 3.69939e-06 2.71503e-07 3.35377e-07 3.14622e-06 9.57104e-06 1.8131e-05 1.16706e-05 7.43258e-06 5.41039e-06 4.29468e-06 3.56054e-06 3.17549e-06 3.37123e-06 4.39435e-06 6.26568e-06 8.753e-06 1.15194e-05 1.42212e-05 1.65046e-05 1.82263e-05 1.94313e-05 2.02651e-05 2.08936e-05 2.14818e-05 2.22038e-05 2.32576e-05 2.48513e-05 2.71396e-05 3.02343e-05 3.40651e-05 3.79935e-05 4.03605e-05 3.79674e-05 2.53882e-05 1.05529e-05 3.69714e-06 2.67228e-07 3.38251e-07 3.15742e-06 9.67663e-06 1.80177e-05 1.1536e-05 7.45996e-06 5.54916e-06 4.50331e-06 3.77251e-06 3.27293e-06 3.20992e-06 3.86945e-06 5.35019e-06 7.49352e-06 1.00191e-05 1.2635e-05 1.49875e-05 1.68743e-05 1.82824e-05 1.93224e-05 2.01456e-05 2.09138e-05 2.18003e-05 2.30017e-05 2.47309e-05 2.71482e-05 3.03548e-05 3.4263e-05 3.821e-05 4.05239e-05 3.80172e-05 2.53556e-05 1.05525e-05 3.69814e-06 2.63085e-07 3.40838e-07 3.1676e-06 9.78382e-06 1.78881e-05 1.14052e-05 7.4977e-06 5.71216e-06 4.76387e-06 4.08373e-06 3.52602e-06 3.24355e-06 3.54406e-06 4.61223e-06 6.37544e-06 8.61548e-06 1.10885e-05 1.34691e-05 1.5501e-05 1.71066e-05 1.83521e-05 1.93681e-05 2.03109e-05 2.13548e-05 2.26996e-05 2.45581e-05 2.70956e-05 3.04145e-05 3.44043e-05 3.83736e-05 4.06372e-05 3.80197e-05 2.52885e-05 1.05385e-05 3.69504e-06 2.5871e-07 3.43067e-07 3.17644e-06 9.88921e-06 1.77455e-05 1.12878e-05 7.55158e-06 5.9003e-06 5.07364e-06 4.49074e-06 3.93904e-06 3.49051e-06 3.44637e-06 4.08058e-06 5.4235e-06 7.32534e-06 9.58793e-06 1.1937e-05 1.40753e-05 1.58598e-05 1.73063e-05 1.85188e-05 1.96436e-05 2.08531e-05 2.23477e-05 2.43457e-05 2.70162e-05 3.04473e-05 3.45181e-05 3.85211e-05 4.07523e-05 3.80454e-05 2.52556e-05 1.05378e-05 3.69532e-06 2.54448e-07 3.44981e-07 3.1846e-06 9.99884e-06 1.75822e-05 1.11677e-05 7.60874e-06 6.10167e-06 5.41881e-06 4.97922e-06 4.50755e-06 3.97068e-06 3.62297e-06 3.81898e-06 4.71178e-06 6.23085e-06 8.22343e-06 1.04763e-05 1.26743e-05 1.46119e-05 1.62453e-05 1.76431e-05 1.89373e-05 2.02976e-05 2.19272e-05 2.40496e-05 2.68436e-05 3.03928e-05 3.45576e-05 3.85993e-05 4.08059e-05 3.80246e-05 2.51955e-05 1.05266e-05 3.69331e-06 2.50088e-07 3.46503e-07 3.1919e-06 1.01096e-05 1.74025e-05 1.10557e-05 7.67644e-06 6.31941e-06 5.79709e-06 5.53973e-06 5.21866e-06 4.67912e-06 4.08211e-06 3.8408e-06 4.25311e-06 5.34492e-06 7.00681e-06 9.07915e-06 1.12668e-05 1.33149e-05 1.51185e-05 1.6702e-05 1.81749e-05 1.96987e-05 2.14748e-05 2.37303e-05 2.66527e-05 3.03204e-05 3.45805e-05 3.86756e-05 4.08753e-05 3.80303e-05 2.51636e-05 1.0525e-05 3.69316e-06 2.45676e-07 3.47703e-07 3.19928e-06 1.02298e-05 1.71971e-05 1.09355e-05 7.7423e-06 6.54302e-06 6.19669e-06 6.15695e-06 6.05669e-06 5.61398e-06 4.84849e-06 4.19045e-06 4.10135e-06 4.73302e-06 6.02169e-06 7.84153e-06 9.94877e-06 1.20547e-05 1.39938e-05 1.57382e-05 1.73679e-05 1.90338e-05 2.09365e-05 2.33082e-05 2.63492e-05 3.01333e-05 3.44943e-05 3.86534e-05 4.08637e-05 3.79843e-05 2.51101e-05 1.05156e-05 3.69104e-06 2.41233e-07 3.48527e-07 3.20681e-06 1.03577e-05 1.69699e-05 1.08175e-05 7.81402e-06 6.7771e-06 6.61771e-06 6.82254e-06 7.00211e-06 6.75207e-06 5.91008e-06 4.86381e-06 4.2457e-06 4.37546e-06 5.24495e-06 6.74521e-06 8.69405e-06 1.0795e-05 1.28346e-05 1.47305e-05 1.65233e-05 1.83437e-05 2.03849e-05 2.28819e-05 2.60482e-05 2.9955e-05 3.44248e-05 3.86566e-05 4.08826e-05 3.79608e-05 2.50585e-05 1.05053e-05 3.68852e-06 2.3646e-07 3.49026e-07 3.21574e-06 1.05037e-05 1.67112e-05 1.06871e-05 7.8803e-06 7.01282e-06 7.0518e-06 7.5258e-06 8.03937e-06 8.0802e-06 7.27841e-06 5.90367e-06 4.73946e-06 4.32682e-06 4.74068e-06 5.87744e-06 7.59652e-06 9.62192e-06 1.17045e-05 1.37086e-05 1.56311e-05 1.75781e-05 1.97344e-05 2.23374e-05 2.56156e-05 2.96377e-05 3.42164e-05 3.85321e-05 4.07988e-05 3.78813e-05 2.50059e-05 1.04967e-05 3.68601e-06 2.31902e-07 3.49119e-07 3.22636e-06 1.06674e-05 1.64286e-05 1.05548e-05 7.94872e-06 7.25522e-06 7.50039e-06 8.26022e-06 9.1464e-06 9.55808e-06 8.91456e-06 7.29351e-06 5.57154e-06 4.56458e-06 4.48016e-06 5.21599e-06 6.63791e-06 8.51896e-06 1.05935e-05 1.26818e-05 1.47313e-05 1.68121e-05 1.90914e-05 2.18064e-05 2.52012e-05 2.9349e-05 3.40532e-05 3.8469e-05 4.07777e-05 3.78297e-05 2.49268e-05 1.04743e-05 3.68032e-06 2.26629e-07 3.4879e-07 3.24e-06 1.08592e-05 1.61148e-05 1.04088e-05 8.00959e-06 7.49717e-06 7.95869e-06 9.02192e-06 1.03155e-05 1.11708e-05 1.08143e-05 9.07413e-06 6.81067e-06 5.146e-06 4.50449e-06 4.80066e-06 5.87543e-06 7.54641e-06 9.54341e-06 1.16543e-05 1.37827e-05 1.59631e-05 1.83436e-05 2.11561e-05 2.46497e-05 2.89093e-05 3.37271e-05 3.82421e-05 4.06185e-05 3.77119e-05 2.48714e-05 1.04652e-05 3.67705e-06 2.21776e-07 3.47852e-07 3.25723e-06 1.10791e-05 1.57787e-05 1.02596e-05 8.06946e-06 7.74178e-06 8.425e-06 9.79933e-06 1.15144e-05 1.28509e-05 1.28837e-05 1.11822e-05 8.44963e-06 6.07241e-06 4.79739e-06 4.60403e-06 5.29373e-06 6.70042e-06 8.57015e-06 1.06704e-05 1.28637e-05 1.51408e-05 1.76201e-05 2.05231e-05 2.41083e-05 2.84885e-05 3.34516e-05 3.81058e-05 4.05623e-05 3.76405e-05 2.47657e-05 1.04302e-05 3.66835e-06 2.15831e-07 3.46113e-07 3.27895e-06 1.13356e-05 1.54183e-05 1.00978e-05 8.12158e-06 7.98481e-06 8.89764e-06 1.05926e-05 1.27402e-05 1.45821e-05 1.50874e-05 1.36101e-05 1.05635e-05 7.44931e-06 5.43903e-06 4.67723e-06 4.92999e-06 6.00259e-06 7.67058e-06 9.68692e-06 1.18843e-05 1.42175e-05 1.6776e-05 1.97642e-05 2.3436e-05 2.79197e-05 3.29956e-05 3.7762e-05 4.03179e-05 3.74883e-05 2.4724e-05 1.04286e-05 3.66606e-06 2.10713e-07 3.43442e-07 3.30568e-06 1.16255e-05 1.50483e-05 9.93037e-06 8.16662e-06 8.22363e-06 9.36651e-06 1.13746e-05 1.39329e-05 1.62508e-05 1.72483e-05 1.61448e-05 1.30146e-05 9.24953e-06 6.43744e-06 5.02239e-06 4.78042e-06 5.46737e-06 6.88564e-06 8.78049e-06 1.0958e-05 1.33288e-05 1.59403e-05 1.89752e-05 2.26974e-05 2.72829e-05 3.25289e-05 3.75046e-05 4.02248e-05 3.74394e-05 2.46459e-05 1.0401e-05 3.6587e-06 2.04557e-07 3.39968e-07 3.33897e-06 1.19637e-05 1.46756e-05 9.76438e-06 8.20979e-06 8.4557e-06 9.83314e-06 1.21552e-05 1.51052e-05 1.78643e-05 1.9343e-05 1.87144e-05 1.57525e-05 1.15092e-05 7.87261e-06 5.70999e-06 4.88661e-06 5.11043e-06 6.18699e-06 7.86756e-06 9.94685e-06 1.23093e-05 1.49673e-05 1.8072e-05 2.187e-05 2.65518e-05 3.19114e-05 3.70225e-05 3.98958e-05 3.72873e-05 2.46804e-05 1.04344e-05 3.66263e-06 2.00026e-07 3.3625e-07 3.38165e-06 1.23638e-05 1.42901e-05 9.59503e-06 8.2574e-06 8.69178e-06 1.02922e-05 1.29102e-05 1.62095e-05 1.9322e-05 2.11749e-05 2.09829e-05 1.83547e-05 1.39282e-05 9.61832e-06 6.73301e-06 5.30825e-06 5.03613e-06 5.71187e-06 7.11902e-06 9.04528e-06 1.13456e-05 1.39827e-05 1.70702e-05 2.08619e-05 2.56107e-05 3.11765e-05 3.66086e-05 3.97863e-05 3.73398e-05 2.47321e-05 1.04501e-05 3.66269e-06 1.95105e-07 3.33082e-07 3.43684e-06 1.2854e-05 1.38932e-05 9.42628e-06 8.31178e-06 8.95038e-06 1.0796e-05 1.37171e-05 1.73413e-05 2.07521e-05 2.28946e-05 2.30456e-05 2.07408e-05 1.62727e-05 1.14501e-05 7.94004e-06 5.97505e-06 5.22537e-06 5.46079e-06 6.51295e-06 8.18797e-06 1.03594e-05 1.29804e-05 1.61252e-05 2.00032e-05 2.48478e-05 3.05352e-05 3.61083e-05 3.94373e-05 3.71838e-05 2.48232e-05 1.0512e-05 3.66878e-06 1.92002e-07 3.31459e-07 3.50948e-06 1.34563e-05 1.3482e-05 9.27663e-06 8.39548e-06 9.25086e-06 1.13635e-05 1.46141e-05 1.856e-05 2.21881e-05 2.4475e-05 2.48132e-05 2.27133e-05 1.82023e-05 1.29965e-05 9.05572e-06 6.7522e-06 5.69693e-06 5.60506e-06 6.34705e-06 7.74536e-06 9.69112e-06 1.21418e-05 1.51665e-05 1.89844e-05 2.38812e-05 2.98168e-05 3.57845e-05 3.94569e-05 3.73459e-05 2.49125e-05 1.05152e-05 3.6597e-06 1.88101e-07 3.31784e-07 3.60661e-06 1.42182e-05 1.306e-05 9.16187e-06 8.5305e-06 9.62659e-06 1.20481e-05 1.56918e-05 2.00282e-05 2.39076e-05 2.63018e-05 2.67054e-05 2.46048e-05 1.97862e-05 1.40334e-05 9.71648e-06 7.26048e-06 6.1291e-06 5.92342e-06 6.5032e-06 7.71167e-06 9.49696e-06 1.18654e-05 1.48994e-05 1.87973e-05 2.38104e-05 2.98507e-05 3.5803e-05 3.92958e-05 3.69679e-05 2.45837e-05 1.0404e-05 3.6234e-06 1.82338e-07 3.33014e-07 3.73192e-06 1.50817e-05 1.26835e-05 9.13615e-06 8.74815e-06 1.0079e-05 1.28038e-05 1.68409e-05 2.15879e-05 2.57496e-05 2.82625e-05 2.87228e-05 2.6594e-05 2.13382e-05 1.48687e-05 1.01552e-05 7.64697e-06 6.6121e-06 6.51429e-06 7.13433e-06 8.27108e-06 9.88823e-06 1.20501e-05 1.491e-05 1.87299e-05 2.38062e-05 3.00463e-05 3.61757e-05 3.96439e-05 3.70176e-05 2.41903e-05 1.01621e-05 3.55665e-06 1.72786e-07 3.3249e-07 3.89294e-06 1.60258e-05 1.23837e-05 9.20358e-06 9.04427e-06 1.05716e-05 1.35177e-05 1.78309e-05 2.29123e-05 2.73623e-05 2.99861e-05 3.03067e-05 2.82131e-05 2.25142e-05 1.53119e-05 1.0219e-05 7.69357e-06 6.82704e-06 6.99194e-06 7.86902e-06 9.21701e-06 1.09938e-05 1.32865e-05 1.6282e-05 2.02522e-05 2.54084e-05 3.143e-05 3.68591e-05 3.93181e-05 3.56692e-05 2.2668e-05 9.61978e-06 3.43344e-06 1.55392e-07 3.26576e-07 4.08402e-06 1.68517e-05 1.2301e-05 9.43946e-06 9.43361e-06 1.10059e-05 1.3858e-05 1.79326e-05 2.27921e-05 2.72127e-05 2.98615e-05 3.02718e-05 2.83609e-05 2.35425e-05 1.66659e-05 1.11374e-05 8.25153e-06 7.2948e-06 7.56516e-06 8.61837e-06 1.009e-05 1.18945e-05 1.41723e-05 1.7159e-05 2.11259e-05 2.6233e-05 3.20776e-05 3.71949e-05 3.92515e-05 3.50662e-05 2.17923e-05 9.28779e-06 3.36342e-06 1.3888e-07 3.13709e-07 4.30991e-06 1.76868e-05 1.24253e-05 9.82056e-06 9.91729e-06 1.13995e-05 1.38539e-05 1.71744e-05 2.11868e-05 2.52188e-05 2.80882e-05 2.88946e-05 2.74593e-05 2.37336e-05 1.7991e-05 1.23504e-05 8.82919e-06 7.4215e-06 7.53185e-06 8.72357e-06 1.05805e-05 1.27936e-05 1.53581e-05 1.85481e-05 2.26296e-05 2.75748e-05 3.27743e-05 3.68704e-05 3.78697e-05 3.28646e-05 2.01389e-05 8.83615e-06 3.2727e-06 1.18474e-07 2.95956e-07 4.54867e-06 1.8518e-05 1.29295e-05 1.05005e-05 1.06501e-05 1.19342e-05 1.37858e-05 1.60622e-05 1.88101e-05 2.19852e-05 2.51278e-05 2.73075e-05 2.76569e-05 2.58991e-05 2.21102e-05 1.67322e-05 1.15856e-05 8.44494e-06 7.35949e-06 7.80039e-06 9.3685e-06 1.17533e-05 1.46519e-05 1.79916e-05 2.20518e-05 2.70645e-05 3.25794e-05 3.70847e-05 3.83177e-05 3.34091e-05 2.07663e-05 9.20884e-06 3.38869e-06 1.11413e-07 2.78535e-07 4.84347e-06 1.95708e-05 1.35004e-05 1.13564e-05 1.16938e-05 1.28947e-05 1.42743e-05 1.57069e-05 1.73315e-05 1.92953e-05 2.1576e-05 2.38586e-05 2.55048e-05 2.57616e-05 2.41336e-05 2.06484e-05 1.60306e-05 1.16882e-05 8.85663e-06 7.79881e-06 8.22176e-06 9.87946e-06 1.269e-05 1.65255e-05 2.11468e-05 2.63744e-05 3.18408e-05 3.62899e-05 3.75852e-05 3.32493e-05 2.15447e-05 9.70742e-06 3.48866e-06 1.05443e-07 2.64162e-07 5.15511e-06 2.05129e-05 1.44362e-05 1.27272e-05 1.32943e-05 1.43456e-05 1.5225e-05 1.59587e-05 1.67984e-05 1.7968e-05 1.95987e-05 2.16828e-05 2.39739e-05 2.59011e-05 2.66456e-05 2.54622e-05 2.20919e-05 1.72355e-05 1.25924e-05 9.52894e-06 8.27008e-06 8.50056e-06 1.00498e-05 1.30184e-05 1.76315e-05 2.38151e-05 3.06324e-05 3.62606e-05 3.85243e-05 3.49233e-05 2.30412e-05 1.024e-05 3.5968e-06 1.04852e-07 2.5861e-07 5.61188e-06 2.06172e-05 1.50504e-05 1.43764e-05 1.54523e-05 1.63623e-05 1.67327e-05 1.68758e-05 1.70995e-05 1.75527e-05 1.82882e-05 1.93176e-05 2.06149e-05 2.20827e-05 2.35236e-05 2.4593e-05 2.47711e-05 2.34432e-05 2.03004e-05 1.61476e-05 1.25752e-05 1.05269e-05 1.01068e-05 1.12496e-05 1.41478e-05 1.93342e-05 2.69163e-05 3.42689e-05 3.68632e-05 3.32356e-05 2.33171e-05 1.10938e-05 3.82064e-06 1.03286e-07 2.63516e-07 6.1948e-06 1.89308e-05 1.65781e-05 1.80919e-05 2.01121e-05 2.10343e-05 2.12696e-05 2.14924e-05 2.20217e-05 2.29363e-05 2.424e-05 2.59337e-05 2.80494e-05 3.06326e-05 3.3433e-05 3.41827e-05 3.39831e-05 3.38657e-05 3.24136e-05 2.44507e-05 1.72432e-05 1.29369e-05 1.12152e-05 1.15294e-05 1.38736e-05 1.87575e-05 2.63496e-05 3.42775e-05 3.83445e-05 3.61452e-05 2.45646e-05 1.05171e-05 3.57487e-06 9.54082e-08 2.4153e-07 7.31065e-06 1.27161e-05 1.48826e-05 1.84935e-05 2.12353e-05 2.29751e-05 2.44222e-05 2.60103e-05 2.78822e-05 3.00474e-05 3.24144e-05 3.47596e-05 3.67269e-05 3.78939e-05 3.79289e-05 3.67811e-05 3.46893e-05 3.18943e-05 2.88952e-05 2.63984e-05 2.48338e-05 2.43895e-05 2.51176e-05 2.68349e-05 2.88828e-05 3.00549e-05 2.93429e-05 2.66646e-05 2.24501e-05 1.7171e-05 1.15086e-05 6.51454e-06 2.87939e-06 4.61102e-08 1.37968e-07 6.16492e-06 8.22848e-06 1.13084e-05 1.40325e-05 1.63041e-05 1.8465e-05 2.06965e-05 2.31052e-05 2.57529e-05 2.8665e-05 3.18161e-05 3.50962e-05 3.82594e-05 4.08891e-05 4.24621e-05 4.26427e-05 4.14977e-05 3.93698e-05 3.65872e-05 3.34663e-05 3.03136e-05 2.73504e-05 2.46986e-05 2.23942e-05 2.03976e-05 1.8619e-05 1.6952e-05 1.5296e-05 1.35539e-05 1.16258e-05 9.41149e-06 6.79681e-06 3.61817e-06 2.11102e-08 3.7885e-08 2.28299e-06 3.86025e-06 4.98425e-06 5.90897e-06 6.69977e-06 7.36877e-06 7.92816e-06 8.36017e-06 8.72357e-06 9.03664e-06 9.2983e-06 9.50868e-06 9.66745e-06 9.77259e-06 9.82063e-06 9.8091e-06 9.73843e-06 9.61479e-06 9.43582e-06 9.20475e-06 8.92716e-06 8.61092e-06 8.26505e-06 7.89771e-06 7.51351e-06 7.11212e-06 6.68926e-06 6.22875e-06 5.45827e-06 4.52178e-06 3.49499e-06 2.40535e-06 1.29422e-06 7.81649e-09 ) ; boundaryField { frontAndBack { type compressible::alphatWallFunction; Prt 0.85; value uniform 0; } topAndBottom { type compressible::alphatWallFunction; Prt 0.85; value nonuniform List<scalar> 10500 ( 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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.99761e-08 8.29823e-08 1.2743e-07 1.73232e-07 2.20016e-07 2.68272e-07 3.17534e-07 3.69236e-07 4.22747e-07 4.78893e-07 5.37142e-07 5.97866e-07 6.60997e-07 7.26439e-07 7.94337e-07 8.63877e-07 9.35103e-07 1.00701e-06 1.07933e-06 1.15137e-06 1.22279e-06 1.29264e-06 1.36052e-06 1.4254e-06 1.48666e-06 1.54323e-06 1.59456e-06 1.63918e-06 1.67698e-06 1.70638e-06 1.72756e-06 1.73884e-06 1.7407e-06 1.73129e-06 1.7113e-06 1.67898e-06 1.63436e-06 1.57511e-06 1.49988e-06 1.40484e-06 1.28711e-06 1.14568e-06 9.82905e-07 8.08573e-07 6.34454e-07 4.72549e-07 3.20101e-07 1.49742e-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 3.85425e-08 2.30444e-07 4.1379e-07 5.88155e-07 7.54184e-07 9.11549e-07 1.06054e-06 1.2015e-06 1.33459e-06 1.46011e-06 1.57842e-06 1.68978e-06 1.79475e-06 1.89359e-06 1.98688e-06 2.07476e-06 2.15794e-06 2.23674e-06 2.31165e-06 2.38275e-06 2.4502e-06 2.51402e-06 2.57466e-06 2.63202e-06 2.68661e-06 2.73797e-06 2.7866e-06 2.83259e-06 2.87613e-06 2.91775e-06 2.95728e-06 2.99482e-06 3.03004e-06 3.06273e-06 3.09247e-06 3.11957e-06 3.14397e-06 3.16603e-06 3.186e-06 3.20409e-06 3.22099e-06 3.23661e-06 3.2519e-06 3.26694e-06 3.28189e-06 3.297e-06 3.31203e-06 3.32715e-06 3.34236e-06 3.35802e-06 3.37447e-06 3.39224e-06 3.41185e-06 3.43351e-06 3.45785e-06 3.48448e-06 3.5136e-06 3.54458e-06 3.57706e-06 3.61121e-06 3.64633e-06 3.68341e-06 3.72174e-06 3.76223e-06 3.80438e-06 3.84857e-06 3.89431e-06 3.9416e-06 3.99026e-06 4.03991e-06 4.09045e-06 4.14093e-06 4.19119e-06 4.24025e-06 4.2878e-06 4.3332e-06 4.37597e-06 4.41541e-06 4.45095e-06 4.48194e-06 4.50751e-06 4.52691e-06 4.53934e-06 4.54387e-06 4.53975e-06 4.52601e-06 4.50175e-06 4.4659e-06 4.41745e-06 4.35521e-06 4.27807e-06 4.1847e-06 4.07327e-06 3.94198e-06 3.78811e-06 3.60895e-06 3.40243e-06 3.16942e-06 2.91202e-06 2.63949e-06 2.36014e-06 2.081e-06 1.7907e-06 1.46421e-06 1.05043e-06 5.17082e-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 6.49724e-08 3.34249e-07 5.92123e-07 8.3895e-07 1.07471e-06 1.29973e-06 1.51399e-06 1.71759e-06 1.91132e-06 2.09514e-06 2.26953e-06 2.43411e-06 2.58969e-06 2.73608e-06 2.87376e-06 3.0031e-06 3.12438e-06 3.23799e-06 3.34432e-06 3.44362e-06 3.53654e-06 3.6233e-06 3.70459e-06 3.78045e-06 3.8516e-06 3.91822e-06 3.98085e-06 4.0395e-06 4.09435e-06 4.14527e-06 4.19267e-06 4.23646e-06 4.27711e-06 4.31433e-06 4.34845e-06 4.37969e-06 4.408e-06 4.43386e-06 4.45712e-06 4.4778e-06 4.49572e-06 4.51083e-06 4.52274e-06 4.5318e-06 4.53812e-06 4.54207e-06 4.54389e-06 4.5438e-06 4.54249e-06 4.53969e-06 4.53631e-06 4.53246e-06 4.52816e-06 4.5238e-06 4.5193e-06 4.51478e-06 4.51045e-06 4.50665e-06 4.50385e-06 4.50255e-06 4.50325e-06 4.50617e-06 4.51175e-06 4.51977e-06 4.53026e-06 4.54293e-06 4.55746e-06 4.57432e-06 4.5926e-06 4.61331e-06 4.63578e-06 4.66032e-06 4.68664e-06 4.71461e-06 4.74384e-06 4.77397e-06 4.80472e-06 4.83551e-06 4.86604e-06 4.89537e-06 4.92316e-06 4.94866e-06 4.97145e-06 4.99103e-06 5.00682e-06 5.01845e-06 5.02515e-06 5.02666e-06 5.02201e-06 5.0109e-06 4.99219e-06 4.9657e-06 4.93003e-06 4.885e-06 4.82873e-06 4.76104e-06 4.67951e-06 4.58394e-06 4.47157e-06 4.34193e-06 4.19156e-06 4.01958e-06 3.82203e-06 3.59728e-06 3.34268e-06 3.06111e-06 2.75367e-06 2.42873e-06 2.09263e-06 1.75081e-06 1.38841e-06 9.86525e-07 4.95505e-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 6.88178e-08 3.67577e-07 6.54132e-07 9.27873e-07 1.18964e-06 1.43919e-06 1.67699e-06 1.90305e-06 2.11778e-06 2.32125e-06 2.51377e-06 2.69603e-06 2.86778e-06 3.02988e-06 3.18193e-06 3.32484e-06 3.45851e-06 3.5835e-06 3.70018e-06 3.80891e-06 3.9101e-06 4.00413e-06 4.09126e-06 4.17213e-06 4.24693e-06 4.3164e-06 4.3805e-06 4.43993e-06 4.49478e-06 4.54563e-06 4.59243e-06 4.63538e-06 4.67429e-06 4.70949e-06 4.74091e-06 4.76897e-06 4.79352e-06 4.81471e-06 4.83283e-06 4.84769e-06 4.8597e-06 4.86876e-06 4.87483e-06 4.87788e-06 4.87793e-06 4.87464e-06 4.86836e-06 4.85927e-06 4.8477e-06 4.83383e-06 4.81784e-06 4.80039e-06 4.78105e-06 4.76064e-06 4.73932e-06 4.71698e-06 4.69408e-06 4.67065e-06 4.6468e-06 4.62284e-06 4.59909e-06 4.57607e-06 4.55419e-06 4.5339e-06 4.51539e-06 4.49899e-06 4.48467e-06 4.47238e-06 4.46221e-06 4.45398e-06 4.44841e-06 4.44473e-06 4.44357e-06 4.44449e-06 4.44743e-06 4.45225e-06 4.45843e-06 4.46569e-06 4.47333e-06 4.48104e-06 4.4881e-06 4.49405e-06 4.49807e-06 4.49968e-06 4.49838e-06 4.49369e-06 4.48537e-06 4.47264e-06 4.45553e-06 4.43303e-06 4.40532e-06 4.3712e-06 4.33101e-06 4.28313e-06 4.22834e-06 4.1644e-06 4.09231e-06 4.00893e-06 3.91551e-06 3.80786e-06 3.68733e-06 3.54904e-06 3.39397e-06 3.21647e-06 3.01713e-06 2.79005e-06 2.53489e-06 2.24703e-06 1.93176e-06 1.58915e-06 1.22611e-06 8.48148e-07 4.62098e-07 5.26758e-08 0 0 0 0 0 0 0 0 0 0 0 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.13536e-07 4.18301e-07 7.09535e-07 9.88145e-07 1.25369e-06 1.50694e-06 1.74759e-06 1.97617e-06 2.1927e-06 2.39759e-06 2.59097e-06 2.77318e-06 2.94487e-06 3.10575e-06 3.25687e-06 3.39783e-06 3.52956e-06 3.65203e-06 3.76583e-06 3.87132e-06 3.9689e-06 4.059e-06 4.14199e-06 4.2181e-06 4.28798e-06 4.35178e-06 4.41025e-06 4.46333e-06 4.51167e-06 4.5553e-06 4.59481e-06 4.63014e-06 4.66147e-06 4.68858e-06 4.71175e-06 4.73093e-06 4.74646e-06 4.75825e-06 4.76634e-06 4.77102e-06 4.772e-06 4.76963e-06 4.76384e-06 4.75455e-06 4.7418e-06 4.72569e-06 4.70593e-06 4.68283e-06 4.65659e-06 4.62746e-06 4.5955e-06 4.5608e-06 4.5239e-06 4.4842e-06 4.44242e-06 4.39862e-06 4.35257e-06 4.30473e-06 4.25516e-06 4.20396e-06 4.15152e-06 4.09811e-06 4.04424e-06 3.99015e-06 3.93618e-06 3.88244e-06 3.82916e-06 3.77655e-06 3.7246e-06 3.674e-06 3.62486e-06 3.57839e-06 3.5341e-06 3.49259e-06 3.45344e-06 3.41642e-06 3.38166e-06 3.34823e-06 3.31611e-06 3.28424e-06 3.25241e-06 3.21984e-06 3.18602e-06 3.15052e-06 3.11281e-06 3.07302e-06 3.03068e-06 2.98617e-06 2.93851e-06 2.88843e-06 2.83457e-06 2.77779e-06 2.71633e-06 2.65148e-06 2.58064e-06 2.50594e-06 2.42369e-06 2.33666e-06 2.23979e-06 2.13661e-06 2.02047e-06 1.89516e-06 1.753e-06 1.59729e-06 1.41952e-06 1.22242e-06 9.97513e-07 7.46107e-07 4.61296e-07 1.49002e-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 1.72652e-07 4.69045e-07 7.51744e-07 1.02159e-06 1.2782e-06 1.5223e-06 1.75354e-06 1.97249e-06 2.17914e-06 2.37391e-06 2.55693e-06 2.72852e-06 2.88933e-06 3.03909e-06 3.17893e-06 3.30846e-06 3.4286e-06 3.53939e-06 3.64141e-06 3.73503e-06 3.82068e-06 3.89876e-06 3.96966e-06 4.03359e-06 4.09117e-06 4.14253e-06 4.18843e-06 4.22874e-06 4.2641e-06 4.2945e-06 4.3205e-06 4.34201e-06 4.35922e-06 4.37187e-06 4.38023e-06 4.3842e-06 4.38406e-06 4.37974e-06 4.37113e-06 4.35852e-06 4.3415e-06 4.3204e-06 4.2951e-06 4.2655e-06 4.23174e-06 4.19393e-06 4.15189e-06 4.10587e-06 4.05605e-06 4.00252e-06 3.9452e-06 3.88399e-06 3.81924e-06 3.75015e-06 3.6772e-06 3.60034e-06 3.5192e-06 3.43416e-06 3.34533e-06 3.25282e-06 3.15714e-06 3.05853e-06 2.95755e-06 2.85424e-06 2.74883e-06 2.64143e-06 2.53218e-06 2.42174e-06 2.31036e-06 2.19949e-06 2.08979e-06 1.98311e-06 1.87948e-06 1.77958e-06 1.68356e-06 1.5906e-06 1.5015e-06 1.41489e-06 1.33121e-06 1.24921e-06 1.16885e-06 1.08963e-06 1.01106e-06 9.33463e-07 8.56341e-07 7.80836e-07 7.06569e-07 6.34908e-07 5.64723e-07 4.9762e-07 4.31738e-07 3.68755e-07 3.05882e-07 2.45201e-07 1.82466e-07 1.20892e-07 5.43863e-08 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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.16975e-08 3.08065e-07 5.80585e-07 8.40137e-07 1.08631e-06 1.31981e-06 1.54027e-06 1.74825e-06 1.9437e-06 2.12705e-06 2.29836e-06 2.45792e-06 2.60647e-06 2.74373e-06 2.87077e-06 2.98734e-06 3.09426e-06 3.19165e-06 3.28007e-06 3.3599e-06 3.43155e-06 3.49544e-06 3.55192e-06 3.60122e-06 3.64391e-06 3.6801e-06 3.7105e-06 3.73498e-06 3.75413e-06 3.7679e-06 3.77683e-06 3.78078e-06 3.77997e-06 3.77412e-06 3.76345e-06 3.74787e-06 3.72752e-06 3.70235e-06 3.67207e-06 3.63697e-06 3.59653e-06 3.55103e-06 3.50034e-06 3.44436e-06 3.38331e-06 3.31737e-06 3.24649e-06 3.17089e-06 3.0907e-06 3.00586e-06 2.91609e-06 2.82107e-06 2.72097e-06 2.61479e-06 2.50275e-06 2.3847e-06 2.26015e-06 2.12948e-06 1.99289e-06 1.85058e-06 1.70321e-06 1.55107e-06 1.39492e-06 1.23463e-06 1.0704e-06 9.02417e-07 7.30744e-07 5.56538e-07 3.80241e-07 2.03993e-07 2.89958e-08 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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.2642e-07 4.74025e-07 7.08134e-07 9.2949e-07 1.13767e-06 1.33321e-06 1.516e-06 1.68645e-06 1.84457e-06 1.99058e-06 2.12533e-06 2.24852e-06 2.3611e-06 2.463e-06 2.55487e-06 2.63696e-06 2.70977e-06 2.77367e-06 2.8291e-06 2.87642e-06 2.916e-06 2.94804e-06 2.97308e-06 2.99121e-06 3.00307e-06 3.00856e-06 3.0082e-06 3.00193e-06 2.99028e-06 2.97306e-06 2.95054e-06 2.92241e-06 2.88892e-06 2.84995e-06 2.80552e-06 2.75558e-06 2.69971e-06 2.63815e-06 2.57031e-06 2.49642e-06 2.41642e-06 2.33019e-06 2.23811e-06 2.14041e-06 2.03724e-06 1.92884e-06 1.81531e-06 1.69647e-06 1.57188e-06 1.44099e-06 1.30388e-06 1.15938e-06 1.00748e-06 8.47978e-07 6.803e-07 5.04821e-07 3.21906e-07 1.31919e-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 1.5598e-07 3.63942e-07 5.58808e-07 7.40886e-07 9.09999e-07 1.06656e-06 1.21048e-06 1.3419e-06 1.46177e-06 1.56986e-06 1.6668e-06 1.75284e-06 1.82838e-06 1.89382e-06 1.94958e-06 1.99605e-06 2.03364e-06 2.06272e-06 2.08362e-06 2.09657e-06 2.10203e-06 2.10011e-06 2.0914e-06 2.07579e-06 2.05381e-06 2.02537e-06 1.99102e-06 1.95054e-06 1.90427e-06 1.85193e-06 1.79378e-06 1.72973e-06 1.65968e-06 1.58365e-06 1.50105e-06 1.41212e-06 1.31619e-06 1.21349e-06 1.10401e-06 9.87667e-07 8.64947e-07 7.36218e-07 6.01796e-07 4.61959e-07 3.16869e-07 1.66442e-07 9.72441e-09 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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.37045e-07 2.79509e-07 4.09154e-07 5.25984e-07 6.30744e-07 7.23677e-07 8.04818e-07 8.74831e-07 9.33823e-07 9.82346e-07 1.02076e-06 1.04945e-06 1.06884e-06 1.07928e-06 1.0811e-06 1.07453e-06 1.06e-06 1.03763e-06 1.00796e-06 9.70939e-07 9.27077e-07 8.76295e-07 8.19175e-07 7.55514e-07 6.85733e-07 6.09597e-07 5.27399e-07 4.391e-07 3.44557e-07 2.43834e-07 1.36386e-07 2.21248e-08 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4.57373e-08 1.85832e-07 3.18648e-07 4.42416e-07 5.58149e-07 6.63787e-07 7.60417e-07 8.46049e-07 9.21499e-07 9.85375e-07 1.03759e-06 1.07795e-06 1.10467e-06 1.11968e-06 1.11863e-06 1.10635e-06 1.07597e-06 1.03421e-06 9.73789e-07 9.00334e-07 8.09682e-07 7.04053e-07 5.81696e-07 4.40488e-07 2.84085e-07 1.05163e-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 1.11303e-07 2.91007e-07 4.6528e-07 6.36121e-07 8.01179e-07 9.62409e-07 1.11746e-06 1.26819e-06 1.41229e-06 1.55121e-06 1.68284e-06 1.80834e-06 1.92573e-06 2.03605e-06 2.13731e-06 2.23083e-06 2.31438e-06 2.38932e-06 2.45348e-06 2.50806e-06 2.55131e-06 2.58382e-06 2.6047e-06 2.6133e-06 2.61047e-06 2.5934e-06 2.56562e-06 2.52189e-06 2.46795e-06 2.39738e-06 2.31626e-06 2.21889e-06 2.11084e-06 1.9867e-06 1.84947e-06 1.69669e-06 1.52855e-06 1.34413e-06 1.1404e-06 9.1475e-07 6.65421e-07 3.81266e-07 8.07466e-08 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6.89155e-08 2.60144e-07 4.48527e-07 6.34267e-07 8.1702e-07 9.96771e-07 1.1734e-06 1.34621e-06 1.51617e-06 1.68145e-06 1.84404e-06 2.00148e-06 2.15588e-06 2.30468e-06 2.44995e-06 2.58931e-06 2.72479e-06 2.85396e-06 2.97878e-06 3.09687e-06 3.20983e-06 3.31547e-06 3.41512e-06 3.50671e-06 3.59153e-06 3.66737e-06 3.73582e-06 3.79447e-06 3.84497e-06 3.88491e-06 3.9159e-06 3.93581e-06 3.94587e-06 3.94453e-06 3.93223e-06 3.90871e-06 3.87274e-06 3.82645e-06 3.76628e-06 3.69685e-06 3.61267e-06 3.52006e-06 3.41213e-06 3.29706e-06 3.16637e-06 3.02752e-06 2.87247e-06 2.70822e-06 2.52639e-06 2.33172e-06 2.11525e-06 1.88036e-06 1.61713e-06 1.33869e-06 1.0343e-06 7.49734e-07 4.61253e-07 2.44035e-07 8.31707e-09 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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.12912e-07 2.93077e-07 4.73437e-07 6.53802e-07 8.33455e-07 1.01219e-06 1.1894e-06 1.36511e-06 1.53848e-06 1.70965e-06 1.87818e-06 2.04413e-06 2.20723e-06 2.3674e-06 2.5247e-06 2.67896e-06 2.83004e-06 2.97803e-06 3.12212e-06 3.26346e-06 3.40022e-06 3.53437e-06 3.66356e-06 3.78987e-06 3.91078e-06 4.0283e-06 4.14007e-06 4.2481e-06 4.34995e-06 4.44761e-06 4.53864e-06 4.62474e-06 4.70363e-06 4.77682e-06 4.84211e-06 4.90104e-06 4.95122e-06 4.99445e-06 5.02818e-06 5.05426e-06 5.07011e-06 5.07765e-06 5.07443e-06 5.06221e-06 5.03886e-06 5.00574e-06 4.96164e-06 4.9067e-06 4.84172e-06 4.76474e-06 4.67918e-06 4.58063e-06 4.47511e-06 4.35567e-06 4.2312e-06 4.09184e-06 3.94817e-06 3.78762e-06 3.62285e-06 3.43891e-06 3.24754e-06 3.03334e-06 2.80552e-06 2.55298e-06 2.28696e-06 2.00884e-06 1.74035e-06 1.48975e-06 1.26335e-06 1.03143e-06 7.19178e-07 2.5751e-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 5.65898e-08 1.59173e-07 2.64282e-07 3.72624e-07 4.84637e-07 6.0062e-07 7.20849e-07 8.45171e-07 9.73265e-07 1.10529e-06 1.2407e-06 1.37927e-06 1.52042e-06 1.66373e-06 1.80873e-06 1.95496e-06 2.10234e-06 2.2502e-06 2.39811e-06 2.54601e-06 2.69322e-06 2.83959e-06 2.98458e-06 3.12832e-06 3.26993e-06 3.40963e-06 3.54687e-06 3.68182e-06 3.81412e-06 3.94383e-06 4.0708e-06 4.19502e-06 4.31621e-06 4.43464e-06 4.54947e-06 4.66192e-06 4.77024e-06 4.8763e-06 4.97789e-06 5.07695e-06 5.1711e-06 5.26223e-06 5.34804e-06 5.43048e-06 5.50713e-06 5.57992e-06 5.64644e-06 5.70835e-06 5.76336e-06 5.81306e-06 5.85515e-06 5.89135e-06 5.9191e-06 5.94025e-06 5.95234e-06 5.95725e-06 5.95232e-06 5.93959e-06 5.91655e-06 5.88509e-06 5.84278e-06 5.79168e-06 5.72978e-06 5.6584e-06 5.57712e-06 5.48546e-06 5.38562e-06 5.27433e-06 5.15701e-06 5.02701e-06 4.89345e-06 4.74564e-06 4.59635e-06 4.42949e-06 4.26237e-06 4.0742e-06 3.88329e-06 3.66736e-06 3.44273e-06 3.19364e-06 2.93478e-06 2.67035e-06 2.41177e-06 2.18204e-06 1.9475e-06 1.71384e-06 1.33517e-06 8.38914e-07 4.56177e-08 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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.06648e-07 2.71974e-07 4.27342e-07 5.73361e-07 7.10819e-07 8.40204e-07 9.62337e-07 1.07756e-06 1.1867e-06 1.29014e-06 1.38861e-06 1.48267e-06 1.57298e-06 1.66032e-06 1.74534e-06 1.82874e-06 1.91127e-06 1.99388e-06 2.07692e-06 2.16113e-06 2.24691e-06 2.33477e-06 2.42518e-06 2.5184e-06 2.61438e-06 2.71309e-06 2.81482e-06 2.91922e-06 3.02623e-06 3.13547e-06 3.24661e-06 3.35936e-06 3.47326e-06 3.58837e-06 3.70416e-06 3.82016e-06 3.93636e-06 4.05216e-06 4.16746e-06 4.28181e-06 4.39541e-06 4.50741e-06 4.61803e-06 4.72674e-06 4.83372e-06 4.93848e-06 5.04126e-06 5.14175e-06 5.24002e-06 5.33572e-06 5.42918e-06 5.51959e-06 5.60812e-06 5.69318e-06 5.77644e-06 5.85586e-06 5.93303e-06 6.00597e-06 6.07629e-06 6.1418e-06 6.20433e-06 6.26151e-06 6.3152e-06 6.36297e-06 6.40648e-06 6.44338e-06 6.47534e-06 6.49993e-06 6.519e-06 6.52985e-06 6.53454e-06 6.53031e-06 6.51924e-06 6.49857e-06 6.47046e-06 6.43219e-06 6.38606e-06 6.32926e-06 6.26435e-06 6.18876e-06 6.10471e-06 6.01077e-06 5.90788e-06 5.79682e-06 5.67562e-06 5.54891e-06 5.41052e-06 5.26981e-06 5.11505e-06 4.96088e-06 4.78862e-06 4.61909e-06 4.42662e-06 4.23541e-06 4.01632e-06 3.79349e-06 3.54417e-06 3.29039e-06 3.03235e-06 2.78155e-06 2.56333e-06 2.32432e-06 2.08861e-06 1.6628e-06 1.14067e-06 2.79119e-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 7.7955e-08 3.23143e-07 5.54141e-07 7.71234e-07 9.74901e-07 1.16554e-06 1.34384e-06 1.51026e-06 1.66547e-06 1.81016e-06 1.945e-06 2.07078e-06 2.18805e-06 2.29765e-06 2.40001e-06 2.49595e-06 2.58594e-06 2.6707e-06 2.75079e-06 2.82688e-06 2.89971e-06 2.96984e-06 3.03796e-06 3.10476e-06 3.17105e-06 3.23717e-06 3.30373e-06 3.37114e-06 3.4398e-06 3.5102e-06 3.58259e-06 3.65689e-06 3.73327e-06 3.81205e-06 3.89302e-06 3.97625e-06 4.06155e-06 4.14866e-06 4.23742e-06 4.32743e-06 4.41878e-06 4.51106e-06 4.60381e-06 4.69707e-06 4.79028e-06 4.88341e-06 4.97602e-06 5.06836e-06 5.15957e-06 5.24991e-06 5.33882e-06 5.42647e-06 5.5123e-06 5.59663e-06 5.67903e-06 5.75966e-06 5.83808e-06 5.91468e-06 5.98855e-06 6.061e-06 6.13046e-06 6.19841e-06 6.26294e-06 6.32556e-06 6.38423e-06 6.44052e-06 6.49232e-06 6.54137e-06 6.58534e-06 6.62604e-06 6.66102e-06 6.69195e-06 6.71642e-06 6.73617e-06 6.74863e-06 6.75579e-06 6.75485e-06 6.74788e-06 6.73211e-06 6.70965e-06 6.67773e-06 6.63853e-06 6.58932e-06 6.5325e-06 6.46512e-06 6.39012e-06 6.30443e-06 6.21113e-06 6.10782e-06 5.99663e-06 5.87735e-06 5.74909e-06 5.61549e-06 5.47121e-06 5.32544e-06 5.16597e-06 5.00849e-06 4.83256e-06 4.66162e-06 4.46598e-06 4.27504e-06 4.05312e-06 3.8324e-06 3.58204e-06 3.33361e-06 3.07982e-06 2.83774e-06 2.62856e-06 2.3888e-06 2.15228e-06 1.68672e-06 1.14158e-06 2.16369e-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 2.17832e-08 2.85737e-07 5.35981e-07 7.72618e-07 9.95563e-07 1.20499e-06 1.40121e-06 1.58466e-06 1.75578e-06 1.91519e-06 2.06338e-06 2.20105e-06 2.32887e-06 2.44747e-06 2.55763e-06 2.65988e-06 2.75504e-06 2.84358e-06 2.92626e-06 3.00358e-06 3.07619e-06 3.14465e-06 3.2096e-06 3.27168e-06 3.33142e-06 3.38941e-06 3.44629e-06 3.50274e-06 3.55903e-06 3.61565e-06 3.67296e-06 3.73126e-06 3.79098e-06 3.85233e-06 3.91519e-06 3.97978e-06 4.04633e-06 4.1147e-06 4.18501e-06 4.25716e-06 4.33092e-06 4.40621e-06 4.48264e-06 4.5603e-06 4.63887e-06 4.71792e-06 4.79749e-06 4.8771e-06 4.95672e-06 5.03595e-06 5.11502e-06 5.19315e-06 5.27058e-06 5.34674e-06 5.4218e-06 5.49517e-06 5.56721e-06 5.63744e-06 5.70609e-06 5.77267e-06 5.83763e-06 5.90017e-06 5.96123e-06 6.0196e-06 6.07655e-06 6.13026e-06 6.18212e-06 6.23017e-06 6.27592e-06 6.31731e-06 6.35603e-06 6.38978e-06 6.42036e-06 6.44528e-06 6.46628e-06 6.48083e-06 6.4908e-06 6.49347e-06 6.49098e-06 6.48039e-06 6.46385e-06 6.43854e-06 6.40662e-06 6.3653e-06 6.31684e-06 6.25843e-06 6.19269e-06 6.11642e-06 6.03306e-06 5.93894e-06 5.83831e-06 5.7273e-06 5.60986e-06 5.48387e-06 5.35069e-06 5.212e-06 5.06421e-06 4.91524e-06 4.75369e-06 4.59486e-06 4.41751e-06 4.24707e-06 4.05009e-06 3.86134e-06 3.63785e-06 3.42162e-06 3.17138e-06 2.9323e-06 2.68508e-06 2.45772e-06 2.26013e-06 2.02291e-06 1.78253e-06 1.26863e-06 6.92411e-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 1.1423e-08 2.28726e-07 4.33459e-07 6.25751e-07 8.05814e-07 9.73964e-07 1.13066e-06 1.27634e-06 1.41159e-06 1.53689e-06 1.65298e-06 1.76047e-06 1.86e-06 1.95229e-06 2.03783e-06 2.11743e-06 2.19155e-06 2.26088e-06 2.32591e-06 2.38719e-06 2.44524e-06 2.50067e-06 2.55402e-06 2.60575e-06 2.65637e-06 2.70641e-06 2.75639e-06 2.8065e-06 2.85705e-06 2.90833e-06 2.9605e-06 3.0139e-06 3.06865e-06 3.12453e-06 3.18177e-06 3.24042e-06 3.30036e-06 3.3617e-06 3.42442e-06 3.48828e-06 3.55325e-06 3.61895e-06 3.68542e-06 3.75246e-06 3.81973e-06 3.88726e-06 3.95466e-06 4.02191e-06 4.08864e-06 4.15507e-06 4.22054e-06 4.28527e-06 4.34871e-06 4.41104e-06 4.47164e-06 4.53092e-06 4.58836e-06 4.64436e-06 4.69833e-06 4.75089e-06 4.80113e-06 4.85007e-06 4.89638e-06 4.94125e-06 4.983e-06 5.02287e-06 5.05904e-06 5.09297e-06 5.12264e-06 5.14973e-06 5.17196e-06 5.19115e-06 5.20478e-06 5.21467e-06 5.21819e-06 5.21737e-06 5.20926e-06 5.19624e-06 5.1752e-06 5.14841e-06 5.11294e-06 5.0711e-06 5.02003e-06 4.96214e-06 4.89456e-06 4.82016e-06 4.73548e-06 4.64459e-06 4.5431e-06 4.43658e-06 4.31959e-06 4.19853e-06 4.06834e-06 3.93394e-06 3.79347e-06 3.64694e-06 3.49893e-06 3.34106e-06 3.18558e-06 3.01232e-06 2.84756e-06 2.65447e-06 2.47377e-06 2.25351e-06 2.04937e-06 1.80495e-06 1.58743e-06 1.35589e-06 1.16041e-06 9.81976e-07 7.55872e-07 4.98875e-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 1.12875e-08 5.91613e-08 1.07803e-07 1.57263e-07 2.07307e-07 2.58075e-07 3.0941e-07 3.60964e-07 4.12691e-07 4.64534e-07 5.16282e-07 5.67987e-07 6.19328e-07 6.70331e-07 7.20684e-07 7.70497e-07 8.19332e-07 8.67382e-07 9.14195e-07 9.59876e-07 1.00387e-06 1.04661e-06 1.0876e-06 1.12738e-06 1.16536e-06 1.20223e-06 1.23713e-06 1.27089e-06 1.30236e-06 1.33242e-06 1.35971e-06 1.38516e-06 1.40736e-06 1.42751e-06 1.44393e-06 1.45801e-06 1.46784e-06 1.47497e-06 1.47714e-06 1.47603e-06 1.46923e-06 1.45863e-06 1.44144e-06 1.41994e-06 1.39126e-06 1.35746e-06 1.31592e-06 1.26874e-06 1.21342e-06 1.1522e-06 1.08257e-06 1.00719e-06 9.23016e-07 8.3395e-07 7.35823e-07 6.34524e-07 5.24009e-07 4.12001e-07 2.91493e-07 1.70257e-07 4.30715e-08 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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.02112e-08 8.16114e-08 1.36626e-07 1.945e-07 2.55783e-07 3.18462e-07 3.83016e-07 4.48105e-07 5.12873e-07 5.77913e-07 6.4187e-07 7.05714e-07 7.6839e-07 8.3004e-07 8.89883e-07 9.47865e-07 1.00361e-06 1.05729e-06 1.1089e-06 1.15911e-06 1.20807e-06 1.25615e-06 1.30274e-06 1.34721e-06 1.38831e-06 1.42486e-06 1.45574e-06 1.48045e-06 1.4989e-06 1.51134e-06 1.51795e-06 1.51851e-06 1.51234e-06 1.49841e-06 1.47599e-06 1.44507e-06 1.40519e-06 1.35689e-06 1.29869e-06 1.23182e-06 1.15473e-06 1.07092e-06 9.80813e-07 8.87525e-07 7.85831e-07 6.63522e-07 5.00251e-07 2.688e-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 1.71538e-07 3.60918e-07 5.4039e-07 7.13291e-07 8.76614e-07 1.03306e-06 1.18037e-06 1.32072e-06 1.45268e-06 1.57788e-06 1.69536e-06 1.80633e-06 1.91024e-06 2.00801e-06 2.09943e-06 2.1853e-06 2.26555e-06 2.341e-06 2.41166e-06 2.47826e-06 2.54076e-06 2.59961e-06 2.65493e-06 2.70688e-06 2.75567e-06 2.80128e-06 2.84396e-06 2.88372e-06 2.92058e-06 2.95486e-06 2.9864e-06 3.01575e-06 3.04282e-06 3.06819e-06 3.09168e-06 3.11364e-06 3.1341e-06 3.15285e-06 3.17043e-06 3.18691e-06 3.20249e-06 3.21774e-06 3.23288e-06 3.24806e-06 3.2641e-06 3.28121e-06 3.29998e-06 3.32118e-06 3.34458e-06 3.37105e-06 3.40035e-06 3.43251e-06 3.46802e-06 3.50666e-06 3.54892e-06 3.59488e-06 3.64474e-06 3.69744e-06 3.75311e-06 3.80981e-06 3.86731e-06 3.92426e-06 3.97958e-06 4.03372e-06 4.08501e-06 4.134e-06 4.17953e-06 4.22132e-06 4.25889e-06 4.29193e-06 4.3205e-06 4.34467e-06 4.36485e-06 4.38152e-06 4.39508e-06 4.40549e-06 4.41238e-06 4.41493e-06 4.41227e-06 4.40325e-06 4.38729e-06 4.36398e-06 4.33338e-06 4.29521e-06 4.24942e-06 4.19506e-06 4.13175e-06 4.0582e-06 3.97494e-06 3.88137e-06 3.77822e-06 3.66449e-06 3.54006e-06 3.40377e-06 3.25576e-06 3.09617e-06 2.92606e-06 2.74368e-06 2.54292e-06 2.31057e-06 2.02784e-06 1.67649e-06 1.25052e-06 7.59105e-07 2.33617e-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 2.51951e-07 5.12138e-07 7.57818e-07 9.97564e-07 1.22405e-06 1.44401e-06 1.65155e-06 1.85176e-06 2.04082e-06 2.22287e-06 2.39419e-06 2.55809e-06 2.71181e-06 2.85796e-06 2.99453e-06 3.12364e-06 3.24399e-06 3.35724e-06 3.46249e-06 3.56099e-06 3.65225e-06 3.73721e-06 3.81568e-06 3.88843e-06 3.95541e-06 4.01738e-06 4.07438e-06 4.12707e-06 4.17548e-06 4.21998e-06 4.26067e-06 4.2977e-06 4.3312e-06 4.36124e-06 4.38793e-06 4.41146e-06 4.43175e-06 4.44925e-06 4.46375e-06 4.47574e-06 4.48522e-06 4.49264e-06 4.49797e-06 4.50148e-06 4.5034e-06 4.5034e-06 4.50219e-06 4.49991e-06 4.4967e-06 4.49326e-06 4.48992e-06 4.48671e-06 4.48457e-06 4.48363e-06 4.48453e-06 4.48797e-06 4.49388e-06 4.50307e-06 4.51555e-06 4.53128e-06 4.5509e-06 4.57428e-06 4.60177e-06 4.6335e-06 4.66941e-06 4.70844e-06 4.7501e-06 4.79302e-06 4.83634e-06 4.87895e-06 4.91954e-06 4.95825e-06 4.99337e-06 5.02479e-06 5.05152e-06 5.07276e-06 5.08843e-06 5.09786e-06 5.10153e-06 5.09933e-06 5.09199e-06 5.07965e-06 5.06299e-06 5.04166e-06 5.01568e-06 4.9841e-06 4.94662e-06 4.90225e-06 4.85085e-06 4.79192e-06 4.72559e-06 4.65099e-06 4.568e-06 4.47507e-06 4.37235e-06 4.25831e-06 4.13469e-06 4.00019e-06 3.85673e-06 3.70181e-06 3.53674e-06 3.35807e-06 3.16778e-06 2.96311e-06 2.74674e-06 2.51389e-06 2.25987e-06 1.97248e-06 1.63513e-06 1.23809e-06 7.76845e-07 2.68633e-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 2.94335e-07 5.74115e-07 8.48395e-07 1.10604e-06 1.35792e-06 1.59479e-06 1.82535e-06 2.04223e-06 2.25225e-06 2.44953e-06 2.63931e-06 2.81761e-06 2.98826e-06 3.14803e-06 3.30003e-06 3.44181e-06 3.57578e-06 3.70017e-06 3.81697e-06 3.92499e-06 4.02583e-06 4.11872e-06 4.20482e-06 4.28372e-06 4.35634e-06 4.42249e-06 4.48292e-06 4.53755e-06 4.58711e-06 4.63163e-06 4.67173e-06 4.70746e-06 4.73913e-06 4.76685e-06 4.79075e-06 4.81089e-06 4.82741e-06 4.84033e-06 4.84992e-06 4.85604e-06 4.8592e-06 4.85914e-06 4.85631e-06 4.85074e-06 4.84278e-06 4.83246e-06 4.82002e-06 4.80579e-06 4.78939e-06 4.77154e-06 4.75247e-06 4.73222e-06 4.7115e-06 4.69068e-06 4.66967e-06 4.64942e-06 4.63002e-06 4.61207e-06 4.59623e-06 4.58254e-06 4.57177e-06 4.5641e-06 4.55951e-06 4.55874e-06 4.56178e-06 4.56891e-06 4.58033e-06 4.59587e-06 4.61473e-06 4.63599e-06 4.65884e-06 4.68214e-06 4.70506e-06 4.72621e-06 4.74534e-06 4.7608e-06 4.77182e-06 4.77752e-06 4.77659e-06 4.76927e-06 4.75448e-06 4.73304e-06 4.70448e-06 4.66981e-06 4.6288e-06 4.58237e-06 4.52986e-06 4.47181e-06 4.40725e-06 4.33667e-06 4.25918e-06 4.17528e-06 4.08405e-06 3.98574e-06 3.87846e-06 3.76217e-06 3.63449e-06 3.49641e-06 3.34606e-06 3.18678e-06 3.01639e-06 2.83849e-06 2.64869e-06 2.45042e-06 2.23729e-06 2.01401e-06 1.77441e-06 1.52427e-06 1.25632e-06 9.69132e-07 6.52402e-07 2.92809e-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 4.97049e-08 3.45186e-07 6.3553e-07 9.07061e-07 1.17294e-06 1.42203e-06 1.66508e-06 1.89296e-06 2.11433e-06 2.32186e-06 2.52236e-06 2.70997e-06 2.88995e-06 3.05815e-06 3.21842e-06 3.36774e-06 3.5091e-06 3.64022e-06 3.76339e-06 3.87699e-06 3.98288e-06 4.07997e-06 4.16981e-06 4.25166e-06 4.32667e-06 4.39444e-06 4.45587e-06 4.51077e-06 4.55987e-06 4.60306e-06 4.64104e-06 4.67384e-06 4.70202e-06 4.72564e-06 4.74497e-06 4.76009e-06 4.77114e-06 4.77811e-06 4.78117e-06 4.78028e-06 4.77578e-06 4.76742e-06 4.75575e-06 4.74045e-06 4.72191e-06 4.70015e-06 4.67542e-06 4.6478e-06 4.61743e-06 4.58471e-06 4.54919e-06 4.5116e-06 4.47214e-06 4.43073e-06 4.38802e-06 4.3443e-06 4.29934e-06 4.25402e-06 4.20826e-06 4.16264e-06 4.11765e-06 4.07344e-06 4.03067e-06 3.98971e-06 3.95061e-06 3.91427e-06 3.88079e-06 3.85049e-06 3.82371e-06 3.80028e-06 3.77978e-06 3.76131e-06 3.7449e-06 3.72931e-06 3.71432e-06 3.69877e-06 3.68191e-06 3.66234e-06 3.63846e-06 3.60963e-06 3.57385e-06 3.53186e-06 3.48203e-06 3.42569e-06 3.36188e-06 3.29208e-06 3.21551e-06 3.13366e-06 3.04546e-06 2.95252e-06 2.85393e-06 2.75148e-06 2.64438e-06 2.53405e-06 2.41871e-06 2.2987e-06 2.17049e-06 2.03428e-06 1.88654e-06 1.72954e-06 1.56089e-06 1.38596e-06 1.20139e-06 1.01294e-06 8.13972e-07 6.10619e-07 3.93393e-07 1.70234e-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 1.0697e-07 3.94033e-07 6.75877e-07 9.38681e-07 1.19571e-06 1.43579e-06 1.66963e-06 1.88816e-06 2.09998e-06 2.29782e-06 2.48843e-06 2.66598e-06 2.83569e-06 2.99337e-06 3.1429e-06 3.28134e-06 3.41162e-06 3.53156e-06 3.64337e-06 3.74553e-06 3.8398e-06 3.92516e-06 4.0031e-06 4.07292e-06 4.13571e-06 4.19112e-06 4.23999e-06 4.28214e-06 4.31824e-06 4.34821e-06 4.37268e-06 4.39167e-06 4.40568e-06 4.41476e-06 4.41913e-06 4.41884e-06 4.41402e-06 4.40461e-06 4.39079e-06 4.37244e-06 4.34994e-06 4.32294e-06 4.29199e-06 4.25668e-06 4.21734e-06 4.17392e-06 4.12659e-06 4.07539e-06 4.02036e-06 3.96193e-06 3.89958e-06 3.834e-06 3.76533e-06 3.69334e-06 3.61852e-06 3.54102e-06 3.4604e-06 3.37739e-06 3.29171e-06 3.2038e-06 3.114e-06 3.02258e-06 2.93013e-06 2.83726e-06 2.74422e-06 2.65211e-06 2.56135e-06 2.47232e-06 2.38566e-06 2.30127e-06 2.21939e-06 2.13932e-06 2.06231e-06 1.98766e-06 1.91565e-06 1.84596e-06 1.77739e-06 1.70918e-06 1.63891e-06 1.56643e-06 1.48914e-06 1.40846e-06 1.32226e-06 1.23256e-06 1.13791e-06 1.04043e-06 9.38721e-07 8.35105e-07 7.28049e-07 6.20376e-07 5.11066e-07 4.03436e-07 2.96366e-07 1.92281e-07 8.80291e-08 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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.29496e-07 5.01593e-07 7.54451e-07 1.00141e-06 1.23121e-06 1.45462e-06 1.6625e-06 1.86351e-06 2.05031e-06 2.22969e-06 2.39575e-06 2.5537e-06 2.6994e-06 2.83669e-06 2.96267e-06 3.08027e-06 3.18732e-06 3.286e-06 3.37484e-06 3.45553e-06 3.52709e-06 3.59096e-06 3.64645e-06 3.69461e-06 3.73509e-06 3.7687e-06 3.79523e-06 3.81535e-06 3.82894e-06 3.83658e-06 3.83828e-06 3.83448e-06 3.82518e-06 3.8106e-06 3.7907e-06 3.76563e-06 3.73525e-06 3.69979e-06 3.65902e-06 3.61335e-06 3.56237e-06 3.50658e-06 3.44548e-06 3.37934e-06 3.30805e-06 3.23165e-06 3.1502e-06 3.06361e-06 2.97233e-06 2.87582e-06 2.77469e-06 2.6691e-06 2.55867e-06 2.4437e-06 2.32424e-06 2.19967e-06 2.07056e-06 1.93643e-06 1.79768e-06 1.65439e-06 1.5071e-06 1.35636e-06 1.20308e-06 1.04773e-06 8.91623e-07 7.35505e-07 5.79853e-07 4.25608e-07 2.72701e-07 1.22067e-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 1.4258e-07 3.84096e-07 6.1969e-07 8.37868e-07 1.04954e-06 1.24542e-06 1.43421e-06 1.60853e-06 1.77517e-06 1.92819e-06 2.07276e-06 2.20486e-06 2.32824e-06 2.44001e-06 2.54312e-06 2.63535e-06 2.71894e-06 2.79236e-06 2.8573e-06 2.91279e-06 2.96019e-06 2.99886e-06 3.02979e-06 3.0526e-06 3.06811e-06 3.07607e-06 3.07714e-06 3.07117e-06 3.05873e-06 3.03979e-06 3.01473e-06 2.98355e-06 2.94641e-06 2.90326e-06 2.85425e-06 2.7992e-06 2.73837e-06 2.67146e-06 2.59891e-06 2.52025e-06 2.43602e-06 2.34562e-06 2.24925e-06 2.14681e-06 2.03823e-06 1.9236e-06 1.80273e-06 1.67612e-06 1.54324e-06 1.40463e-06 1.26054e-06 1.1105e-06 9.54695e-07 7.93111e-07 6.25009e-07 4.50856e-07 2.70018e-07 8.28893e-08 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6.23983e-08 2.68096e-07 4.67214e-07 6.50227e-07 8.25902e-07 9.86738e-07 1.13964e-06 1.27853e-06 1.4086e-06 1.52591e-06 1.63422e-06 1.73046e-06 1.81778e-06 1.89378e-06 1.96081e-06 2.01727e-06 2.06487e-06 2.1026e-06 2.13183e-06 2.15187e-06 2.16373e-06 2.167e-06 2.16247e-06 2.14993e-06 2.12999e-06 2.10253e-06 2.06809e-06 2.02664e-06 1.97852e-06 1.92372e-06 1.8624e-06 1.79449e-06 1.7202e-06 1.63929e-06 1.55212e-06 1.45831e-06 1.35836e-06 1.25175e-06 1.13909e-06 1.01975e-06 8.93882e-07 7.61393e-07 6.22144e-07 4.76272e-07 3.23545e-07 1.64661e-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 4.99616e-08 1.97231e-07 3.36278e-07 4.60895e-07 5.76355e-07 6.78515e-07 7.71554e-07 8.51937e-07 9.23131e-07 9.82518e-07 1.03259e-06 1.07164e-06 1.10146e-06 1.12097e-06 1.13156e-06 1.13253e-06 1.12489e-06 1.10822e-06 1.08333e-06 1.05001e-06 1.00888e-06 9.5986e-07 9.03457e-07 8.39701e-07 7.68889e-07 6.91038e-07 6.0633e-07 5.14684e-07 4.16371e-07 3.11161e-07 1.99479e-07 8.09682e-08 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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.32392e-08 1.55353e-07 2.88473e-07 4.12759e-07 5.28259e-07 6.32975e-07 7.29099e-07 8.12537e-07 8.87706e-07 9.48393e-07 1.00069e-06 1.03704e-06 1.06442e-06 1.07503e-06 1.07568e-06 1.05946e-06 1.03138e-06 9.87527e-07 9.28128e-07 8.55717e-07 7.62315e-07 6.61309e-07 5.3217e-07 3.99674e-07 2.33576e-07 6.35844e-08 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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.74714e-08 2.15597e-07 3.9909e-07 5.77199e-07 7.5037e-07 9.17821e-07 1.07949e-06 1.23517e-06 1.3842e-06 1.52651e-06 1.66156e-06 1.78891e-06 1.90821e-06 2.01918e-06 2.12077e-06 2.21407e-06 2.29634e-06 2.37058e-06 2.4321e-06 2.48597e-06 2.52558e-06 2.55747e-06 2.57394e-06 2.58223e-06 2.57459e-06 2.55792e-06 2.52565e-06 2.48267e-06 2.42563e-06 2.35476e-06 2.27292e-06 2.17228e-06 2.06619e-06 1.93586e-06 1.80382e-06 1.64293e-06 1.48048e-06 1.29319e-06 1.09211e-06 8.85679e-07 6.40786e-07 4.2837e-07 1.5228e-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 8.40464e-08 2.81316e-07 4.75932e-07 6.68384e-07 8.57791e-07 1.04449e-06 1.22767e-06 1.40782e-06 1.58383e-06 1.75631e-06 1.92431e-06 2.08785e-06 2.2466e-06 2.39995e-06 2.54809e-06 2.69058e-06 2.8269e-06 2.95734e-06 3.08074e-06 3.19763e-06 3.30691e-06 3.40877e-06 3.50226e-06 3.5879e-06 3.66386e-06 3.73207e-06 3.78911e-06 3.83868e-06 3.87563e-06 3.90547e-06 3.92141e-06 3.9302e-06 3.92416e-06 3.91063e-06 3.88207e-06 3.84525e-06 3.79412e-06 3.73324e-06 3.65997e-06 3.57428e-06 3.47946e-06 3.36812e-06 3.25255e-06 3.11616e-06 2.97962e-06 2.81777e-06 2.65693e-06 2.4729e-06 2.282e-06 2.08142e-06 1.85692e-06 1.65015e-06 1.39943e-06 1.1893e-06 9.0997e-07 6.36044e-07 2.60121e-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 9.44108e-08 2.72777e-07 4.51855e-07 6.31471e-07 8.1084e-07 9.90081e-07 1.16814e-06 1.34567e-06 1.52138e-06 1.69597e-06 1.86872e-06 2.03931e-06 2.20809e-06 2.37409e-06 2.53786e-06 2.69858e-06 2.8566e-06 3.01119e-06 3.16287e-06 3.31051e-06 3.45482e-06 3.59475e-06 3.73054e-06 3.86168e-06 3.98775e-06 4.10861e-06 4.22413e-06 4.33338e-06 4.43705e-06 4.53356e-06 4.62388e-06 4.70647e-06 4.78208e-06 4.84914e-06 4.90894e-06 4.95896e-06 5.00184e-06 5.03361e-06 5.05852e-06 5.07105e-06 5.07704e-06 5.06957e-06 5.0555e-06 5.02727e-06 4.99215e-06 4.94292e-06 4.88606e-06 4.81615e-06 4.73724e-06 4.64746e-06 4.54632e-06 4.43769e-06 4.31432e-06 4.18785e-06 4.04315e-06 3.89965e-06 3.73344e-06 3.57049e-06 3.38499e-06 3.19875e-06 2.99787e-06 2.78599e-06 2.57773e-06 2.34291e-06 2.12538e-06 1.84981e-06 1.56031e-06 1.16415e-06 6.79444e-07 1.36352e-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 5.83678e-10 9.06574e-08 1.84644e-07 2.83411e-07 3.86882e-07 4.95108e-07 6.08031e-07 7.25216e-07 8.46488e-07 9.71557e-07 1.10002e-06 1.23153e-06 1.36617e-06 1.50317e-06 1.64256e-06 1.78374e-06 1.9269e-06 2.07126e-06 2.21682e-06 2.3631e-06 2.50984e-06 2.65646e-06 2.80297e-06 2.9485e-06 3.09363e-06 3.23715e-06 3.37972e-06 3.52069e-06 3.65973e-06 3.79729e-06 3.93236e-06 4.06546e-06 4.19585e-06 4.32387e-06 4.44887e-06 4.57137e-06 4.69024e-06 4.80629e-06 4.91833e-06 5.02679e-06 5.13102e-06 5.23074e-06 5.3256e-06 5.41563e-06 5.49961e-06 5.57849e-06 5.65037e-06 5.71655e-06 5.7751e-06 5.82723e-06 5.87085e-06 5.90781e-06 5.93498e-06 5.95569e-06 5.96548e-06 5.96898e-06 5.96042e-06 5.94582e-06 5.91832e-06 5.88459e-06 5.83732e-06 5.78363e-06 5.71664e-06 5.64252e-06 5.55641e-06 5.46183e-06 5.35772e-06 5.24294e-06 5.12216e-06 4.98765e-06 4.85155e-06 4.69847e-06 4.54786e-06 4.37645e-06 4.2099e-06 4.0212e-06 3.83627e-06 3.63255e-06 3.42781e-06 3.21487e-06 2.98967e-06 2.76197e-06 2.48711e-06 2.18061e-06 1.76677e-06 1.28111e-06 7.11202e-07 1.22758e-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 1.72128e-08 1.87714e-07 3.45849e-07 4.93044e-07 6.29241e-07 7.55779e-07 8.72979e-07 9.8192e-07 1.08304e-06 1.17725e-06 1.26521e-06 1.34767e-06 1.42559e-06 1.49961e-06 1.57058e-06 1.63923e-06 1.70614e-06 1.77227e-06 1.83808e-06 1.90456e-06 1.97212e-06 2.04176e-06 2.11365e-06 2.18849e-06 2.26635e-06 2.34747e-06 2.43192e-06 2.51964e-06 2.61047e-06 2.70445e-06 2.80134e-06 2.9009e-06 3.00329e-06 3.10797e-06 3.2149e-06 3.32368e-06 3.43438e-06 3.54645e-06 3.65983e-06 3.7742e-06 3.88919e-06 4.00441e-06 4.11978e-06 4.23463e-06 4.34945e-06 4.46316e-06 4.57637e-06 4.6885e-06 4.79921e-06 4.90894e-06 5.01676e-06 5.12309e-06 5.22734e-06 5.32973e-06 5.42973e-06 5.5278e-06 5.62281e-06 5.7156e-06 5.80492e-06 5.89126e-06 5.97376e-06 6.05245e-06 6.1267e-06 6.19665e-06 6.26088e-06 6.32046e-06 6.37332e-06 6.42091e-06 6.46108e-06 6.4953e-06 6.52112e-06 6.54075e-06 6.55078e-06 6.55472e-06 6.54788e-06 6.53518e-06 6.51065e-06 6.48045e-06 6.43759e-06 6.38892e-06 6.32715e-06 6.25932e-06 6.17876e-06 6.09142e-06 5.99291e-06 5.88635e-06 5.77125e-06 5.64585e-06 5.51573e-06 5.37238e-06 5.22887e-06 5.06897e-06 4.91254e-06 4.73685e-06 4.56679e-06 4.37525e-06 4.19021e-06 3.98361e-06 3.78315e-06 3.5653e-06 3.34678e-06 3.10912e-06 2.83525e-06 2.51215e-06 2.08547e-06 1.59295e-06 1.00123e-06 4.67473e-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 8.64864e-08 3.34808e-07 5.69148e-07 7.90257e-07 9.97548e-07 1.19174e-06 1.37266e-06 1.54106e-06 1.69697e-06 1.84135e-06 1.97444e-06 2.09721e-06 2.21015e-06 2.31412e-06 2.40964e-06 2.49747e-06 2.57838e-06 2.65303e-06 2.72237e-06 2.787e-06 2.84774e-06 2.90524e-06 2.96012e-06 3.01329e-06 3.06526e-06 3.11693e-06 3.1688e-06 3.22172e-06 3.27596e-06 3.3321e-06 3.39025e-06 3.45068e-06 3.51354e-06 3.57899e-06 3.64706e-06 3.7178e-06 3.79115e-06 3.86693e-06 3.94535e-06 4.02612e-06 4.10914e-06 4.19414e-06 4.28116e-06 4.36975e-06 4.45984e-06 4.55123e-06 4.64347e-06 4.73632e-06 4.82963e-06 4.92286e-06 5.01644e-06 5.10937e-06 5.20219e-06 5.29438e-06 5.38559e-06 5.47621e-06 5.56539e-06 5.65345e-06 5.73989e-06 5.82485e-06 5.90788e-06 5.98927e-06 6.06811e-06 6.14512e-06 6.21903e-06 6.29035e-06 6.35822e-06 6.42258e-06 6.48274e-06 6.53891e-06 6.58955e-06 6.63581e-06 6.67552e-06 6.71023e-06 6.73761e-06 6.75937e-06 6.77275e-06 6.78024e-06 6.77811e-06 6.7702e-06 6.75152e-06 6.72728e-06 6.69131e-06 6.64989e-06 6.596e-06 6.53654e-06 6.46424e-06 6.38613e-06 6.29571e-06 6.19875e-06 6.09125e-06 5.97583e-06 5.85297e-06 5.71991e-06 5.58325e-06 5.43367e-06 5.28505e-06 5.12061e-06 4.96026e-06 4.78211e-06 4.60956e-06 4.41679e-06 4.23171e-06 4.02378e-06 3.82694e-06 3.60569e-06 3.39347e-06 3.14712e-06 2.87567e-06 2.53604e-06 2.1002e-06 1.5974e-06 9.91173e-07 5.01985e-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 2.21282e-07 4.78353e-07 7.22252e-07 9.53206e-07 1.17076e-06 1.37526e-06 1.5666e-06 1.74523e-06 1.91128e-06 2.06534e-06 2.20773e-06 2.33911e-06 2.45989e-06 2.57083e-06 2.67253e-06 2.76568e-06 2.85086e-06 2.9287e-06 3.00001e-06 3.06537e-06 3.12572e-06 3.18159e-06 3.23374e-06 3.28273e-06 3.32919e-06 3.37393e-06 3.41747e-06 3.46058e-06 3.50378e-06 3.54775e-06 3.59279e-06 3.63932e-06 3.68746e-06 3.73742e-06 3.78937e-06 3.84353e-06 3.89997e-06 3.95883e-06 4.02005e-06 4.08339e-06 4.14911e-06 4.21704e-06 4.28704e-06 4.35894e-06 4.43275e-06 4.50807e-06 4.58482e-06 4.66284e-06 4.74168e-06 4.82117e-06 4.90115e-06 4.98114e-06 5.06156e-06 5.14144e-06 5.22129e-06 5.30064e-06 5.37914e-06 5.45717e-06 5.53394e-06 5.60967e-06 5.68394e-06 5.75686e-06 5.82798e-06 5.89771e-06 5.96485e-06 6.03041e-06 6.09301e-06 6.15317e-06 6.20995e-06 6.26339e-06 6.31266e-06 6.35808e-06 6.39799e-06 6.43364e-06 6.4628e-06 6.48711e-06 6.5041e-06 6.51571e-06 6.51886e-06 6.51636e-06 6.50415e-06 6.48642e-06 6.45786e-06 6.42403e-06 6.37846e-06 6.32772e-06 6.26459e-06 6.19618e-06 6.11513e-06 6.0286e-06 5.93012e-06 5.82554e-06 5.71095e-06 5.58876e-06 5.46001e-06 5.32138e-06 5.18041e-06 5.02684e-06 4.87534e-06 4.70911e-06 4.54694e-06 4.369e-06 4.19563e-06 4.00463e-06 3.82084e-06 3.61474e-06 3.42317e-06 3.20106e-06 2.99759e-06 2.74254e-06 2.47574e-06 2.11476e-06 1.67218e-06 1.15566e-06 5.4732e-07 1.15772e-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 1.38631e-07 3.52814e-07 5.54879e-07 7.44739e-07 9.22484e-07 1.08834e-06 1.24259e-06 1.3856e-06 1.51782e-06 1.63976e-06 1.75188e-06 1.85477e-06 1.94902e-06 2.03528e-06 2.11414e-06 2.18619e-06 2.25199e-06 2.31227e-06 2.36761e-06 2.41883e-06 2.46645e-06 2.5111e-06 2.55328e-06 2.5936e-06 2.63271e-06 2.67111e-06 2.70938e-06 2.74802e-06 2.78747e-06 2.82801e-06 2.86988e-06 2.91313e-06 2.95788e-06 3.00426e-06 3.05249e-06 3.10259e-06 3.15468e-06 3.20876e-06 3.26446e-06 3.32196e-06 3.38123e-06 3.44209e-06 3.50443e-06 3.56822e-06 3.63316e-06 3.69913e-06 3.76597e-06 3.83328e-06 3.90097e-06 3.96891e-06 4.03669e-06 4.10467e-06 4.172e-06 4.23911e-06 4.30566e-06 4.3713e-06 4.43641e-06 4.50029e-06 4.56303e-06 4.62436e-06 4.68427e-06 4.74242e-06 4.79916e-06 4.85352e-06 4.90623e-06 4.95608e-06 5.00355e-06 5.04763e-06 5.08848e-06 5.12512e-06 5.15799e-06 5.18539e-06 5.20863e-06 5.22553e-06 5.23779e-06 5.24284e-06 5.24288e-06 5.23446e-06 5.22076e-06 5.19739e-06 5.16895e-06 5.12976e-06 5.08581e-06 5.0303e-06 4.97012e-06 4.89788e-06 4.82092e-06 4.73181e-06 4.63787e-06 4.5327e-06 4.42208e-06 4.30262e-06 4.17628e-06 4.04487e-06 3.90422e-06 3.76307e-06 3.61006e-06 3.46053e-06 3.29835e-06 3.13944e-06 2.96795e-06 2.79869e-06 2.61681e-06 2.43936e-06 2.2432e-06 2.06313e-06 1.84731e-06 1.66013e-06 1.39781e-06 1.1415e-06 7.51605e-07 3.11253e-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 2.4666e-08 7.05551e-08 1.17594e-07 1.65767e-07 2.1468e-07 2.6458e-07 3.15333e-07 3.66675e-07 4.18517e-07 4.70671e-07 5.22814e-07 5.74949e-07 6.26996e-07 6.78653e-07 7.30183e-07 7.8096e-07 8.31248e-07 8.80901e-07 9.29632e-07 9.77713e-07 1.02466e-06 1.07041e-06 1.11484e-06 1.15787e-06 1.19926e-06 1.23926e-06 1.27716e-06 1.31353e-06 1.34734e-06 1.37898e-06 1.40744e-06 1.43299e-06 1.45458e-06 1.47271e-06 1.48589e-06 1.49531e-06 1.49913e-06 1.49889e-06 1.49224e-06 1.48131e-06 1.46278e-06 1.4397e-06 1.40801e-06 1.37205e-06 1.32659e-06 1.27722e-06 1.21776e-06 1.15444e-06 1.08074e-06 1.00324e-06 9.15457e-07 8.23946e-07 7.2315e-07 6.18361e-07 5.06619e-07 3.89802e-07 2.69633e-07 1.42455e-07 1.61077e-08 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 ) ; } hot { type compressible::alphatWallFunction; Prt 0.85; value uniform 0; } cold { type compressible::alphatWallFunction; Prt 0.85; value uniform 0; } } // ************************************************************************* //
[ "tsinghsamant@gmail.com" ]
tsinghsamant@gmail.com
ae80c63e6aed8a544c7a005bcad0e037c33b0d32
55571363a6156fe8cbbc575d74bbcf71906ec198
/timer.h
a1390d5fdf808f17f5a9013c24c1137233e1a3ea
[]
no_license
peryaudo/trax
ca4b5d94ae95ced98a6de80533b9c95f438a2bf2
9c6deb81b1e371b7ce53e9dbe85e64777c974b4c
refs/heads/master
2021-01-19T11:18:03.455396
2016-09-06T06:24:11
2016-09-06T06:24:11
60,652,993
1
0
null
null
null
null
UTF-8
C++
false
false
3,465
h
// Copyright (C) 2016 Tetsui Ohkubo. #ifndef TIMER_H_ #define TIMER_H_ #include <unistd.h> #if defined __MACH__ #include <mach/mach_time.h> #elif defined _POSIX_MONOTONIC_CLOCK #include <time.h> #else #error no way to get accurate time. #endif #include <cstdint> #include <mutex> // NOLINT #include <thread> // NOLINT static const uint64_t kNanosecondsToMilliseconds = 1000000; static const uint64_t kNanosecondsToSeconds = 1000000000; class Timer { public: // Check() will always return false (the timer will never expire) // by setting timeout_ms negative. // The timer will start right after the constructor is called. explicit Timer(int timeout_ms = -1) : timeout_ms_(timeout_ms) , node_count_(0) , completed_depth_(0) , mutex_() { GetAccurateCurrentTime(&begin_time_); GetAccurateCurrentTime(&current_time_); } // Return true if the timer is expired. bool CheckTimeout(bool allow_false_negative = false) { if (allow_false_negative) { if (node_count_ % 100 > 0) { return false; } } // std::lock_guard<std::mutex> lock(mutex_); GetAccurateCurrentTime(&current_time_); if (timeout_ms_ < 0) { return false; } if (DiffAccurateTime(current_time_, begin_time_) > static_cast<uint64_t>(timeout_ms_) * kNanosecondsToMilliseconds) { return true; } return false; } // Should be called from the bottom of the search. void IncrementNodeCounter() { // std::lock_guard<std::mutex> lock(mutex_); ++node_count_; } // Return node per second value. int nps() { uint64_t diff = DiffAccurateTime(current_time_, begin_time_); if (diff == 0) { return 0; } return node_count_ * kNanosecondsToSeconds / diff; } // Return elapsed milliseconds since the Timer constructor is called. int elapsed_ms() { return DiffAccurateTime(current_time_, begin_time_) / kNanosecondsToMilliseconds; } int timeout_ms() { return timeout_ms_; } int completed_depth() { return completed_depth_; } void set_completed_depth(int completed_depth) { std::lock_guard<std::mutex> lock(mutex_); if (completed_depth_ < completed_depth) { completed_depth_ = completed_depth; } } private: #if defined __MACH__ using TimeType = uint64_t; static void GetAccurateCurrentTime(TimeType *current_time) { mach_timebase_info_data_t base; mach_timebase_info(&base); *current_time = mach_absolute_time() / base.denom; } static uint64_t DiffAccurateTime(const TimeType& after, const TimeType& before) { return after - before; } #elif defined _POSIX_MONOTONIC_CLOCK using TimeType = struct timespec; static void GetAccurateCurrentTime(TimeType *current_time) { clock_gettime(CLOCK_MONOTONIC, current_time); } static uint64_t DiffAccurateTime(const TimeType& after, const TimeType& before) { if (after.tv_nsec - before.tv_nsec < 0) { return (after.tv_sec - before.tv_sec - 1) * kNanosecondsToSeconds + (kNanosecondsToSeconds + after.tv_nsec - before.tv_nsec); } else { return (after.tv_sec - before.tv_sec) * kNanosecondsToSeconds + (after.tv_nsec - before.tv_nsec); } } #endif int timeout_ms_; TimeType begin_time_; TimeType current_time_; uint64_t node_count_; int completed_depth_; std::mutex mutex_; }; #endif // TIMER_H_
[ "peryaudo@gmail.com" ]
peryaudo@gmail.com
c1cead8a85e9b5c9887828001075a6046576da70
c45ed46065d8b78dac0dd7df1c95b944f34d1033
/TC-SRM-588-div1-250/Remilia.cpp
05d67a87c36d48c5778ebe4929500ae3b75e787c
[]
no_license
yzq986/cntt2016-hw1
ed65a6b7ad3dfe86a4ff01df05b8fc4b7329685e
12e799467888a0b3c99ae117cce84e8842d92337
refs/heads/master
2021-01-17T11:27:32.270012
2017-01-26T03:23:22
2017-01-26T03:23:22
84,036,200
0
0
null
2017-03-06T06:04:12
2017-03-06T06:04:12
null
UTF-8
C++
false
false
989
cpp
#include <bits/stdc++.h> #define rep(x,a,b) for (int x=a;x<=(int)b;x++) #define drp(x,a,b) for (int x=a;x>=(int)b;x--) #define cross(x,a) for (int x=hd[a];~x;x=nx[x]) #define ll long long #define inf (1<<29) #define PII pair<int,int> #define PDD pair<double,double> #define mk(a,b) make_pair(a,b) #define fs first #define sc second #define pb push_back using namespace std; const int maxn=55; vector<int>a; bool cmp(const int&x,const int&y){ return a[x]<a[y]; } int b[maxn],id[maxn]; /* 排序,DP dp[i][j]表示最后一首歌是i,已经唱了j首的最短时间。 xjb转移即可。 */ class GUMIAndSongsDiv1{ public: int maxSongs(vector<int>dur,vector<int>ton,int T){ a=ton; int n=dur.size(); rep(i,0,n-1) id[i]=i; sort(id,id+n,cmp); int ans=0; rep(i,0,n-1) rep(j,i,n-1){ rep(k,i,j) b[k-i]=dur[id[k]]; sort(b,b+j-i+1); int nw=ton[id[j]]-ton[id[i]],cnt=0; for (int k=0;k<=j-i&&nw+b[k]<=T;k++) cnt++,nw+=b[k]; ans=max(ans,cnt); } return ans; } };
[ "Ric·shooter" ]
Ric·shooter
a4a387dbbcac29e2c5a60aac4ca993268dca21c1
1979ea87cbe6c7520abfbaa04fa93202f776210f
/shChapter8/exm20_1.cpp
98fc1cd2ef55ae9b6deb3991a3692cc0c07b7b56
[]
no_license
qkrwjdan/PracticeCpp
92284abd9929618a80660d1bab6befcfe1e0f97d
0f0e63a0368745f6c7ae9e3d6a1b6873facc38c5
refs/heads/master
2021-05-25T17:22:48.178495
2020-06-29T15:38:00
2020-06-29T15:38:00
253,841,154
0
0
null
null
null
null
UTF-8
C++
false
false
797
cpp
#include <iostream> #include <string.h> using namespace std; int main() { char name[20] = "name"; char age[20] = "23"; char university[20] = "inhaUniv"; char cpy_name[20] = ""; char cpy_age[20] = ""; char cpy_university[20] = ""; int name_len = strlen(name); int age_len = strlen(age); int university_len = strlen(university); strcpy(cpy_name, name); strcpy(cpy_age,age); strcpy(cpy_university,university); strcat(name, age); strcat(name, university); strcat(cpy_name,cpy_age); strcat(cpy_name,cpy_university); cout<<"info : "<<name; cout<<endl; cout<<"cpy_info : "<<cpy_name; cout<<endl; cout<<"total length : "<<name_len<<"+"<<age_len<<"+"<<university_len<<" = "<<strlen(name)<<endl; return 0; }
[ "madogisa12@naver.com" ]
madogisa12@naver.com
92683f002b5caadefc1b29d203a26c050c752c60
3d232018a25f15042164aa7726b73f71e3165252
/indra/llmessage/lltransfersourcefile.cpp
a372f665afed59886cfa18887c2f81276ba86241
[]
no_license
OS-Development/VW.Meerkat
ee8dae5b077a709a618ed6550f157797fe577dcf
00645a93b672dd3ce5e02bd620a90b8e275aba01
refs/heads/master
2021-01-19T18:08:40.932912
2015-04-04T23:20:08
2015-04-04T23:20:08
33,423,332
1
0
null
null
null
null
UTF-8
C++
false
false
4,714
cpp
/** * @file lltransfersourcefile.cpp * @brief Transfer system for sending a file. * * $LicenseInfo:firstyear=2006&license=viewergpl$ * * Copyright (c) 2006-2008, Linden Research, Inc. * * Second Life Viewer Source Code * The source code in this file ("Source Code") is provided by Linden Lab * to you under the terms of the GNU General Public License, version 2.0 * ("GPL"), unless you have obtained a separate licensing agreement * ("Other License"), formally executed by you and Linden Lab. Terms of * the GPL can be found in doc/GPL-license.txt in this distribution, or * online at http://secondlifegrid.net/programs/open_source/licensing/gplv2 * * There are special exceptions to the terms and conditions of the GPL as * it is applied to this Source Code. View the full text of the exception * in the file doc/FLOSS-exception.txt in this software distribution, or * online at http://secondlifegrid.net/programs/open_source/licensing/flossexception * * By copying, modifying or distributing this software, you acknowledge * that you have read and understood your obligations described above, * and agree to abide by those obligations. * * ALL LINDEN LAB SOURCE CODE IS PROVIDED "AS IS." LINDEN LAB MAKES NO * WARRANTIES, EXPRESS, IMPLIED OR OTHERWISE, REGARDING ITS ACCURACY, * COMPLETENESS OR PERFORMANCE. * $/LicenseInfo$ */ #include "linden_common.h" #include "lltransfersourcefile.h" #include "llerror.h" #include "message.h" #include "lldatapacker.h" #include "lldir.h" LLTransferSourceFile::LLTransferSourceFile(const LLUUID &request_id, const F32 priority) : LLTransferSource(LLTST_FILE, request_id, priority), mFP(NULL) { } LLTransferSourceFile::~LLTransferSourceFile() { if (mFP) { llerrs << "Destructor called without the completion callback being called!" << llendl; } } void LLTransferSourceFile::initTransfer() { std::string filename = mParams.getFilename(); std::string delimiter = gDirUtilp->getDirDelimiter(); if((filename == ".") || (filename == "..") || (filename.find(delimiter[0]) != std::string::npos)) { llwarns << "Attempting to transfer file " << filename << " with path delimiter, aborting!" << llendl; sendTransferStatus(LLTS_ERROR); return; } // Look for the file. mFP = LLFile::fopen(mParams.getFilename(), "rb"); /* Flawfinder: ignore */ if (!mFP) { sendTransferStatus(LLTS_ERROR); return; } // Get the size of the file using the hack from fseek(mFP,0,SEEK_END); mSize = ftell(mFP); fseek(mFP,0,SEEK_SET); sendTransferStatus(LLTS_OK); } F32 LLTransferSourceFile::updatePriority() { return 0.f; } LLTSCode LLTransferSourceFile::dataCallback(const S32 packet_id, const S32 max_bytes, U8 **data_handle, S32 &returned_bytes, BOOL &delete_returned) { //llinfos << "LLTransferSourceFile::dataCallback" << llendl; if (!mFP) { llerrs << "Data callback without file set!" << llendl; return LLTS_ERROR; } if (packet_id != mLastPacketID + 1) { llerrs << "Can't handle out of order file transfer yet!" << llendl; } // Grab up until the max number of bytes from the file. delete_returned = TRUE; U8 *tmpp = new U8[max_bytes]; *data_handle = tmpp; returned_bytes = (S32)fread(tmpp, 1, max_bytes, mFP); if (!returned_bytes) { delete[] tmpp; *data_handle = NULL; returned_bytes = 0; delete_returned = FALSE; return LLTS_DONE; } return LLTS_OK; } void LLTransferSourceFile::completionCallback(const LLTSCode status) { // No matter what happens, all we want to do is close the file pointer if // we've got it open. if (mFP) { fclose(mFP); mFP = NULL; } // Delete the file iff the filename begins with "TEMP" if (mParams.getDeleteOnCompletion() && mParams.getFilename().substr(0, 4) == "TEMP") { LLFile::remove(mParams.getFilename()); } } void LLTransferSourceFile::packParams(LLDataPacker& dp) const { //llinfos << "LLTransferSourceFile::packParams" << llendl; mParams.packParams(dp); } BOOL LLTransferSourceFile::unpackParams(LLDataPacker &dp) { //llinfos << "LLTransferSourceFile::unpackParams" << llendl; return mParams.unpackParams(dp); } LLTransferSourceParamsFile::LLTransferSourceParamsFile() : LLTransferSourceParams(LLTST_FILE), mDeleteOnCompletion(FALSE) { } void LLTransferSourceParamsFile::packParams(LLDataPacker &dp) const { dp.packString(mFilename, "Filename"); dp.packU8((U8)mDeleteOnCompletion, "Delete"); } BOOL LLTransferSourceParamsFile::unpackParams(LLDataPacker &dp) { dp.unpackString(mFilename, "Filename"); U8 delete_flag; dp.unpackU8(delete_flag, "Delete"); mDeleteOnCompletion = delete_flag; llinfos << "Unpacked filename: " << mFilename << llendl; return TRUE; }
[ "?@?.?" ]
?@?.?
5f9d3eb91d67c1dc2a0e5d483ea6695830d7d370
553298299eed97e2c22835bb7c3912f5006c3c28
/Common/Obj8/Parameter/Word.cpp
ecd675248070c4e65fdd6829665a1a1d18211eb0
[]
no_license
SchaichAlonso/StaticsMapping
853d8f8bd6df0f02b755830902ba36199278d7f9
9b33139f853a45e3c1a3535d445e89ba6772f9e5
refs/heads/master
2022-11-03T03:09:14.964266
2022-10-19T17:02:10
2022-10-19T17:02:10
110,700,210
1
1
null
null
null
null
UTF-8
C++
false
false
1,025
cpp
#include <Obj8/Parser/SyntaxError.hpp> #include <Obj8/Comment.hpp> #include "Word.hpp" Obj8::Parameter::Word::Word () : Parser::Word () { } Obj8::Parameter::Word::Word (Parser::WordPrivate *dptr) : Parser::Word (dptr) { } Obj8::Parameter::Word::Word (const Word &other) : Parser::Word (other) { } Obj8::Parameter::Word::Word (StringRef str, Parser::LexerContext *ctx, int flags) : Parser::Word (str, ctx, PrecedingLinebreakNotAllowed | flags) { if (Comment::qualified (*this)) { throw (Parser::SyntaxError(ctx)); } } Obj8::Parameter::Word::~Word () { } Obj8::Parameter::Word & Obj8::Parameter::Word::operator= (const Word& other) { Parser::Word::operator= (other); return (*this); } Obj8::Parameter::Word Obj8::Parameter::Word::read (StringRef str, Parser::LexerContext *ctx) { return (Word (str, ctx)); } Obj8::Parameter::Word Obj8::Parameter::Word::peek (StringRef str, const Parser::LexerContext *ctx) { Parser::LexerContext copy (ctx); return (Word (str, &copy)); }
[ "alonso.schaich@sodgeit.de" ]
alonso.schaich@sodgeit.de
5804979caec1f50b4968900a98494c9efeaa9c64
35bd87c9c6cacda05252f93b4e30400aa59a0e2f
/export/release/windows/obj/include/Caching.h
32bf4ba58c4448c42d61a71d90c1310bbf324654
[ "Apache-2.0" ]
permissive
RE4L-CODE/vsZero-KE
53599f2099a17a9553adb25a7c8771db0a6bc6d4
44c126687ecd3caf7cc3af892164be8d520ae97a
refs/heads/main
2023-09-01T09:58:39.012592
2021-11-18T10:24:21
2021-11-18T10:24:21
429,388,364
0
0
null
null
null
null
UTF-8
C++
false
true
3,044
h
// Generated by Haxe 4.1.5 #ifndef INCLUDED_Caching #define INCLUDED_Caching #ifndef HXCPP_H #include <hxcpp.h> #endif #ifndef INCLUDED_MusicBeatState #include <MusicBeatState.h> #endif HX_DECLARE_CLASS0(Caching) HX_DECLARE_CLASS0(MusicBeatState) HX_DECLARE_CLASS1(flixel,FlxBasic) HX_DECLARE_CLASS1(flixel,FlxObject) HX_DECLARE_CLASS1(flixel,FlxSprite) HX_DECLARE_CLASS1(flixel,FlxState) HX_DECLARE_CLASS3(flixel,addons,transition,FlxTransitionableState) HX_DECLARE_CLASS3(flixel,addons,transition,TransitionData) HX_DECLARE_CLASS3(flixel,addons,ui,FlxUIState) HX_DECLARE_CLASS4(flixel,addons,ui,interfaces,IEventGetter) HX_DECLARE_CLASS4(flixel,addons,ui,interfaces,IFlxUIState) HX_DECLARE_CLASS2(flixel,group,FlxTypedGroup) HX_DECLARE_CLASS2(flixel,text,FlxText) HX_DECLARE_CLASS2(flixel,util,IFlxDestroyable) HX_DECLARE_CLASS1(haxe,IMap) HX_DECLARE_CLASS2(haxe,ds,StringMap) class HXCPP_CLASS_ATTRIBUTES Caching_obj : public ::MusicBeatState_obj { public: typedef ::MusicBeatState_obj super; typedef Caching_obj OBJ_; Caching_obj(); public: enum { _hx_ClassId = 0x07d9de73 }; void __construct( ::flixel::addons::transition::TransitionData TransIn, ::flixel::addons::transition::TransitionData TransOut); inline void *operator new(size_t inSize, bool inContainer=true,const char *inName="Caching") { return ::hx::Object::operator new(inSize,inContainer,inName); } inline void *operator new(size_t inSize, int extra) { return ::hx::Object::operator new(inSize+extra,true,"Caching"); } static ::hx::ObjectPtr< Caching_obj > __new( ::flixel::addons::transition::TransitionData TransIn, ::flixel::addons::transition::TransitionData TransOut); static ::hx::ObjectPtr< Caching_obj > __alloc(::hx::Ctx *_hx_ctx, ::flixel::addons::transition::TransitionData TransIn, ::flixel::addons::transition::TransitionData TransOut); static void * _hx_vtable; static Dynamic __CreateEmpty(); static Dynamic __Create(::hx::DynamicArray inArgs); //~Caching_obj(); HX_DO_RTTI_ALL; ::hx::Val __Field(const ::String &inString, ::hx::PropertyAccess inCallProp); static bool __GetStatic(const ::String &inString, Dynamic &outValue, ::hx::PropertyAccess inCallProp); ::hx::Val __SetField(const ::String &inString,const ::hx::Val &inValue, ::hx::PropertyAccess inCallProp); static bool __SetStatic(const ::String &inString, Dynamic &ioValue, ::hx::PropertyAccess inCallProp); void __GetFields(Array< ::String> &outFields); static void __register(); void __Mark(HX_MARK_PARAMS); void __Visit(HX_VISIT_PARAMS); bool _hx_isInstanceOf(int inClassId); ::String __ToString() const { return HX_("Caching",df,bf,75,f0); } static ::haxe::ds::StringMap bitmapData; int toBeDone; int done; bool loaded; ::flixel::text::FlxText text; ::flixel::FlxSprite kadeLogo; ::Array< ::String > images; ::Array< ::String > music; ::cpp::VirtualArray charts; void create(); bool calledDone; void update(Float elapsed); void cache(); ::Dynamic cache_dyn(); }; #endif /* INCLUDED_Caching */
[ "61307317+RE4L-CODE@users.noreply.github.com" ]
61307317+RE4L-CODE@users.noreply.github.com
ffa21157379b5746f52c7b6092f23c0cfa99a0e4
1e1ec37fb42456e08a92f78416fcc73151cf6a80
/samples/Frame/src/View.cpp
d5761e147dd5226bd3bb2d3ed64443d345809c6d
[]
no_license
wyrover/win32-framework
8819adfa798880f77de12261c57eeef63b980529
6ac4471314ee4dfdfb8abd97139e46c58a93d978
refs/heads/master
2021-01-10T01:17:31.304961
2015-06-05T03:17:55
2015-06-05T03:17:55
36,909,166
1
0
null
null
null
null
UTF-8
C++
false
false
1,734
cpp
////////////////////////////////////////////// // View.cpp // Definitions for the CView class #include "stdafx.h" #include "view.h" CView::CView() { } void CView::OnDraw(CDC* pDC) { CRect rc = GetClientRect(); // Centre some text in our view window pDC->DrawText(_T("View Window"), -1, rc, DT_CENTER | DT_VCENTER | DT_SINGLELINE); } void CView::OnInitialUpdate() { // OnInitialUpdate is called immediately after the window is created TRACE("View window created\n"); } void CView::PreCreate(CREATESTRUCT &cs) { // Here we set the defaults used by the create function for the view window // Preforming this is optional, but doing so allows us to // take more precise control over the window we create. // Set the extended style cs.dwExStyle = WS_EX_CLIENTEDGE; } void CView::PreRegisterClass(WNDCLASS &wc) { // Here we set the Window class parameters. // Preforming this is optional, but doing so allows us to // take more precise control over the type of window we create. // Set the Window Class name wc.lpszClassName = _T("View"); // Set a background brush to white wc.hbrBackground = (HBRUSH)::GetStockObject(WHITE_BRUSH); // Set the default cursor wc.hCursor = ::LoadCursor(NULL, IDC_ARROW); // Set the class style (not to be confused with the window styles set in PreCreate) wc.style = CS_DBLCLKS; // Generate left button double click messages } LRESULT CView::WndProc(UINT uMsg, WPARAM wParam, LPARAM lParam) { switch (uMsg) { case WM_SIZE: Invalidate(); break; // Also do default processing } // pass unhandled messages on for default processing return WndProcDefault(uMsg, wParam, lParam); }
[ "wyrover@gmail.com" ]
wyrover@gmail.com